/* ================================
   StockSense Pulse Pro - World-Class Conversion Landing Page
   Mobile-First • High Conversion • Premium Design
================================ */

/* CSS Variables */
:root {
    --primary: #0a0f1e;
    --primary-light: #111827;
    --accent: #10b981;
    --accent-dark: #059669;
    --accent-glow: rgba(16, 185, 129, 0.3);
    --cta: #f97316;
    --cta-dark: #ea580c;
    --cta-glow: rgba(249, 115, 22, 0.4);
    --cta-light: #ffedd5;
    --danger: #ef4444;
    --gold: #fbbf24;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 0.875rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.75rem;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-cta: 0 8px 32px rgba(249, 115, 22, 0.5), 0 2px 8px rgba(249, 115, 22, 0.3);
    --shadow-cta-hover: 0 16px 48px rgba(249, 115, 22, 0.6), 0 4px 16px rgba(249, 115, 22, 0.4);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.125rem;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.logo-tagline {
    font-size: 0.5625rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.nav-menu {
    display: none;
}

.nav-actions {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 2rem;
    }

    .nav-menu a {
        font-weight: 500;
        color: var(--gray-600);
        font-size: 0.9375rem;
        transition: var(--transition);
    }

    .nav-menu a:hover {
        color: var(--gray-900);
    }

    .nav-actions {
        display: flex;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-menu.active a {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ============================================
   BUTTONS - The Most Critical Element
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97) !important;
}

/* PRIMARY CTA - HIGH CONTRAST ORANGE */
.btn-primary {
    background: linear-gradient(135deg, #ff8c00 0%, var(--cta) 40%, #e85d00 100%);
    color: white;
    box-shadow: var(--shadow-cta);
    border: none;
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta-hover);
}

/* OUTLINE SECONDARY */
.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--gray-500);
    background: var(--gray-50);
    transform: translateY(-2px);
}

/* XL CTA Button */
.btn-xl {
    flex-direction: column;
    padding: 1.125rem 2rem;
    width: 100%;
    border-radius: var(--radius-2xl);
    gap: 0.25rem;
}

.btn-xl .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.btn-xl .btn-icon {
    font-size: 1.25rem;
}

.btn-xl .btn-label {
    white-space: normal;
    word-break: keep-all;
}

.btn-xl .btn-arrow {
    transition: transform 0.2s ease;
}

.btn-xl:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-xl .btn-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.88;
    flex-wrap: wrap;
}

.btn-xl .btn-subtext .price {
    font-weight: 700;
}

.btn-xl .btn-subtext .divider {
    opacity: 0.5;
}

.btn-block {
    width: 100%;
}

/* Pulse animation for main CTA */
.pulse-btn {
    animation: pulseBorder 2.5s ease-in-out infinite;
}

@keyframes pulseBorder {

    0%,
    100% {
        box-shadow: var(--shadow-cta);
    }

    50% {
        box-shadow: var(--shadow-cta-hover), 0 0 0 8px rgba(249, 115, 22, 0.08);
    }
}

@keyframes fire-flicker {

    0%,
    100% {
        transform: scale(1) rotate(-3deg);
    }

    50% {
        transform: scale(1.2) rotate(3deg);
    }
}

.btn-icon {
    display: inline-block;
    animation: fire-flicker 1.5s infinite;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    padding-top: 58px;
    background: linear-gradient(160deg, #020617 0%, #0a0f1e 40%, #0c1a2e 70%, #061410 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Animated BG */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.15);
    top: -80px;
    left: -80px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(249, 115, 22, 0.1);
    bottom: -40px;
    right: -40px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {

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

    50% {
        transform: translate(20px, -20px);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 0;
}

/* Mobile: stack vertically, video first on mobile */
.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
        padding: 3rem 0;
    }

    .hero-text-col {
        flex: 1;
    }

    .hero-video-col {
        flex: 1;
    }
}

/* Problem Label */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
}

