/* =============================================================================
   HOMEPAGE REDESIGN - Light & Open Design System
   =============================================================================
   Color System: See docs/design/COLOR-SYSTEM.md for full documentation
   
   Structure:
   1. Design Tokens (Light & Open)
   2. Typography
   3. Animations
   4. Hero Section
   5. Problem Section
   6. Stats Section
   7. [Future sections]
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS (Light & Open Color System)
   ============================================================================= */

:root {
    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    
    /* Legacy alias for compatibility */
    --font-primary: var(--font-body);
    
    /* ========================================
       FOUNDATION - Light & Airy
       ======================================== */
    --white: #ffffff;
    --snow: #fafbfc;
    --cloud: #f4f6f8;
    --mist: #e8ecf0;
    --silver: #c4cdd5;
    
    /* Warm neutrals */
    --pearl: #fdf8ef;
    --linen: #f5efe5;
    
    /* ========================================
       TEXT & CONTRAST
       ======================================== */
    --ink: #1a1a2e;
    --charcoal: #2d3748;
    --slate: #4a5568;
    --stone: #718096;
    
    /* ========================================
       BRAND GOLD - Signature Warmth
       ======================================== */
    --gold: #d4a853;
    --gold-rich: #c9952e;
    --gold-light: #f5e6c8;
    --gold-pale: #fdf8ef;
    --gold-glow: rgba(212, 168, 83, 0.12);
    
    /* ========================================
       ACCENTS - Vibrant Energy (Use Soft Tints)
       ======================================== */
    --coral: #ff6b6b;
    --coral-soft: #fff0f0;
    --sky: #4facfe;
    --sky-soft: #eef7ff;
    --mint: #2dd4bf;
    --mint-soft: #ecfdf5;
    --violet: #a78bfa;
    --violet-soft: #f5f3ff;
    --peach: #fb923c;
    --peach-soft: #fff7ed;
    
    /* Accent text colors (darker for contrast) */
    --mint-text: #0d9488;
    --coral-text: #dc2626;
    --sky-text: #2563eb;
    --peach-text: #ea580c;
    --violet-text: #7c3aed;
    
    /* Sage - Muted green for subtle accents */
    --sage: #7a8a80;
    --sage-deep: #5a6b60;
    --sage-light: #d4ded8;
    --sage-soft: #f0f4f2;
    
    /* ========================================
       SHADOWS - Soft & Light
       ======================================== */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-gold: 0 8px 30px rgba(212, 168, 83, 0.25);
    
    /* ========================================
       BORDER RADIUS - Friendly & Rounded
       ======================================== */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
    
    /* ========================================
       TRANSITIONS
       ======================================== */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    
    /* ========================================
       SEMANTIC ALIASES
       ======================================== */
    --bg-primary: var(--white);
    --bg-secondary: var(--snow);
    --bg-tertiary: var(--cloud);
    --bg-elevated: var(--white);
    
    --text-primary: var(--ink);
    --text-secondary: var(--charcoal);
    --text-muted: var(--slate);
    --text-subtle: var(--stone);
    
    --border-default: var(--mist);
    --border-subtle: var(--cloud);
    --border-strong: var(--silver);
    
    --accent-primary: var(--gold);
    --accent-hover: var(--gold-rich);
    
    --focus-ring: 0 0 0 4px var(--gold-glow);
    
    /* ========================================
       SPACING (8px base)
       ======================================== */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
}


/* =============================================================================
   2. TYPOGRAPHY - Display + Body System
   ============================================================================= */

/* Apply Plus Jakarta Sans as default body font */
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--white);
}

/* Nav updates for consistency */
.nav a,
.header-cta,
.header-phone-number {
    font-family: var(--font-body);
}


/* =============================================================================
   3. ANIMATIONS
   ============================================================================= */

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

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

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =============================================================================
   4. HERO SECTION - Light & Open
   ============================================================================= */

.hero.hero-dark {
    /* Dynamic height: fill remaining viewport below sticky header */
    --header-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: clamp(3rem, 6vh, 5rem) clamp(1rem, 4vw, 2rem);
    
    /* Light, airy background */
    background: var(--white);
    
    /* Subtle gradient overlay for depth */
    background-image: 
        radial-gradient(ellipse at 0% 0%, var(--gold-pale) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, var(--sky-soft) 0%, transparent 50%);
    
    /* No border, clean and open */
    border: none;
    
    /* Positioning */
    position: relative;
    overflow: hidden;
    
    /* Reset legacy */
    max-height: none;
    text-align: center;
}

/* Remove pseudo-elements for cleaner look */
.hero.hero-dark::before,
.hero.hero-dark::after {
    display: none;
}

/* -----------------------------------------------------------------------------
   Hero Background Elements (Hidden for clean look)
   ----------------------------------------------------------------------------- */

