/* ===== CSS Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --accent: #10b981;
    --accent-light: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.5);
    --background: #ffffff;
    --background-alt: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-primary-hover: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-emerald: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(168, 85, 247, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(99, 102, 241, 0.1) 0px, transparent 50%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-glow-lg: 0 0 60px rgba(99, 102, 241, 0.25);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    line-height: 1.7;
    color: var(--text-primary);
    background: #fafbff;
    background-image: var(--gradient-mesh);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.03);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
    contain: layout style;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 24px auto 0;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.4);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 56px;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 500;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    text-transform: none;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4),
        0 1px 3px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5),
        0 4px 10px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-btn span {
    width: 26px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu .nav-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 16px;
    border: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* ===== SECTION 1 — Hero ===== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f8faff 0%, #eef2ff 40%, #faf5ff 70%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 30%, transparent 70%);
    pointer-events: none;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.06) 30%, transparent 70%);
    pointer-events: none;
    will-change: transform;
}

/* Decorative elements - static on mobile for performance */
.hero .hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Only enable expensive animations on desktop */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    .hero::before {
        animation: float 25s ease-in-out infinite;
    }

    .hero::after {
        animation: float 20s ease-in-out infinite reverse;
    }

    .hero .hero-bg::before {
        animation: float 18s ease-in-out infinite 2s;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -20px) scale(1.02);
    }

    50% {
        transform: translate(30px, 30px) scale(1);
    }

    75% {
        transform: translate(-20px, 20px) scale(0.98);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-top-badge {
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    text-align: center;
    margin-bottom: 24px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

/* Hero Split Layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-coach-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.85) 40%, rgba(15, 23, 42, 0.4) 100%);
    color: white;
}

.hero-image-overlay h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Hero Info Section */
.hero-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    contain: layout style;
}

@media (hover: hover) {
    .info-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.2);
    }
}

.info-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: var(--radius);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-hero {
    padding: 20px 48px;
    font-size: 1.15rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35);
}

.btn-hero:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.45);
}

/* ===== COACH SECTION ===== */
.coach-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

.coach-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.coach-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 56px auto 0;
}

.coach-image-container {
    display: flex;
    justify-content: center;
}

.coach-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 50%, var(--accent) 100%);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.25);
    will-change: transform, opacity;
    contain: layout style;
}

.coach-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.2);
}

/* Animations only on desktop with no motion preference */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    .coach-image-wrapper {
        animation: pulse-glow 4s ease-in-out infinite;
    }

    .coach-image-wrapper::before {
        animation: spin 20s linear infinite;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.coach-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
}

.coach-bio {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.coach-bio p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    padding: 18px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid rgba(99, 102, 241, 0.06);
    margin-bottom: -1px;
    transition: var(--transition);
    position: relative;
}

