/* ============================================
   TRUE SELF ACTIVATION — DESIGN SYSTEM
   ============================================
   Table of Contents:
   1.  Design Tokens
   2.  Accessibility
   3.  Reset & Base Typography
   4.  Layout Utilities
   5.  Component: Buttons
   6.  Component: Badges
   7.  Component: Cards (Neumorphic)
   8.  Component: Section Titles
   9.  Component: Scroll Reveal
   10. Section: Header + Mobile Nav
   11. Section: Hero
   12. Section: Problem
   13. Section: About
   14. Section: Approach + Train Stops
   15. Section: Methodology
   16. Section: Fit (Who This Is For)
   17. Section: Programs / Pricing
   18. Section: Trust Signals
   19. Section: Lead Magnet
   20. Section: FAQ
   21. Section: Application Form
   22. Section: Disclaimer
   23. Section: Footer
   24. Component: Mobile Sticky CTA
   25. Component: Back to Top
   26. Micro-Interactions
   27. Responsive: Tablet (1024px)
   28. Responsive: Mobile (768px)
   29. Responsive: Small Mobile (480px)
   30. Print Stylesheet
   ============================================ */

/* ============================================
   1. DESIGN TOKENS
   ============================================ */
:root {
    /* =============================================
       NEW COLOR PALETTE: Calm, Trustworthy, Clean
       ============================================= */

    /* Primary palette */
    --primary: #0891B2;
    --primary-hover: #0E7490;
    --cta: #059669;
    --cta-hover: #047857;
    --accent: #06B6D4;
    --background: #FFFFFF;
    --text: #0F172A;
    --text-light: #475569;

    /* Mapped tokens (keeps CSS references working) */
    --beige: #F1F5F9;
    --beige-light: #FFFFFF;
    --charcoal: #0F172A;
    --charcoal-light: #475569;
    --terracotta: #0891B2;
    --terracotta-hover: #0E7490;
    --sage: #059669;
    --sage-hover: #047857;
    --white: #FFFFFF;

    /* Semantic */
    --color-success: #059669;
    --color-error: #DC2626;
    --color-warning: #D97706;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-cta: 0 10px 30px rgba(8, 145, 178, 0.3);

    /* Clean card shadows (for white backgrounds) */
    --shadow-neu: 0 4px 16px rgba(0, 0, 0, 0.06),
                  0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-neu-hover: 0 8px 30px rgba(0, 0, 0, 0.1),
                        0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-neu-inset: inset 0 2px 4px rgba(0, 0, 0, 0.04);

    /* Glow shadows (for micro-interactions) */
    --glow-primary: 0 0 20px rgba(8, 145, 178, 0.25);
    --glow-cta: 0 0 20px rgba(5, 150, 105, 0.25);
    --glow-accent: 0 0 20px rgba(6, 182, 212, 0.3);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-form: 700px;

    /* Z-index scale */
    --z-header: 1000;
    --z-mobile-menu: 999;
    --z-sticky-cta: 998;
    --z-back-top: 997;

    /* Header height for offset */
    --header-height: 72px;
}