.hero-grid-bg,
.hero-grid-lines,
.hero-glow,
.hero-particles {
    display: none;
}

/* -----------------------------------------------------------------------------
   Hero Content
   ----------------------------------------------------------------------------- */

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: clamp(320px, 85vw, 1000px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--space-md);
    gap: clamp(0.5rem, 1.5vh, 1rem);
}

/* Hero Service Tags */
.hero-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease-smooth) forwards;
}

.hero-services span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--cloud);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.hero-services span:hover {
    border-color: var(--gold);
    color: var(--gold-rich);
}

@media (max-width: 640px) {
    .hero-services {
        gap: 0.5rem;
    }
    
    .hero-services span {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Headline - Fraunces Display Serif */
.hero.hero-dark .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw + 0.5rem, 5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0 0 clamp(0.75rem, 2vh, 1.5rem);
    
    /* Reset legacy */
    text-shadow: none;
    animation: none;
}

.hero-line {
    display: block;
    opacity: 0;
    animation: heroReveal 0.8s var(--ease-smooth) forwards;
}

.hero-line-1 { animation-delay: 0.1s; }
.hero-line-2 { animation-delay: 0.2s; }

.hero-line em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--gold), var(--gold-rich));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Remove underline - gradient text is the accent */
.hero-line em::after {
    display: none;
}

/* Legacy support - hide if present */
.hero-line em::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.5;
}

/* Subtitle */
.hero.hero-dark .hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate);
    max-width: min(600px, 85vw);
    margin: 0 0 clamp(1.5rem, 3vh, 3rem);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.3s forwards;
    
    /* Reset legacy */
    padding: 0;
    width: auto;
}

/* CTA Group */
.hero.hero-dark .hero-cta-group {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: 0 0 clamp(1.5rem, 3vh, 3rem);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.4s forwards;
    
    /* Reset legacy */
    width: auto;
    max-width: none;
    flex-wrap: nowrap;
}

/* Gold CTA Button (Primary) */
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-rich));
    border: none;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    box-shadow: var(--shadow-gold);
}

.btn-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 168, 83, 0.35);
}

.btn-glow:active {
    transform: translateY(0) scale(1);
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    background: var(--white);
    border: 2px solid var(--mist);
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-rich);
}

/* Social Proof */
.hero.hero-dark .hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--stone);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.5s forwards;
    
    /* Reset legacy */
    font-style: normal;
}

.hero.hero-dark .hero-social-proof strong {
    color: var(--charcoal);
    font-weight: 600;
}

.hero-proof-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gold-pale);
    border-radius: 50%;
    color: var(--gold-rich);
    flex-shrink: 0;
}

.hero-proof-icon svg {
    width: 10px;
    height: 10px;
}


/* =============================================================================
   HERO RESPONSIVE
   ============================================================================= */

/* Tablet portrait */
@media (max-width: 768px) {
    .hero.hero-dark {
        --header-height: 56px;
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
        padding: clamp(2.5rem, 5vh, 4rem) 1.25rem;
    }
    
    .hero.hero-dark .hero-headline {
        font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    }
    
    .hero.hero-dark .hero-subtitle {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }
    
    .btn-glow {
        width: 100%;
        max-width: 260px;
        padding: 0.8125rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero.hero-dark .hero-social-proof {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        font-size: 0.75rem;
    }
    
    .hero-line em::after {
        height: 3px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero.hero-dark {
        padding: clamp(2rem, 4vh, 3rem) 1rem;
    }
    
    .hero.hero-dark .hero-headline {
        font-size: clamp(1.5rem, 7vw, 1.875rem);
    }
    
    .hero.hero-dark .hero-subtitle {
        font-size: 0.875rem;
        max-width: 90vw;
    }
    
    .hero-content-wrapper {
        gap: clamp(0.25rem, 1vh, 0.5rem);
    }
}

/* Landscape mobile: reduce hero height, tighten spacing */
@media (max-height: 500px) and (orientation: landscape) {
    .hero.hero-dark {
        min-height: calc(100dvh - var(--header-height));
        padding: clamp(1.5rem, 3vh, 2.5rem) 2rem;
    }
    
    .hero.hero-dark .hero-headline {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .hero.hero-dark .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-services {
        margin-bottom: 0.5rem;
    }
    
    .hero-services span {
        font-size: 0.625rem;
        padding: 0.25rem 0.625rem;
    }
    
    .hero.hero-dark .hero-cta-group {
        margin-bottom: 0.75rem;
    }
    
    .hero-content-wrapper {
        gap: 0.25rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero.hero-dark .hero-headline {
        font-size: clamp(3rem, 4vw, 3.75rem);
    }
    
    .hero.hero-dark .hero-subtitle {
        font-size: 1.125rem;
        max-width: 520px;
    }
    
    .btn-glow {
        padding: 0.9375rem 2rem;
        font-size: 1rem;
    }
}

/* Ultra-wide / large monitors: cap content width, maintain proportions */
@media (min-width: 1800px) {
    .hero.hero-dark {
        padding: clamp(4rem, 8vh, 7rem) 2rem;
    }
    
    .hero.hero-dark .hero-headline {
        font-size: 4rem;
    }
    
    .hero-content-wrapper {
        max-width: 1100px;
    }
    
    .hero.hero-dark .hero-subtitle {
        font-size: 1.25rem;
        max-width: 600px;
    }
}

/* Very tall screens: add more breathing room */
@media (min-height: 1000px) {
    .hero.hero-dark {
        padding: clamp(5rem, 10vh, 8rem) clamp(1rem, 4vw, 2rem);
    }
    
    .hero.hero-dark .hero-cta-group {
        margin-bottom: var(--space-3xl);
    }
}


/* =============================================================================
   5. PROBLEM SECTION
   ============================================================================= */

.problem-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--cloud);
    border-bottom: 1px solid var(--mist);
}

.problem-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
}

.problem-lead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--slate);
    margin: 0 0 var(--space-2xl);
    line-height: 1.7;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-2xl);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.problem-list li {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: var(--charcoal);
    padding-left: var(--space-xl);
    position: relative;
}

