/* Self-hosted variable fonts (subset from Google Fonts: latin + latin-ext) */
@font-face { font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/bricolage-grotesque-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/bricolage-grotesque-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/dm-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/dm-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/jetbrains-mono-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/jetbrains-mono-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ---- block 1 ---- */
/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Palette - deepened forest (Engineered Editorial) */
  --green:       #4f7539;   /* accent - deepened, more intentional */
  --green-soft:  #aecf80;   /* light accent on deep surfaces */
  --green-pale:  #eef4e4;
  --green-dim:   #182a20;   /* deep forest */
  --green-deep:  #3f5e2c;   /* AA green text on light */
  --navy:        #182a20;   /* deep forest base */
  --navy-soft:   #21382b;
  --ink:         #10201a;   /* deepest surface (footer) */
  --white:       #ffffff;
  --off:         #f5f1e8;   /* warm paper */
  --border:      #e4e2da;   /* warm hairline */
  --text:        #16231b;   /* near-black forest */
  --text-mid:    #57655b;   /* muted, AA on white */
  --text-light:  #57655b;
  --radius:      3px;
  --transition:  0.22s ease;
  --font-display:'Bricolage Grotesque', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
}

/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) { .wrap { padding: 0 40px; } }
@media (min-width: 1120px) { .wrap { padding: 0 48px; } }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.serif {
  font-family: var(--font-display);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green-deep);
}

.btn-green:hover {
  background: var(--green-dim);
  border-color: var(--green-dim);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   PAGE SYSTEM (SPA routing)
============================================================ */
.page { display: block; }
.page.active { display: block; }

/* ============================================================
   NAV
============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: visible;
}

#site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 12px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 768px) { .nav-inner { padding: 12px 40px; } }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  flex-shrink: 0;
  height: 100%;
}
.nav-logo .logo-img { mix-blend-mode: multiply; }

.logo-img { height: 80px; width: auto; }
.nav-logo .logo-img { height: auto; max-height: 56px; width: auto; object-fit: contain; display: block; }
.footer-logo .logo-img { height: 56px; width: auto; }

.logo-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.logo-wordmark span { color: var(--green-deep); }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-right { display: none; align-items: center; gap: 20px; }
@media (min-width: 768px) { .nav-right { display: flex; } }

.nav-talent {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding-right: 20px;
  border-right: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-talent:hover, .nav-talent:focus-visible { color: var(--green-deep); }

@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.8rem;
  color: var(--text-mid);
  transition: color var(--transition);
  cursor: pointer;
}

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

.nav-links a.active {
  font-weight: 500;
}

/* Nav CTA */
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-block; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 199;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--navy);
  font-weight: 500;
}

.mobile-menu .btn {
  margin-top: 16px;
  text-align: center;
}

/* ============================================================
   SECTION SPACING
============================================================ */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) { .section { padding: 100px 0; } }