/* ============================================
   2. ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Ensure hero content is visible when animations are disabled */
    .hero-anim {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Hide floating shapes when motion is reduced */
    .hero-shape {
        display: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--beige-light);
    font-size: 1.1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

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

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

a:hover {
    color: var(--terracotta-hover);
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
details:focus-visible summary {
    outline: 3px solid var(--terracotta);
    outline-offset: 2px;
}

/* ============================================
   4. LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 20px;
}

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


/* ============================================
   5. COMPONENT: BUTTONS
   ============================================ */
.btn {
    padding: var(--space-sm) 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    cursor: pointer;
    border: none;
    min-height: 44px;
    min-width: 44px;
    text-align: center;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-hover);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-cta), var(--glow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn-sage {
    background: var(--sage);
    color: var(--white);
}

.btn-sage:hover {
    background: var(--sage-hover);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md), var(--glow-cta);
}

.btn-white {
    background: var(--white);
    color: var(--sage);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--beige-light);
    color: var(--sage);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn--full {
    width: 100%;
}

/* ============================================
   6. COMPONENT: BADGES
   ============================================ */
.badge {
    display: inline-block;
    padding: var(--space-xs) 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge--terracotta {
    background: var(--terracotta);
    color: var(--white);
}

.badge--sage {
    background: var(--beige);
    color: var(--sage);
}

/* ============================================
   7. COMPONENT: CARDS (Neumorphic)
   ============================================ */
.card-neu {
    background: var(--beige-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

/* Hover states in Micro-Interactions section (26) */

/* ============================================
   8. COMPONENT: SECTION TITLES
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   9. COMPONENT: SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

/* Stagger delays set dynamically via JS, CSS fallback for first 6 */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 500ms; }

/* ============================================
   10. SECTION: HEADER + MOBILE NAV
   ============================================ */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: var(--z-header);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
}

.logo span {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--terracotta);
}

.nav-links .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* Hamburger menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--space-xs);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    display: block;
    transition: transform var(--transition-base), opacity var(--transition-fast);
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   11. SECTION: HERO
   ============================================ */
.hero {
    padding: calc(var(--header-height) + 80px) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    margin-bottom: var(--space-lg);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--terracotta), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--charcoal-light);
    max-width: 700px;
    margin: 0 auto var(--space-md);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    color: var(--charcoal-light);
}

.hero-evidence {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--sage);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-proof {
    margin-top: var(--space-xl);
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

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

.scroll-indicator {
    margin-top: var(--space-xl);
    display: flex;
    justify-content: center;
}

.scroll-indicator svg {
    animation: gentle-bounce 2s infinite ease-in-out;
    opacity: 0.4;
}

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

/* ============================================
   12. SECTION: PROBLEM
   ============================================ */
.problem {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.problem-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    color: var(--charcoal-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.problem-intro ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-top: var(--space-sm);
}

.problem-intro ul li {
    padding: 4px 0 4px 24px;
    position: relative;
}

.problem-intro ul li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.problem-card {
    padding: var(--space-xl);
    text-align: center;
}

.problem-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    color: var(--terracotta);
}

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

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.problem-card p {
    color: var(--charcoal-light);
}

/* ============================================
   13. SECTION: ABOUT
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--beige);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-photo {
    width: 280px;
    height: 340px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: var(--radius-xl);
    display: block;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.15);
}

.about-name {
    margin-top: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.about-title {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--charcoal-light);
    font-size: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-sm);
    color: var(--charcoal-light);
    font-size: 1.05rem;
}

.lived-badge {
    display: inline-block;
    background: var(--beige-light);
    color: var(--sage);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.about-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sage);
    margin-top: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--sage);
}

.differentiator-pills {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

.differentiator-pills span {
    background: var(--white);
    color: var(--charcoal-light);
    padding: 6px var(--space-sm);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   14. SECTION: APPROACH + TRAIN STOPS
   ============================================ */
.approach {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

.approach-text p {
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
    color: var(--charcoal-light);
}

.approach-features {
    list-style: none;
    margin: var(--space-lg) 0;
}

.approach-features li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
}

.approach-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Train Stops Timeline */
.train-stops-container {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.train-stops-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.train-stops {
    position: relative;
    padding-left: 40px;
}

/* The connecting line */
.train-stops::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--beige);
    border-radius: 2px;
}

/* Animated fill line */
.train-stops::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    width: 3px;
    height: 0;
    background: var(--terracotta);
    border-radius: 2px;
    transition: height 800ms ease-out;
}

.train-stops.animated::after {
    height: calc(100% - 16px);
}

.stop {
    position: relative;
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-sm);
    background: var(--beige-light);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.stop.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Circle node on the timeline */
.stop::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--beige-light);
    border: 3px solid var(--terracotta);
    border-radius: 50%;
    z-index: 1;
    transition: background var(--transition-base);
}

.stop.visible::before {
    background: var(--terracotta);
}