.problem-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
}

.problem-kicker {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.6vw, 1rem);
    color: var(--slate);
    margin: 0 0 var(--space-xl);
    line-height: 1.7;
}

.problem-kicker strong {
    color: var(--ink);
    font-weight: 600;
}

/* Outline Gold Button (Secondary) */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-rich);
    background: var(--gold-pale);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-gold:hover {
    background: var(--gold-light);
}

.btn-outline-gold:active {
    background: var(--gold);
    color: var(--white);
}

/* Problem Section Responsive */
@media (max-width: 768px) {
    .problem-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .problem-list li {
        padding-left: var(--space-lg);
    }
    
    .problem-list li::before {
        width: 6px;
        height: 6px;
        top: 0.55em;
    }
}


/* =============================================================================
   6. STATS/RESULTS SECTION
   ============================================================================= */

.results-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--white);
}

.results-section .section-header {
    max-width: 1100px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.results-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.results-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
}

.results-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto var(--space-xl);
}

.result-stat-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.result-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    background: linear-gradient(135deg, var(--gold), var(--gold-rich));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.result-stat-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

.results-source {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--stone);
    text-align: center;
    margin: 0;
}

/* Stats Section Responsive */
@media (max-width: 768px) {
    .results-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .results-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .result-stat-card {
        padding: var(--space-xl);
    }
    
    .stat-number {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}


/* =============================================================================
   7. STORY/ABOUT SECTION
   ============================================================================= */

.story-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--white);
}

.story-content {
    max-width: 1100px;
    margin: 0 auto;
}

.story-with-image {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-text .section-label {
    display: block;
    width: fit-content;
    margin: 0 auto var(--space-md);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-align: center;
}

/* Centered story layout */
.story-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.story-centered .story-text {
    max-width: 1100px;
}

.story-centered .story-text h2 {
    text-align: center;
}

.story-centered .story-text p {
    text-align: center;
}

/* Profile image - rounded square */
.story-image-circle {
    width: clamp(160px, 18vw, 220px);
    height: clamp(200px, 22vw, 280px);
    border-radius: 16px;
    overflow: hidden;
    margin: var(--space-xl) 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.story-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.story-centered .story-cta-group {
    justify-content: center;
    margin-top: 0;
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 var(--space-lg);
    letter-spacing: -0.02em;
}

.story-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0 0 var(--space-md);
}

.story-text p strong {
    color: var(--ink);
    font-weight: 600;
}

.story-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.story-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-rich);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

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

/* Story Section Responsive */
@media (max-width: 768px) {
    .story-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .story-with-image {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .story-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .story-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* =============================================================================
   7.5. SERVICES OVERVIEW SECTION (Compact)
   ============================================================================= */

.services-overview-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--linen);
}

.services-overview-section .section-header {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.services-overview-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.services-overview-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.service-overview-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--snow);
    border-radius: var(--radius-md);
    border: 1px solid var(--mist);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.service-overview-item:hover {
    border-color: var(--gold-light);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-overview-item h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 var(--space-xs);
}

.service-overview-item p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.4;
}

.services-overview-link {
    text-align: center;
    margin-top: var(--space-xl);
}

.services-overview-link a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-rich);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.services-overview-link a:hover {
    color: var(--gold);
}

/* Services Overview Responsive */
@media (max-width: 900px) {
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .services-overview-section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .service-overview-item {
        padding: var(--space-md);
    }
    
    .service-overview-item h3 {
        font-size: 0.85rem;
    }
    
    .service-overview-item p {
        font-size: 0.75rem;
    }
}


