/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PitCrew Labs color palette */
    --primary-slate: #112347;        /* navy - primary surface */
    --primary-slate-dark: #0C1E38;   /* deep navy - hero, nav, dark sections */
    --primary-slate-darker: #0C1E38; /* deep navy - darkest */
    --secondary-teal: #00BFB5;       /* electric teal - brand accent, AI elements */
    --secondary-teal-dark: #00957A;  /* teal mid - hover, positive deltas, tags on light */
    --teal-light: #EAF7F5;           /* teal pale - tags, badges on ivory */
    --teal-dark: #006B5E;            /* teal dark - text on ivory/white cards */
    --accent-amber: #E6A817;         /* action gold - CTA buttons + inline revenue highlights */
    --accent-amber-dark: #C9972A;    /* deep gold - CTA hover/pressed state */
    --gold: #D4AF37;                 /* metallic gold - .stat-number large figures only (11×, 34%, $94K) */
    --gold-pale: #F9F0DC;            /* gold pale - highlight backgrounds, alert fills */
    --navy-mid: #1C3461;             /* navy mid - cards on dark, hover states */
    --navy-light: #284070;           /* navy light - borders on dark */
    --neutral-dark: #0C1E38;         /* body text - primary text on ivory/white */
    --neutral-medium: #6B5F52;       /* warm grey - secondary text, captions */
    --neutral-light: #F7F4EF;        /* ivory - section backgrounds */
    --warm-white: #FDFCFA;           /* warm white - cards, modals, inputs */
    --white: #ffffff;
    --border-color: #E8E0D5;         /* warm border - card borders, dividers */
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

body {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--neutral-dark);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.nav-logo-text {
    font-size: 11px;
    font-weight: 500;
    color: #0C1E38;
    font-family: inherit;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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


/* ── Gold Sparkle Animation ── */
@keyframes goldShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}


/* Teal text highlight */
.teal-highlight {
    color: var(--secondary-teal);
}
.hero-body {
    font-size: 19px;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.65);
}
.hero-body-claim {
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
}
.hero-body-teal {
    color: var(--secondary-teal);
    font-weight: 600;
}
.hero-body-amber {
    color: var(--accent-amber);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: var(--primary-slate-darker);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: #0C1E38;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3) translateX(15%) translateY(8%);
    transform-origin: center center;
    filter: brightness(0.82) saturate(0.78);
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(12, 30, 56, 0.97) 0%,
        rgba(12, 30, 56, 0.92) 30%,
        rgba(12, 30, 56, 0.55) 58%,
        rgba(12, 30, 56, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 62%;
    max-width: 720px;
    padding: 80px 0 80px 8%;
    text-align: left;
}

@media (max-width: 900px) {
    .hero-content {
        width: 65%;
        padding: 60px 0 60px 6%;
    }
    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(12, 30, 56, 0.97) 0%,
            rgba(12, 30, 56, 0.95) 50%,
            rgba(12, 30, 56, 0.6) 100%
        );
    }
}

@media (max-width: 600px) {
    .nav-logo-text {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 500px;
    }
    .hero-content {
        width: 100%;
        padding: 48px 6%;
    }
    .hero-overlay {
        background: rgba(12, 30, 56, 0.88);
    }
    .hero-photo {
        transform: scale(1.5) translateX(10%);
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-amber);
    color: #0C1E38;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    color: var(--neutral-dark);
}

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

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color: var(--primary-slate);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--neutral-medium);
    line-height: 1.7;
}

/* Value Prop Section */
.value-prop {
    padding: var(--spacing-2xl) 0;
}

.value-prop h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--neutral-dark);
}

.value-prop p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-medium);
    margin-bottom: var(--spacing-md);
}

/* Page Header */
.page-header {
    background-color: var(--primary-slate-darker);
    color: var(--white);
    padding: 40px 10%;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Content Section */
.content-section {
    padding: var(--spacing-2xl) 0;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--neutral-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--neutral-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-medium);
    margin-bottom: var(--spacing-md);
}

.content-section strong {
    color: var(--neutral-dark);
}

