/* ===================================
   MINISHOOTS HOMEPAGE v2
   Apple x Ogilvy Design System
   Visual-First. Breathing. Converting.
   =================================== */

:root {
    /* Colors - Clean & Confident */
    --black: #1a1a1a;
    --dark: #2a2a2a;
    --gray-700: #4a4a4a;
    --gray-600: #5a5a5a;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d1d1d1;
    --gray-200: #e5e5e5;
    --gray-100: #f7f6f4;
    --white: #ffffff;
    --cream: #fafaf9;
    
    /* Brand - Deep Sage */
    --sage: #336952;
    --sage-light: #549B77;
    --sage-dark: #234838;
    --sage-glow: rgba(51, 105, 82, 0.1);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing - Increased for breathing room */
    --section-padding: 120px;
    --section-padding-xl: 160px;
    --section-padding-mobile: 80px;
    --container-width: 1100px;
    --container-narrow: 700px;
    --container-text: 600px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

/* ===================================
   BACKGROUND UTILITY CLASSES
   =================================== */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-gray { background: var(--gray-100); }
.bg-sage { 
    background: var(--sage-dark); 
    color: var(--white);
}
.bg-sage * { color: var(--white); }
.bg-sage .section-eyebrow { color: rgba(255, 255, 255, 0.6); }

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--black);
}

.nav-cta {
    padding: 10px 20px;
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--sage-dark);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.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 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-link {
    font-size: 24px;
    font-family: var(--font-display);
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: 24px;
}

/* ===================================
   COMMON COMPONENTS
   =================================== */
.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: var(--container-text);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(51, 105, 82, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 500;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--gray-400);
    color: var(--black);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--sage);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col-content {
    max-width: 500px;
}

.two-col-visual {
    display: flex;
    justify-content: center;
}

.two-col-reverse {
    direction: rtl;
}

.two-col-reverse > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .two-col-visual {
        order: -1;
    }
    
    .two-col-reverse {
        direction: ltr;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 100px;
    background: var(--white);
}

.hero-container {
    max-width: var(--container-narrow);
    text-align: center;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 48px;
}

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

.hero-micro {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-400);
}

.trust-icon {
    width: 14px;
    height: 14px;
}

/* ===================================
   IDENTITY / EMOTIONAL HOOK
   =================================== */
.identity {
    position: relative;
    padding: var(--section-padding-xl) 24px;
    min-height: 320px;
    background: var(--cream);
    overflow: hidden;
}

.identity-poster {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e5e5e5;
    z-index: 0;
}

.identity-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.identity-video.is-playing {
    opacity: 1;
}

.identity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.55) 45%,
        rgba(255, 255, 255, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.identity-container {
    position: relative;
    max-width: var(--container-text);
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.identity-text {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
}

.identity-dim {
    color: #444;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
}

@media (prefers-reduced-motion: reduce) {
    .identity-video {
        display: none !important;
    }
}

/* ===================================
   PAIN SECTION - Message Bubbles
   =================================== */
.pain {
    padding: var(--section-padding-xl) 24px;
    background: var(--cream);
}

.pain-container {
    max-width: var(--container-text);
    margin: 0 auto;
    text-align: center;
}

.pain-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 48px;
}

.message-bubbles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.message-bubble {
    display: inline-block;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 20px;
    border-bottom-left-radius: 6px;
    font-size: 17px;
    color: var(--gray-700);
    box-shadow: var(--shadow-card);
    max-width: 320px;
    text-align: left;
}

.message-bubble:nth-child(2) {
    align-self: flex-end;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 6px;
}

.message-bubble:nth-child(3) {
    align-self: center;
}

.pain-context {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pain-punch {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 600;
    color: var(--black);
}

/* ===================================
   HOW IT WORKS - Two Column
   =================================== */
.how-it-works {
    padding: var(--section-padding-xl) 24px;
    background: var(--white);
}

.how-it-works-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    color: var(--black);
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 16px;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .steps-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .steps-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }
}