.stop-number {
    font-size: 0.75rem;
    color: var(--terracotta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stop h4 {
    font-size: 1.05rem;
    margin-top: 2px;
}

.stop .stop-desc {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-top: 2px;
}

/* ============================================
   15. SECTION: METHODOLOGY
   ============================================ */
.methodology {
    padding: var(--space-3xl) 0;
    background: var(--beige-light);
}

.method-slider {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.method-track {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    animation: method-scroll 32s linear infinite;
}

.method-track:hover {
    animation-play-state: paused;
}

@keyframes method-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .method-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
    }
}

.method-slider .method-card {
    width: 340px;
    flex-shrink: 0;
}

.method-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--sage);
    box-shadow: var(--shadow-neu);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.method-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--sage);
}

.method-source {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-sm);
}

.method-card p {
    color: var(--charcoal-light);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.method-citation {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    opacity: 0.7;
    font-style: italic;
}

/* ============================================
   16. SECTION: FIT (Who This Is For)
   ============================================ */
.fit {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.fit-column h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.fit-column--yes h3 {
    color: var(--sage);
}

.fit-column--no h3 {
    color: var(--terracotta);
}

.fit-column ul {
    list-style: none;
}

.fit-column ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 1rem;
    color: var(--charcoal-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fit-column--yes ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
    font-size: 1.1rem;
}

.fit-column--no ul li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
    font-size: 1.1rem;
}

.fit-safety-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: var(--beige-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
    font-size: 0.95rem;
    color: var(--charcoal-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   17. SECTION: PROGRAMS / PRICING
   ============================================ */
.programs {
    padding: var(--space-3xl) 0;
    background: var(--beige);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
}

/* Hover states in Micro-Interactions section (26) */

.program-card.featured {
    background: var(--charcoal);
    color: var(--white);
    transform: scale(1.02);
}

.program-badge {
    display: inline-block;
    align-self: center;
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-bottom: var(--space-xs);
}

.program-name {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.program-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: var(--space-sm);
}

.program-card.featured .program-price {
    color: var(--white);
}

.program-description {
    color: var(--charcoal-light);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.program-card.featured .program-description {
    color: rgba(255, 255, 255, 0.8);
}

.program-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.program-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.program-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
}

.program-card.featured .program-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.program-card.featured .program-features li::before {
    color: var(--white);
}

.program-disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-xl);
}

.continuation-note {
    background: var(--beige);
    border-left: 3px solid var(--sage);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Additional offers row */
.additional-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.offer-card h4 {
    font-size: 1.15rem;
    margin-bottom: var(--space-xs);
}

.offer-card .offer-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: var(--space-xs);
}

.offer-card p {
    color: var(--charcoal-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.guarantee-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-style: italic;
}

/* ============================================
   18. SECTION: TRUST SIGNALS
   ============================================ */
.trust {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.trust-slider {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trust-track {
    display: flex;
    gap: var(--space-md);
    width: max-content;
    animation: trust-scroll 28s linear infinite;
}

.trust-track:hover {
    animation-play-state: paused;
}

@keyframes trust-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .trust-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
}

.trust-slider .trust-item {
    width: 180px;
    flex-shrink: 0;
}

.trust-item {
    text-align: center;
    padding: var(--space-md);
}

.trust-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-sm);
    color: var(--sage);
}

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

.trust-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* ============================================
   19. SECTION: LEAD MAGNET
   ============================================ */
.lead-magnet {
    padding: var(--space-3xl) 0;
    background: var(--sage);
    color: var(--white);
    text-align: center;
}

.lead-magnet h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.lead-magnet-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.lead-magnet-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.lead-magnet-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.lead-magnet-card p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.lead-form .form-row {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.lead-form input {
    flex: 1;
    padding: var(--space-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    min-height: 44px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Focus state in Micro-Interactions section (26) */

.lead-form .form-status {
    margin-top: var(--space-sm);
    font-size: 0.95rem;
    min-height: 24px;
}

.lead-form .form-status--success {
    color: #a8e6cf;
}

.lead-form .form-status--error {
    color: #ffb3b3;
}

.privacy-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: var(--space-sm);
}

/* ============================================
   20. SECTION: FAQ
   ============================================ */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    min-height: 44px;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--terracotta);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--charcoal-light);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 0 var(--space-md);
}