/* Contact Page */
/* ── Contact Page ── */
.contact-section {
    background: var(--neutral-light);
    padding: 64px 5%;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 760px;
    margin: 32px auto 0;
}

.contact-item {
    background: var(--warm-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.contact-item-full {
    grid-column: 1 / -1;
}

.contact-label {
    color: var(--secondary-teal-dark);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.contact-value {
    color: var(--primary-slate);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

.contact-value a {
    color: var(--primary-slate);
    text-decoration: none;
}

.contact-value a:hover {
    color: var(--secondary-teal);
}

.contact-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    font-style: normal;
    margin-top: 10px;
}

.form-placeholder {
    background: var(--primary-slate-dark);
    border-radius: 12px;
    padding: 40px;
    max-width: 760px;
    margin: 32px auto 0;
    text-align: center;
}

.form-placeholder h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.form-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}

.contact-cta-button {
    display: inline-block;
    background: var(--accent-amber);
    color: #0C1E38;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    margin-top: 20px;
    border: none;
    text-decoration: none;
    transition: background 0.2s ease;
}

.contact-cta-button:hover {
    background: var(--accent-amber-dark);
}

/* Legal Content */
.legal-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
    color: var(--neutral-medium);
}

.legal-content em {
    color: var(--neutral-medium);
    display: block;
    margin-bottom: var(--spacing-lg);
}

/* Footer */
footer {
    background-color: var(--primary-slate-darker);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-section a:hover {
    color: var(--secondary-teal);
}

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

/* ── Hero additions ── */
.hero-eyebrow {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: var(--spacing-sm);
}

/* ── Tension Section ── */
.tension-section {
    padding: 64px 10%;
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    position: relative;
}
.tension-eyebrow {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: var(--spacing-sm);
}

.tension-heading {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neutral-dark);
    max-width: 900px;
    margin-bottom: 24px;
}

.tension-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.tension-card {
    background-color: var(--warm-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-xl);
}

.tension-card-highlight {
    background-color: var(--warm-white);
    border-color: var(--border-color);
}

.tension-card-label {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: var(--spacing-sm);
}



.tension-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-sm);
}

.tension-card-body {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--neutral-medium);
    margin: 0;
}

/* ── How It Works Section ── */
.how-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--warm-white);
    border-top: 1px solid var(--border-color);
}

.how-intro {
    max-width: 680px;
    margin: 0 auto 32px;
    text-align: center;
}

.how-eyebrow {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: var(--spacing-sm);
}

.how-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-dark);
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
}

.how-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-medium);
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--border-color);
}

.how-step:last-child {
    border-bottom: none;
}

.how-step-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-teal);
    min-width: 48px;
    padding-top: 2px;
    line-height: 1;
}

.how-step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-xs);
}

.how-step-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-medium);
    margin: 0;
}

/* ── Icons ── */
.tension-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    color: var(--secondary-teal);
    display: block;
}

.hiw-step-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hiw-step-icon {
    width: 22px;
    height: 22px;
    color: var(--secondary-teal);
    display: block;
}

.biz-stat-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    display: block;
    margin: 0 auto 12px;
}

.biz-card-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-amber);
    display: block;
    margin-bottom: 16px;
}

.contact-icon {
    width: 28px;
    height: 28px;
    color: var(--secondary-teal);
    display: block;
    margin-bottom: 10px;
}

/* ── Social Proof Split ── */
.social-proof-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.sps-image-col {
    overflow: hidden;
    position: relative;
}

.sps-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.92) saturate(0.85) hue-rotate(-5deg);
    filter: brightness(0.92) saturate(0.85);
    display: block;
}

.sps-content-col {
    background: #0C1E38;
    padding: 64px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.sps-eyebrow {
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00BFB5;
    font-weight: 500;
}

.sps-heading {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

.sps-body {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
}

.sps-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 8px;
}

.sps-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    flex-shrink: 0;
}

.sps-stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .social-proof-split {
        grid-template-columns: 1fr;
    }
    .sps-image-col {
        height: 280px;
    }
    .sps-content-col {
        padding: 48px 6%;
    }
}