.section-sm {
  padding: 56px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-off {
  background: var(--off);
}

.section + .section,
.section + .section-dark,
.section-dark + .section,
.section-off + .section,
.section + .section-off {
  border-top: 1px solid var(--border);
}

.section-dark + .section,
.section-dark + .section-off {
  border-top-color: rgba(255,255,255,0.0);
}

/* ============================================================
   FADE-UP ANIMATION
============================================================ */
.fu {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fu.in { opacity: 1; transform: translateY(0); }
.fu.d1 { transition-delay: 0.08s; }
.fu.d2 { transition-delay: 0.16s; }
.fu.d3 { transition-delay: 0.24s; }
.fu.d4 { transition-delay: 0.32s; }

/* ============================================================
   DIVIDER
============================================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ============================================================
   PAGE: HOME
============================================================ */

/* Hero */
.hero {
  padding-top: 116px;
  padding-bottom: 96px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle geometric shapes */
.hero-bg-shape1 {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(22,163,74,0.08);
  border-radius: 50%;
}

.hero-bg-shape2 {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(22,163,74,0.06);
  border-radius: 50%;
}

.hero-bg-shape3 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: var(--green-pale);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 20px 0 24px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-deep);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Home: problem strip */
.problem-strip {
  padding: 60px 0;
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .problem-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.problem-item {
  padding: 8px 24px;
  border-left: none;
}

@media (min-width: 640px) {
  .problem-item {
    border-left: 1px solid var(--border);
  }
  .problem-item:first-child { border-left: none; }
}

.problem-item-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.problem-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Home: differentiators */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 600px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.diff-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
}

.diff-card:hover { background: var(--green-pale); }

.diff-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(22,163,74,0.18);
  line-height: 1;
  margin-bottom: 16px;
}

.diff-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.diff-body {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Home: CTA band */
.cta-band {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-band h2 em { font-style: italic; color: var(--green-soft); }

.cta-band p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ============================================================
   PAGE: SERVICES
============================================================ */
.page-hero {
  padding: 120px 0 64px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 16px 0 20px;
  max-width: 600px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.75;
}

/* Service list rows */
.service-list { border-top: 1px solid var(--border); }

.service-divider {
  padding: 28px 0 16px;
  border-bottom: 1px solid var(--border);
}
.service-divider-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.service-tag-ai {
  background: rgba(96,132,72,0.12);
  color: var(--green-deep);
  border: 1px solid var(--green-soft);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

@media (min-width: 720px) {
  .service-row {
    grid-template-columns: 200px 1fr auto;
    gap: 32px;
    align-items: start;
  }
}

.service-row:hover { background: var(--green-pale); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.service-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

/* ============================================================
   PAGE: HOW IT WORKS
============================================================ */
.steps-list {
  counter-reset: steps;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 720px) {
  .step-row {
    grid-template-columns: 56px 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1;
}

.step-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.step-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Assurance block */
.assurance {
  background: var(--navy);
  border-left: 3px solid var(--green);
  padding: 32px 36px;
  border-radius: var(--radius);
  margin-top: 48px;
}

.assurance p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
}

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(96,132,72,0.1);
}

.form-input::placeholder { color: #b0b7c3; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234f7539' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

/* ============================================================
   SOCIAL PROOF
============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-verify-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-verify-icon svg { width: 20px; height: 20px; }

.proof-card-title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
}

.proof-card-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

/* ============================================================
   PAGE: ABOUT
============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .about-intro { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}

.about-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-intro p:last-child { margin-bottom: 0; }

/* Value cards */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  border-color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(22,163,74,0.07);
}

.value-bar {
  width: 24px;
  height: 2px;
  background: var(--green);
  margin-bottom: 20px;
}

.value-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-body {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Hub block */
.hub-block {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .hub-block { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.hub-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.hub-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   PAGE: CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}

.contact-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.92rem;
  color: var(--navy);
}

/* Trial card */
.trial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.trial-card-header {
  background: var(--navy);
  padding: 32px;
}

.trial-card-header p.eyebrow {
  color: var(--green-soft);
  margin-bottom: 12px;
}

.trial-card-header p.eyebrow::before {
  background: var(--green-soft);
}

.trial-card-header h3 {
  color: var(--white);
  font-size: 1.6rem;
}

.trial-card-body {
  padding: 32px;
}

.trial-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.trial-terms {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.trial-terms li {
  font-size: 0.85rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.trial-terms li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid var(--green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2316a34a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    align-items: start;
  }
}

/* Brand column */
.footer-brand {
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.footer-logo .logo-img {
  mix-blend-mode: screen;
  opacity: 0.9;
}

.footer-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-wordmark span { color: var(--green-soft); }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-group-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Nav columns */
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  transition: color var(--transition);
  display: block;
}

.footer-nav a:hover { color: rgba(255,255,255,0.9); }

/* Contact column */
.footer-contact-col p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-col a.btn {
  font-size: 0.72rem;
  padding: 10px 20px;
}

/* Bottom bar */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   TWO-COLUMN LAYOUT HELPER
============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
}

/* ============================================================
   MISC COMPONENTS
============================================================ */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-pale);
  padding: 3px 9px;
  border-radius: 2px;
}

/* Intro text utility */
.intro-text {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 16px;
}

/* Section head */
.section-head {
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  margin-top: 12px;
  max-width: 520px;
}

.section-head p {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 440px;
  line-height: 1.75;
  margin-top: 12px;
}

/* Dark section text overrides */
.section-dark .eyebrow { color: var(--green-soft); }
.section-dark .eyebrow::before { background: var(--green-soft); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.5); }
.section-dark .section-head h2 { color: var(--white); }

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--green); }


