/* ============================================================
   Campbell River Marketing — Design System
   Coastal-tech: deep ocean navy + teal + salmon CTA
   Display: Sora  |  Body: Inter
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #061a2e;
  --navy-800: #0a2540;
  --navy-700: #0e3355;
  --navy-600: #14446e;
  --teal-500: #0fb5ae;
  --teal-400: #22cabf;
  --teal-300: #6fe3da;
  --teal-700: #0b6b64; /* AA-safe teal for text on light tints */
  --salmon-500: #ff6b4a;
  --salmon-400: #ff8467;
  --salmon-600: #ec5230;
  --cta-strong: #cf4720;       /* AA-safe: white text ≥4.5:1 */
  --cta-strong-hover: #b53c1a;

  /* Neutrals */
  --ink: #0b1a2b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --paper: #f7fafc;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--paper);
  --surface: var(--white);
  --text: var(--ink);
  --text-soft: var(--slate-600);
  --primary: var(--navy-800);
  --accent: var(--teal-500);
  --cta: var(--cta-strong);
  --border: var(--slate-200);
  --ring: rgba(15, 181, 174, 0.45);

  /* Type scale */
  --f-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(6, 26, 46, .06), 0 1px 3px rgba(6, 26, 46, .08);
  --shadow-md: 0 10px 25px -8px rgba(10, 37, 64, .18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 37, 64, .35);
  --shadow-glow: 0 0 0 1px rgba(15, 181, 174, .25), 0 20px 45px -18px rgba(15, 181, 174, .45);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 6px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--navy-800); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; font-family: var(--f-display); font-weight: 600; }
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--primary); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { color: var(--text-soft); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--slate-600); line-height: 1.6; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-700);
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(15, 181, 174, .1);
  border: 1px solid rgba(15, 181, 174, .2);
}
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.98rem;
  padding: 15px 26px; border-radius: var(--r-pill);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--cta { background: var(--cta); color: #fff; box-shadow: 0 12px 26px -10px rgba(207,71,32,.55); }
.btn--cta:hover { background: var(--cta-strong-hover); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(207,71,32,.7); }
.btn--primary { background: var(--navy-800); color: #fff; }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--slate-300); }
.btn--outline:hover { border-color: var(--teal-500); color: var(--teal-500); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ============================================================
   Header / Nav
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(10,37,64,.08), 0 8px 30px -18px rgba(10,37,64,.35);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 700; font-size: 1.12rem; color: var(--primary); letter-spacing: -0.02em; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--f-body); font-weight: 500; font-size: .68rem; letter-spacing: .04em; color: var(--slate-500); text-transform: uppercase; }
.brand__text { line-height: 1.05; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-weight: 500; font-size: 0.95rem; color: var(--slate-700);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--navy-800); background: var(--slate-100); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-family: var(--f-display); color: var(--navy-800); font-size: .95rem; }
.nav__phone svg { width: 18px; height: 18px; color: var(--teal-500); }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border); background: #fff; align-items: center; justify-content: center; }
.nav__toggle svg { width: 24px; height: 24px; color: var(--navy-800); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(6,26,46,.55); opacity: 0; transition: opacity .3s; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 360px);
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.drawer.open { visibility: visible; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.drawer__links a { padding: 14px 12px; border-radius: 12px; font-weight: 600; font-family: var(--f-display); color: var(--navy-800); }
.drawer__links a:hover { background: var(--slate-100); }
.drawer .btn { margin-top: 6px; }
.drawer__contact { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); font-size: .9rem; color: var(--slate-600); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(56px, 8vw, 110px);
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(15,181,174,.16), transparent 60%),
    radial-gradient(900px 500px at 6% 12%, rgba(255,107,74,.10), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__badge { margin-bottom: 22px; }
.hero h1 { color: var(--navy-900); }
.hero h1 .grad { background: linear-gradient(115deg, var(--teal-500), var(--navy-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 22px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 3px; color: #f5b301; }
.stars svg { width: 18px; height: 18px; }
.hero__trust-txt { font-size: .9rem; color: var(--slate-600); }
.hero__trust-txt b { color: var(--navy-800); font-family: var(--f-display); }

/* Hero visual card */
.hero__visual { position: relative; }
.hero__panel {
  position: relative; background: var(--navy-800); color: #fff; border-radius: var(--r-xl);
  padding: 30px; box-shadow: var(--shadow-lg);
  background-image: radial-gradient(600px 300px at 90% 0%, rgba(15,181,174,.35), transparent 55%);
  overflow: hidden;
}
.hero__panel::after { content:""; position:absolute; inset:0; background:
  linear-gradient(120deg, transparent 40%, rgba(255,255,255,.06) 50%, transparent 60%); }
.hero__panel h3, .hero__panel .hpanel-title { color: #fff; font-size: 1.05rem; margin-bottom: 4px; font-family: var(--f-display); font-weight: 700; letter-spacing: -.01em; }
.hero__panel .muted { color: var(--slate-400); font-size: .84rem; }
.mini-chart { display: flex; align-items: flex-end; gap: 10px; height: 120px; margin: 22px 0 8px; }
.mini-chart span { flex: 1; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--teal-400), var(--teal-500)); opacity: .95; }
.mini-chart span:last-child { background: linear-gradient(180deg, var(--salmon-400), var(--salmon-500)); }
.hero__stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.hstat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 14px; }
.hstat b { font-family: var(--f-display); font-size: 1.4rem; color: #fff; display: block; }
.hstat small { color: var(--slate-400); font-size: .74rem; }
.hero__float {
  position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.hero__float--tl { top: 28%; left: -26px; }
.hero__float--br { bottom: -12px; right: -20px; }
.hero__float .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero__float .ic svg { width: 22px; height: 22px; color: #fff; }
.hero__float b { display: block; font-family: var(--f-display); color: var(--navy-800); font-size: 1.02rem; line-height: 1.15; }
.hero__float small { display: block; color: var(--slate-500); font-size: .78rem; }

/* ============================================================
   Trust / logos strip
   ============================================================ */
.trustbar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.trustbar__inner { display: flex; align-items: center; gap: clamp(24px, 5vw, 60px); justify-content: center; flex-wrap: wrap; padding-block: 26px; }
.trustbar p { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); font-weight: 600; }
.trust-logos { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; justify-content: center; }
.trust-logos span { font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; color: var(--slate-600); letter-spacing: -.01em; transition: color .2s; }
.trust-logos span:hover { color: var(--navy-700); }

/* ============================================================
   Services
   ============================================================ */
.services { background:
  radial-gradient(900px 500px at 100% 0%, rgba(15,181,174,.06), transparent 60%),
  var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content:""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--salmon-500));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(15,181,174,.14), rgba(15,181,174,.05)); }
.svc-ic svg { width: 27px; height: 27px; color: var(--teal-500); stroke-width: 1.8; }
.svc-card:nth-child(3n+2) .svc-ic { background: linear-gradient(135deg, rgba(255,107,74,.14), rgba(255,107,74,.05)); }
.svc-card:nth-child(3n+2) .svc-ic svg { color: var(--salmon-500); }
.svc-card:nth-child(3n+3) .svc-ic { background: linear-gradient(135deg, rgba(20,68,110,.14), rgba(20,68,110,.05)); }
.svc-card:nth-child(3n+3) .svc-ic svg { color: var(--navy-600); }
.svc-card h3 { margin-bottom: 9px; font-size: 1.16rem; }
.svc-card p { font-size: .94rem; line-height: 1.6; }
.svc-tag { position: absolute; top: 20px; right: 20px; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--salmon-600); background: rgba(255,107,74,.12); padding: 4px 9px; border-radius: var(--r-pill); }