/* ── How It Works (hiw) ── */
.hiw-section {
  background: var(--warm-white);
  padding: 72px 8%;
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.hiw-eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-teal);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}
.hiw-heading {
  font-size: 44px;
  font-weight: 700;
  color: var(--neutral-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.hiw-subhead {
  font-size: 19px;
  color: var(--neutral-medium);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hiw-sources-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-medium);
  font-weight: 500;
  margin-bottom: 14px;
}
.hiw-sources {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hiw-source-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--neutral-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 15px;
  color: var(--neutral-dark);
  font-weight: 500;
}
.hiw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot-teal { background: var(--secondary-teal); }
.dot-amber { background: var(--accent-amber); }
.dot-blue { background: #378ADD; }
.dot-purple { background: #7F77DD; }
.dot-green { background: #639922; }
.dot-pink { background: #E8529A; }
.dot-orange { background: #E8705A; }
.dot-slate { background: #22B5E8; }
.hiw-flow-arrow {
  font-size: 22px;
  color: var(--border-color);
  margin: 4px auto 20px;
}
.hiw-ai-engine {
  background: var(--primary-slate-dark);
  border-radius: 14px;
  padding: 28px 36px;
  max-width: 680px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.hiw-ai-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 6px;
}
.hiw-ai-desc {
  font-size: 16px;
  color: rgba(253,252,250,0.6);
  line-height: 1.6;
}
.hiw-ai-badge {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--secondary-teal);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.hiw-hipaa {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 680px;
  margin: 0 auto 32px;
  padding: 16px 20px;
  background: #F9F0DC;
  border-radius: 8px;
  border-left: 3px solid #C9972A;
  text-align: left;
}
.hiw-hipaa p {
  font-size: 15px;
  color: #6B5F52;
  line-height: 1.6;
  margin: 0;
}
.hiw-hipaa-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A87B1E;
}
.hiw-steps {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.hiw-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-teal);
  min-width: 32px;
  padding-top: 3px;
}
.hiw-step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 8px;
}
.hiw-step-body {
  font-size: 17px;
  color: var(--neutral-medium);
  line-height: 1.75;
}
.hiw-step-body strong {
  color: var(--neutral-dark);
  font-weight: 500;
}
.hiw-step-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.hiw-stag {
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.hiw-stag-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1px solid var(--teal-light);
}
.hiw-stag-amber {
  background: var(--gold-pale);
  color: var(--teal-dark);
}

/* ── HIW Photo Strip ── */
.hiw-photo-strip {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-top: 48px;
  margin-bottom: -72px;
  height: 380px;
  overflow: hidden;
}

.hiw-strip-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.88) saturate(0.82);
  display: block;
}

.hiw-strip-overlay {
  display: none;
}

.hiw-strip-label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  max-width: 560px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hiw-photo-strip {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-top: 24px;
    margin-bottom: -72px;
    height: 260px;
  }
  .hiw-strip-overlay {
    padding: 20px 24px;
  }
  .hiw-strip-label {
    font-size: 13px;
  }
}

/* ── Business Case Section ── */
.biz-section {
  background: #0C1E38;
  padding: 72px 10% 56px;
  text-align: center;
}

.biz-eyebrow {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00BFB5;
  font-weight: 500;
  margin-bottom: 14px;
}
.biz-heading {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.biz-heading em {
  color: #00BFB5;
  font-style: normal;
}
.biz-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.biz-sub-bold {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.biz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.biz-stat {
  background: #1C3461;
  border: 1px solid #284070;
  border-radius: 12px;
  padding: 28px 20px;
}
.biz-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.biz-stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.biz-stat-label strong {
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.biz-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: left;
}
.biz-card {
  background: #1C3461;
  border: 1px solid #284070;
  border-radius: 12px;
  padding: 28px;
}
.biz-card-eyebrow {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00BFB5;
  font-weight: 500;
  margin-bottom: 8px;
}
.biz-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.biz-card-body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.biz-card-highlight {
  color: #E6A817;
  font-weight: 600;
  text-decoration: none;
}
.biz-cta {
  text-align: center;
}
.biz-cta-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.biz-btn {
  display: inline-block;
  background: #E6A817;
  color: #0C1E38;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.biz-btn:hover {
  background: #C9972A;
}

/* ── Conviction / Pullquote ── */
.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    background: #F7F4EF;
}

.mission-image-col {
    overflow: hidden;
    position: relative;
}

.mission-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08) translateX(4%);
    transform-origin: center center;
    filter: brightness(0.92) saturate(0.85);
    display: block;
}