/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-soft));
  z-index: 999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ============================================================
   ANIMATED STAT COUNTER
============================================================ */
.stats-strip {
  padding: 64px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

@media (max-width: 639px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px 16px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number .stat-suffix {
  font-size: 0.45em;
  color: var(--green-soft);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
}

/* ============================================================
   MOBILE STICKY CTA BAR
============================================================ */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}

@media (max-width: 767px) {
  #mobile-sticky-cta { display: flex; gap: 10px; align-items: center; }
}

#mobile-sticky-cta .btn {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  padding: 12px 16px;
}

/* ============================================================
   WHAT TO EXPECT STRIP (Contact page)
============================================================ */
.expect-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

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

.expect-step {
  padding: 24px 20px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  position: relative;
}

@media (min-width: 600px) {
  .expect-step {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .expect-step:last-child { border-right: none; }
}

.expect-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 10px;
}

.expect-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.expect-body {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   COMPARISON TABLE
============================================================ */
.comparison-section {
  background: var(--off);
  padding: 80px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.85rem;
  background: var(--white);
}

.comparison-table th {
  padding: 20px 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.comparison-table th.col-stride {
  background: var(--navy);
  color: var(--white);
}

.comparison-table th.col-stride .th-sub {
  display: block;
  font-size: 0.6rem;
  color: var(--green-soft);
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-top: 3px;
  text-transform: none;
}

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.82rem;
}

.comparison-table td.col-stride {
  background: rgba(36,60,48,0.03);
  text-align: center;
}

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

.comp-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234f7539' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.comp-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23dc2626' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.comp-partial {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-style: italic;
}

/* Comparison table responsive */
@media (max-width: 640px) {
  .comparison-table { font-size: 0.78rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .comparison-table td:first-child { font-size: 0.74rem; }
  .table-scroll-hint { display: block !important; }
}

/* Sectors mobile: 2-col grid */
@media (max-width: 767px) {
  .sectors-scroll {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex-wrap: unset;
  }
  .sector-pill {
    width: 100%;
    text-align: center;
    font-size: 0.72rem !important;
    padding: 8px 10px !important;
    white-space: normal !important;
  }
}

/* ============================================================
   SERVICE ROW EXPAND (use cases reveal)
============================================================ */
.service-row { cursor: pointer; }

.service-examples {
  display: none;
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 16px 20px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 2px solid var(--green);
}

.service-row.expanded .service-examples { display: block; }

.service-example-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.service-example-text {
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.7;
}

.service-expand-hint {
  font-size: 0.68rem;
  color: var(--green-deep);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.service-expand-hint::before {
  content: '+';
  font-size: 0.9rem;
  line-height: 1;
}

.service-row.expanded .service-expand-hint::before { content: '-'; }

/* ============================================================
   GEOGRAPHY SECTION (About page)
============================================================ */
.geo-section {
  background: var(--navy);
  padding: 80px 0;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .geo-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}

.geo-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.geo-intro p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 16px;
}

.geo-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.geo-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  transition: background var(--transition), border-color var(--transition);
}

.geo-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(168,204,120,0.3);
}