.coach-bio p:first-child {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.coach-bio p:last-child {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin-bottom: 0;
}

.coach-bio p:hover {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    z-index: 1;
}

.coach-name {
    color: var(--primary);
    font-weight: 700;
}

.highlight-link {
    color: var(--primary);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    padding: 2px 8px;
    border-radius: var(--radius);
}

/* Legacy hero content (keep for compatibility) */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hero-badge::before {
    content: '✦';
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hero-trust span {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

/* ===== SECTION 2 — Pain Section ===== */
.pain-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pain-content-modern {
    max-width: 1000px;
    margin: 0 auto;
}

.pain-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 48px auto 48px;
    font-weight: 500;
}

/* Insight Cards */
.pain-insight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.insight-card {
    background: white;
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.insight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.insight-number {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Card Variants */
.primary-card {
    border-left: 4px solid var(--primary);
}

.primary-card .insight-number {
    color: var(--primary);
}

.secondary-card {
    border-left: 4px solid #8b5cf6;
}

.secondary-card .insight-number {
    color: #8b5cf6;
}

.tertiary-card {
    border-left: 4px solid var(--accent);
}

.tertiary-card .insight-number {
    color: var(--accent);
}

/* Solution Card */
.pain-solution-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 56px 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(102, 126, 234, 0.35);
}

.pain-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.solution-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.pain-solution-card h3 {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.pain-solution-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .pain-insight-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pain-solution-card {
        padding: 48px 32px;
    }

    .pain-solution-card h3 {
        font-size: 2.25rem;
    }
}

/* Mobile breakpoint (480px and below) */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-top-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-split {
        gap: 20px;
        margin-top: 20px;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .info-card {
        padding: 12px 16px;
        gap: 8px;
    }

    .info-icon {
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
    }

    .info-label {
        font-size: 0.7rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .btn-hero {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
    }

    .pain-section {
        padding: 60px 0 40px;
    }

    .pain-intro {
        font-size: 1rem;
        margin: 20px auto 32px;
    }

    .pain-list-modern {
        gap: 10px;
        padding: 20px;
        max-width: 100%;
    }

    .pain-item {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .what-is-list {
        gap: 10px;
        padding: 16px;
        max-width: 100%;
    }

    .what-is-item {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .coach-content {
        gap: 20px;
    }

    .coach-text h2 {
        font-size: 1.5rem;
    }

    .coach-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .day-cards {
        gap: 20px;
    }

    .day-card h3 {
        font-size: 1.3rem;
    }

    .day-card p {
        font-size: 0.9rem;
    }

    .outcomes-grid {
        gap: 16px;
        max-width: 100%;
    }

    .outcome-card {
        padding: 20px;
    }

    .outcome-card h3 {
        font-size: 1.1rem;
    }

    .outcome-card p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* Tablet breakpoint (600px and below) */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .info-cards-grid {
        gap: 12px;
    }

    .info-card {
        padding: 14px 18px;
    }

    .btn-hero {
        padding: 15px 32px;
        font-size: 0.98rem;
    }

    .pain-list-modern {
        padding: 24px;
    }

    .what-is-list {
        padding: 20px;
    }

    .coach-content {
        gap: 30px;
    }

    .coach-text h2 {
        font-size: 1.7rem;
    }

    .day-cards {
        gap: 24px;
    }

    .day-card h3 {
        font-size: 1.4rem;
    }

    .outcomes-grid {
        gap: 18px;
    }

    .outcome-card {
        padding: 22px;
    }

    .outcome-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .pain-section {
        padding: 80px 0;
    }

    .pain-intro {
        font-size: 1.1rem;
        margin: 32px auto 48px;
    }

    .insight-card {
        padding: 36px 28px;
    }

    .insight-card h3 {
        font-size: 1.35rem;
    }

    .pain-solution-card h3 {
        font-size: 2rem;
    }
}

/* ===== SECTION 3 — Transformation ===== */
.transformation {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 56px;
}

.transform-card {
    padding: 48px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.transform-card:hover {
    transform: translateY(-8px);
}

.transform-card.before {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.08);
}

.transform-card.before:hover {
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
}

.transform-card.before::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444, #f97316);
}

.transform-card.after {
    background: white;
    border: 2px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08), var(--shadow-lg);
}

.transform-card.after:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12), var(--shadow-2xl);
    border-color: rgba(16, 185, 129, 0.25);
}

.transform-card.after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-emerald);
}

.transform-card h3 {
    margin-bottom: 24px;
    font-size: 1.2rem;
    padding-left: 12px;
}

.transform-card.before h3 {
    color: #dc2626;
}

.transform-card.after h3 {
    color: var(--accent);
}

.transform-card ul {
    padding-left: 12px;
}

.transform-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.transform-card.before li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.transform-card.after li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.transformation-bottom {
    text-align: center;
    margin-top: 48px;
}

.transformation-bottom p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.transform-bold {
    font-size: 1.5rem !important;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION 4 — Why This Program Exists ===== */
.why-exists {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-exists::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.why-exists .section-title {
    color: white;
}

.why-exists .section-title::after {
    background: var(--gradient-emerald);
}

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

.why-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.why-highlight {
    font-size: 1.35rem !important;
    font-weight: 700;
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-top: 12px !important;
}

/* ===== SECTION 5 — Identity ===== */
/* ===== SECTION 5 — Identity ===== */
.identity {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.identity-grid {
    display: flex;
    gap: 20px;
    max-width: 100%;
    margin: 56px auto 0;
    overflow-x: auto;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
}

.identity-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 200px;
    flex: 1;
}

.identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.identity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

.identity-card:hover::before {
    opacity: 1;
}

.identity-icon-wrapper {
    flex-shrink: 0;
}

.identity-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.identity-content {
    flex: 1;
}

.identity-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.4;
}

.identity-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Identity CTA Section */
.identity-cta-section {
    margin-top: 72px;
    display: flex;
    justify-content: center;
}

.identity-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 56px;
    border-radius: var(--radius-2xl);
    text-align: center;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(102, 126, 234, 0.3);
}

