/* ==========================================================
   CONVERSO — SHARED STYLESHEET
   Scheme B: Deep Teal + Warm Sand
   ========================================================== */

:root {
  --navy:       #0F4F4F;
  --navy-2:     #134E5E;
  --blue:       #2D8888;
  --blue-dark:  #0F4F4F;
  --sky:        #E8FAFA;
  --sky-2:      #F4FBFB;
  --teal-text:  #A8DBDB;
  --teal-text-2:#CDE4E4;
  --orange:     #F15D23;
  --orange-dark:#D04D17;
  --sand:       #C1B49A;
  --sand-light: #EFE7D5;
  --sand-tint:  rgba(193,180,154,0.45);
  --charcoal:   #404041;
  --green:      #1A7F4B;
  --red:        #D72B2B;
  --ink:        #1A2332;
  --muted:      #5C667A;
  --line:       #DCE5E5;
  --line-2:     #B8CECE;
  --bg:         #FAFAF7;
  --bg-soft:    #FAFAF7;
  --headline:   #0F2A2A;
  --teal-chip:  #E8F0F0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito Sans', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* AODA focus states */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px;
}

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
  background: var(--navy); color: white; padding: 14px 18px; border-radius: 0 0 8px 0;
  font-weight: 700; z-index: 200;
}
.skip:focus { left: 0; top: 0; width: auto; height: auto; }

.container      { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================
   SCROLL PROGRESS
   ========================================================== */
.progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--orange); width: 0%; z-index: 100; transition: width .08s linear;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 99px; border: 1px solid transparent;
  font-family: inherit; font-weight: 800; font-size: 15px; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: transform .12s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 6px 18px rgba(241,93,35,.32); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(241,93,35,.42); background: var(--orange-dark); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--sky); }
.btn-light { background: white; color: var(--navy); }
.btn-light:hover { background: var(--sky); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* ==========================================================
   NAV
   ========================================================== */
.nav { position: relative;
  position: sticky; top: 0;
  background: rgba(250,250,247,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); z-index: 80;
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 4px 24px; max-width: 1400px; margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; color: var(--orange); text-decoration: none; flex-shrink: 0; }
.logo-svg { height: 38px; width: auto; display: block; color: inherit; }
.logo-svg path { fill: currentColor; }
.nav-menu { display: flex; align-items: center; gap: 4px; flex-grow: 1; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; border-radius: 8px;
  font-weight: 700; font-size: 14px; color: var(--charcoal); cursor: pointer;
  background: transparent; border: none; font-family: inherit;
}
.nav-link:hover { background: var(--sky); color: var(--navy); text-decoration: none; }
.nav-link[aria-expanded="true"] { background: var(--sky); color: var(--navy); }
.nav-link svg.chev { width: 11px; height: 11px; transition: transform .15s; }
.nav-link[aria-expanded="true"] svg.chev { transform: rotate(180deg); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; font-family: inherit; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: white; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 56px rgba(15,79,79,.14);
  padding: 28px; min-width: 720px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 90;
}
.nav-item.open .mega, .nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 32px; }
.mega-col h3 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.mega-col ul { list-style: none; }
.mega-col li { margin-bottom: 4px; }
.mega-link { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 8px; color: var(--charcoal); text-decoration: none; }
.mega-link:hover { background: var(--sky); text-decoration: none; }
.mega-link strong { font-weight: 700; font-size: 14px; color: var(--navy); }
.mega-link span { font-size: 12px; color: var(--muted); line-height: 1.4; }
.mega-feature {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1A6D6D 100%);
  border-radius: 12px; padding: 22px; color: white;
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none;
}
.mega-feature:hover { text-decoration: none; }
.mega-feature .ftr-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-text); margin-bottom: 8px; }
.mega-feature h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; line-height: 1.25; color: white; }
.mega-feature p { font-size: 13px; color: var(--teal-text-2); line-height: 1.55; margin-bottom: 14px; }
.mega-feature .btn-feature {
  align-self: flex-start; background: white; color: var(--navy);
  padding: 9px 16px; border-radius: 99px; font-weight: 800; font-size: 13px;
}

/* ==========================================================
   SECTION FRAMEWORK
   ========================================================== */
section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-sky  { background: var(--sky-2); }
.section-navy { background: var(--navy); color: white; }
.section-navy h2 { color: white; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; background: var(--navy); color: #fff;
  padding: 6px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 18px;
}
.section-navy .section-eyebrow { background: rgba(255,255,255,.12); color: var(--teal-text); }
h1 { font-weight: 900; letter-spacing: -.025em; color: var(--headline); font-family: inherit; }
h2 { font-weight: 900; letter-spacing: -.022em; color: var(--headline); font-size: 42px; line-height: 1.1; }
h3 { font-weight: 800; color: var(--headline); }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--muted); line-height: 1.6; }
.section-navy .section-head p { color: var(--teal-text-2); }