.svc-more { margin-top: 34px; }
.svc-more__title { text-align: center; font-family: var(--f-display); font-weight: 600; color: var(--slate-500); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin-inline: auto; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); color: var(--slate-700); font-weight: 500; font-size: .9rem; padding: 10px 16px; border-radius: var(--r-pill); transition: .2s; }
.chip:hover { border-color: var(--teal-500); color: var(--navy-800); box-shadow: var(--shadow-sm); }
.chip svg { width: 15px; height: 15px; color: var(--teal-500); }

/* ============================================================
   Process
   ============================================================ */
.process { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.process::before { content:""; position: absolute; inset: 0; background:
  radial-gradient(700px 400px at 12% 0%, rgba(15,181,174,.18), transparent 55%),
  radial-gradient(600px 400px at 90% 100%, rgba(255,107,74,.14), transparent 55%); }
.process .container { position: relative; }
.process .eyebrow { color: var(--teal-300); background: rgba(15,181,174,.14); border-color: rgba(15,181,174,.3); }
.process h2, .process .section-head p { color: #fff; }
.process .section-head p { color: var(--slate-300); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding: 26px; border-radius: var(--r-lg); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); transition: .28s; }
.step:hover { background: rgba(255,255,255,.08); transform: translateY(-5px); }
.step__n { font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; background: linear-gradient(135deg, var(--teal-400), var(--teal-300)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 14px; }
.step:nth-child(even) .step__n { background: linear-gradient(135deg, var(--salmon-400), var(--salmon-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { color: #fff; font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--slate-300); font-size: .9rem; line-height: 1.6; }
.step__ic { position: absolute; top: 24px; right: 22px; opacity: .5; }
.step__ic svg { width: 24px; height: 24px; color: var(--teal-300); }

/* ============================================================
   Results / stats counters
   ============================================================ */
.results .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  text-align: center; padding: 34px 20px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.stat__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.3rem, 4.4vw, 3.2rem); line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin-top: 12px; color: var(--slate-600); font-weight: 500; font-size: .98rem; }

/* ============================================================
   Case studies
   ============================================================ */
.cases { background: var(--paper); }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr; transition: transform .28s, box-shadow .28s;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case__top { padding: 26px 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.case__badge { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-700); background: rgba(15,181,174,.12); padding: 5px 12px; border-radius: var(--r-pill); }
.case__dur { font-size: .8rem; color: var(--slate-500); font-weight: 500; }
.case__body { padding: 16px 26px 26px; }
.case__body h3 { font-size: 1.24rem; margin-bottom: 4px; }
.case__ind { color: var(--slate-500); font-size: .9rem; margin-bottom: 18px; }
.case__metrics { display: flex; gap: 26px; padding-top: 18px; border-top: 1px solid var(--border); }
.case__metric b { font-family: var(--f-display); font-size: 1.6rem; color: var(--navy-800); display: block; line-height: 1; }
.case__metric b .up { color: var(--teal-500); }
.case__metric small { color: var(--slate-500); font-size: .82rem; }

/* ============================================================
   Why choose us
   ============================================================ */
.why__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.why__media { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--navy-800); min-height: 440px;
  background-image: radial-gradient(500px 300px at 20% 10%, rgba(15,181,174,.4), transparent 55%), radial-gradient(400px 260px at 90% 90%, rgba(255,107,74,.35), transparent 55%); }
.why__media-inner { position: absolute; inset: 0; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; color: #fff; }
.why__quote { font-family: var(--f-display); font-size: clamp(1.3rem,2.2vw,1.7rem); font-weight: 600; line-height: 1.3; color: #fff; letter-spacing: -.02em; }
.why__quote-by { color: var(--teal-300); font-weight: 500; font-size: .92rem; }
.why__local { position: absolute; top: 30px; left: 34px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); padding: 8px 14px; border-radius: var(--r-pill); font-size: .82rem; font-weight: 600; color: #fff; }
.why__local svg { width: 15px; height: 15px; color: var(--teal-300); }
.why-list { display: flex; flex-direction: column; gap: 8px; }
.why-item { display: flex; gap: 16px; padding: 18px; border-radius: var(--r-md); transition: background .2s; }
.why-item:hover { background: #fff; box-shadow: var(--shadow-sm); }
.why-item__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); }
.why-item__ic svg { width: 23px; height: 23px; color: var(--teal-300); }
.why-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.why-item p { font-size: .92rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.testi { background: var(--navy-900); color: #fff; overflow: hidden; }
.testi .eyebrow { color: var(--teal-300); background: rgba(15,181,174,.14); border-color: rgba(15,181,174,.3); }
.testi h2, .testi .section-head p { color: #fff; }
.testi .section-head p { color: var(--slate-300); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.tcard .stars { color: #f5b301; }
.tcard p { color: var(--slate-200); font-size: .97rem; line-height: 1.6; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; color: #fff; flex: none; background: linear-gradient(135deg,#0fb5ae,#0d8f89); }
.testi-grid .tcard:nth-child(3n+2) .tcard__av { background: linear-gradient(135deg,#ff6b4a,#ec5230); }
.testi-grid .tcard:nth-child(3n+3) .tcard__av { background: linear-gradient(135deg,#14446e,#0e3355); }
.tcard__who b { color: #fff; font-family: var(--f-display); font-size: .96rem; display: block; }
.tcard__who small { color: var(--slate-400); font-size: .82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px,5vw,56px); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__intro p { margin-top: 16px; }
.faq__intro .btn { margin-top: 24px; }
.acc { display: flex; flex-direction: column; gap: 12px; }
.acc__item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.acc__item.open { box-shadow: var(--shadow-sm); border-color: var(--teal-500); }
.acc__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 20px 22px; font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; color: var(--navy-800); }
.acc__q:hover { color: var(--teal-500); }
.acc__icn { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--slate-100); transition: .3s; }
.acc__icn svg { width: 15px; height: 15px; transition: transform .3s; color: var(--navy-700); }
.acc__item.open .acc__icn { background: var(--teal-500); }
.acc__item.open .acc__icn svg { transform: rotate(45deg); color: #fff; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__a p { padding: 0 22px 22px; font-size: .96rem; line-height: 1.65; }

/* ============================================================
   CTA + Contact
   ============================================================ */
.cta { background: var(--paper); }
.cta__card { position: relative; background: var(--navy-800); border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; box-shadow: var(--shadow-lg); }
.cta__card::before { content:""; position:absolute; inset:0; background:
  radial-gradient(600px 400px at 100% 0%, rgba(15,181,174,.25), transparent 55%),
  radial-gradient(500px 300px at 0% 100%, rgba(255,107,74,.2), transparent 55%); }
.cta__left { position: relative; padding: clamp(34px, 4vw, 56px); color: #fff; }
.cta__left .eyebrow { color: var(--teal-300); background: rgba(15,181,174,.14); border-color: rgba(15,181,174,.3); }
.cta__left h2 { color: #fff; margin: 18px 0 14px; }
.cta__left p { color: var(--slate-300); font-size: 1.05rem; }
.cta__contact { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.cta__ci { display: flex; align-items: center; gap: 14px; color: #fff; font-weight: 500; }
.cta__ci .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; flex: none; }
.cta__ci .ic svg { width: 20px; height: 20px; color: var(--teal-300); }
.cta__ci small { display: block; color: var(--slate-400); font-size: .78rem; font-weight: 400; }
.cta__ci b { font-family: var(--f-display); font-weight: 600; }

.form { position: relative; background: #fff; padding: clamp(28px, 3.4vw, 44px); border-radius: var(--r-xl); margin: 8px; }
.form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form > p { font-size: .92rem; margin-bottom: 20px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-weight: 600; font-size: .85rem; color: var(--navy-800); margin-bottom: 7px; font-family: var(--f-display); }
.field label .req { color: var(--salmon-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--slate-200); border-radius: var(--r-sm);
  font: inherit; color: var(--ink); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px var(--ring); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note { font-size: .8rem; color: var(--slate-500); margin-top: 12px; text-align: center; }
.form__ok { display: none; text-align: center; padding: 20px; border-radius: var(--r-md); background: rgba(15,181,174,.1); border: 1px solid rgba(15,181,174,.3); color: #0d7a75; font-weight: 600; margin-top: 12px; }
.form__ok.show { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-900); color: var(--slate-300); padding-block: clamp(52px, 6vw, 80px) 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer .brand small { color: var(--slate-400); }
.footer__about { margin-top: 18px; font-size: .93rem; max-width: 320px; color: var(--slate-400); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; transition: .2s; }
.footer__social a:hover { background: var(--teal-500); border-color: var(--teal-500); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--f-display); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--slate-400); font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--teal-300); }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--slate-400); }
.footer__bottom a { color: var(--slate-400); }
.footer__bottom a:hover { color: var(--teal-300); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .results .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav__links, .nav__phone, .nav__actions .btn--cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .hero__float--tl { left: 8px; }
  .hero__float--br { right: 8px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__media { min-height: 340px; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .cta__card { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .results .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats-row { grid-template-columns: repeat(3,1fr); }
  .case__metrics { gap: 18px; }
  .hero__float { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: .001ms !important; transition-duration: .08s !important; }
}