.hero-label-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Headline */
.hero-headline {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-headline .text-accent {
    background: linear-gradient(135deg, #34d399 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheadline */
.hero-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.125rem;
    line-height: 1.65;
}

.hero-promise {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-promise strong {
    color: rgba(255, 255, 255, 0.95);
}

/* Social Proof Row */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -8px;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-stars {
    color: var(--gold);
    font-size: 0.875rem;
}

.proof-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.proof-count strong {
    color: white;
}

/* Scarcity Bar */
.scarcity-bar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.scarcity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.scarcity-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
}

.scarcity-count {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.875rem;
}

.scarcity-progress {
    background: rgba(255, 255, 255, 0.12);
    height: 7px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.scarcity-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, #f59e0b 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.scarcity-footer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   HERO VIDEO COLUMN
============================================ */
.hero-video-col {
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 32px 80px rgba(0, 0, 0, 0.5);
    background: #000;
}

.youtube-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Below Video */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
}

.trust-badge svg {
    color: var(--accent);
}

/* Hero Bottom Pb */
.hero-bottom-pb {
    padding-bottom: 3rem;
}

/* ============================================
   STICKY BOTTOM CTA (Mobile)
============================================ */
.sticky-cta-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: none;
    padding: 0.625rem 0.875rem;
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.sticky-cta-container.visible {
    display: block;
}

.sticky-cta-content {
    display: block;
}

.sticky-cta-content .btn {
    width: 100%;
    padding: 0.9375rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: var(--radius-xl);
}

.sticky-cta-price {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin-top: 0.3rem;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .sticky-cta-container {
        display: none !important;
    }
}

/* ============================================
   SECTION COMMON
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.section-title {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
}

/* ============================================
   PROBLEM SECTION
============================================ */
.problem-section {
    padding: 4rem 0;
    background: white;
}

.problems-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .problems-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .problem-card.featured {
        grid-column: span 2;
    }
}

.problem-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.375rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: var(--transition);
}

.problem-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.problem-card.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.problem-icon {
    font-size: 2rem;
}

.problem-content h3 {
    font-size: 1.0625rem;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}

.problem-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.problem-visual {
    flex-shrink: 0;
}

.clock-visual {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.clock-time {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    background: white;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.clock-time.problem {
    color: var(--danger);
}

.clock-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.problem-math {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--gray-200);
}

.math-item {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.math-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.problem-pain {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.pain-text {
    font-style: italic;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.problem-cost {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.07);
    border-radius: var(--radius-md);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.cost-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.cost-amount {
    display: block;
    font-weight: 700;
    color: var(--danger);
}

.problem-quote {
    font-size: 0.9375rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.problem-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(16, 185, 129, 0.3);
}

.answer-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* ============================================
   SOCIAL PROOF MARQUEE
============================================ */
.social-proof-section {
    padding: 2.5rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.social-proof-title {
    font-size: 0.9375rem;
    color: var(--gray-700);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.25rem;
}

.users-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
    width: 100%;
}

.users-row {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    will-change: transform;
}

.user-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4375rem 0.875rem;
    background: white;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* ============================================
   STORY / TRANSFORMATION
============================================ */
.story-section {
    padding: 4rem 0;
    background: white;
}

.story-wrapper {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.story-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.story-title {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    color: var(--gray-900);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.story-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
    }
}

.story-column {
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: left;
}

.story-column.before {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.02);
}

.story-column.after {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.02);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.story-icon {
    font-size: 1.5rem;
}

.story-header h3 {
    font-size: 1rem;
    color: var(--gray-900);
}

.story-list {
    margin-bottom: 1rem;
}

.story-list li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
}

.story-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gray-400);
}

.story-result {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.story-result.negative {
    background: rgba(239, 68, 68, 0.07);
}

.story-result.positive {
    background: rgba(16, 185, 129, 0.08);
}

.result-text {
    display: block;
    font-weight: 600;
}

.story-result.negative .result-text {
    color: var(--danger);
}

.story-result.positive .result-text {
    color: var(--accent-dark);
}

.story-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1.5rem;
    color: var(--gray-400);
}

/* ============================================
   SOLUTION SECTION
============================================ */
.solution-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.framework-container {
    max-width: 860px;
    margin: 0 auto;
}

.framework-header {
    text-align: center;
    margin-bottom: 2rem;
}

.framework-header h3 {
    font-size: 1.1875rem;
    color: var(--gray-900);
}

.framework-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .framework-steps {
        flex-direction: row;
    }
}