/* ============================================
   21. SECTION: APPLICATION FORM
   ============================================ */
.apply {
    padding: var(--space-3xl) 0;
    background: var(--beige);
}

.apply-form {
    background: var(--white);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-field {
    margin-bottom: var(--space-md);
}

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px var(--space-sm);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    min-height: 44px;
    transition: border-color var(--transition-fast),
                box-shadow var(--transition-fast),
                transform var(--transition-fast);
    background: var(--beige-light);
    color: var(--charcoal);
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* Focus states are in the Micro-Interactions section (26) */

/* Validation states */
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--color-error);
}

.form-field.is-valid input,
.form-field.is-valid select,
.form-field.is-valid textarea {
    border-color: var(--color-success);
}

.form-error {
    color: var(--color-error);
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}

.form-field.has-error .form-error {
    display: block;
}

/* Checkbox field */
.form-field--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-weight: 400;
    cursor: pointer;
}

.form-field--checkbox input[type="checkbox"] {
    width: auto;
    min-height: auto;
    min-width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--terracotta);
}

/* Safety notice */
.safety-notice {
    background: var(--beige);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-md);
    border-left: 4px solid var(--sage);
    line-height: 1.6;
}

/* Crisis panel (inline, replaces alert) */
.crisis-panel {
    background: #f0f9ff;
    border: 2px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.crisis-panel h4 {
    color: var(--terracotta);
    font-size: 1.05rem;
    margin-bottom: var(--space-xs);
}

.crisis-panel p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.crisis-panel ul {
    list-style: none;
    margin: var(--space-sm) 0;
}

.crisis-panel ul li {
    padding: 4px 0;
}

.crisis-panel ul li a {
    color: var(--terracotta);
    font-weight: 600;
    text-decoration: underline;
}

.crisis-panel .crisis-alt {
    font-style: italic;
    color: var(--charcoal-light);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Form submit state */
.apply-form .form-status {
    text-align: center;
    margin-top: var(--space-sm);
    font-size: 0.95rem;
    min-height: 24px;
}

.apply-form .form-status--success {
    color: var(--color-success);
    font-weight: 600;
}

/* ============================================
   22. SECTION: DISCLAIMER
   ============================================ */
.disclaimer {
    padding: var(--space-xl) 0;
    background: var(--beige-light);
}

.disclaimer-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.8;
}

.disclaimer-content h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.disclaimer-content p {
    margin-bottom: var(--space-sm);
}

/* ============================================
   23. SECTION: FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--white);
}

/* Crisis resources in footer */
.footer-crisis {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    border-left: 4px solid var(--terracotta);
}

.footer-crisis h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--terracotta);
}

.footer-crisis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.footer-crisis h5 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
    opacity: 0.6;
}

.footer-crisis p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.footer-crisis a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.footer-crisis a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   24. COMPONENT: MOBILE STICKY CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: var(--space-sm);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: var(--z-sticky-cta);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    display: none;
}

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

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

.sticky-cta-dismiss {
    position: absolute;
    top: -12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--charcoal-light);
    transition: background var(--transition-fast);
}

.sticky-cta-dismiss:hover {
    background: var(--beige-light);
}

/* ============================================
   25. COMPONENT: BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-base), visibility var(--transition-base),
                transform var(--transition-base), background var(--transition-fast);
    z-index: var(--z-back-top);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--terracotta-hover);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   26. MICRO-INTERACTIONS
   ============================================ */

/* --- Button Ripple Effect --- */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple-expand 500ms ease-out forwards;
    pointer-events: none;
}

@keyframes ripple-expand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Button Border Beam (animated gradient border on hover) --- */
.btn-primary::before,
.btn-sage::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--beam-angle, 0deg),
        transparent 0%,
        var(--accent) 10%,
        transparent 20%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    animation: beam-rotate 3s linear infinite paused;
}

.btn-primary::after,
.btn-sage::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
}

.btn-primary:hover::before,
.btn-sage:hover::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes beam-rotate {
    to {
        --beam-angle: 360deg;
    }
}