/* =============================================================================
   8. HOW IT WORKS / SERVICES SECTION
   ============================================================================= */

.services-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--white);
}

.services-section .section-header {
    max-width: 1100px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.services-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.services-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.02em;
}

.services-section .section-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--slate);
    margin: 0;
}

.system-stages-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.system-stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.system-stage-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.system-stage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.stage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    color: var(--gold-rich);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-lg);
}

.system-stage-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 var(--space-sm);
}

.stage-price {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold-rich);
    font-weight: 600;
    margin: 0 0 var(--space-xs);
}

.stage-product {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--stone);
    margin: 0 0 var(--space-md);
}

.system-stage-card > p:not(.stage-price):not(.stage-product):not(.stage-outcome) {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0 0 var(--space-md);
}

.stage-outcome {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--stone);
    margin: 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--mist);
}

.stage-outcome strong {
    color: var(--ink);
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .system-stages-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .system-stage-card {
        padding: var(--space-xl);
    }
}


/* =============================================================================
   9. TRANSFORMATION SECTION
   ============================================================================= */

.transformation-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--cloud);
}

.transformation-section .section-header {
    max-width: 1100px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.transformation-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mint-text);
    background: var(--mint-soft);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.transformation-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
}

.transformation-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-2xl);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.transformation-list li {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: var(--charcoal);
    padding-left: var(--space-2xl);
    position: relative;
}

.transformation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-soft);
    color: var(--mint-text);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

.transformation-summary {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    margin: 0;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

/* Transformation Responsive */
@media (max-width: 768px) {
    .transformation-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .transformation-list li {
        padding-left: var(--space-xl);
    }
    
    .transformation-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}


/* =============================================================================
   10. RISK REVERSAL / PROMISE SECTION
   ============================================================================= */

.risk-reversal-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--white);
}

.risk-reversal-section .section-header {
    max-width: 1100px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.risk-reversal-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
}

.risk-reversal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto var(--space-2xl);
}

.risk-reversal-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.risk-reversal-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.risk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    color: var(--gold-rich);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.risk-reversal-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 var(--space-sm);
}

.risk-reversal-item p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
}

.risk-reversal-cta {
    text-align: center;
}

.risk-reversal-cta p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--stone);
    margin: var(--space-md) 0 0;
}

/* Risk Reversal Responsive */
@media (max-width: 768px) {
    .risk-reversal-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .risk-reversal-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}


/* =============================================================================
   11. FAQ SECTION
   ============================================================================= */

.faq-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--linen);
}

.faq-section .section-header {
    max-width: 1100px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.faq-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.faq-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.faq-item:hover {
    border-color: var(--gold-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--duration-fast) var(--ease-smooth);
}

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

.faq-question h3 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.faq-icon {
    color: var(--stone);
    transition: transform var(--duration-fast) var(--ease-smooth);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-smooth),
                padding var(--duration-normal) var(--ease-smooth);
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--gold-rich);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 500px;
}

.faq-more-link {
    text-align: center;
    margin-top: var(--space-xl);
}

.faq-more-link a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-rich);
    text-decoration: none;
}

.faq-more-link a:hover {
    color: var(--gold);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .faq-question {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.9375rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
    }
    
    .faq-item[aria-expanded="true"] .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}


/* =============================================================================
   12. FINAL CTA SECTION
   ============================================================================= */

.final-cta-section {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--gold-pale);
    text-align: center;
}

.final-cta-content {
    max-width: 1100px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
}

.final-cta-content > p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0 0 var(--space-sm);
}

.final-cta-reassurance {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--stone);
    margin: 0 0 var(--space-2xl) !important;
}

.final-cta-content .btn-primary.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.05rem;
}

.final-cta-scarcity {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--coral-text);
    margin: var(--space-lg) 0 0;
    font-weight: 500;
}

/* Final CTA Responsive */
@media (max-width: 768px) {
    .final-cta-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .final-cta-content h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
}


/* =============================================================================
   13. UNIFIED SIZING SYSTEM
   Consistent sizing and alignment across all core pages
   ============================================================================= */

/* -----------------------------------------------------------------------------
   13.0 Core Sizing Variables
   ----------------------------------------------------------------------------- */