.identity-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.identity-highlight h3 {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.highlight-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .identity-grid {
        gap: 16px;
    }

    .identity-card {
        min-width: 180px;
        padding: 28px 20px;
    }

    .identity-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .identity-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .identity {
        padding: 80px 0;
    }

    .identity-grid {
        gap: 12px;
        margin: 40px 0 0;
    }

    .identity-card {
        min-width: 160px;
        padding: 24px 16px;
    }

    .identity-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .identity-content h3 {
        font-size: 0.95rem;
    }

    .identity-highlight {
        padding: 32px 28px;
    }

    .identity-highlight h3 {
        font-size: 1.75rem;
    }
}

/* ===== SECTION 6 — Journey ===== */
.journey {
    padding: 100px 0;
    background: linear-gradient(180deg, #eef2ff 0%, #faf5ff 100%);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.journey-card {
    background: white;
    padding: 32px 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.15);
}

.journey-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    flex-shrink: 0;
    min-width: 60px;
}

.journey-card p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.journey-bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.journey-bottom span {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== SECTION 7 — Not Trading ===== */
.not-trading {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.not-trading-content {
    max-width: 1000px;
    margin: 64px auto 0;
}

.trading-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 64px;
}

.comparison-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 2px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dont-card::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.do-card::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.comparison-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.comparison-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
}

.dont-list,
.do-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.dont-list li,
.do-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.list-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    border-radius: 50%;
}

.dont-list .list-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.do-list .list-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

/* Comparison Divider */
.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bottom Message */
.not-trading-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 48px 48px;
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(102, 126, 234, 0.3);
}

.not-trading-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.not-trading-message h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.not-trading-message p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .trading-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-divider {
        display: none;
    }

    .comparison-card {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .not-trading {
        padding: 80px 0;
    }

    .trading-comparison {
        margin-bottom: 48px;
    }

    .comparison-card {
        padding: 28px 24px;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .dont-list li,
    .do-list li {
        font-size: 1rem;
    }

    .not-trading-message {
        padding: 36px 28px;
    }

    .not-trading-message h3 {
        font-size: 1.35rem;
    }

    .not-trading-message p {
        font-size: 1.1rem;
    }
}

/* ===== SECTION 8 — Creator ===== */
.creator {
    padding: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.creator-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55%;
    background-image: url('creator.png');
    background-size: cover;
    background-position: top center;
    opacity: 0.4;
    z-index: 1;
}

.creator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.95) 70%, rgba(15, 23, 42, 1) 100%);
    z-index: 2;
}

.creator-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100vh;
    position: relative;
    z-index: 3;
    padding: 0;
}

.creator-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 850;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.creator-name {
    margin-bottom: 24px;
}