.geo-card-flag {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.geo-card-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.geo-card-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.geo-timezone {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-soft);
  background: rgba(168,204,120,0.12);
  padding: 3px 8px;
  border-radius: 2px;
}

/* ============================================================
   OA GROUP SECTION (About page)
============================================================ */
.group-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.group-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .group-inner { grid-template-columns: 1fr auto; gap: 48px; }
}

.group-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.group-inner h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.group-inner p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   SECTORS STRIP
============================================================ */
.sectors-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.sectors-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
}

.sectors-scroll-mobile-note { display: none; }
.sectors-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sector-pill {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--navy);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 7px 16px;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.sector-pill:hover {
  background: var(--green-pale);
  border-color: var(--green-soft);
  color: var(--green-deep);
}

/* ============================================================
   HERO ANIMATED BACKGROUND (breathing)
============================================================ */
@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 18px) scale(1.04); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -14px) scale(0.97); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8px, 10px) scale(1.06); }
  66% { transform: translate(-6px, 6px) scale(0.98); }
}

.hero-bg-shape1 { animation: heroFloat1 12s ease-in-out infinite; }
.hero-bg-shape2 { animation: heroFloat2 16s ease-in-out infinite; }
.hero-bg-shape3 { animation: heroFloat3 10s ease-in-out infinite; }

/* ============================================================
   PRINT STYLES
============================================================ */
@media print {
  #site-nav, .mobile-menu, #mobile-sticky-cta, #scroll-progress,
  .hero-bg, .hero-actions, .cta-band, #site-footer,
  .btn, .hamburger { display: none !important; }

  body { font-size: 11pt; color: #000; background: #fff; }
  .page { display: block !important; }
  #page-home, #page-services, #page-how, #page-about, #page-contact {
    display: block !important;
    page-break-after: always;
  }
  .hero { min-height: unset; padding: 20pt 0; }
  .section { padding: 20pt 0; }
  h1, h2, h3 { color: #000; }
  .page-hero { background: none; border: none; }
}

/* ============================================================
   ARIA / FOCUS ACCESSIBILITY
============================================================ */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

button, [role="button"], a { cursor: pointer; }


::selection { background: var(--green); color: var(--white); }

/* ============================================================
   MOBILE & TABLET - comprehensive overrides
   max-width: 767px  = mobile phones
   max-width: 1023px = tablets
============================================================ */

/* --- Tablet (768px - 1023px) --- */
@media (max-width: 1023px) {
  .wrap { padding: 0 32px; }
  h1 { font-size: clamp(2rem, 5vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }

  /* Nav */
  .nav-inner { padding: 0 32px; }

  /* Hero */
  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

  /* Service rows - stack on tablet */
  .service-row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 24px 0; }
  .service-row > div:last-child { grid-column: 1 / -1; }

  /* Diff grid */
  .diff-grid { grid-template-columns: repeat(2, 1fr); }

  /* Proof grid */
  .proof-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
  .proof-grid > *:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }

  /* Contact layout */
  .contact-cols { grid-template-columns: 1fr !important; }
  .contact-trial-card { margin-top: 40px; }

  /* How it works steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* --- Mobile (up to 767px) --- */
@media (max-width: 767px) {
  .wrap { padding: 0 20px; }

  /* Typography */
  h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); line-height: 1.18; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-sub { font-size: 1rem; }

  /* Nav */
  .nav-inner { min-height: 80px; padding: 12px 12px; }
  .nav-logo .logo-img { height: auto !important; max-height: 44px !important; }
  .nav-cta { font-size: 0.6rem !important; padding: 8px 12px !important; letter-spacing: 0.08em !important; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: unset; }
  .hero h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Problem strip */
  .problem-strip-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .problem-item + .problem-item { border-left: none !important; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }

  /* Diff grid */
  .diff-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Social proof */
  .proof-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Service rows - full vertical stack */
  .service-row { 
    display: block !important; 
    padding: 24px 0;
  }
  .service-row .service-name { font-size: 1.05rem; margin-bottom: 8px; }
  .service-row .service-tag { margin-top: 12px; display: inline-block; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }

  /* Page hero */
  .page-hero { padding: 80px 0 40px; }

  /* How it works */
  .steps-grid { grid-template-columns: 1fr !important; }
  .step-num { font-size: 2.5rem; }

  /* About */
  .about-intro { grid-template-columns: 1fr !important; gap: 32px !important; }
  .values-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Contact */
  .contact-cols { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .contact-trial-card { padding: 28px 20px !important; }

  /* FAQ */
  .faq-q { font-size: 0.95rem; }

  /* CTA band */
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: 1.6rem; }
  .cta-band-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { justify-content: center; }
  .footer-logo .logo-img { height: 48px !important; }

  /* Buttons full-width on mobile for CTA band */
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }

  /* Service divider label */
  .service-divider { padding: 20px 0 12px; }
}