:root {
    /* Content widths - consistent across all pages */
    --content-narrow: 1100px;   /* Single column content, problem section */
    --content-medium: 1100px;   /* Section headers, FAQ container */
    --content-wide: 1100px;     /* Cards, grids, main content */
    --content-max: 1100px;      /* Full-width grids */
    
    /* Section padding - consistent vertical rhythm */
    --section-padding-y: clamp(4rem, 8vh, 6rem);
    --section-padding-x: clamp(1rem, 4vw, 2rem);
    --section-padding-y-mobile: clamp(3rem, 6vh, 4rem);
    --section-padding-x-mobile: 1.25rem;
    
    /* Card padding */
    --card-padding: 2rem;
    --card-padding-mobile: 1.5rem;
    
    /* Grid gaps */
    --grid-gap: 1.5rem;
    --grid-gap-mobile: 1rem;
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* -----------------------------------------------------------------------------
   13.1 Global Page Container Consistency
   ----------------------------------------------------------------------------- */

/* Consistent section header styling for ALL pages */
.section-header {
    max-width: var(--content-medium);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 3rem;
}

/* H1 titles for inner pages */
.services-page-section .section-header h1,
.process-section .section-header h1,
.founder-section .section-header h1,
.faq-section .section-header h1,
.testimonials-section .section-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* H2 titles consistency */
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Section label (pill style - consistent across all pages) */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* Process page section label */
.process-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* Founder page section label */
.founder-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* Services page section label */
.services-page-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* Testimonials page section label */
.testimonials-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    background: var(--gold-pale);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* Section description consistency */
.section-description {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--slate);
    line-height: 1.7;
    margin: var(--space-sm) 0 0;
}

/* Base section styling */
.services-page-section,
.process-section,
.founder-section,
.faq-section,
.testimonials-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--white);
}

@media (max-width: 768px) {
    .services-page-section,
    .process-section,
    .founder-section,
    .faq-section,
    .testimonials-section {
        padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
    }
    
    /* Unified mobile H1 sizing for all inner pages */
    .services-page-section .section-header h1,
    .process-section .section-header h1,
    .founder-section .section-header h1,
    .faq-section .section-header h1,
    .testimonials-section .section-header h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.25;
    }
    
    /* Unified mobile section description */
    .services-page-section .section-description,
    .process-section .section-description,
    .founder-section .section-description {
        font-size: 0.9375rem;
    }
    
    /* Unified mobile section label (pill) sizing */
    .services-page-section .section-label,
    .process-section .section-label,
    .founder-section .section-label,
    .faq-section .section-label,
    .testimonials-section .section-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile H1 sizing */
    .services-page-section .section-header h1,
    .process-section .section-header h1,
    .founder-section .section-header h1,
    .faq-section .section-header h1,
    .testimonials-section .section-header h1 {
        font-size: 1.375rem;
    }
}

/* -----------------------------------------------------------------------------
   13.2 Services Page Styles
   ----------------------------------------------------------------------------- */

/* Pricing section wrapper */
.service-comparison-wrapper {
    max-width: var(--content-wide);
    margin: 0 auto 3rem;
}

.service-comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-comparison-table h2 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin: 0 0 1.5rem;
}

.comparison-pricing-note {
    text-align: center;
}

.comparison-pricing-note > div {
    display: grid;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-pricing-note p {
    font-family: var(--font-body);
    margin: 0;
}

.pricing-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
}

.pricing-option-card {
    background: var(--snow);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid var(--mist);
}

.pricing-option-title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--stone);
    margin: 0 0 0.5rem;
}

.pricing-option-price {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}

.pricing-option-desc {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0 0 1rem;
}

.pricing-option-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-option-list li {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--slate);
    line-height: 1.5;
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.pricing-option-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
    font-size: 0.75rem;
}

/* Value Stack Section */
.service-value-stack {
    max-width: var(--content-wide);
    margin: 0 auto 3rem;
    margin-left: auto;
    margin-right: auto;
    padding: var(--card-padding);
    background: var(--snow);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist);
}

.service-value-stack h2 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin: 0 0 1.5rem;
}

.value-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.value-stack-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--mist);
}

.value-stack-item .value-icon {
    color: var(--sage);
    font-size: 1.125rem;
    flex-shrink: 0;
    font-weight: 700;
}

.value-stack-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.25rem;
}

.value-stack-item p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

/* Services detail grid */
.service-details-grid {
    max-width: var(--content-wide);
    margin: 0 auto 3rem;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-detail-header h2 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.service-detail-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--slate);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.service-deliverables {
    margin-bottom: 2rem;
}

.service-deliverables h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.service-deliverables p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--stone);
    font-style: italic;
    margin: 0 0 0.75rem;
}

.service-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-deliverables li {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-deliverables li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}

/* Services example transformation */
.service-example {
    background: var(--snow);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    margin-top: 2rem;
}

.service-example h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 1rem;
}

.service-example p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

/* =============================================================================
   SERVICES CARDS GRID - Visual Card Layout
   ============================================================================= */

.services-cards-section {
    max-width: var(--content-wide);
    margin: 0 auto 3rem;
    padding: 0 var(--container-padding);
}

.services-cards-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-cards-section .section-header h2 {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-card-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.service-card-tagline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--stone);
    font-style: italic;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-card li {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
    font-size: 0.8rem;
}

.service-card-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: color 0.2s ease;
}

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

