:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --primary-red: #c1121f;
    --primary-red-hover: #9b0e18;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-gray: #1a1a1a;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-red);
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-red);
}

.legacy {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-gray);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(193, 18, 31, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.vsl-container {
    margin: 40px auto;
    max-width: 900px; /* Reset to horizontal width */
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(193, 18, 31, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vsl-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    width: 100%;
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vsl-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.vsl-overlay:hover img {
    opacity: 0.8;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(193, 18, 31, 0.6);
    transition: var(--transition);
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.vsl-overlay:hover .play-button {
    transform: scale(1.1);
    background: #ff4d4d;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.3);
}

.cta-button:hover {
    background: var(--primary-red-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(193, 18, 31, 0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(193, 18, 31, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(193, 18, 31, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(193, 18, 31, 0); }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
}

/* Learning Section */
.learning {
    padding: 100px 0;
    background: var(--accent-gray);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.learning-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.learning-card:hover {
    transform: translateY(-10px);
    border-color: rgba(193, 18, 31, 0.3);
}

.card-icon {
    font-size: 3rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: rgba(193, 18, 31, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
}

.learning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.learning-card p {
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

.learning-footer {
    text-align: center;
    margin-top: 60px;
}

.learning-footer p {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.testimonials-footer {
    text-align: center;
    margin-top: 60px;
}

.testimonials-footer p {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    font-style: italic;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.student {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-style: normal;
}

.student img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
}

.student span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* About Us */
.about {
    padding: 100px 0;
    background: var(--accent-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    color: var(--primary-red);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.about-carousel {
    position: relative;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-red);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.carousel-container img:first-child {
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Kit Section */
.kit {
    padding: 100px 0;
}

.kit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kit-image img {
    width: 100%;
    border-radius: 20px;
}

.kit-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.kit-list {
    list-style: none;
    margin: 30px 0;
}

.kit-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.kit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.price-box {
    margin: 40px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.current-price {
    display: block;
    font-size: 3rem;
    font-family: 'Oswald', sans-serif;
    color: var(--text-white);
    line-height: 1;
    margin: 10px 0;
}

.kit-note {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-top: 30px;
    padding: 20px;
    background: rgba(193, 18, 31, 0.1);
    border-left: 4px solid var(--primary-red);
    border-radius: 10px;
    line-height: 1.5;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
}

.copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 968px) {
    .about-content, .kit-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Guarantee Section */
.guarantee {
    padding: 100px 0;
}

.guarantee-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid var(--primary-red);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 0 50px rgba(193, 18, 31, 0.1);
}

.guarantee-badge {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    color: var(--primary-red);
}

.guarantee-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.guarantee-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--accent-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