/* --- Very small phones (up to 380px) --- */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  h1 { font-size: 1.75rem; }
  .hero-actions .btn { font-size: 0.85rem; padding: 14px 20px; }
}

/* ---- block 2 ---- */
.skip-link{position:absolute;left:-9999px;top:0;z-index:1000;background:#182a20;color:#fff;padding:12px 20px;border-radius:0 0 4px 0;font-size:0.85rem;text-decoration:none}
.skip-link:focus{left:0}

/* ---- block 3 ---- */
/* Surface variant for the Talent section: slightly darker than --navy
   so the two dark sections read as distinct layers without breaking the palette. */
.section-darker { background: #1b2e24; color: var(--white); }

/* Eyebrow + heading colour adjustments when sitting on a dark surface */
.section-dark .eyebrow, .section-darker .eyebrow { color: var(--green-soft); }
.section-dark .eyebrow::before, .section-darker .eyebrow::before { background: var(--green-soft); }
.section-dark h2, .section-darker h2,
.section-dark h3, .section-darker h3 { color: var(--white); }
.section-dark p, .section-darker p { color: rgba(255,255,255,0.78); }

/* Two-column split: reuses the contact-grid spacing pattern */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}

/* Dot-list for the descriptive bullets */
.dot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.dot-list li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.dot-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-soft);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Dark-surface form variant. 16px font and 44px+ touch targets. */
.form-dark { display: flex; flex-direction: column; gap: 16px; }
.form-dark .form-label {
  color: rgba(255,255,255,0.82);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-dark .form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;                /* iOS no-zoom */
  line-height: 1.5;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 13px 16px;
  min-height: 48px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-dark .form-input:focus {
  border-color: var(--green-soft);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(168,204,120,0.18);
}
.form-dark .form-input::placeholder { color: rgba(255,255,255,0.42); }
.form-dark .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8cc78' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-dark .form-select option { background: var(--navy); color: var(--white); }
.form-dark .form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-dark .btn-submit {
  background: var(--green-soft);
  color: var(--navy);
  border: 1.5px solid var(--green-soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  width: 100%;
  min-height: 52px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-dark .btn-submit:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* File-input row: a styled "Browse" button + filename echo */
.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 6px;
  padding: 14px 16px;
  min-height: 56px;
}
.file-row input[type="file"] {
  /* Visually hidden but keeps keyboard accessibility via the label */
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--green-soft);
  border: 1.5px solid var(--green-soft);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  min-height: 44px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.file-btn:hover { background: var(--green-soft); color: var(--navy); }
.file-name {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  word-break: break-all;
}
.file-name.empty { color: rgba(255,255,255,0.66); font-style: italic; }
.file-hint {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* Sector tag group (JS-toggled) */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.sector-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--green-soft);
  background: transparent;
  border: 1.5px solid var(--green-soft);
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 44px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.sector-tag:hover { background: rgba(168,204,120,0.12); }
.sector-tag.selected {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green-deep);
  font-weight: 500;
}
.sector-tag input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* Split-CTA banner */
#cta-split { padding: 64px 0; }
#cta-split .cta-head {
  text-align: center;
  margin-bottom: 36px;
}
#cta-split h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 8px; }
.cta-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta-cards { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.cta-card:hover {
  border-color: var(--green-soft);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.cta-card-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.cta-card-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}
.cta-card .btn {
  margin-top: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.cta-btn-outline-green {
  background: transparent;
  color: var(--green-soft);
  border: 1.5px solid var(--green-soft);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cta-card:hover .cta-btn-outline-green {
  background: var(--green-soft);
  color: var(--navy);
  border-color: var(--green-soft);
}

/* Subtle separator above the CTA banner: the "dividing visual" */
.cta-divider {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 880px;
  margin: 0 auto 48px;
}
.cta-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--green-soft);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* Ensure new sections inherit nav padding offset */
#hire, #talent { scroll-margin-top: 80px; }

/* Honeypot: invisible but reachable for bots */
.hp-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- block 4 ---- */
/* FAQ on dark surface: uses the same navy as #hire so the two sections flow as one block. */
#faq { scroll-margin-top: 80px; }
#faq .faq-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
#faq .faq-intro h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}
#faq .faq-intro > p {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.faq-col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-soft);
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-col-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-soft);
  flex-shrink: 0;
}