/* Services cards responsive */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card-icon {
        width: 44px;
        height: 44px;
    }
    
    .service-card-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Service example within cards section */
.services-cards-section .service-example {
    max-width: 1100px;
    margin: 0 auto;
}

.service-example p:last-child {
    margin-bottom: 0;
}

/* Pricing note styling */
.pricing-intro-text {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.pricing-clarification {
    text-align: center;
    color: var(--stone);
    margin: 1.5rem 0 1rem;
}

.pricing-cta {
    text-align: center;
}

/* Service link styling */
.service-link {
    font-size: 0.85rem;
    color: var(--stone);
    margin-top: 0.75rem;
}

.service-link a {
    color: var(--sage-deep);
    text-decoration: none;
    font-weight: 500;
}

.service-link a:hover {
    color: var(--sage);
}

/* Services integrations */
.services-integrations {
    max-width: var(--content-wide);
    margin: 0 auto 3rem;
    text-align: center;
}

.services-integrations h2 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.services-integrations > p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    margin: 0 0 1.5rem;
}

.integrations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.integration-group {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--slate);
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--mist);
}

.integration-group strong {
    color: var(--ink);
}

/* Who This Is For Section */
.who-this-is-for {
    max-width: var(--content-wide);
    margin: 0 auto 3rem;
    margin-left: auto;
    margin-right: auto;
    padding: var(--card-padding);
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    color: var(--snow);
}

.who-this-is-for h2 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--snow);
    text-align: center;
    margin: 0 0 0.75rem;
}

.who-this-is-for .who-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--mist);
    text-align: center;
    margin: 0 0 1.5rem;
}

.who-this-is-for .who-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem;
    max-width: 700px;
}

.who-this-is-for .who-list li {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--mist);
    line-height: 1.6;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.who-this-is-for .who-list li:last-child {
    border-bottom: none;
}

.who-this-is-for .who-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.who-this-is-for .who-outcome {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--snow);
    text-align: center;
    margin: 0;
}

/* Guarantee section */
.guarantee-section {
    max-width: var(--content-wide);
    margin: 0 auto 3rem;
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--gold);
}

.guarantee-section h3 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.75rem;
    text-align: center;
}

.guarantee-intro {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

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

.guarantee-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guarantee-item .guarantee-icon {
    margin-top: 2px;
}

.guarantee-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.375rem;
}

.guarantee-content p {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--sage);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.25rem;
}

.guarantee-content p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

/* Services CTA */
.services-cta {
    max-width: var(--content-wide);
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--pearl), var(--linen));
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    border: 1px solid var(--mist);
}

.services-cta p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--slate);
    margin: 0 0 1rem;
}

.services-cta p strong {
    font-size: 1.125rem;
    color: var(--ink);
}

.services-cta-subtext {
    font-size: 0.875rem;
    color: var(--stone);
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* Services page responsive */
@media (max-width: 768px) {
    .services-page-section {
        padding: clamp(3rem, 6vh, 4rem) 1.25rem;
    }
    
    .service-value-stack,
    .who-this-is-for,
    .guarantee-section,
    .services-cta {
        padding: 1.5rem;
    }
    
    .service-comparison-table,
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .pricing-options-grid,
    .value-stack-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------------------------------------
   13.3 Process Page Styles
   ----------------------------------------------------------------------------- */

.process-section {
    padding: clamp(4rem, 8vh, 6rem) clamp(1rem, 4vw, 2rem);
    background: var(--white);
}

/* Process timeline */
.process-timeline-detailed {
    max-width: var(--content-wide);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-phase {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--mist);
}

.timeline-phase-qualified {
    border-color: var(--gold);
    background: linear-gradient(to right, rgba(212, 168, 83, 0.03), transparent);
}

.phase-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: transparent;
    padding: 0;
}

.phase-number {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sage-deep);
    background: rgba(122, 138, 128, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.phase-header h2 {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    flex: 1;
}

.phase-duration {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--stone);
    background: var(--snow);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.phase-duration-qualified {
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold-rich);
}

.phase-content {
    font-family: var(--font-body);
}

.phase-content > p {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.phase-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap);
    margin-bottom: 1.5rem;
}

.phase-you,
.phase-deliverable {
    background: var(--snow);
    border-radius: 8px;
    padding: 1.25rem;
}

.phase-you h3,
.phase-deliverable h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.phase-you ul,
.phase-deliverable ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-you li,
.phase-deliverable li {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.phase-you li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--stone);
}

.phase-deliverable li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}

.phase-expectation {
    font-size: 0.9375rem;
    color: var(--slate);
    background: var(--cloud);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}

.phase-expectation strong {
    color: var(--ink);
}

.phase-note {
    font-size: 0.85rem;
    color: var(--stone);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Process ongoing section */
.process-ongoing {
    max-width: 1100px;
    margin: 3rem auto;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.process-ongoing h2 {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}

.process-ongoing > p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.process-ongoing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.process-ongoing li {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--slate);
    padding-left: 1.25rem;
    position: relative;
}

.process-ongoing li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}

