/* ============================================
   Fire & Safety Webinar Landing Page
   Professional Workshop Design - Green/Blue Theme
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #E8F4F8;
    background: radial-gradient(ellipse at top, #0f1a2e 0%, #0a0e1a 50%, #060810 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 65, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 212, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

:root {
    --green: #00FF41;
    --blue: #00B8D4;
    --dark: #0a0e1a;
    --dark-card: #141b2b;
    --text: #E8F4F8;
    --text-muted: #A0B8C8;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), 0 0 40px rgba(0, 255, 65, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 65, 0.5), 0 0 60px rgba(0, 255, 65, 0.2); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--green);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), #00E676);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 65, 0.5), 0 0 40px rgba(0, 255, 65, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--dark);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.98) 0%, rgba(10, 14, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--dark-card);
    padding: 1rem 0;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 1rem;
    color: var(--text-muted);
}

.mobile-nav-cta {
    background: var(--green);
    color: #000;
    font-weight: 600;
    margin: 0.5rem 1rem;
    border-radius: 8px;
}

.header-cta {
    display: none;
}

.mobile-countdown-strip {
    display: none;
    padding: 0.5rem;
    background: var(--dark-card);
    text-align: center;
}

.mobile-countdown-strip.visible {
    display: block;
}

.countdown-compact {
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.08) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--green) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 0.3s forwards;
}

/* Badges */
.info-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.8) 0%, rgba(20, 27, 43, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 65, 0.1);
}

.badge .icon {
    color: var(--green);
    width: 1.5rem;
    height: 1.5rem;
}

.badge-label {
    font-size: 0.8125rem;
    color: #6B7F92;
}

.badge-value {
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 600;
}

/* Countdown */
.countdown-box {
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.9) 0%, rgba(26, 35, 50, 0.8) 100%);
    border: 2px solid rgba(0, 255, 65, 0.4);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 255, 65, 0.1);
    animation: glow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.countdown-title {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #1a2332 0%, #141b2b 100%);
    border: 1px solid rgba(0, 184, 212, 0.4);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    min-width: 70px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.countdown-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 65, 0.3);
}

.countdown-label {
    font-size: 0.6875rem;
    color: #6B7F92;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.seats-left {
    text-align: center;
    font-size: 0.9375rem;
    color: #FFB300;
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 184, 212, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-item .icon {
    color: var(--green);
    width: 1.25rem;
    height: 1.25rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-light {
    background: #0f1420;
}

.section-title {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--blue));
    border-radius: 2px;
}

.section-intro {
    font-size: 1.0625rem;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 900px;
    margin: 2rem auto;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.125rem;
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.6) 0%, rgba(20, 27, 43, 0.4) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 184, 212, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--green), var(--blue));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 65, 0.1);
}

.feature-list li:hover::before {
    transform: scaleY(1);
}

.icon-check {
    color: var(--green);
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
}

.feature-list span {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-list strong {
    color: var(--text);
    font-weight: 600;
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.required {
    color: var(--green);
}

/* Responsive */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    .hero-title { font-size: 2.5rem; }
    .info-badges { grid-template-columns: repeat(2, 1fr); }
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    .trust-bar {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    .countdown-item {
        min-width: 80px;
        padding: 1rem 1.25rem;
    }
    .countdown-number { font-size: 2rem; }
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .mobile-menu-toggle { display: none; }
    .header-cta { display: block; }
    .hero { padding: 5rem 0 4rem; }
    .hero-title { font-size: 3rem; }
    .info-badges { grid-template-columns: repeat(4, 1fr); }
}

/* Proof Strip */
.proof-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--dark-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-muted);
}

.proof-strip .icon {
    color: var(--green);
}

/* Mentor Section */
.mentor-card {
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.9) 0%, rgba(26, 35, 50, 0.7) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mentor-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.mentor-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
}

.mentor-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.mentor-name {
    font-size: 1.75rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.mentor-bio {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stats-tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-tile {
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.15) 0%, rgba(0, 255, 65, 0.05) 100%);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 65, 0.1);
    border-color: rgba(0, 255, 65, 0.4);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Note Box */
.note-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 184, 212, 0.1);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    margin: 2rem 0;
}

.note-box .icon {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.note-box strong {
    color: var(--text);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Agenda */
.agenda-container {
    max-width: 700px;
    margin: 0 auto;
}

.agenda-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 212, 0.2);
    margin-bottom: 1rem;
}

.agenda-time {
    font-weight: 700;
    color: var(--green);
    min-width: 70px;
    flex-shrink: 0;
}

.agenda-content {
    color: var(--text-muted);
}

.delivery-info {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(0, 184, 212, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 212, 0.2);
}