.creator-name h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.creator-role {
    font-size: 1rem;
    color: rgba(251, 191, 36, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Creator Story Section */
.creator-story {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    padding-right: 24px;
}

.story-section {
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border-left: 4px solid rgba(251, 191, 36, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-section:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.story-section h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(251, 191, 36, 0.95);
    margin-bottom: 8px;
}

.story-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
}

.story-section strong {
    color: white;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .creator-photo-bg {
        width: 100%;
        opacity: 0.2;
    }

    .creator::before {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
    }

    .creator-container {
        justify-content: center;
    }

    .creator-story {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .creator {
        padding: 0;
        min-height: auto;
    }

    .creator-photo-bg {
        width: 100%;
        height: 300px;
        opacity: 0.25;
    }

    .creator-container {
        padding: 60px 0;
        min-height: auto;
    }

    .creator-story {
        max-width: 100%;
        margin: 0;
        padding: 0 24px;
    }

    .story-section {
        padding: 24px 28px;
    }

    .story-section h4 {
        font-size: 1.05rem;
    }

    .creator-name h3 {
        font-size: 1.5rem;
    }

    .creator-role {
        font-size: 0.95rem;
    }
}

/* ===== SECTION 9 — Pricing ===== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #eef2ff 0%, #faf5ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-cards-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 40px;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-card {
    max-width: 380px;
    flex: 0 1 380px;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15), 0 0 100px rgba(99, 102, 241, 0.12);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #6366f1, #8b5cf6) border-box;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(79, 70, 229, 0.2), 0 0 120px rgba(99, 102, 241, 0.18);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pricing-card:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px dashed var(--border);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features ul {
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--gradient-emerald);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 24px;
    font-size: 1rem;
    padding: 16px 18px;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* ===== SECTION 10 — Future Self Close ===== */
.future-self {
    padding: 120px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.future-self::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.future-self::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.future-self h2 {
    color: white;
    margin-bottom: 28px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.future-self>.container>p {
    opacity: 0.92;
    max-width: 650px;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    position: relative;
    line-height: 1.8;
}

.future-bold {
    font-weight: 700 !important;
    opacity: 1 !important;
    margin-bottom: 40px !important;
}

.future-self .btn {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-xl), 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.future-self .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl), 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* ===== SECTION 11 — FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--background);
}

.faq-grid {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gradient-primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 32px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* ===== Responsive — Tablet ===== */
@media (min-width: 640px) {
    .transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .identity-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-trust {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

    .pricing-cards-wrapper {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .pricing-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        flex: 1;
    }
}

/* ===== Responsive — Desktop ===== */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero {
        padding: 180px 0 140px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .creator-content {
        flex-direction: row;
        text-align: left;
    }

    .creator-info {
        text-align: left;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-cta {
    animation-delay: 0.4s;
}

.hero-trust {
    animation-delay: 0.5s;
}

/* Scroll Animations */
.journey-card,
.identity-item,
.transform-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-card.visible,
.identity-item.visible,
.transform-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.journey-card:nth-child(1),
.identity-item:nth-child(1),
.transform-card:nth-child(1) {
    transition-delay: 0s;
}

.journey-card:nth-child(2),
.identity-item:nth-child(2),
.transform-card:nth-child(2) {
    transition-delay: 0.1s;
}

.journey-card:nth-child(3),
.identity-item:nth-child(3) {
    transition-delay: 0.2s;
}

.journey-card:nth-child(4),
.identity-item:nth-child(4) {
    transition-delay: 0.3s;
}

.journey-card:nth-child(5),
.identity-item:nth-child(5) {
    transition-delay: 0.4s;
}

.journey-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Payment Loading */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    margin-left: 12px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scrollbar & Selection */
::selection {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-dark);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ===== WhatsApp CTA ===== */
.whatsapp-cta {
    position: fixed;
    top: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 999;
    color: white;
    animation: scalePulse 2s ease-in-out infinite;
}

body.menu-open .whatsapp-cta {
    z-index: 10;
    pointer-events: none;
}

.whatsapp-cta:hover {
    background: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    animation: none;
}

.whatsapp-cta:active {
    transform: scale(0.95);
}

@keyframes scalePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-cta svg {
    width: 32px;
    height: 32px;
}

.whatsapp-cta span {
    display: none;
}

/* Mobile - Show tooltip on smaller screens */
@media (max-width: 768px) {
    .whatsapp-cta {
        width: 56px;
        height: 56px;
        top: 90px;
        left: 20px;
    }

    .whatsapp-cta svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== NEW STYLES FOR CONVERSATION MASTERY BLUEPRINT ===== */

/* Hero Hook */
.hero-hook {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.08);
}

.hero-hook p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 8px;
}

.hero-hook .hook-emphasis {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

/* Pain Section Modern List */
.pain-list-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 56px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.9) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.08);
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pain-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.15);
}

.pain-item:hover::before {
    transform: scaleY(1);
}

.pain-bullet {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: var(--radius);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pain-bullet::after {
    content: '!';
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
}

.pain-item p {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.pain-consequence {
    text-align: center;
    margin-bottom: 56px;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.06) 0%, rgba(239, 68, 68, 0.02) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(239, 68, 68, 0.12);
    position: relative;
    overflow: hidden;
}

.pain-consequence::before {
    content: '😔';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    opacity: 0.15;
}

.pain-consequence p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 4px;
}

.pain-consequence p:first-child {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pain-solution-card h3 {
    margin-bottom: 12px;
}

.pain-solution-card .solution-emphasis {
    font-size: 1.35rem !important;
    font-weight: 700;
    margin-top: 20px !important;
    display: block;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* What Is Content */
.what-is-content {
    max-width: 800px;
    margin: 56px auto 0;
    text-align: center;
}

.what-is-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.9;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(99, 102, 241, 0.15);
}

.what-is-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 56px;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.06);
}

.what-is-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.what-is-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.03));
    opacity: 0;
    transition: var(--transition);
}

.what-is-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
}

.what-is-item:hover::after {
    opacity: 1;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}

.what-is-item span:last-child {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    text-align: left;
}

.what-is-disclaimer {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
    padding: 36px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.12);
    position: relative;
    overflow: hidden;
}

.what-is-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.what-is-disclaimer p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.9;
}