/* Phone Frame with Video */
.phone-frame-video {
    width: 280px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 8px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-video {
    width: 100%;
    height: auto;
    border-radius: 36px;
    display: block;
    background: #000;
}

/* ===================================
   BREATHER SECTION
   =================================== */
.breather {
    padding: 80px 24px;
    background: var(--cream);
    text-align: center;
}

.breather-container {
    max-width: var(--container-text);
    margin: 0 auto;
}

.breather-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ===================================
   CLIENT EXPERIENCE - Two Column
   =================================== */
.client-experience {
    padding: var(--section-padding-xl) 24px;
    background: var(--gray-100);
}

.client-experience-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.client-experience .two-col-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 16px;
}

.client-experience .two-col-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.demo-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    min-width: 180px;
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
}

.demo-cta-button:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
}

/* ===================================
   TRANSFORMATION - Dark Sage
   =================================== */
.transformation {
    padding: var(--section-padding-xl) 24px;
    background: var(--sage-dark);
    text-align: center;
}

.transformation-container {
    max-width: var(--container-text);
    margin: 0 auto;
}

.transformation h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 40px;
}

.transformation-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.transformation-lines p {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.transformation-punch {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    color: var(--white);
}

/* ===================================
   ALWAYS ON - Two Column with Browser
   =================================== */
.always-on {
    padding: var(--section-padding-xl) 24px;
    background: var(--white);
}

.always-on-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.always-on .two-col-content .section-eyebrow {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--sage);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
}

.always-on h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 32px;
}

.state-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.state-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

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

.state-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.state-icon.amber {
    background: rgba(251, 191, 36, 0.15);
    color: #f59e0b;
}

.state-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.state-icon svg {
    width: 20px;
    height: 20px;
}

.state-card-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.state-card-content p {
    font-size: 14px;
    color: var(--gray-500);
}

.always-on-punch {
    font-size: 15px;
    color: var(--gray-600);
    font-style: italic;
}

/* Browser Mockup */
.browser-mockup {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 360px;
}

