/* =============================================
   FOUNDER THEORY - MAIN STYLESHEET
   ============================================= */

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    /* Colors */
    --color-primary: #e85a00;
    --color-secondary: #0a1a2a;
    --color-accent: #d4ff2a;
    --color-background: #fff7d9;
    --color-white: #ffffff;

    /* Text */
    --text-on-light: #0a1a2a;
    --text-on-light-muted: #3a4a5a;
    --text-on-dark: #fff7d9;
    --text-on-dark-muted: #b8c4d0;

    /* Typography */
    --font-display: 'Merriweather', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-max: 1200px;
    --nav-height: 4.5rem;

    /* Radius */
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(10, 26, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 26, 42, 0.1);
    --shadow-lg: 0 12px 32px rgba(10, 26, 42, 0.12);

    /* Transitions */
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--color-background);
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

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

ul {
    list-style: none;
}

::selection {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

/* =============================================
   ACCESSIBILITY - SKIP LINK
   ============================================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    z-index: 1000;
    padding: var(--space-3) var(--space-6);
    background: var(--color-secondary);
    color: var(--text-on-dark);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
    top: var(--space-4);
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* =============================================
   ACCESSIBILITY - FOCUS STYLES
   ============================================= */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

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

/* High contrast focus for dark backgrounds */
.final-cta :focus-visible,
.problem :focus-visible {
    outline-color: var(--color-accent);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.display-1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.heading-1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
}

.heading-2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    line-height: 1.25;
}

.heading-3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.body-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

.overline {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-on-light-muted);
}

/* Trademark symbol */
.tm {
    font-size: 0.5em;
    vertical-align: super;
    font-weight: normal;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-lg);
    transition: all 0.2s var(--ease-out);
}

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

.btn-primary:hover {
    background: #d14e00;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 90, 0, 0.3);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-secondary);
}

.btn-accent:hover {
    background: #c4ef1a;
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--text-on-dark);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: 1.0625rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-6);
    background: var(--color-background);
    transition: box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.nav-links {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-on-light-muted);
    transition: color 0.2s var(--ease-out);
}

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

.nav-cta {
    margin-left: var(--space-4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s var(--ease-out);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-background);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
}

.nav-mobile .nav-link {
    display: block;
    padding: var(--space-3) 0;
    font-size: 1.125rem;
}

.nav-mobile-cta {
    margin-top: var(--space-4);
    display: block;
    text-align: center;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile.open {
        display: block;
    }
}

@media (max-width: 400px) {
    .nav-logo img {
        height: 44px;
    }
}

.nav-spacer {
    height: var(--nav-height);
}

/* =============================================
   HERO SECTION - Bold Frame Treatment
   ============================================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: var(--space-16) 0 var(--space-20) 0;
    overflow: visible;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-background) 40%, rgba(232, 90, 0, 0.06) 100%);
}

.hero .container {
    max-width: 1400px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 480px;
        gap: var(--space-4);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    background: var(--color-background);
    padding: var(--space-12) var(--space-12) var(--space-12) var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow:
        0 12px 60px rgba(10, 26, 42, 0.18),
        0 4px 24px rgba(232, 90, 0, 0.08);
    border-left: 8px solid var(--color-accent);
}

@media (max-width: 1023px) {
    .hero-content {
        padding: var(--space-6);
        margin: 0;
        max-width: none;
        border-radius: var(--radius-xl);
    }
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-5);
    background: var(--color-accent);
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
}

.hero-headline {
    margin-bottom: var(--space-6);
    color: var(--color-secondary);
}

.hero-subhead {
    margin-bottom: var(--space-8);
    color: var(--text-on-light-muted);
    max-width: 48ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 400px;
    overflow: visible;
}

.hero-portrait {
    position: relative;
    width: 560px;
    height: 560px;
    margin-right: -100px;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

@media (max-width: 1023px) {
    .hero {
        overflow: hidden;
    }

    .hero-visual {
        display: none;
    }
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}

.hero-halftone {
    position: absolute;
    pointer-events: none;
}

.hero-halftone-1 {
    top: 50%;
    right: -5%;
    transform: translateY(-45%);
    z-index: 1;
    opacity: 1;
    width: 110vw;
    height: auto;
}

.hero-halftone-2 {
    bottom: -30px;
    right: 80px;
    z-index: 1;
    opacity: 1;
}

.hero-accent-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
    z-index: 10;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-12) 0;
    }

    .hero-graphic {
        max-width: 300px;
    }
}

/* =============================================
   PROBLEM SECTION - Bold Typography Focus
   ============================================= */