/* Fallback for browsers without @property support */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .btn-primary::before,
    .btn-sage::before {
        display: none;
    }
}

/* --- Input Focus: Glow Ring + Border Shift --- */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15), var(--glow-primary);
    transform: scale(1.005);
    transition: border-color var(--transition-fast),
                box-shadow var(--transition-fast),
                transform var(--transition-fast);
}

.lead-form input:focus {
    border-color: var(--white);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* --- Input Focus: Animated Label Float --- */
.form-field--float {
    position: relative;
}

.form-field--float label {
    position: absolute;
    left: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    color: var(--charcoal-light);
    pointer-events: none;
    transition: all var(--transition-base);
    background: var(--beige-light);
    padding: 0 4px;
    font-size: 1rem;
}

.form-field--float textarea ~ label {
    top: 20px;
}

.form-field--float input:focus ~ label,
.form-field--float input:not(:placeholder-shown) ~ label,
.form-field--float select:focus ~ label,
.form-field--float select:not([value=""]) ~ label,
.form-field--float textarea:focus ~ label,
.form-field--float textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    transform: translateY(0);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

/* --- Card Hover: Lift + Enhanced Shadow --- */
.card-neu {
    will-change: transform, box-shadow;
}

.card-neu:hover {
    box-shadow: var(--shadow-neu-hover), 0 0 0 1px rgba(8, 145, 178, 0.08);
    transform: translateY(-4px);
}

/* --- Card Hover: 3D Perspective Tilt --- */
.card-tilt {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-tilt:hover {
    transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
}

/* --- Card Hover: Animated Glow Border --- */
.card-glow {
    position: relative;
}

.card-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--cta));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

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

/* --- Program Card Enhanced Hover --- */
.program-card {
    will-change: transform, box-shadow;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(8, 145, 178, 0.1);
}

.program-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
}

/* --- Trust Badge Hover --- */
.trust-badge {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    will-change: transform;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(8, 145, 178, 0.08);
}

/* --- FAQ Item Interaction --- */
.faq-item summary {
    transition: color var(--transition-fast);
}

.faq-item[open] summary {
    color: var(--primary);
}

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

/* --- Stop Card Hover --- */
.stop {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stop:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   27. NEW POSITIONING ELEMENTS
   ============================================ */

/* "Insight arrives. The body doesn't follow." block */
.problem-insight {
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--beige-light);
    border-left: 4px solid var(--terracotta);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.insight-line {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 var(--space-xs);
    line-height: 1.3;
}

.insight-sub {
    font-size: 1rem;
    color: var(--charcoal-light);
    margin: 0;
    font-style: italic;
}

/* "Before regulation. Before awakening..." tag */
.approach-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--terracotta);
    margin: 0 0 var(--space-md);
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(199, 91, 57, 0.25);
}

/* Approach section dual CTA buttons */
.approach-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

/* Additional offers label with link to journey page */
.additional-offers-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.additional-offers-label {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    font-style: italic;
}

.additional-offers-label a {
    color: var(--terracotta);
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
}

.additional-offers-label a:hover {
    text-decoration: underline;
}

/* Low-pressure note */
.low-pressure-note {
    text-align: center;
    max-width: 560px;
    margin: var(--space-xl) auto var(--space-sm);
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    font-style: italic;
}

/* ============================================
   27b. READING PROGRESS BAR
   ============================================ */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--accent), var(--cta));
    width: 0%;
    z-index: 1;
    border-radius: 0 2px 2px 0;
    transition: none;
}

/* ============================================
   28. HERO FLOATING SHAPES
   ============================================ */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    will-change: transform;
}

.hero-shape--1 {
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    top: -150px;
    right: -120px;
    animation: float-shape-1 25s ease-in-out infinite;
}

.hero-shape--2 {
    width: 400px;
    height: 400px;
    background: var(--sage);
    bottom: -100px;
    left: -100px;
    animation: float-shape-2 20s ease-in-out infinite;
}

.hero-shape--3 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 35%;
    left: 55%;
    animation: float-shape-3 22s ease-in-out infinite;
}

