/* ============================================================
   RESET & VARIABLES
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B83FF;
    --primary-bg: #F0EEFF;
    --secondary: #10B981;
    --secondary-light: #D1FAE5;
    --accent: #F59E0B;
    --accent-light: #FEF3C7;
    --danger: #EF4444;
    --teal: #14B8A6;
    --teal-light: #CCFBF1;
    --dark: #0F172A;
    --dark-800: #1E293B;
    --dark-700: #334155;
    --dark-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --gray-50: #F8FAFC;
    --cream: #FFFBF5;
    --white: #FFFFFF;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-primary: 0 8px 30px rgba(108,99,255,0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108,99,255,0.4);
}

.btn-secondary {
    background: var(--primary-bg);
    color: var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 24px;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--dark);
}

/* ============================================================
   CUSTOM LOGO IMAGE
   ============================================================ */
.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 120px;
    filter: brightness(0) invert(1); /* makes logo white for dark footer */
}

.logo-text { font-weight: 400; }
.logo-text strong { font-weight: 800; }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-600);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-tag-teal {
    background: var(--teal-light);
    color: var(--teal);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle-light {
    color: rgba(255,255,255,0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #FCD34D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-teal {
    background: linear-gradient(135deg, var(--teal) 0%, #2DD4BF 50%, #5EEAD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   HERO SECTION WITH CAROUSEL
   ============================================================ */
.hero {
    min-height: 100vh;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Carousel Background */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.92) 0%, 
        rgba(30, 41, 59, 0.88) 50%,
        rgba(15, 23, 42, 0.85) 100%);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.indicator:hover {
    border-color: var(--white);
}

.indicator.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.2);
    color: #6EE7B7;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--accent);
}

.hero-trust-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

/* Hero Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}
.form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.form-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--gray-50);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(108,99,255,0.1);
}
.form-group input::placeholder {
    color: var(--gray-400);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 12px;
    justify-content: center;
}

/* Stats Bar */
.hero-stats {
    position: relative;
    z-index: 1;
}

.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: var(--dark);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 40px;
}

.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--dark-700);
}

/* ============================================================
   PROBLEM SECTION (Gradient BG)
   ============================================================ */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--primary-bg) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.pain-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pain-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}
.pain-icon-red {
    background: #FEF2F2;
    color: var(--danger);
}

.pain-point h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.pain-point p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin: 20px 0 12px;
}

.solution-card > p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-quote {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}
.solution-quote blockquote {
    font-style: italic;
    color: var(--dark-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}
.solution-quote cite {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

/* ============================================================
   VIDEO SECTION - DARK
   ============================================================ */
.video-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.video-section-dark {
    background: var(--dark);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.88) 0%, 
        rgba(108, 99, 255, 0.3) 100%);
}

.video-section .container {
    position: relative;
    z-index: 1;
}

.video-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.video-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    line-height: 1.8;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-main);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255,255,255,0.2);
}

.play-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   BENEFITS SECTION (Purple Gradient)
   ============================================================ */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.benefit-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
}
.benefit-featured h3,
.benefit-featured p { color: var(--white); }
.benefit-featured .benefit-details li { color: rgba(255,255,255,0.85); }
.benefit-featured .benefit-details li::before { color: rgba(255,255,255,0.9); }

.benefit-icon-wrapper {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.benefit-icon-purple { background: var(--primary-bg); color: var(--primary); }
.benefit-icon-blue { background: #EFF6FF; color: #3B82F6; }
.benefit-icon-green { background: var(--secondary-light); color: var(--secondary); }
.benefit-icon-orange { background: #FFF7ED; color: var(--accent); }

.benefit-featured .benefit-icon-wrapper {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.benefit-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.benefit-card > p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.benefit-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.benefit-details li {
    font-size: 0.85rem;
    color: var(--dark-700);
    display: flex;
    align-items: center;
    gap: 8px;
}
.benefit-details li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ============================================================
   COURSES SECTION (Teal Accent)
   ============================================================ */
.courses-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--teal-light) 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-new { background: var(--secondary); }

.course-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.course-meta span {
    padding: 4px 10px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
}

.course-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.course-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.course-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    flex: 1;
}
.course-highlights li {
    font-size: 0.82rem;
    color: var(--dark-700);
    padding-left: 18px;
    position: relative;
}
.course-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.course-finance {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
}

.courses-more {
    text-align: center;
    margin-top: 48px;
}
.courses-more p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* ============================================================
   HOW IT WORKS (Dark Section)
   ============================================================ */
.how-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    position: relative;
    flex: 1;
    max-width: 300px;
}

.step-card-dark {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.step-card-dark h3 {
    color: var(--white);
}

.step-card-dark p {
    color: rgba(255,255,255,0.7);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(108,99,255,0.3);
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.step-icon {
    width: 72px; height: 72px;
    background: rgba(108,99,255,0.2);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.step-connector-light svg path {
    stroke: var(--accent);
}

/* ============================================================
   VIDEO FEATURE SECTION
   ============================================================ */
.video-feature-section {
    padding: 100px 0;
    background: var(--cream);
}

.video-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-feature-content p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.8;
}

.video-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.video-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark-700);
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.play-btn-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    color: var(--white);
}

.video-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.video-caption img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.video-caption strong {
    display: block;
    font-size: 0.95rem;
}

.video-caption span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ============================================================
   TESTIMONIALS (Warm BG)
   ============================================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--dark-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ============================================================
   URGENCY SECTION (Gradient)
   ============================================================ */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--teal-light) 100%);
}

.urgency-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.urgency-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
}
.urgency-card::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 300px; height: 300px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.urgency-content {
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(239,68,68,0.15);
    color: #FCA5A5;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.urgency-card h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}
.urgency-card > .urgency-content > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.urgency-counters {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.urgency-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.urgency-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.countdown {
    display: flex;
    gap: 8px;
    align-items: center;
}
.countdown-unit {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 70px;
    text-align: center;
}
.countdown-unit span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.countdown-unit small {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.countdown-separator {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-400);
}

/* ============================================================
   FINAL CTA SECTION (Split with Image BG)
   ============================================================ */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(108, 99, 255, 0.85) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--dark-700);
}

.footer-logo {
    margin-bottom: 16px;
}
.footer-logo .logo-text { color: var(--white); }

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-700);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--primary-light);
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    align-items: flex-start;
}
.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary-light); }

.privacy-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}
.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon { margin-bottom: 24px; }
.modal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.modal-card p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Video Modal */
.video-modal .video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    animation: modalIn 0.3s ease;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.video-modal-close:hover {
    background: var(--danger);
    color: var(--white);
}

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate="fade-right"] {
    transform: translateX(-40px);
}
[data-animate="fade-left"] {
    transform: translateX(40px);
}
[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .problem-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; }
    .video-feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { gap: 24px; padding: 32px 24px; }
    .urgency-card { padding: 40px 24px; }
    .carousel-indicators { bottom: 220px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero { padding: 100px 0 0; }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .courses-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); padding-top: 0; }

    .stats-bar {
        flex-direction: column;
        gap: 24px;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .urgency-counters { flex-direction: column; gap: 24px; }
    .urgency-card h2 { font-size: 1.8rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 12px; }
    .footer-bottom-links { justify-content: center; }
    
    .carousel-indicators { bottom: 280px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .form-card { padding: 24px; }
    .urgency-card { padding: 32px 20px; }
    .countdown-unit { padding: 8px 10px; min-width: 55px; }
    .countdown-unit span { font-size: 1.4rem; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}