/* ==========================================================
   HERO (sector/service pages)
   ========================================================== */
.hero {
  position: relative; overflow: hidden; padding: 0;
  background: var(--bg); border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px;
  padding: 32px 24px 72px; max-width: 1400px; margin: 0 auto; align-items: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 20px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero h1 { font-size: 56px; line-height: 1.05; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--navy); background: linear-gradient(180deg,transparent 60%,var(--sand-tint) 60%); padding: 0 6px; }
.hero-tagline { font-style: italic; font-size: 18px; color: var(--charcoal); font-weight: 600; margin: -6px 0 16px; }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 600px; margin-bottom: 30px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.hero-reassure { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-reassure span { display: inline-flex; align-items: center; gap: 7px; }
.check-icon { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.hero-card {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 8px;
  box-shadow: 0 30px 60px rgba(15,79,79,.10);
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 8px 4px; }
.hero-stat {
  padding: 14px; border-radius: 14px; background: #fff; border: 1px solid var(--line);
}
.hero-stat .num { font-size: 24px; font-weight: 900; color: var(--blue-dark); line-height: 1; letter-spacing: -.01em; }
.hero-stat .lbl { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 6px; line-height: 1.3; }
.hero-img {
  border-radius: 18px; overflow: hidden; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================
   TRUST BAR
   ========================================================== */
.trust { padding: 30px 24px; background: var(--bg); border-bottom: 1px solid var(--line); }
.trust-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.trust-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); flex-shrink: 0; }
.trust-logos { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trust-logo-img {
  height: 52px; max-width: 200px; width: auto; object-fit: contain;
  filter: grayscale(20%); opacity: .85; transition: filter .2s, opacity .2s;
}
.trust-logo-img:hover { filter: none; opacity: 1; }
.trust-chip {
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-weight: 800; font-size: 13px; color: var(--navy); background: var(--teal-chip);
}

/* ==========================================================
   STAT CARDS (problem/gap section)
   ========================================================== */
.gap-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 36px; }
.gap-stat {
  background: white; border: 1px solid var(--line); border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 14px rgba(15,79,79,.04);
}
.gap-stat .pct { font-size: 54px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.gap-stat .ttl { font-size: 16px; font-weight: 700; color: var(--ink); margin: 10px 0 6px; line-height: 1.4; }
.gap-stat .src { font-size: 12px; color: var(--muted); }
.gap-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1A6D6D 100%);
  color: white; border-radius: 24px; padding: 40px; text-align: center;
}
.gap-callout .big { font-size: 28px; font-weight: 900; letter-spacing: -.015em; margin-bottom: 8px; line-height: 1.2; }
.gap-callout .sub { font-size: 16px; color: var(--teal-text-2); max-width: 720px; margin: 0 auto; line-height: 1.6; }

/* ==========================================================
   BRIDGE
   ========================================================== */
.bridge { text-align: center; position: relative; overflow: hidden; padding: 96px 0; }
.bridge-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,rgba(250,250,247,.92) 0%,rgba(250,250,247,.78) 50%,rgba(250,250,247,.92) 100%),
              url("../images/People on Zoom meeting.jpeg") center/cover no-repeat;
}
.bridge h2 { font-size: 46px; max-width: 900px; margin: 0 auto 18px; }
.bridge h2 em { font-style: normal; color: var(--navy); background: linear-gradient(180deg,transparent 60%,var(--sand-tint) 60%); padding: 0 6px; }
.bridge p { font-size: 19px; color: var(--muted); max-width: 720px; margin: 0 auto; line-height: 1.6; }

/* ==========================================================
   CARDS (services / sectors)
   ========================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card {
  background: white; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: inherit;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 24px 44px rgba(15,79,79,.10); border-color: var(--line-2); text-decoration: none; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sky); color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -.005em; line-height: 1.3; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; flex-grow: 1; }
.card-link { font-size: 13px; font-weight: 800; color: var(--blue-dark); display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================
   HOW IT WORKS — 5-step
   ========================================================== */
.how-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.how-step { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 22px; position: relative; }
.how-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: white;
  font-weight: 900; font-size: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.how-step h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.how-step p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial {
  background: white; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column;
}
.testimonial .stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-size: 15px; line-height: 1.65; color: var(--ink); margin-bottom: 20px; flex-grow: 1; }
.testimonial-who { display: flex; gap: 12px; align-items: center; border-top: 1px solid var(--line); padding-top: 18px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--blue-dark); font-size: 15px; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.testimonial-org { font-size: 12px; color: var(--muted); }

/* ==========================================================
   CASE STUDY FEATURE (dark panel)
   ========================================================== */