.browser-chrome {
    background: #e5e5e5;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots .dot.red { background: #ff5f57; }
.browser-dots .dot.yellow { background: #ffbd2e; }
.browser-dots .dot.green { background: #28c840; }

.browser-url {
    flex: 1;
    background: var(--white);
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 11px;
    color: var(--gray-500);
    text-align: center;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   BUDDY BOOKING - Growth Section
   =================================== */
.growth {
    padding: var(--section-padding-xl) 24px;
    background: var(--gray-100);
}

.growth-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.growth h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 24px;
}

.notification-bubble {
    display: inline-block;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
    font-size: 17px;
    color: var(--gray-700);
}

.notification-bubble::before {
    content: "🔔";
    margin-right: 10px;
}

.growth .two-col-content p {
    font-size: 18px;
    color: var(--gray-600);
}

.growth-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-icon {
    width: 200px;
    height: 200px;
    background: var(--sage-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-icon svg {
    width: 80px;
    height: 80px;
    color: var(--sage);
}

/* ===================================
   FEATURES - 2x2 Grid Cards
   =================================== */
.features {
    padding: var(--section-padding-xl) 24px;
    background: var(--white);
}

.features-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.feature-card {
    padding: 36px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--sage);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HIDDEN PROBLEM - Lost Demand
   =================================== */
.hidden-problem {
    padding: var(--section-padding-xl) 24px;
    background: var(--gray-100);
}

.hidden-problem-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hidden-problem h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hidden-problem-desc {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.lost-revenue-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lost-revenue-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-600);
}

.lost-revenue-row:last-child {
    border-bottom: none;
}

.lost-revenue-value {
    font-weight: 600;
    color: var(--black);
}

.lost-revenue-total {
    background: rgba(51, 105, 82, 0.04);
}

.lost-revenue-value.highlight {
    color: var(--sage);
    font-size: 18px;
}

.hidden-problem-closing {
    font-size: 16px;
    font-style: italic;
    color: var(--gray-500);
    line-height: 1.6;
}

.mockup-caption {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 16px;
    font-style: italic;
}

/* Booking Preview Mockup - macOS Style */
.hidden-problem .browser-mockup {
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 340px;
}

.hidden-problem .browser-dots {
    background: #e8e8e8;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
}

.hidden-problem .browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hidden-problem .browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.hidden-problem .browser-dots span:nth-child(2) {
    background: #febc2e;
}

.hidden-problem .browser-dots span:nth-child(3) {
    background: #28c840;
}

.hidden-problem .browser-url {
    background: #e8e8e8;
    padding: 0 14px 10px;
    font-size: 12px;
    color: #666;
}

.booking-preview {
    background: var(--white);
    overflow: hidden;
}

.booking-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.booking-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-branding {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 40px 20px 16px;
    text-align: center;
}

.booking-studio {
    font-family: var(--font-display);
    font-size: 22px;
    color: white;
    margin-bottom: 4px;
    font-style: italic;
}

.booking-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.booking-card {
    padding: 28px 24px;
    text-align: center;
    background: white;
}

.booking-status {
    display: inline-block;
    background: var(--sage);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.booking-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
}

.booking-details {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.booking-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.booking-btn {
    width: 100%;
    background: var(--sage);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
}

.booking-vip {
    font-size: 13px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-vip::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hidden-problem .two-col {
        flex-direction: column;
    }
    
    .lost-revenue-row {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* ===================================
   FLYWHEEL - Dark Sage
   =================================== */
.flywheel {
    padding: var(--section-padding-xl) 24px;
    background: var(--sage-dark);
    text-align: center;
}

.flywheel-container {
    max-width: var(--container-text);
    margin: 0 auto;
}

.flywheel h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
}

.flywheel p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   HONEYBOOK COMPARISON
   =================================== */
.honeybook {
    padding: var(--section-padding-xl) 24px;
    background: var(--white);
}

.honeybook-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.honeybook h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
}

.honeybook > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    font-size: 15px;
    color: var(--gray-700);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tr:nth-child(even) {
    background: var(--cream);
}

.comparison-table .check {
    color: #22c55e;
    font-size: 20px;
}

.comparison-table .x-mark {
    color: var(--gray-400);
    font-size: 20px;
}

/* ===================================
   PRICING
   =================================== */
.pricing {
    padding: var(--section-padding-xl) 24px;
    background: var(--gray-100);
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
}

.pricing-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-single {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 480px;
}

.pricing-card-centered {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border: 2px solid var(--sage);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 18px;
    color: var(--gray-500);
}

.pricing-desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-billing {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: -8px;
    margin-bottom: 16px;
}

.pricing-trust {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 32px;
}

.pricing-footnote {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 8px;
}

.pricing-makes-sense {
    font-size: 14px;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 24px;
}

.pricing-key-line {
    font-size: 17px;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 28px;
}

.pricing-fee-intro {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.pricing-pro-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 20px;
}

.pricing-pro-note a {
    color: var(--sage);
    text-decoration: underline;
    text-decoration-color: rgba(51, 105, 82, 0.3);
    text-underline-offset: 2px;
}

.pricing-pro-note a:hover {
    text-decoration-color: var(--sage);
}

.pricing-footer {
    text-align: center;
    margin-top: 48px;
}

.pricing-punch {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.pricing-closer {
    font-size: 17px;
    color: var(--gray-500);
}

/* Fee Options Table (Option A/B) */
.fee-options-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.fee-option {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.fee-option:last-child {
    background: rgba(51, 105, 82, 0.08);
    border: 1px solid rgba(51, 105, 82, 0.2);
}

.fee-option-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.fee-option-detail {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.fee-option-result {
    font-size: 15px;
    color: var(--black);
}

.fee-option-result strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--sage);
}

.fee-option-client {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

.fee-social-proof {
    font-size: 13px;
    color: var(--gray-500);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 8px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--sage);
    font-weight: 600;
}

.pricing-punch {
    text-align: center;
    font-size: 17px;
    color: var(--gray-600);
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .fee-options-table {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .pricing-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* ===================================
   DEMO CTA - Dark Sage
   =================================== */
.demo-cta {
    padding: 100px 24px;
    background: var(--sage-dark);
    text-align: center;
}

.demo-cta-container {
    max-width: var(--container-text);
    margin: 0 auto;
}

.demo-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 32px;
}

.demo-cta .btn-white {
    margin-bottom: 16px;
}

.demo-cta-micro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: var(--black);
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

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

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

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

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

.faq-answer p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===================================
   FOUNDER SECTION
   =================================== */
.founder {
    padding: var(--section-padding-xl) 24px;
    background: var(--gray-100);
}

.founder-container {
    max-width: var(--container-text);
    margin: 0 auto;
    text-align: center;
}

.founder-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 28px);
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 24px;
}

.founder-cite {
    font-size: 15px;
    color: var(--gray-500);
    font-style: normal;
}

/* ===================================
   FINAL CTA - Dark Sage
   =================================== */
.final-cta {
    padding: var(--section-padding-xl) 24px;
    background: var(--sage-dark);
    text-align: center;
}

.final-cta-container {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.15;
}

.final-cta .btn-white {
    margin-bottom: 16px;
}

.final-cta-micro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 80px 24px 40px;
    background: var(--black);
    color: var(--white);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 48px;
}

.footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--gray-400);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

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

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

/* ===================================
   CINEMATIC ANIMATIONS
   Editorial Realism | Psychological Resonance
   =================================== */

/* Fade-in animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 24px rgba(51, 105, 82, 0.25); }
    50% { box-shadow: 0 12px 32px rgba(51, 105, 82, 0.35); }
}

/* Base reveal state - hidden until animated */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Hero entrance animation */
.hero-eyebrow {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-cta-group {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-micro, .hero-trust {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* CTA button micro-interactions */
.btn-primary {
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Only apply hover animations on devices with hover capability */
@media (hover: hover) {
    .btn-primary:hover {
        animation: pulseGlow 2s ease-in-out infinite;
    }
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* Message bubbles staggered animation */
.message-bubble {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.message-bubble.revealed {
    opacity: 1;
    transform: translateY(0);
}

.message-bubble:nth-child(1).revealed { transition-delay: 0s; }
.message-bubble:nth-child(2).revealed { transition-delay: 0.15s; }
.message-bubble:nth-child(3).revealed { transition-delay: 0.3s; }

/* Step items staggered animation */
.step-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item.revealed {
    opacity: 1;
    transform: translateX(0);
}

.step-item:nth-child(1).revealed { transition-delay: 0s; }
.step-item:nth-child(2).revealed { transition-delay: 0.12s; }
.step-item:nth-child(3).revealed { transition-delay: 0.24s; }

/* Step number subtle pulse on reveal */
.step-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(51, 105, 82, 0.25);
}

/* Feature cards lift effect */
.feature-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card .feature-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Feature cards staggered reveal */
.features-grid .feature-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-grid .feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.features-grid .feature-card:nth-child(1).revealed { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2).revealed { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3).revealed { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4).revealed { transition-delay: 0.3s; }

/* State cards staggered reveal */
.state-card {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.state-card.revealed {
    opacity: 1;
    transform: translateX(0);
}

.state-card:nth-child(1).revealed { transition-delay: 0s; }
.state-card:nth-child(2).revealed { transition-delay: 0.1s; }
.state-card:nth-child(3).revealed { transition-delay: 0.2s; }

/* State card hover effect */
.state-card {
    cursor: default;
}

.state-card:hover {
    background: var(--gray-100);
}

.state-card:hover .state-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Pricing cards reveal */
.pricing-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(1).revealed { transition-delay: 0s; }
.pricing-card:nth-child(2).revealed { transition-delay: 0.15s; }

/* Pricing card hover */
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

/* Phone frame subtle float */
.phone-frame-video {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame-video:hover {
    transform: translateY(-8px);
}

/* Browser mockup subtle lift */
.browser-mockup {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-mockup:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

/* FAQ accordion - enhanced easing for existing 'active' class */

/* Section title reveals */
.pain-title,
.how-it-works-title,
.transformation h2,
.growth h2,
.flywheel h2,
.honeybook h2,
.pricing-title,
.faq-title,
.final-cta h2,
.hidden-problem h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pain-title.revealed,
.how-it-works-title.revealed,
.transformation h2.revealed,
.growth h2.revealed,
.flywheel h2.revealed,
.honeybook h2.revealed,
.pricing-title.revealed,
.faq-title.revealed,
.final-cta h2.revealed,
.hidden-problem h2.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Transformation lines staggered */
.transformation-lines p {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.transformation-lines p.revealed {
    opacity: 1;
    transform: translateY(0);
}

.transformation-lines p:nth-child(1).revealed { transition-delay: 0.1s; }
.transformation-lines p:nth-child(2).revealed { transition-delay: 0.25s; }
.transformation-lines p:nth-child(3).revealed { transition-delay: 0.4s; }

/* Comparison table rows reveal */
.comparison-table tbody tr {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-table tbody tr.revealed {
    opacity: 1;
    transform: translateY(0);
}

.comparison-table tbody tr:nth-child(1).revealed { transition-delay: 0s; }
.comparison-table tbody tr:nth-child(2).revealed { transition-delay: 0.08s; }
.comparison-table tbody tr:nth-child(3).revealed { transition-delay: 0.16s; }
.comparison-table tbody tr:nth-child(4).revealed { transition-delay: 0.24s; }
.comparison-table tbody tr:nth-child(5).revealed { transition-delay: 0.32s; }

/* Lost revenue table rows reveal */
.lost-revenue-row {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lost-revenue-row.revealed {
    opacity: 1;
    transform: translateX(0);
}

.lost-revenue-row:nth-child(1).revealed { transition-delay: 0s; }
.lost-revenue-row:nth-child(2).revealed { transition-delay: 0.1s; }
.lost-revenue-row:nth-child(3).revealed { transition-delay: 0.2s; }
.lost-revenue-row:nth-child(4).revealed { transition-delay: 0.35s; }

/* Identity section parallax-like depth */
.identity-container {
    transition: transform 0.1s linear;
}

/* Founder quote reveal */
.founder-quote {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-quote.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Breather text elegant fade */
.breather-text {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.breather-text.revealed {
    opacity: 1;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal,
    .message-bubble,
    .step-item,
    .feature-card,
    .state-card,
    .pricing-card {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===================================
   TABLET/MEDIUM SCREENS - Navigation
   =================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    :root {
        --section-padding-xl: 100px;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .identity {
        padding: 80px 24px;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phone-frame-video {
        width: 240px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .message-bubble {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   PLAN QUIZ SECTION
   =================================== */
.plan-quiz {
    padding: var(--section-padding) 24px;
    background: var(--gray-100);
}

.plan-quiz-container {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.plan-quiz-header {
    margin-bottom: 48px;
}

.plan-quiz-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
}

.plan-quiz-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto;
}

.plan-quiz-questions {
    margin-bottom: 32px;
}

.quiz-question {
    display: none;
    animation: quizFadeIn 0.4s ease;
}

.quiz-question.active {
    display: block;
}

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

.quiz-question-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.quiz-question-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.3;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.quiz-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 100px;
}

.quiz-option:hover {
    border-color: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quiz-option.selected {
    border-color: var(--sage);
    background: var(--sage-glow);
}

.quiz-option-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.quiz-option-label {
    font-size: 13px;
    color: var(--gray-500);
}

/* Quiz Result */
.quiz-result {
    display: none;
    animation: quizFadeIn 0.5s ease;
}

.quiz-result.active {
    display: block;
}

.quiz-result-card {
    display: none;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.quiz-result-card.active {
    display: block;
}

.quiz-result-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.quiz-result-badge.starter {
    background: #E8F5E9;
    color: #2E7D32;
}

.quiz-result-badge.pro {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: var(--white);
}

.quiz-result-plan {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.quiz-result-tagline {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.quiz-result-math {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.quiz-math-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.quiz-math-row:last-child {
    border-bottom: none;
}

.quiz-math-row.highlight {
    font-weight: 600;
    color: var(--sage-dark);
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--sage);
    border-bottom: none;
}

.quiz-math-row.highlight span:last-child {
    font-size: 18px;
    font-weight: 700;
}

.quiz-result-insight {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

.quiz-result-cta {
    width: 100%;
    justify-content: center;
}

.quiz-restart {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px auto 0;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.quiz-restart:hover {
    color: var(--black);
}

.quiz-restart.active {
    display: flex;
}

/* Mobile adjustments for quiz */
@media (max-width: 520px) {
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-option {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 20px;
        min-height: auto;
    }
    
    .quiz-option-number {
        margin-bottom: 0;
        min-width: 80px;
    }
    
    .quiz-result-card {
        padding: 32px 24px;
    }
}