.mission-content-col {
    padding: 64px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: #F7F4EF;
    text-align: left;
    max-width: none;
    margin: 0;
}

.conviction-statement {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: #0C1E38;
    text-align: left;
    max-width: none;
    margin: 0;
}

.conviction-statement:last-child {
    margin-bottom: 0;
}

.conviction-eyebrow {
    font-size: 1.2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #006B5E;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .mission-section {
        grid-template-columns: 1fr;
    }
    .mission-content-col {
        order: 1;
        padding: 48px 6%;
    }
    .mission-image-col {
        order: 2;
        height: 280px;
    }
    .mission-photo {
        object-position: center top;
    }
}

/* ── Closing CTA Section ── */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--warm-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    margin-bottom: var(--spacing-xl);
}

.cta-button-dark {
    background-color: var(--accent-amber);
    color: #0C1E38;
    width: auto;
    padding: 14px 40px;
}

.cta-button-dark:hover {
    background-color: var(--accent-amber-dark);
}

.page-header-eyebrow {
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-teal);
    font-weight: 600;
    margin-bottom: 10px;
}

.page-header-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ── Team Page ── */
.team-section {
    background-color: var(--neutral-light);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 5%;
}

.team-card {
    background: #FDFCFA;
    border: 1px solid #E8E0D5;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-card-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #F7F4EF;
    border-bottom: 1px solid #E8E0D5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8A7E70;
}

.team-card-body {
    padding: 32px 36px;
    flex: 1;
}

.team-card-name {
    font-size: 26px;
    font-weight: 600;
    color: #0C1E38;
    margin-bottom: 6px;
}

.team-card-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00957A;
    margin-bottom: 20px;
}

.team-card-bio {
    font-size: 16px;
    color: #6B5F52;
    line-height: 1.8;
}

.team-card-bio p {
    margin-bottom: 12px;
}

.team-card-bio p:last-child {
    margin-bottom: 0;
}

/* ── Team Page Responsive ── */
@media (max-width: 860px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        padding: 48px 6%;
    }
}

@media (max-width: 600px) {
    .team-grid {
        padding: 40px 5%;
    }
    .team-card-body {
        padding: 20px 20px;
    }
    .team-card-name {
        font-size: 22px;
    }
}

/* ── Business Case Responsive ── */
@media (max-width: 900px) {
  .biz-section {
    padding: 56px 6%;
  }
  .biz-stats {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  .biz-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    text-align: left;
  }
  .biz-stat-number {
    font-size: 32px;
    min-width: 80px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .biz-stat-label {
    text-align: left;
  }
  .biz-breakdown {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  .biz-heading {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .biz-section {
    padding: 48px 5%;
  }
  .biz-stats {
    max-width: 100%;
  }
  .biz-stat {
    gap: 16px;
    padding: 18px 20px;
  }
  .biz-stat-number {
    font-size: 28px;
    min-width: 70px;
  }
  .biz-breakdown {
    max-width: 100%;
  }
  .biz-card {
    padding: 20px;
  }
  .biz-heading {
    font-size: 22px;
  }
  .biz-sub {
    font-size: 14px;
  }
  .biz-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}

/* ── Responsive Design ── */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        gap: var(--spacing-md);
    }

.page-header h1 {
        font-size: 2rem;
    }

    .tension-heading {
        font-size: 1.5rem;
    }


    .team-card-placeholder {
        width: 100%;
        min-width: unset;
    }

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

    .how-intro h2 {
        font-size: 1.6rem;
    }

    .conviction-quote {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .cta-button {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .how-step {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .how-step-num {
        font-size: 1rem;
    }
}