@keyframes float-shape-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, 20px) scale(1.05); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(15px, -15px) scale(1.02); }
}

@keyframes float-shape-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -25px) scale(1.08); }
    66% { transform: translate(-25px, 20px) scale(0.93); }
}

@keyframes float-shape-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, 30px) scale(1.1); }
}

/* ============================================
   29. HERO TEXT ENTRANCE ANIMATION
   ============================================ */
.hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-entrance 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-anim:nth-child(1) { animation-delay: 150ms; }
.hero-anim:nth-child(2) { animation-delay: 300ms; }
.hero-anim:nth-child(3) { animation-delay: 450ms; }
.hero-anim:nth-child(4) { animation-delay: 600ms; }
.hero-anim:nth-child(5) { animation-delay: 750ms; }
.hero-anim:nth-child(6) { animation-delay: 900ms; }
.hero-anim:nth-child(7) { animation-delay: 1050ms; }
.hero-anim:nth-child(8) { animation-delay: 1200ms; }

@keyframes hero-entrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   30. SECTION DIVIDERS (Wave Shapes)
   ============================================ */
.section-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero → Problem: beige gradient to white */
.section-divider--hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    color: var(--white);
}

/* Problem → About: white to beige */
.section-divider--to-about {
    background: var(--white);
    color: var(--beige);
}

/* Methodology → Fit: beige-light to white */
.section-divider--to-fit {
    background: var(--beige-light);
    color: var(--white);
}

/* Trust → Lead Magnet: white to sage */
.section-divider--to-lead {
    background: var(--white);
    color: var(--sage);
}

/* ============================================
   31. METHODOLOGY CARD CURSOR GLOW
   ============================================ */
.method-card {
    position: relative;
    overflow: hidden;
}

.method-card .card-glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
}

.method-card:hover .card-glow-effect {
    opacity: 0.07;
}

.method-card > *:not(.card-glow-effect) {
    position: relative;
    z-index: 1;
}

/* ============================================
   32. SUBTLE BACKGROUND GRAIN TEXTURE
   ============================================ */
.hero::before,
.about::before,
.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.about,
.programs {
    position: relative;
}

/* ============================================
   33. ENHANCED MOBILE MENU SLIDE
   ============================================ */
/* Handled in responsive section below */

/* ============================================
   34. ENHANCED VISUAL POLISH
   ============================================ */

/* Subtle underline animation for nav links */
.nav-links a:not(.btn) {
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition-base);
    border-radius: 1px;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

/* Enhanced section transitions */
.problem-card,
.method-card,
.offer-card,
.trust-item {
    will-change: transform, box-shadow;
}

/* Animated border on featured program card */
.program-card.featured {
    position: relative;
    overflow: hidden;
}

.program-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: shimmer-border 4s ease-in-out infinite;
}

@keyframes shimmer-border {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Better blockquote styling */
.about-quote {
    position: relative;
}

.about-quote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: -5px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--sage);
    opacity: 0.15;
    line-height: 1;
}

