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

:root {
    --gold: #FFC300;
    --gold-light: #FFD740;
    --gold-dark: #E5AF00;
    --purple: #370C7B;
    --purple-light: #5A2DA0;
    --purple-dark: #250854;
    --purple-deeper: #1A0640;
    --white: #FFFFFF;
    --gray-50: #F8F7FC;
    --gray-100: #F0EEF5;
    --gray-200: #E0DCE8;
    --gray-300: #C5BFD6;
    --gray-400: #9A91B3;
    --gray-500: #6E6589;
    --gray-600: #4A4260;
    --gray-700: #2D2640;
    --gray-800: #1A1528;
    --gray-900: #0D0A14;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(55, 12, 123, 0.08);
    --shadow-md: 0 8px 30px rgba(55, 12, 123, 0.12);
    --shadow-lg: 0 20px 60px rgba(55, 12, 123, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 195, 0, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: var(--purple-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .proof-track { animation: none !important; }
    .hero-orb { animation: none !important; }
    .badge-dot { animation: none !important; }
    .btn-glow { animation: none !important; }
    .scroll-line { animation: none !important; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--purple-dark);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transform: translateY(-50%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--purple-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-rotate-wrap {
    display: block;
    height: 1.25em;
    overflow: visible;
    position: relative;
    white-space: nowrap;
}

.text-rotate {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(6px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-rotate.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.text-rotate.exit {
    opacity: 0;
    transform: translateY(-40px) scale(0.97);
    filter: blur(6px);
    transition: all 0.5s cubic-bezier(0.7, 0, 0.84, 0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(55, 12, 123, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo-img {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-menu a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
    color: var(--gray-600);
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--purple);
    background: var(--gray-50);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--purple-dark) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl) !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--purple-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--purple-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.4);
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.4); }
    50% { box-shadow: 0 0 20px 8px rgba(255, 195, 0, 0.15); }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 195, 0, 0.1);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 40%, var(--purple-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.3), transparent);
    top: -200px;
    right: -100px;
    animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 45, 160, 0.5), transparent);
    bottom: -100px;
    left: -100px;
    animation: float-orb 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.15), transparent);
    top: 50%;
    left: 50%;
    animation: float-orb 12s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-logos {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    border-radius: 2px;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

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

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--gray-50);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

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

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(55, 12, 123, 0.08), rgba(255, 195, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--purple);
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--purple-dark);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.problem-card-cta {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-cta::before { display: none; }

.problem-cta-content {
    text-align: center;
}

.problem-card-cta h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.problem-card-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.problem-card-cta:hover {
    transform: translateY(-4px);
}

/* ===== GUIDE SECTION ===== */
.guide-section {
    background: var(--white);
}

.guide-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.guide-visual {
    position: relative;
}

.guide-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.guide-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.guide-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 195, 0, 0.2), transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
}

.guide-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl);
    z-index: 1;
}

.guide-initials {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.1em;
    z-index: 1;
}

.guide-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 3;
}

.guide-float-card svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.float-card-1 {
    top: 10%;
    right: -24px;
    animation: float-card 4s ease-in-out infinite;
}

.float-card-2 {
    bottom: 15%;
    left: -24px;
    animation: float-card 4s ease-in-out infinite 1s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.guide-content .section-label {
    text-align: left;
}

.guide-content .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.guide-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

.highlight-text {
    color: var(--purple);
    font-weight: 500;
    background: linear-gradient(135deg, rgba(55, 12, 123, 0.05), rgba(255, 195, 0, 0.05));
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    margin: 24px 0;
}

.guide-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.credential-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(55, 12, 123, 0.08), rgba(255, 195, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple);
}

.credential strong {
    display: block;
    font-size: 0.95rem;
    color: var(--purple-dark);
    font-weight: 600;
}

.credential span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ===== PLAN SECTION ===== */
.plan-section {
    background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 50%, var(--purple-light) 100%);
}

.plan-section .section-label {
    color: var(--gold);
}

.plan-section .section-label::before {
    background: var(--gold);
}

.plan-section .section-title {
    color: var(--white);
}

.plan-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.plan-steps {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-step {
    flex: 1;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 195, 0, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.step-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    height: calc(100% - 80px);
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 195, 0, 0.3);
    transform: translateY(-4px);
}

.step-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 195, 0, 0.2), rgba(255, 195, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.step-connector {
    display: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-card-content {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.cta-card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

/* ===== STAKES SECTION ===== */
.stakes-section {
    background: var(--gray-50);
    padding: 100px 0;
}

.stakes-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

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

.stakes-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stakes-icon-fail {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.stakes-icon-win {
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
}

.stakes-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.stakes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stakes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.stakes-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DC2626;
    margin-top: 8px;
    flex-shrink: 0;
    opacity: 0.6;
}

.stakes-list-success li::before {
    background: #16A34A;
}

.stakes-divider {
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.stakes-vs {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: 2px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

/* ===== RESULTS SECTION ===== */
.results-section {
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.result-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    transform: scaleX(0);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.result-card:hover::after {
    transform: scaleX(1);
}

.result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(55, 12, 123, 0.08), rgba(255, 195, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--purple);
}

.result-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--purple-dark);
}

.result-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), rgba(255, 195, 0, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.service-tags li {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--purple);
    background: rgba(55, 12, 123, 0.06);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
}

/* ===== PROOF / MARQUEE SECTION ===== */
.proof-section {
    background: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.proof-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.proof-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 32px;
    white-space: nowrap;
    flex-shrink: 0;
}

.proof-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-400);
    font-weight: 400;
}

.proof-stat {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--purple-dark);
    text-align: left;
    transition: var(--transition);
}

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

.faq-chevron {
    transition: var(--transition);
    color: var(--gray-400);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.cta-final-section {
    background: linear-gradient(135deg, var(--purple-deeper), var(--purple));
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.15), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-final-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 45, 160, 0.3), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-final-content {
    position: relative;
    z-index: 2;
}

.cta-final-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-final-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto 36px;
}

.cta-final-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.social-link:hover {
    color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding: 48px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 8px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

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

.footer-legal a {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }

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

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

    .plan-steps {
        flex-direction: column;
        gap: 24px;
    }

    .guide-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .guide-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 6, 64, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 14px 24px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero { min-height: 100svh; }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .trust-logos {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

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

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

    .stakes-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stakes-divider {
        padding-top: 0;
        justify-content: center;
    }

    .guide-layout {
        gap: 32px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.7rem;
    }

    .plan-steps .step-number {
        font-size: 3rem;
    }
}