.case-feature { background: var(--navy); color: white; }
.case-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.case-left h2 { color: white; font-size: 36px; line-height: 1.15; margin-bottom: 16px; }
.case-left p { color: var(--teal-text-2); font-size: 17px; line-height: 1.65; margin-bottom: 20px; }
.case-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 24px 0; }
.case-stat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 18px;
}
.case-stat .num { font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -.015em; }
.case-stat .lbl { font-size: 12px; color: var(--teal-text-2); margin-top: 6px; line-height: 1.35; }
.case-quote {
  background: rgba(255,255,255,.07); border-left: 4px solid var(--sand);
  border-radius: 0 18px 18px 0; padding: 28px 32px;
  font-size: 17px; line-height: 1.65; color: white; font-style: italic;
}
.case-quote cite { display: block; margin-top: 14px; font-size: 13px; color: var(--teal-text-2); font-style: normal; font-weight: 700; }
.case-img {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.case-img img { width: 100%; height: auto; display: block; }

/* ==========================================================
   LOGO WALL
   ========================================================== */
.logo-wall-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; max-width: 1240px; margin: 0 auto; }
.logo-cell {
  background: white; border: 1px solid var(--line); border-radius: 14px; padding: 24px 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 100px; transition: border-color .15s, box-shadow .15s;
}
.logo-cell:hover { border-color: var(--line-2); box-shadow: 0 8px 18px rgba(15,79,79,.06); }
.logo-cell img { max-height: 60px; max-width: 100%; width: auto; height: auto; object-fit: contain; }

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1A6D6D 100%);
  color: white; text-align: center; padding: 80px 24px;
}
.cta-banner h2 { color: white; font-size: 40px; margin-bottom: 16px; }
.cta-banner p { color: var(--teal-text-2); font-size: 18px; max-width: 680px; margin: 0 auto 32px; line-height: 1.6; }
.cta-banner .btn-light { background: white; color: var(--navy); }
.cta-banner .btn-light:hover { background: var(--sky); }

/* ==========================================================
   FINAL CTA + FORM
   ========================================================== */
.final {
  background: linear-gradient(180deg, #1A6D6D 0%, #134E5E 50%, var(--navy) 100%);
  color: white; padding: 96px 24px;
}
.final-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.final-eyebrow {
  display: inline-block; background: rgba(255,255,255,.12); color: var(--teal-text);
  padding: 6px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 18px;
}
.final h2 { color: white; font-size: 40px; line-height: 1.1; margin-bottom: 18px; }
.final p { color: var(--teal-text-2); font-size: 17px; line-height: 1.65; margin-bottom: 26px; }
.final-bullets { list-style: none; margin-bottom: 26px; }
.final-bullets li { padding: 8px 0; font-size: 15px; color: #e2e8f0; display: flex; gap: 12px; align-items: flex-start; }
.final-bullets li::before { content: "✓"; color: var(--sand); font-weight: 900; font-size: 18px; line-height: 1.2; }

.form-card {
  background: white; color: var(--ink); border-radius: 22px; padding: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.form-card h3 { color: var(--navy); font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 14px; color: var(--ink); background: white;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,136,136,.18);
}
.form-trust { font-size: 12px; color: var(--muted); margin-top: 14px; display: flex; align-items: flex-start; gap: 6px; }

/* ==========================================================
   FOOTER
   ========================================================== */
footer { background: linear-gradient(180deg, var(--navy) 0%, #0A3838 100%); color: #CDE4E4; padding: 64px 24px 32px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand p { font-size: 14px; line-height: 1.65; color: #A6C7C7; margin-top: 12px; max-width: 340px; }
.footer-tagline { font-style: italic; color: var(--sand); font-weight: 600; margin-top: 14px; font-size: 14px; }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: white; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #A6C7C7; font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: #8FB8B8;
}
.footer-bottom a { color: #CDE4E4; }
.footer-bottom a:hover { color: white; }

/* ==========================================================
   STICKY MOBILE CTA
   ========================================================== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 22px rgba(15,79,79,.10); padding: 12px 16px;
  z-index: 50; display: none; justify-content: space-between; align-items: center; gap: 10px;
}
.sticky-cta.visible { display: flex; }
.sticky-cta .lbl { font-size: 13px; font-weight: 800; color: var(--navy); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .hero h1 { font-size: 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 56px; }
  .gap-stats { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .case-inner { grid-template-columns: 1fr; gap: 36px; }
  .final-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .logo-wall-grid { grid-template-columns: repeat(3,1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 34px; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; gap: 4px; z-index: 100; }
  .nav-menu.open .nav-link { color: white; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
}
@media (max-width: 680px) {
  section { padding: 64px 0; }
  .hero h1 { font-size: 34px; }
  .gap-stats, .grid-3, .grid-4, .how-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .logo-wall-grid { grid-template-columns: repeat(2,1fr); }
  .container, .container-wide { padding: 0 18px; }
  .cta-banner h2 { font-size: 30px; }
  .final h2 { font-size: 32px; }
}