.delivery-info p {
    margin-bottom: 0.5rem;
}

.delivery-info strong {
    color: var(--text);
}

/* Enrollment Section */
.section-cta-block {
    background: var(--bg-secondary);
}

.enroll-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.enroll-detail-item {
    background: var(--dark-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 212, 0.2);
    text-align: center;
    color: var(--text-muted);
}

.enroll-detail-item strong {
    color: var(--green);
    font-weight: 700;
}

/* Form Styles */
.enroll-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.95) 0%, rgba(26, 35, 50, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 184, 212, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 184, 212, 0.3);
    border-radius: 6px;
    color: var(--text);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.checkbox-label a {
    color: var(--blue);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 184, 212, 0.2);
}

.form-footer p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.link-whatsapp {
    color: #25D366;
    font-weight: 600;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 212, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.8) 0%, rgba(20, 27, 43, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(0, 255, 65, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 65, 0.1);
}

.testimonial-quote {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.7) 0%, rgba(20, 27, 43, 0.5) 100%);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 212, 0.2);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(0, 184, 212, 0.05);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
}

.faq-item .faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

/* Final CTA Section */
.section-final-cta {
    background: var(--bg-secondary);
    text-align: center;
}

.final-cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0, 184, 212, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 184, 212, 0.1);
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .stats-tiles {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .enroll-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .mentor-card {
        display: flex;
        gap: 2rem;
        text-align: left;
    }
    
    .mentor-image {
        margin: 0;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Enhanced Hero Section */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.6s ease-out backwards;
}

.hero-badge:nth-child(1) { animation-delay: 0.1s; }
.hero-badge:nth-child(2) { animation-delay: 0.2s; }
.hero-badge:nth-child(3) { animation-delay: 0.3s; }

/* Hero VSL */
.hero-vsl {
    max-width: 900px;
    margin: 2.5rem auto 2rem;
    animation: slideInUp 0.8s ease-out 0.5s backwards;
}

.hero-vsl .video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 255, 65, 0.15);
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.9) 0%, rgba(26, 35, 50, 0.8) 100%);
    border: 2px solid rgba(0, 184, 212, 0.3);
}

.hero-vsl .video-placeholder {
    min-height: 350px;
}

/* Hero Quick Benefits */
.hero-quick-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 700px;
}

.quick-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.08) 0%, rgba(0, 184, 212, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out backwards;
}

.quick-benefit:nth-child(1) { animation-delay: 0.6s; }
.quick-benefit:nth-child(2) { animation-delay: 0.7s; }
.quick-benefit:nth-child(3) { animation-delay: 0.8s; }

.quick-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 65, 0.2);
}

.quick-benefit .icon {
    color: var(--green);
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.quick-benefit span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

/* VSL Section */
.vsl-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.vsl-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 184, 212, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.vsl-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 255, 65, 0.1);
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.9) 0%, rgba(26, 35, 50, 0.8) 100%);
    border: 2px solid rgba(0, 184, 212, 0.3);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: 
        radial-gradient(circle at center, rgba(0, 255, 65, 0.03) 0%, transparent 70%),
        linear-gradient(135deg, rgba(20, 27, 43, 0.6) 0%, rgba(26, 35, 50, 0.8) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite;
}

.video-placeholder:hover {
    transform: scale(1.02);
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 100px rgba(0, 255, 65, 0.2);
}

.play-icon {
    width: 80px;
    height: 80px;
    color: var(--green);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.5));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.video-placeholder p {
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* VSL Benefits */
.vsl-benefits {
    background: linear-gradient(135deg, rgba(20, 27, 43, 0.8) 0%, rgba(26, 35, 50, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 184, 212, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.vsl-benefits h3 {
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.vsl-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vsl-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 184, 212, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--green);
    transition: all 0.3s ease;
}

.vsl-benefits li:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateX(4px);
}

.vsl-benefits .icon-check {
    color: var(--green);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.vsl-benefits span {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive VSL */
@media (min-width: 768px) {
    .vsl-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
    
    .video-placeholder {
        min-height: 450px;
    }
    
    .play-icon {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .hero-badges {
        gap: 1rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Responsive Hero Enhancements */
@media (min-width: 768px) {
    .hero-vsl .video-placeholder {
        min-height: 450px;
    }
    
    .hero-quick-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .quick-benefit {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .quick-benefit .icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-vsl .video-placeholder {
        min-height: 500px;
    }
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
    border: 1px solid rgba(0, 184, 212, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-toggle:hover {
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15) 0%, rgba(0, 184, 212, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.2);
}

.language-toggle .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green);
}

.language-toggle span {
    font-size: 0.875rem;
}