/* Process CTA */
.process-cta {
    max-width: 1100px;
    margin: 3rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, var(--pearl), var(--linen));
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--mist);
}

.process-cta-headline {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}

.process-cta > p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

/* Process page responsive */
@media (max-width: 768px) {
    .process-section {
        padding: clamp(3rem, 6vh, 4rem) 1rem;
    }
    
    .process-section .section-header {
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .process-section .section-header h1 {
        text-align: center;
    }
    
    .process-section .section-description {
        text-align: center;
    }
    
    .process-timeline-detailed {
        gap: 1.25rem;
    }
    
    .timeline-phase {
        padding: 1.25rem;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .phase-header h2 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .phase-content > p {
        font-size: 0.875rem;
    }
    
    .phase-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phase-you,
    .phase-deliverable {
        padding: 1rem;
    }
    
    .phase-you h3,
    .phase-deliverable h3 {
        font-size: 0.8125rem;
    }
    
    .phase-you li,
    .phase-deliverable li {
        font-size: 0.8125rem;
    }
    
    .phase-expectation {
        font-size: 0.875rem;
        padding: 0.875rem;
    }
    
    .process-ongoing {
        margin: 2rem auto;
        padding: 1.25rem;
        text-align: left;
    }
    
    .process-ongoing h2 {
        font-size: 1.0625rem;
        text-align: left;
    }
    
    .process-ongoing > p {
        font-size: 0.875rem;
    }
    
    .process-ongoing ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .process-ongoing li {
        font-size: 0.8125rem;
    }
    
    .process-cta {
        margin: 2rem auto 0;
        padding: 1.5rem 1.25rem;
        text-align: center;
    }
    
    .process-cta-headline {
        font-size: 1.125rem;
    }
    
    .process-cta > p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 2.5rem 0.75rem;
    }
    
    .timeline-phase {
        padding: 1rem;
    }
    
    .phase-header h2 {
        font-size: 1rem;
    }
    
    .process-ongoing,
    .process-cta {
        padding: 1rem;
        border-radius: 8px;
    }
}

/* -----------------------------------------------------------------------------
   13.4 Founder Page Styles
   ----------------------------------------------------------------------------- */

.founder-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--grid-gap);
    max-width: var(--content-medium);
    margin: 0 auto 3rem;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.founder-hero .founder-info {
    align-items: center;
}

.founder-hero .founder-linkedin {
    align-self: center;
    margin: 0 auto;
}

.founder-info p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    margin: 0.5rem 0 0;
}

.founder-content {
    max-width: var(--content-medium);
    margin: 0 auto;
}

/* Founder stats */
.founder-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--grid-gap);
    margin-bottom: 3rem;
    padding: var(--card-padding-mobile);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.founder-stat {
    text-align: center;
}

.founder-stat .stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gold-rich);
    margin-bottom: 0.25rem;
}

.founder-stat .stat-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--stone);
}

/* Founder content headings */
.founder-content h3 {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--ink);
    margin: 2rem 0 1rem;
}

.founder-content h3:first-of-type {
    margin-top: 0;
}

.founder-content p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.founder-content p strong {
    color: var(--ink);
}

/* Founder expertise list */
.founder-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.founder-expertise-list li {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.founder-expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}

/* Experience cards */
.founder-experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.experience-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--mist);
}

.experience-card h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.25rem;
}

.experience-role {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--sage-deep);
    font-weight: 500;
    margin: 0 0 1rem;
}

.experience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-card li {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.experience-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Team building CTA */
.founder-team-building-cta {
    background: linear-gradient(135deg, rgba(122, 138, 128, 0.05), rgba(212, 168, 83, 0.05));
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--mist);
    margin-bottom: 2rem;
}

.founder-team-building-cta h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.founder-team-building-cta p {
    margin: 0;
}

.founder-team-building-cta a {
    color: var(--sage-deep);
    font-weight: 500;
}

.founder-team-building-cta a:hover {
    color: var(--sage);
}

/* Credentials grid */
.founder-credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.credential-group {
    background: var(--white);
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid var(--mist);
}

.credential-group h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.credential-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credential-group li {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--slate);
    line-height: 1.5;
    margin-bottom: 0.375rem;
}

.credential-group li strong {
    color: var(--ink);
}

/* PACT grid */
.founder-pact-intro {
    margin-bottom: 1rem;
}

.founder-pact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.founder-pact-item {
    display: flex;
    gap: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--mist);
}

.pact-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

.founder-pact-item strong {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--ink);
    display: block;
    margin-bottom: 0.25rem;
}

.founder-pact-item p {
    font-size: 0.8125rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.4;
}