/* Trust items hover */
.trust-item {
    transition: transform var(--transition-base);
    border-radius: var(--radius-md);
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-item:hover .trust-icon {
    color: var(--terracotta);
    transition: color var(--transition-base);
}

/* Better social proof styling */
.social-proof {
    position: relative;
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Better lived-badge with icon */
.lived-badge {
    position: relative;
    padding-left: calc(var(--space-sm) + 8px);
}

.lived-badge::before {
    content: '\2726';
    position: absolute;
    left: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
}

/* Animated scroll indicator */
.scroll-indicator {
    opacity: 0;
    animation: fade-in-scroll 600ms ease-out 1600ms forwards;
}

@keyframes fade-in-scroll {
    to { opacity: 1; }
}

/* ============================================
   35. RESPONSIVE: TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .program-card.featured {
        transform: none;
    }

    .program-card.featured:hover {
        transform: translateY(-4px);
    }

    .additional-offers {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ============================================
   28. RESPONSIVE: MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    /* Nav - slide-in animation */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        gap: var(--space-sm);
        z-index: var(--z-mobile-menu);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links .btn {
        text-align: center;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: calc(var(--header-height) + 48px) 0 var(--space-2xl);
    }

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

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

    /* Section titles */
    .section-title h2 {
        font-size: 2rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-quote {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .differentiator-pills {
        justify-content: center;
    }

    /* Approach */
    .approach-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .approach-text h2 {
        font-size: 2rem;
    }

    /* Methodology slider — narrower cards on mobile */
    .method-slider .method-card {
        width: 280px;
    }

    /* Fit */
    .fit-grid {
        grid-template-columns: 1fr;
    }

    /* Lead magnet */
    .lead-magnet h2 {
        font-size: 2rem;
    }

    .lead-magnet-cards {
        grid-template-columns: 1fr;
    }

    .lead-form .form-row {
        flex-direction: column;
    }

    /* Section dividers */
    .section-divider {
        height: 40px;
    }

    /* Hero shapes smaller on mobile */
    .hero-shape--1 { width: 300px; height: 300px; }
    .hero-shape--2 { width: 200px; height: 200px; }
    .hero-shape--3 { width: 150px; height: 150px; }

    /* Sticky CTA */
    .sticky-cta {
        display: block;
    }

    /* Back to top - move up above sticky CTA */
    .back-to-top {
        bottom: 80px;
    }

    /* Footer crisis */
    .footer-crisis-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   29. RESPONSIVE: SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

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

    .section-title h2 {
        font-size: 1.75rem;
    }

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

    .cta-group .btn {
        width: 100%;
    }

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

    .about-photo {
        width: 220px;
        height: 280px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .trust-slider .trust-item {
        width: 150px;
    }

    .apply-form {
        padding: var(--space-lg) var(--space-sm);
    }
}

/* ============================================
   30. PRINT STYLESHEET
   ============================================ */
/* ============================================
   BOOK LANDING PAGES
   ============================================ */
.book-hero {
    padding: var(--space-3xl) 0;
    background: var(--beige-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-3xl);
    align-items: start;
}

.book-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: var(--space-md);
}

.book-content h1 {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.book-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.book-description {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.book-inside-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: var(--space-sm);
}

.book-inside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
}

.book-inside-list li {
    font-size: 0.95rem;
    color: var(--charcoal);
    padding: var(--space-xs) 0;
    padding-left: 1.4rem;
    position: relative;
    border-bottom: 1px solid rgba(44,44,44,0.07);
}

.book-inside-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-size: 0.85rem;
}

.book-next {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-style: italic;
    border-left: 3px solid var(--sage);
    padding-left: var(--space-sm);
    margin-top: var(--space-lg);
}

.book-next a {
    color: var(--terracotta);
    text-decoration: none;
}

.book-next a:hover {
    text-decoration: underline;
}

/* Form card */
.book-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    position: sticky;
    top: calc(var(--header-height, 70px) + var(--space-md));
}

.book-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.book-form-card .book-form-desc {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.book-form-card .form-field {
    margin-bottom: var(--space-sm);
}

.book-form-card input[type="text"],
.book-form-card input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #DDD9CE;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--beige-light);
    transition: border-color var(--transition-base);
    box-sizing: border-box;
}

.book-form-card input:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--white);
}

.book-form-card .btn {
    width: 100%;
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.book-privacy {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    text-align: center;
    margin-top: var(--space-sm);
}

.book-form-status {
    font-size: 0.9rem;
    color: var(--sage);
    text-align: center;
    margin-top: var(--space-sm);
    min-height: 1.4em;
}

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

    .book-form-card {
        position: static;
        order: -1;
    }

    .book-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .book-content h1 {
        font-size: 1.9rem;
    }

    .book-subtitle {
        font-size: 1.1rem;
    }
}

@media print {
    .site-header,
    .sticky-cta,
    .back-to-top,
    .scroll-indicator,
    .mobile-menu,
    .hero-badge,
    .cta-group {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }

    section {
        page-break-inside: avoid;
        padding: 24px 0;
    }

    .footer-crisis {
        border: 2px solid #000;
        padding: 12px;
        page-break-inside: avoid;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