.what-is-disclaimer .disclaimer-emphasis {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

/* Program Structure - Day Cards */
.program-structure {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4ff 50%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.program-structure::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.program-structure::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.day-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 72px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.day-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.day-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.15);
}

.day-card:hover::before {
    transform: scaleX(1);
}

.day-header {
    background: var(--gradient-primary);
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.day-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.day-number {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.85;
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
}

.day-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.day-content {
    padding: 32px;
}

.day-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.7;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.day-content ul {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.day-content li {
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.5;
    background: white;
    margin-bottom: 4px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.day-content li:last-child {
    margin-bottom: 0;
}

.day-content li:hover {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    transform: translateX(4px);
}

.day-content li::before {
    content: '✓';
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.day-highlight {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 24px;
    position: relative;
}

.day-highlight::before {
    content: '💡';
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.25rem;
    background: white;
    padding: 0 8px;
}

.day-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 8px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(99, 102, 241, 0.15);
}

.day-bottom p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.day-bottom .emphasis {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .day-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .day-card {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Outcomes Section */
.outcomes-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.outcomes-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.outcomes-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.outcomes-section .section-title {
    color: white;
}

.outcomes-section .section-title::after {
    background: var(--gradient-emerald);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.4);
}

.outcomes-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.outcome-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.outcome-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.outcome-card:hover::before {
    opacity: 1;
}

.outcome-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.outcome-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Life Impact Section */
.life-impact {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.life-impact::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.impact-content {
    max-width: 720px;
    margin: 56px auto 0;
    text-align: center;
}

.impact-intro {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.4;
}

.impact-list {
    margin-bottom: 48px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-list p {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    padding: 18px 24px 18px 56px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.impact-list p:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.15);
}

.impact-list p::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--gradient-emerald);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.impact-highlight {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.impact-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

/* Not For Everyone Section */
.not-for-everyone {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.not-for-content {
    max-width: 720px;
    margin: 56px auto 0;
}

.dont-join-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 48px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(239, 68, 68, 0.12);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.08);
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
}

.dont-join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.dont-join-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dont-join-card h3::before {
    content: '⚠️';
    font-size: 1.2rem;
}

.dont-join-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: var(--radius-lg);
}

.dont-join-card li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(239, 68, 68, 0.06);
}

.dont-join-card li:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    transform: translateX(4px);
    border-color: rgba(239, 68, 68, 0.12);
}

.x-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid rgba(239, 68, 68, 0.15);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

.for-whom {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.for-whom p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 8px;
}

.for-whom-emphasis {
    font-size: 1.5rem !important;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 12px !important;
    display: block;
}

/* Final Message Section */
.final-message {
    padding: 140px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.final-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    margin-bottom: 8px;
}

.final-emphasis {
    font-size: 1.65rem !important;
    font-weight: 800;
    color: white !important;
    margin: 28px 0 !important;
    display: block;
}

.final-highlight {
    font-size: 1.35rem !important;
    margin-top: 40px !important;
    padding: 28px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Apply Section */
.apply-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 40%, #c7d2fe 100%);
    position: relative;
    overflow: hidden;
}

.apply-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.apply-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.apply-content {
    max-width: 700px;
    margin: 56px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

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

.apply-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.08);
    transition: var(--transition);
}

.apply-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.apply-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.apply-item span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.apply-message {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    line-height: 1.5;
    padding: 24px 16px;
    position: relative;
}