.framework-step {
    flex: 1;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.framework-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.step-icon {
    font-size: 2rem;
    margin: 0.75rem 0;
}

.step-content h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.differentiator {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.differentiator h3 {
    text-align: center;
    font-size: 1.1875rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.diff-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .diff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.diff-item {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.diff-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.diff-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.diff-item h4 {
    font-size: 0.9375rem;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}

.diff-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ============================================
   BONUS SECTION
============================================ */
.bonus-section {
    padding: 4rem 0;
    background: linear-gradient(160deg, #0a0f1e 0%, #0d1f1a 50%, #0a1510 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-title {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.bonus-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.bonus-note {
    font-size: 0.875rem;
    color: var(--gold);
}

.bonus-note strong {
    color: var(--gold);
}

.bonus-content {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .bonus-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.bonus-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

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

.bonus-features {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.bonus-features h3 {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: white;
}

.bonus-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-feature {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.bonus-feature .feature-icon {
    font-size: 1.375rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-feature .feature-content h4 {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 0.2rem;
}

.bonus-feature .feature-content p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.bonus-exclusive {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.bonus-exclusive p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.25rem;
}

.bonus-exclusive strong {
    color: var(--gold);
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    padding: 4rem 0;
    background: white;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
    .price-comparison {
        flex-direction: row;
        justify-content: center;
    }
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.comparison-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.comparison-price.bad {
    color: var(--danger);
}

.comparison-price.good {
    color: var(--accent-dark);
}

.comparison-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.comparison-vs {
    color: var(--gray-400);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Pricing Card - The Star */
.pricing-card.main {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--gray-900);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.pricing-card.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta) 0%, var(--gold) 50%, var(--cta) 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pricing-name {
    font-size: 1.25rem;
    color: var(--gray-900);
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.pricing-price {
    text-align: center;
    padding: 1.25rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.price-currency {
    font-size: 1rem;
    color: var(--gray-500);
    vertical-align: super;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-suffix {
    font-size: 0.8125rem;
    color: var(--gray-500);
    display: block;
    margin-top: 0.25rem;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9125rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-50);
}

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

.pricing-features .check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
}

.pricing-note a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.pricing-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .pricing-trust {
        flex-direction: row;
        justify-content: center;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-item svg {
    color: var(--accent);
}

/* ============================================
   FAQ
============================================ */
.faq-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 1.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.375rem 1.125rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta-section {
    padding: 5rem 0 7rem;
    background: linear-gradient(160deg, #0a0f1e 0%, #0f172a 50%, #061410 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-headline {
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.cta-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.875rem;
    line-height: 1.75;
}

.cta-question {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
}

.cta-buttons .btn-outline {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-1px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: #020617;
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand .logo {
    margin-bottom: 0.75rem;
}

.footer-brand .logo-name {
    color: white;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   FOMO NOTIFICATION
============================================ */
.fomo-notification {
    position: fixed;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-xl);
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    max-width: 320px;
    animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fomo-notification.hidden {
    display: none;
}

/* On mobile: push FOMO above sticky CTA bar (~90px) */
@media (max-width: 767px) {
    .fomo-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 90px;
    }
}

/* When sticky CTA is NOT visible, go back to bottom */
@media (max-width: 767px) {

    .sticky-cta-container:not(.visible)~* .fomo-notification,
    body:not(.sticky-visible) .fomo-notification {
        bottom: 16px;
    }
}

.fomo-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.fomo-content {
    flex: 1;
    min-width: 0;
}

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

.fomo-title {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fomo-close {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1;
    padding: 0;
}

.fomo-close:hover {
    color: white;
}

.fomo-message {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.fomo-message span:first-child {
    font-weight: 600;
    color: white;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes slideInLeft {
    from {
        transform: translateX(-110%);
        opacity: 0;
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
}

[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================
   RESPONSIVE - Mobile Fine-tuning
============================================ */
@media (max-width: 767px) {
    .hero {
        padding-top: 58px;
    }

    .hero-inner {
        padding: 1.75rem 0 0;
    }

    .hero-bottom-pb {
        padding-bottom: 5rem;
    }

    .final-cta-section {
        padding-bottom: 5rem;
    }

    .problem-card {
        padding: 1.125rem;
    }

    .story-column {
        padding: 1.125rem;
    }

    .framework-step {
        padding: 1.25rem;
    }

    .pricing-card.main {
        padding: 1.5rem;
    }

    /* On mobile, video comes FIRST (before text) */
    .hero-video-col {
        order: -1;
    }

    .hero-text-col {
        order: 1;
    }
}

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

    .btn-xl .btn-text {
        font-size: 1rem;
    }

    .btn-xl {
        padding: 1rem 1.25rem;
    }

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