.problem {
    padding: var(--space-24) 0;
    background: var(--color-secondary);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.problem-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-overline {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.problem-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: var(--space-10);
    color: var(--text-on-dark);
}

.problem-headline .line-accent {
    color: var(--color-primary);
}

.problem-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    max-width: 900px;
}

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

.problem-body-left,
.problem-body-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.problem-body p {
    font-size: 1.0625rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    margin: 0;
}

.problem-highlight {
    color: var(--color-accent);
    font-weight: 600;
}

.highlight-marker {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    padding: 0 0.25rem;
    margin: 0 -0.25rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 600;
}

.founder-audit {
    color: var(--color-primary);
    font-weight: 600;
}

.nowrap {
    white-space: nowrap;
}

@media (max-width: 800px) {
    .nowrap {
        white-space: normal;
    }

    .problem-headline {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
}

.problem-halftone-1 {
    position: absolute;
    top: -80px;
    right: 10%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--color-primary) 3px, transparent 3px);
    background-size: 18px 18px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

.problem-halftone-2 {
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(var(--color-accent) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.25;
    mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

/* =============================================
   WHO THIS IS FOR SECTION
   ============================================= */
.who-for {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.who-for-halftone {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(var(--color-accent) 2.5px, transparent 2.5px);
    background-size: 14px 14px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

.who-for-container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.who-for-overline {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
    display: block;
}

.who-for-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: var(--space-3);
}

.who-for-subhead {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-on-light-muted);
    max-width: 700px;
    margin-bottom: var(--space-8);
}

.who-for-divider {
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin-bottom: var(--space-8);
}

.who-for-intro {
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: var(--space-6);
}

.who-for-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
}

.who-for-item {
    display: inline-flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 1.1875rem;
    line-height: 1.45;
    padding: var(--space-4) var(--space-8) var(--space-4) var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    max-width: 100%;
}

@media (max-width: 600px) {
    .who-for-item {
        display: flex;
        width: 100%;
        font-size: 1rem;
        padding: var(--space-4) var(--space-6) var(--space-4) var(--space-4);
    }

    .who-for-check {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .who-for-headline {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

.who-for-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    margin-top: 1px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: var(--space-24) 0;
    background: var(--color-white);
    overflow-x: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    min-width: 0;
}

.about-photo,
.about-content {
    min-width: 0;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 280px 1fr;
        gap: var(--space-16);
    }
}

.about-photo {
    display: flex;
    justify-content: center;
}

.about-photo-frame {
    position: relative;
    width: 240px;
    height: 240px;
}

.about-photo-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

.about-photo-initials {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-on-dark-muted);
}

.about-halftone {
    position: absolute;
    inset: -30px;
    z-index: 0;
}

.about-content .overline {
    margin-bottom: var(--space-3);
    display: block;
}

.about-content .heading-1 {
    margin-bottom: var(--space-6);
}

.about-bio {
    overflow-wrap: break-word;
    word-break: break-word;
}

.about-bio p {
    margin-bottom: var(--space-4);
    color: var(--text-on-light-muted);
}

.about-bio p:last-child {
    color: var(--color-primary);
    font-weight: 600;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-10);
    margin-top: var(--space-8);
}

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

.about-badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.about-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-on-light-muted);
    margin-top: var(--space-1);
}