.apply-message::before {
    content: '✨';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

.apply-section .btn {
    font-size: 1.2rem;
    padding: 22px 64px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.apply-section .btn:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.apply-section .cta-button {
    font-size: 1.15rem;
    padding: 20px 56px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35);
}

@media (max-width: 768px) {
    .pain-list-modern {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }

    .pain-item {
        padding: 14px 16px;
    }

    .what-is-list {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .what-is-item {
        padding: 14px 16px;
    }

    .what-is-intro {
        padding: 16px 20px;
        font-size: 1.05rem;
    }

    .day-header {
        padding: 24px;
    }

    .day-content {
        padding: 24px;
    }

    .day-content ul {
        padding: 6px;
    }

    .day-content li {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .outcome-card {
        padding: 24px;
    }

    .dont-join-card {
        padding: 28px 20px;
    }

    .dont-join-card li {
        padding: 14px 16px;
    }

    .impact-list p {
        padding: 16px 20px 16px 52px;
        font-size: 0.95rem;
    }

    .impact-list p::before {
        left: 14px;
        width: 26px;
        height: 26px;
    }

    .final-message {
        padding: 80px 0;
    }

    .final-content h2 {
        font-size: 1.75rem;
    }

    .final-content p {
        font-size: 1.1rem;
    }

    .final-emphasis {
        font-size: 1.35rem !important;
    }

    .final-highlight {
        padding: 20px 24px;
        font-size: 1.15rem !important;
    }

    .apply-section {
        padding: 100px 0;
    }

    .apply-content {
        padding: 32px 20px;
        margin-top: 40px;
    }

    .apply-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .apply-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px 20px;
    }

    .apply-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .apply-message {
        font-size: 1.15rem;
        padding: 20px 12px;
    }

    .apply-section .btn {
        padding: 18px 40px;
        font-size: 1.05rem;
        width: 100%;
    }

    .apply-section .cta-button {
        padding: 18px 40px;
        font-size: 1.05rem;
    }
}

/* ===== Sticky Bottom CTA Bar ===== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    transform: translateY(100%);
    transition: var(--transition-fast);
}

body.menu-open .sticky-cta-bar {
    z-index: 10;
    pointer-events: none;
}

.sticky-cta-bar.show {
    transform: translateY(0);
}

.sticky-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-price-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sticky-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.original-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.urgency-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ef4444;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.btn-sticky {
    padding: 16px 40px;
    font-size: 1.05rem;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.close-sticky-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.close-sticky-btn:hover {
    color: white;
    opacity: 1;
    transform: scale(1.2);
}

.close-sticky-btn:active {
    transform: scale(0.95);
}

.sticky-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Mobile sticky bar */
@media (max-width: 768px) {
    .sticky-cta-bar {
        padding: 12px 0;
    }

    .sticky-cta-container {
        flex-direction: column;
        gap: 12px;
    }

    .sticky-price-info {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        width: 100%;
    }

    .sticky-price {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .sticky-actions {
        width: 100%;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .btn-sticky {
        flex: 1;
    }

    .close-sticky-btn {
        align-self: center;
        padding: 6px 8px;
    }

    .current-price {
        font-size: 1.25rem;
    }

    .urgency-text {
        font-size: 0.85rem;
    }

    .btn-sticky {
        width: 100%;
        padding: 14px 32px;
    }

    /* Adjust body padding for sticky bar */
    body {
        padding-bottom: 140px;
    }
}

@media (min-width: 769px) {
    body {
        padding-bottom: 80px;
    }
}

/* Hero responsive for new layout */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .info-cards-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-hero {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-top-badge {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .info-card {
        padding: 16px 20px;
    }

    .btn-hero {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Coach section responsive */
@media (max-width: 900px) {
    .coach-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .coach-image-wrapper {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .coach-bio {
        text-align: left;
    }

    .coach-bio p:first-child {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .coach-bio p:last-child {
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }
}

@media (max-width: 768px) {
    .coach-section {
        padding: 80px 0;
    }

    .coach-bio p {
        font-size: 0.95rem;
        padding: 16px 20px;
    }
}

/* ===== Lead Capture Modal ===== */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.25s ease;
    padding: 16px;
}

.lead-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.lead-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px 28px;
    max-width: 380px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.08);
    transform: scale(0.95) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    opacity: 0;
}

.lead-modal-overlay.active .lead-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.lead-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.lead-modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.lead-modal-content {
    text-align: left;
}

.lead-modal-header {
    margin-bottom: 20px;
    text-align: left;
}

.lead-modal-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.lead-modal-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.lead-modal-header>p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lead-form .form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.lead-form .form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #f8fafc;
    color: var(--text-primary);
}

.lead-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.lead-form .form-group input::placeholder {
    color: #94a3b8;
}

.lead-form .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #f8fafc;
    color: var(--text-primary);
    resize: none;
    min-height: 56px;
}

.lead-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.lead-form .form-group textarea::placeholder {
    color: #94a3b8;
}

.btn-lead {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 4px;
    letter-spacing: 0.01em;
}

.lead-privacy {
    margin-top: 8px;
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.lead-form-success {
    text-align: center;
    padding: 16px 0;
}

.lead-form-success h4 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 700;
}

.lead-form-success p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

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

.newsletter-header {
    margin-bottom: 48px;
}

.newsletter-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.newsletter-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-bottom: 40px;
}

.newsletter-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    align-items: end;
}

.newsletter-form .form-group {
    text-align: left;
}

.newsletter-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.newsletter-form .form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25);
}

.newsletter-problem-group {
    grid-column: 1 / -1;
}