.founder-pact-link {
    margin-bottom: 2rem;
}

.founder-pact-link a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--sage-deep);
    font-weight: 500;
    text-decoration: none;
}

.founder-pact-link a:hover {
    color: var(--sage);
}

/* Testimonials */
.founder-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.founder-testimonial {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--mist);
    border-left: 3px solid var(--gold);
    margin: 0;
}

.founder-testimonial p {
    font-style: italic;
    color: var(--slate);
    margin: 0 0 1rem;
}

.founder-testimonial cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--stone);
    font-style: normal;
    font-weight: 500;
}

/* Founder CTA box */
.founder-cta-box {
    background: linear-gradient(135deg, var(--pearl), var(--linen));
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--mist);
}

.founder-cta-box h3 {
    margin: 0 0 1rem;
}

.founder-cta-box p {
    max-width: 600px;
    margin: 0 auto 0.75rem;
}

.founder-cta-box p:last-of-type {
    margin-bottom: 1.5rem;
}

/* Founder page responsive */
@media (max-width: 768px) {
    .founder-section {
        padding: clamp(3rem, 6vh, 4rem) 1.25rem;
    }
    
    .founder-image {
        width: 160px;
        height: 160px;
    }
    
    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-experience-cards {
        grid-template-columns: 1fr;
    }
    
    .founder-credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-pact-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .founder-stats {
        grid-template-columns: 1fr;
    }
    
    .founder-credentials-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------------------------------------
   13.5 FAQ Page Styles (Full Page Version)
   ----------------------------------------------------------------------------- */

/* FAQ page section header adjustments */
.faq-section .section-header h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

/* FAQ search wrapper */
.faq-search-wrapper {
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.faq-search-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.faq-search-container {
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122, 138, 128, 0.1);
}

.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--stone);
    pointer-events: none;
}

/* FAQ categories */
.faq-categories-wrapper {
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer logo - no filter needed on light background */
.footer-logo {
    filter: none;
}

.faq-category-tab {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate);
    background: var(--white);
    border: 1px solid var(--mist);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-category-tab:hover {
    border-color: var(--stone);
}

.faq-category-tab.active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* FAQ CTA at bottom */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--mist);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--slate);
    margin: 0 0 1rem;
}

/* FAQ page responsive */
@media (max-width: 768px) {
    .faq-categories {
        gap: 0.375rem;
    }
    
    .faq-category-tab {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

/* =============================================================================
   SCHEDULE PAGE (Book a Call) - Core Page Styling
   ============================================================================= */

.schedule-page-section {
    padding: 4rem 1.5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-page-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.schedule-page-section .section-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.schedule-page-section .section-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Calendar Container */
.schedule-calendar-container {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.schedule-calendar-container .schedule-calendar-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--mist);
    overflow: hidden;
}

.schedule-calendar-container .calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    width: 100%;
}

.schedule-calendar-container .schedule-timezone-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--stone);
    margin-top: 1rem;
    font-family: var(--font-body);
}

/* What to Expect Section */
.schedule-what-to-expect {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--snow);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist);
}

.schedule-what-to-expect h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    text-align: center;
    margin-bottom: 2rem;
}

.schedule-expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.schedule-expect-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.schedule-expect-item .expect-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
}

.schedule-expect-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.25rem;
}

.schedule-expect-item p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

/* Contact Alternative */
.schedule-contact-alternative {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--mist);
    max-width: 700px;
    margin: 0 auto;
}

.schedule-contact-alternative p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate);
    margin: 0;
}

.schedule-contact-alternative a {
    color: var(--gold-rich);
    text-decoration: underline;
    text-decoration-color: var(--gold-light);
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.schedule-contact-alternative a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

/* Calendar Loading State */
.schedule-calendar-container .calendar-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--stone);
    font-family: var(--font-body);
}

.schedule-calendar-container .calendar-loading.hidden {
    display: none;
}

/* Schedule Page Responsive */
@media (max-width: 768px) {
    .schedule-page-section {
        padding: 3rem 1rem 2rem;
    }
    
    .schedule-page-section .section-header h1 {
        font-size: 1.75rem;
    }
    
    .schedule-page-section .section-description {
        font-size: 1rem;
    }
    
    .schedule-what-to-expect {
        padding: 1.5rem;
    }
    
    .schedule-what-to-expect h2 {
        font-size: 1.25rem;
    }
    
    .schedule-expect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .schedule-calendar-container .calendly-inline-widget {
        height: 650px;
    }
}

@media (max-width: 480px) {
    .schedule-page-section {
        padding: 2rem 0.75rem 1.5rem;
    }
    
    .schedule-calendar-container .calendly-inline-widget {
        height: 600px;
    }
    
    .schedule-what-to-expect {
        padding: 1.25rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    
    .schedule-contact-alternative {
        padding: 1rem;
    }
}