@media (max-width: 600px) {
    .about-badges {
        gap: var(--space-4) var(--space-6);
    }

    .about-badge-num {
        font-size: 1.5rem;
    }
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta {
    background: var(--color-secondary);
    color: var(--text-on-dark);
    padding: var(--space-32) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.cta-headline {
    margin-bottom: var(--space-4);
}

.cta-subhead {
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-10);
}

.cta-button {
    margin-bottom: var(--space-12);
}

.cta-divider {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    color: var(--text-on-dark-muted);
    font-size: 0.875rem;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* Contact Form */
.cta-form {
    text-align: left;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

@media (max-width: 500px) {
    .cta-form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: var(--text-on-dark);
    transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-block {
    width: 100%;
}

.btn-block:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(212, 255, 42, 0.15);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.form-status.error {
    display: block;
    background: rgba(232, 90, 0, 0.15);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.cta-halftone {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.cta-halftone-1 {
    bottom: 0;
    left: 0;
}

.cta-halftone-2 {
    top: 0;
    right: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: var(--space-8) 0;
    border-top: 1px solid rgba(10, 26, 42, 0.1);
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-on-light-muted);
}

.footer-links {
    margin-top: var(--space-3);
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--text-on-light-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* =============================================
   HALFTONE CANVAS STYLING
   ============================================= */
canvas[data-halftone] {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-halftone-1 {
    top: -80px;
    right: -80px;
    z-index: 0;
    opacity: 0.5;
    transform: rotate(5deg);
}

.hero-halftone-2 {
    bottom: -100px;
    left: -100px;
    opacity: 0.4;
}

.problem-halftone {
    opacity: 0.35;
    bottom: -80px;
    right: -80px;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
}

.hero .container,
.problem .container,
.who-for .container,
.about .container,
.final-cta .container {
    position: relative;
    z-index: 1;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    padding: var(--space-10) 0 var(--space-16) 0;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.faq-header .overline {
    margin-bottom: var(--space-3);
    display: block;
}

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

.faq-item {
    border-bottom: 1px solid rgba(10, 26, 42, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-4) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-on-light-muted);
    transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer-inner {
    padding-bottom: var(--space-6);
    color: var(--text-on-light-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   QUOTE SECTIONS
   ============================================= */

.quote-section {
    padding: var(--space-16) 0;
}

.quote-hero {
    padding: var(--space-20) 0;
}

.quote-inline {
    padding: var(--space-12) 0;
}

.quote-grid-section {
    padding: var(--space-20) 0;
}

/* Quote Cards */
.quote-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Featured Quote (Hero placement - centered, prominent) */
.quote-featured {
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-8);
}

.quote-featured::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.85) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.quote-featured > * {
    position: relative;
    z-index: 1;
}

.quote-text-wrapper {
    display: inline;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.3;
    color: var(--color-secondary);
    font-weight: 700;
}

.opening-quote,
.closing-quote {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-primary);
    opacity: 0.8;
    line-height: 1;
    font-weight: 700;
}

.opening-quote {
    margin-right: 0.15em;
}

.closing-quote {
    margin-left: 0.15em;
}

.quote-divider {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: var(--space-6) auto;
    border-radius: 999px;
}

.quote-featured .quote-author {
    font-size: 1.125rem;
}

/* Quote Text (for other quote types) */
.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.35;
    color: var(--color-secondary);
    font-weight: 400;
    margin-bottom: var(--space-6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Standard Quote (Inline placement - left-aligned, subtle) */
.quote-standard {
    max-width: 700px;
    padding-left: var(--space-6);
    border-left: 3px solid var(--color-accent);
}

.quote-standard .quote-text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
}

/* Compact Quote (Grid placement - card style) */
.quote-compact {
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--color-primary);
}

.quote-compact .quote-text {
    font-size: 1.0625rem;
    line-height: 1.5;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: var(--space-4);
    color: var(--color-secondary);
}

/* Quote Attribution */
.quote-attribution {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.quote-featured .quote-attribution {
    align-items: center;
}

.quote-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

.quote-title {
    font-size: 0.875rem;
    color: var(--text-on-light-muted);
    font-weight: 400;
}

/* Quote Section Footer (integrated into section bottom) */
.quote-section-footer {
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
    border-top: 2px dotted rgba(212, 255, 42, 0.4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-section-footer .quote-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

.quote-section-footer .quote-attribution {
    margin-left: var(--space-12);
}

.quote-section-footer .quote-author {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.9375rem;
}

.quote-section-footer .quote-title {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-2);
}

.quote-section-footer .opening-quote,
.quote-section-footer .closing-quote {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-accent);
    opacity: 0.8;
    line-height: 1;
    font-weight: 700;
}

.quote-section-footer .opening-quote {
    margin-right: 0.1em;
}

.quote-section-footer .closing-quote {
    margin-left: 0.1em;
}

@media (max-width: 768px) {
    .quote-section-footer {
        padding-bottom: var(--space-8);
    }

    .quote-section-footer .quote-attribution {
        margin-left: var(--space-4);
    }
}

/* Quote Grid */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .quote-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

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

/* Mobile Adjustments */
@media (max-width: 767px) {
    .quote-hero {
        padding: var(--space-12) 0;
    }

    .quote-inline {
        padding: var(--space-8) 0;
    }

    .quote-featured {
        padding: var(--space-6);
    }

    .quote-text-wrapper {
        font-size: 1.5rem;
    }

    .opening-quote,
    .closing-quote {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .quote-standard {
        padding-left: var(--space-4);
    }

    .quote-compact {
        padding: var(--space-5);
    }
}

/* Quote Pair (Side-by-Side Card Grid) */
.quote-pair {
    padding: var(--space-12) 0;
}

.quote-pair-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .quote-pair-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.quote-card-pair {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(10, 26, 42, 0.08);
    border-top: 4px solid var(--color-primary);
}

.quote-card-pair .quote-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: var(--space-6);
}

.quote-card-pair .quote-author {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9375rem;
    margin-bottom: var(--space-2);
}

.quote-card-pair .quote-title {
    font-size: 0.8125rem;
    color: var(--text-on-light-muted);
}

/* =============================================
   WAYS TO WORK SECTION
   ============================================= */
.ways-to-work {
    padding: var(--space-20) 0;
    background: var(--color-background);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-header .overline {
    display: block;
    margin-bottom: var(--space-3);
}

.section-header .heading-1 {
    margin-bottom: var(--space-4);
}

.section-subhead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-on-light-muted);
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .offerings-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}

/* Offering Cards */
.offering-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
}

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

/* Flagship variant - emphasized */
.offering-flagship {
    background: #102133;
    border-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.offering-flagship * {
    color: var(--text-on-dark);
}

.offering-flagship .offering-title,
.offering-flagship .offering-price {
    color: var(--color-white);
}

.offering-flagship .offering-tagline {
    color: var(--text-on-dark-muted);
}

.offering-flagship .offering-description p {
    color: rgba(255, 255, 255, 0.9);
}

.offering-flagship .include-label,
.offering-flagship .include-item {
    color: var(--text-on-dark-muted);
}

.offering-flagship .include-icon {
    background: var(--color-accent);
    color: var(--color-secondary);
}

.offering-flagship .offering-note {
    color: var(--color-primary);
}

/* Standard variant */
.offering-standard {
    background: var(--color-white);
}

.offering-standard .include-icon {
    background: var(--color-secondary);
    color: var(--color-accent);
}

/* Offering Components */
.offering-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    margin-bottom: var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    width: fit-content;
}

.offering-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.offering-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.price-primary {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.offering-flagship .offering-price,
.offering-flagship .price-primary {
    color: var(--color-white);
}

.offering-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.offering-description {
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.offering-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-on-light-muted);
    margin-bottom: var(--space-4);
}

.offering-description p:last-child {
    margin-bottom: 0;
}

/* Includes List */
.offering-includes {
    margin-bottom: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(10, 26, 42, 0.1);
}

.offering-flagship .offering-includes {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.include-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-on-light-muted);
    margin-bottom: var(--space-4);
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-on-light);
}

.include-item:last-child {
    margin-bottom: 0;
}

.include-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.6875rem;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    margin-top: 1px;
}

.offering-cta {
    width: 100%;
    margin-bottom: var(--space-3);
}

.offering-note {
    text-align: center;
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-on-light-muted);
    line-height: 1.4;
}

/* Halftone decoration */
.offering-halftone {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

.offering-card > *:not(.offering-halftone) {
    position: relative;
    z-index: 1;
}

/* Mobile Adjustments */
@media (max-width: 899px) {
    .offering-card {
        padding: var(--space-8);
    }

    .offering-title {
        font-size: 1.5rem;
    }

    .offering-price,
    .price-primary {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .offering-price,
    .price-primary {
        font-size: 1.5rem;
    }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) var(--space-6);
    background: var(--color-secondary);
    color: var(--text-on-dark);
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    font-size: 0.9375rem;
    margin: 0;
    max-width: 600px;
}

.cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-buttons {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

.cookie-banner .btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-4);
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}