.faq-item-2 {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
}

.faq-q-2 {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-q-2:hover { color: var(--green-soft); }
.faq-q-2:focus-visible {
  outline: 2px solid var(--green-soft);
  outline-offset: 4px;
  border-radius: 2px;
}

.faq-icon {
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #E0A458;
  line-height: 1;
  width: 16px;
  text-align: right;
  transition: transform 0.25s ease;
}

.faq-a-2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 0 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 95%;
}

/* ---- block 5 ---- */
.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--border); }

.faq-q {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  user-select: none;
}

.faq-toggle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--green-deep);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

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

.faq-a {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.2s;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding-top: 16px;
}

/* ==================== MULTI-PAGE: SERVICES DROPDOWN ==================== */
.nav-item-dd { position: relative; display: none; }
@media (min-width: 768px){ .nav-item-dd { display: block; } }
.nav-dd-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text); cursor: pointer;
  background: none; border: none; font-family: var(--font-body); padding: 0;
  transition: color var(--transition);
}
.nav-dd-toggle:hover, .nav-item-dd:focus-within .nav-dd-toggle, .nav-dd-toggle[aria-expanded="true"] { color: var(--green-deep); }
.nav-dd-toggle svg { width: 11px; height: 11px; transition: transform var(--transition); }
.nav-dd-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dd-panel {
  position: absolute; top: calc(100% + 14px); left: -16px;
  min-width: 300px; background: #fff;
  border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 24px 60px -20px rgba(24,42,32,0.30);
  padding: 10px; z-index: 600;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-item-dd:hover .nav-dd-panel,
.nav-item-dd:focus-within .nav-dd-panel,
.nav-dd-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-panel a { display: block; padding: 11px 14px; border-radius: 6px; color: var(--text);
  transition: background var(--transition), color var(--transition); }
.nav-dd-panel a:hover, .nav-dd-panel a:focus-visible { background: var(--green-pale); color: var(--green-deep); outline: none; }
.nav-dd-name { font-size: 0.9rem; font-weight: 600; font-family: var(--font-body); }
.nav-dd-desc { display: block; font-size: 0.74rem; color: var(--text-mid); margin-top: 2px; line-height: 1.4; }
.nav-dd-panel a:hover .nav-dd-desc, .nav-dd-panel a:focus-visible .nav-dd-desc { color: var(--green-deep); opacity: 0.85; }

/* Mobile submenu */
.mobile-sub { display: flex; flex-direction: column; }
.mobile-sub-label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-deep); margin: 10px 0 2px; }
.mobile-menu .mobile-sub a { font-size: 0.98rem; padding-left: 14px; color: var(--text-mid); }