.btn-newsletter {
    grid-column: 1 / -1;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

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

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
    background: var(--gradient-primary-hover);
}

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

.newsletter-privacy {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.newsletter-benefit:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 32px;
}

.newsletter-benefit span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-success {
    text-align: center;
    padding: 40px 20px;
}

.newsletter-success h4 {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.newsletter-success p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .newsletter-benefit {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .newsletter-header p {
        font-size: 1rem;
    }

    .newsletter-form .form-group input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .btn-newsletter {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ===== Review Section ===== */
.review-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

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

.review-header {
    margin-bottom: 48px;
}

.review-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.review-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.review-form {
    margin-bottom: 40px;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
    align-items: end;
}

.review-form .form-group {
    text-align: left;
}

.review-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.review-form .form-group input,
.review-form .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.review-form .form-group input::placeholder,
.review-form .form-group textarea::placeholder {
    color: var(--text-muted);
}

.review-form .form-group input:focus,
.review-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.review-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.review-message-group {
    grid-column: 1 / -1;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    justify-content: flex-end;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px;
    margin: 0;
}

.rating-input input[type="radio"]:checked~label,
.rating-input label:hover,
.rating-input label:hover~label {
    color: #fbbf24;
    transform: scale(1.1);
}

.btn-review {
    grid-column: 1 / -1;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

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

.btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
    background: var(--gradient-primary-hover);
}

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

.review-privacy {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.review-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.review-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.review-benefit:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.review-benefit .benefit-icon {
    font-size: 1.5rem;
    min-width: 32px;
}

.review-benefit span {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.review-success {
    text-align: center;
    padding: 40px 20px;
}

.review-success h4 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.review-success p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design for Review Section */
@media (max-width: 768px) {
    .review-section {
        padding: 60px 0;
    }

    .review-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-benefit {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .review-section {
        padding: 40px 0;
    }

    .review-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .review-header p {
        font-size: 1rem;
    }

    .review-form .form-group input,
    .review-form .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .btn-review {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .rating-input label {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-primary {
        width: 100%;
    }

    .btn-newsletter {
        width: 100%;
    }

    .btn-lead {
        width: 100%;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Lead Modal */
    .lead-modal {
        padding: 24px 20px 20px;
        max-width: 340px;
        border-radius: 16px;
    }

    .lead-modal-content h3 {
        font-size: 1.2rem;
    }

    .lead-modal-header>p {
        font-size: 0.8rem;
    }

    .lead-form .form-group input,
    .lead-form .form-group textarea {
        padding: 9px 12px;
        font-size: 0.88rem;
    }

    .lead-form .form-group label {
        font-size: 0.74rem;
    }

    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-text h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .newsletter-form .form-group input,
    .newsletter-form .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .newsletter-form .form-hint {
        font-size: 0.75rem;
    }

    /* Apply Section */
    .apply-section {
        padding: 40px 0;
    }

    .apply-section h2 {
        font-size: 1.5rem;
    }

    .apply-details {
        gap: 10px;
    }

    .apply-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .apply-form h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .form-hint {
        font-size: 0.75rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section ul li {
        font-size: 0.9rem;
    }

    /* General */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   DSA ROADMAP LANDING PAGE — NEW SECTION STYLES
   ========================================================================== */

/* ===== HERO — Stats & CTA Group ===== */
.hero-cta-group {
    text-align: center;
    margin-bottom: 56px;
}

.hero-pricing {
    margin-bottom: 24px;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-description {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 600;
}

.hero-cta-group .btn-hero {
    display: inline-flex;
    width: auto;
    min-width: 320px;
    padding: 22px 56px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4),
        0 0 0 0 rgba(99, 102, 241, 0);
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5), 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

.hero-cta-group .btn-hero:hover {
    animation: none;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.5);
}

.hero-subtext {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
    transition: var(--transition);
    min-width: 130px;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #eef2ff 70%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 56px rgba(99, 102, 241, 0.14);
    border-color: rgba(99, 102, 241, 0.18);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.25rem;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FEATURES / DELIVERABLES SECTION ===== */
.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.features-section .section-title {
    color: white;
}

.features-section .section-title::after {
    background: var(--gradient-emerald);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.4);
}

.features-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.deliverable-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deliverable-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.deliverable-card:hover::before {
    opacity: 1;
}

.deliverable-icon {
    font-size: 2.25rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.deliverable-card:hover .deliverable-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}

.deliverable-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.deliverable-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: flex;
    gap: 28px;
    margin-top: 56px;
    animation: testimonialScroll 60s linear infinite;
    width: max-content;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 14px));
    }
}

/* Wrapper to handle overflow */
.testimonials-section .container {
    overflow: hidden;
    position: relative;
}

.testimonials-section .section-title {
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
}

.testimonials-section .container::before,
.testimonials-section .container::after {
    content: '';
    position: absolute;
    top: 80px;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-section .container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 40%, transparent 100%);
}

.testimonials-section .container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.8) 40%, transparent 100%);
}

/* Touch scrolling for mobile */
@media (max-width: 768px) {
    .testimonials-section .container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .testimonials-grid {
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        scroll-snap-align: start;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 0 0 380px;
    min-height: 200px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.15);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

.quote-mark {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-author::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.social-proof-stats {
    text-align: center;
    margin-top: 48px;
    padding: 28px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-stats p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-proof-stats strong {
    color: var(--primary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
}

.faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 56px auto 0;
}

.faq-section .faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 32px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-section .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.faq-section .faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.15);
}

.faq-section .faq-item:hover::before {
    transform: scaleY(1);
}

.faq-section .faq-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    padding-left: 12px;
}

.faq-section .faq-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    padding-left: 12px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cta-pricing {
    margin-bottom: 32px;
    text-align: center;
}

.cta-price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-price-description {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    font-weight: 600;
}

.btn-cta-main {
    display: inline-flex;
    padding: 22px 64px;
    font-size: 1.2rem;
    font-weight: 700;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.btn-cta-main:hover::before {
    transform: translateX(100%);
}

.cta-subtext {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== LEAD MODAL SELECT DROPDOWN ===== */
.lead-form .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #f8fafc;
    color: var(--text-primary);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.lead-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

/* ==========================================================================
   DSA RESPONSIVE — ALL NEW SECTIONS
   ========================================================================== */

/* Desktop Large */
@media (min-width: 1200px) {
    .benefits-grid {
        gap: 32px;
    }

    .deliverables-grid {
        gap: 28px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        animation-duration: 45s;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .faq-section .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-item {
        padding: 20px 28px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Mobile / Small Tablet */
@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .features-section {
        padding: 80px 0;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .deliverable-card {
        padding: 28px 24px;
    }

    .deliverable-icon {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        animation-duration: 30s;
        gap: 16px;
    }

    .testimonial-card {
        flex: 0 0 240px;
        padding: 28px 24px;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-section .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-section .faq-item {
        padding: 24px 20px;
    }

    .final-cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content>p {
        font-size: 1rem;
    }

    .cta-features {
        gap: 10px;
    }

    .cta-feature {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .btn-cta-main {
        padding: 18px 44px;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group .btn-hero {
        min-width: auto;
        width: 100%;
        max-width: 360px;
        padding: 18px 40px;
        font-size: 1.05rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-description {
        font-size: 0.9rem;
    }

    .cta-price-amount {
        font-size: 2rem;
    }

    .cta-price-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-item {
        padding: 16px 24px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .social-proof-stats {
        padding: 20px 24px;
    }

    .social-proof-stats p {
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .benefits-section,
    .features-section,
    .testimonials-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .deliverable-card {
        padding: 24px 20px;
    }

    .deliverable-card h3 {
        font-size: 1.05rem;
    }

    .deliverable-card p {
        font-size: 0.88rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        animation-duration: 25s;
        gap: 12px;
        margin-top: 40px;
    }

    .testimonial-card {
        flex: 0 0 220px;
        min-height: 140px;
        padding: 20px 16px;
    }

    .testimonial-header {
        margin-bottom: 16px;
    }

    .quote-mark {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }

    .testimonials-section .container::before,
    .testimonials-section .container::after {
        width: 60px;
    }

    .testimonials-section .container::before {
        background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.9) 60%, transparent 100%);
    }

    .testimonials-section .container::after {
        background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.9) 60%, transparent 100%);
    }

    .faq-section .faq-item {
        padding: 20px 16px;
    }

    .faq-section .faq-item h3 {
        font-size: 0.95rem;
        padding-left: 8px;
    }

    .faq-section .faq-item p {
        font-size: 0.88rem;
        padding-left: 8px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .cta-feature {
        width: 100%;
        text-align: center;
    }

    .btn-cta-main {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 12px;
    }

    .stat-item {
        flex: 1;
        padding: 14px 12px;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-subtext {
        font-size: 0.8rem;
    }
}