/* Coming-soon badge */
.soon-badge { display:inline-block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-mid); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 9px; margin-left: 8px; vertical-align: middle; white-space: nowrap; }
.soon-badge.on-dark { color: var(--green-soft); border-color: rgba(255,255,255,0.22); }

/* Generic page hero (interior pages) */
.page-hero { padding: 64px 0 40px; }
@media (min-width:768px){ .page-hero { padding: 88px 0 52px; } }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); max-width: 16ch; }
.page-hero .lead { font-size: 1.12rem; color: var(--text-mid); max-width: 60ch; margin-top: 20px; line-height: 1.6; }

/* Two-ways / pillar cards on home */
.engage-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width:760px){ .engage-grid { grid-template-columns: 1fr 1fr; } }
.engage-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 34px 30px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color var(--transition); display:flex; flex-direction:column; }
.engage-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -22px rgba(24,42,32,0.22); border-color: var(--green-soft); }
.engage-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.engage-card p { color: var(--text-mid); line-height: 1.65; flex: 1; }
.engage-card .card-link { margin-top: 22px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-deep); display: inline-flex; align-items: center; gap: 8px; }
.engage-card .card-eyebrow { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 14px; }

/* ==================== HERO TRUST STRIP (icon size fix) ==================== */
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 500; color: var(--text-mid); }
.hero-trust svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); stroke: var(--green); }
/* Safety net: constrain any inline check/arrow SVG that lacks explicit sizing */
.hero-trust svg, .card-link svg, .engage-card svg { max-width: 22px; max-height: 22px; }

/* ==================== BRAND VISUAL SYSTEM ==================== */
/* Faint engineered blueprint grid (use as a section background accent) */
.tex-blueprint { position: relative; }
.tex-blueprint::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(79,117,57,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,117,57,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 72%);
}
.tex-blueprint > * { position: relative; z-index: 1; }
.section-dark.tex-blueprint::before, .section-darker.tex-blueprint::before {
  background-image:
    linear-gradient(rgba(174,207,128,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,207,128,0.06) 1px, transparent 1px);
}

/* Leaf-swirl motif as a large faint graphic (decorative, on-brand) */
.tex-swirl { position: relative; overflow: hidden; }
.tex-swirl::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -140px; top: -120px; z-index: 0;
  pointer-events: none; opacity: 0.5;
  background: radial-gradient(circle at 30% 30%, rgba(174,207,128,0.14), transparent 62%);
}

/* Marked image / photography placeholder (for real assets via Studio 17) */
.img-placeholder {
  position: relative; border: 1.5px dashed var(--green-soft); border-radius: 14px;
  background:
    repeating-linear-gradient(135deg, rgba(79,117,57,0.04) 0 12px, transparent 12px 24px),
    var(--green-pale);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 28px; min-height: 260px; color: var(--green-deep);
}
.section-dark .img-placeholder, .section-darker .img-placeholder {
  background: repeating-linear-gradient(135deg, rgba(174,207,128,0.05) 0 12px, transparent 12px 24px), rgba(255,255,255,0.03);
  border-color: rgba(174,207,128,0.4); color: var(--green-soft);
}
.img-placeholder svg { width: 34px; height: 34px; margin-bottom: 12px; opacity: 0.9; }
.img-placeholder .ph-label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.img-placeholder .ph-note { font-size: 0.82rem; line-height: 1.55; max-width: 34ch; opacity: 0.9; }

/* ==================== PHOTO TREATMENT (brand-cohesive imagery) ==================== */
.photo-frame { position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 2; background: var(--green-dim); box-shadow: 0 18px 40px -22px rgba(16,32,26,0.4); }
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(24,42,32,0.10) 0%, rgba(24,42,32,0.10) 55%, rgba(24,42,32,0.34) 100%);
  mix-blend-mode: multiply; }
