/* ============================================================
   OakSERP LLC — oakserp-studio build
   Palette: warm charcoal backdrop + amber accent
   Fonts: Space Grotesk (display) + Inter (body)
   ============================================================ */

/* ============================================================
   Self-hosted fonts (merged from fonts.css to eliminate one
   render-blocking request — see PageSpeed dependency chain fix)
   ============================================================ */

/* ---- Inter ---- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-400.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: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-500.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: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-600.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+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-700.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;
}

/* ---- Space Grotesk ---- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-latin-500.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: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-latin-600.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: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-latin-700.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;
}

/* ============================================================
   End font declarations
   ============================================================ */
:root {
  --navy:        #0E0C0A;
  --navy-2:      #181410;
  --navy-3:      #211C16;
  --navy-rgb:    14, 12, 10;     /* rgba channel source for --navy */
  --ink-rgb:     20, 16, 31;     /* dark ink for light mode overlays */
  --white:       #FFFFFF;
  --white-rgb:   255, 255, 255;  /* rgba channel source for --white */
  --off:         #F5F0EB;
  --muted:       #B0A89E;
  --dim:         #7A7068;
  --line:        rgba(var(--white-rgb), 0.08);
  --line-2:      rgba(var(--white-rgb), 0.16);

  --accent:       #F59E0B;
  --accent-light: #FCD34D;
  --accent-dark:  #D97706;
  --accent-rgb:   245, 158, 11;  /* rgba channel source for --accent */

  --max:         1180px;
  --max-narrow:  760px;
  --radius:      14px;
  --radius-sm:   8px;
  --radius-md:   10px;
  --radius-lg:   22px;
  --radius-xl:   28px;
  --radius-pill: 999px;
  --transition-card: transform .2s, border-color .2s;
  --shadow:      0 20px 60px rgba(0,0,0,0.45);
  --shadow-accent: 0 16px 40px -12px rgba(var(--accent-rgb), 0.45);

  --font-display: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
.svg-icon {
  --svg-icon: none;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: var(--svg-icon) center / contain no-repeat;
  mask: var(--svg-icon) center / contain no-repeat;
  flex-shrink: 0;
  vertical-align: -0.125em;
}
.svg-icon-16 { width: 16px; height: 16px; }
.svg-icon-20 { width: 20px; height: 20px; }
.svg-icon-24 { width: 24px; height: 24px; }
.svg-icon-26 { width: 26px; height: 26px; }
.svg-icon-arrow-right { --svg-icon: url("/assets/svg/icons/arrow-right.svg"); }
.svg-icon-chevron-down { --svg-icon: url("/assets/svg/icons/chevron-down-accent.svg"); }
.svg-icon-check { --svg-icon: url("/assets/svg/icons/check.svg"); }
.svg-icon-file-text { --svg-icon: url("/assets/svg/icons/file-text.svg"); }
.svg-icon-mail { --svg-icon: url("/assets/svg/icons/mail.svg"); }
.svg-icon-map-pin { --svg-icon: url("/assets/svg/icons/map-pin.svg"); }
.svg-icon-monitor { --svg-icon: url("/assets/svg/icons/monitor.svg"); }
.svg-icon-phone { --svg-icon: url("/assets/svg/icons/phone.svg"); }
.svg-icon-search { --svg-icon: url("/assets/svg/icons/search.svg"); }
.svg-icon-star { --svg-icon: url("/assets/svg/icons/star.svg"); }
.svg-icon-zap  { --svg-icon: url("/assets/svg/icons/zap.svg"); }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; color: var(--muted); }
main p a, main li a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 0.08em; text-decoration-color: rgba(var(--accent-rgb),0.7); text-underline-offset: 3px; }
main p a:hover, main li a:hover { color: var(--accent-light); }
::selection { background: var(--accent); color: var(--navy); }

/* ---- Layout ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }
.section-divider { border-top: 1px solid var(--line); }
.center-stack { text-align: center; margin-top: 32px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { font-size: 18px; }
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.text-accent { color: var(--accent); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 0;
  font-weight: 600;
  font-size: 15px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #0E0C0A; box-shadow: var(--shadow-accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -12px rgba(var(--accent-rgb),0.7); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(var(--white-rgb),0.05); border-color: var(--white); }
.btn .arrow { transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(24,20,16,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: var(--white); letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  filter: drop-shadow(0 6px 14px rgba(var(--accent-rgb),0.5));
  flex-shrink: 0;
}
.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { position: relative; padding: 8px 14px 10px; border-radius: var(--radius-sm); color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--white); background: rgba(var(--white-rgb),0.05); }
.nav-links a.active { color: var(--white); background: rgba(var(--white-rgb),0.06); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb),0.55);
}
.nav-toggle { display: none; background: transparent; color: var(--white); border: 1px solid var(--line-2); padding: 8px 12px; border-radius: var(--radius-md); }

/* ---- Hero ---- */
.hero {
  padding: clamp(76px, 10vw, 124px) 0 clamp(68px, 9vw, 112px);
  position: relative; overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 78% 18%, rgba(var(--accent-rgb),0.16), transparent 34%),
    radial-gradient(circle at 7% 98%, rgba(var(--accent-rgb),0.18), transparent 34%),
    radial-gradient(rgba(var(--white-rgb),0.06) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px;
  opacity: 0.46;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: rgba(var(--accent-rgb),0.14);
  filter: blur(48px);
  border-radius: 50%;
  box-shadow: -920px 620px 80px 46px rgba(var(--accent-rgb),0.12);
  will-change: filter;
  transform: translateZ(0);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  width: 100%;
  max-width: 720px;
}
.hero .eyebrow {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}
.hero h1 {
  max-width: 660px;
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero h1 span:not(.text-accent) { color: inherit; }
.hero p.lead {
  max-width: 640px;
  margin: 0 0 36px;
  color: var(--off);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .btn {
  min-height: 58px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 130%;
  left: -20%;
  top: -15%;
  background: rgba(var(--accent-rgb),0.20);
  filter: blur(140px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -12%;
  top: 5%;
  background: rgba(94,234,212,0.16);
  filter: blur(130px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hv-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off);
  background: var(--navy-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  white-space: nowrap;
}
.hv-blob {
  display: none;
}
@media (prefers-reduced-motion: reduce) { .hv-blob { animation: none; opacity: 0.82; } }
.hv-card {
  position: absolute;
  z-index: 2;
  background: var(--navy-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
}
.hv-card .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
  font-weight: 600;
}
.hv-card .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
}
.hv-card .delta {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}
.hv-card .row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.hv-card .row:last-child { margin-bottom: 0; }
.hv-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hv-card .row .text {
  font-size: 13px;
  color: var(--off);
}
.hv-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.dot-sm {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hv-sparkline {
  display: block;
  width: 100%;
  height: 36px;
  margin: 8px 0 4px;
}
.hv-1 {
  top: 4%;
  left: 0;
  width: 56%;
  animation: floatY 6s ease-in-out infinite;
}
.hv-2 {
  top: 36%;
  right: 0;
  width: 60%;
  animation: floatY 6s ease-in-out -3s infinite;
}
.hv-3 {
  bottom: 0;
  left: 16%;
  width: 64%;
  animation: floatY 6s ease-in-out -1.5s infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) {
  .hv-1, .hv-2, .hv-3 { animation: none; }
}

/* ---- Page header (inner pages) ---- */
.page-header {
  padding: 88px 0 72px;
  position: relative; overflow: hidden;
  background: var(--navy); text-align: center;
}
.page-header::before {
  content: ""; position: absolute;
  top: -150px; right: -150px;
  width: 520px; height: 520px;
  background: rgba(var(--accent-rgb),0.18); filter: blur(40px);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-header::after {
  content: ""; position: absolute;
  bottom: -200px; left: -100px;
  width: 480px; height: 480px;
  background: rgba(var(--accent-rgb),0.12); filter: blur(40px);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(38px, 5.4vw, 60px); letter-spacing: -0.03em; margin-bottom: 18px; }
.page-header h1 span { color: var(--accent); }
.page-header p.lead { font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 auto; }
.page-header-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---- Problem / feature cards ---- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition-card);
}
.problem:hover { transform: translateY(-4px); border-color: var(--accent); }
.problem .icon-circle {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(var(--accent-rgb),0.12); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 18px;
}
.problem h3 { font-size: 22px; }
.problem p { font-size: 15px; margin: 0; }
.problem .stat {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px dashed var(--line-2);
  font-size: 14px; color: var(--off);
}
.problem .stat strong { color: var(--accent); font-family: var(--font-display); font-size: 20px; }

/* ---- Steps ---- */
.how-it-works { background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-it-works .section-head { margin-bottom: 56px; }
.how-it-works .section-head h2 { margin: 0 0 12px; }
.how-it-works .section-sub { font-size: 16px; color: var(--muted); margin: 0 auto; max-width: 480px; line-height: 1.6; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; position: relative;
}
.step {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left; padding: 32px 28px;
  position: relative; overflow: hidden;
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: 12px; transition: border-color .25s;
}
.step:hover { border-color: var(--accent); }
.step-num {
  position: absolute; top: -10px; right: 12px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 96px; line-height: 1; color: var(--accent);
  opacity: 0.07; pointer-events: none; user-select: none;
  letter-spacing: -4px;
}
.step-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px; display: block;
}
.step h3 { font-size: 19px; margin: 0 0 12px; line-height: 1.3; }
.step p { font-size: 15px; margin: 0; color: var(--muted); line-height: 1.65; }
.steps-footer { text-align: center; margin-top: 40px; }
.steps-link {
  color: var(--accent); font-size: 15px; font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.steps-link:hover { color: var(--accent-light); }

/* ---- Offer feature grid ---- */
.offer-strip { background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition-card);
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.offer-card h2,
.offer-card h3 { font-size: 20px; margin-bottom: 10px; }
.offer-card p { font-size: 15px; margin: 0; }
.offer-card .offer-cta { text-align: center; margin-top: 16px; }
.offer-card-solo { max-width: 820px; margin: 0 auto; }
.offer-card-solo h2 { font-size: clamp(24px, 3.2vw, 36px); margin: 12px 0 20px; }
.offer-card-solo p { margin-bottom: 16px; }
.offer-card-solo > :last-child { margin-bottom: 0; }
.offer-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(var(--accent-rgb),0.12); color: var(--accent);
}

/* ---- Inline Q&A ---- */
.inline-qa { max-width: 820px; margin: 56px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.qa-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.qa-card h3 { font-size: 17px; color: var(--accent); margin-bottom: 10px; }
.qa-card p { font-size: 15px; margin: 0; }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-card {
  position: relative; width: 100%; aspect-ratio: 4/5;
  max-width: 420px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy-2); border: 1px solid var(--line-2);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.about-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-accent); }
.about-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; z-index: 3;
}
.about-card:hover::before { transform: scaleX(1); }
.about-card .blob-1 { position: absolute; top: 36%; left: 50%; width: 320px; height: 320px; transform: translate(-50%, -50%); background: rgba(var(--accent-rgb),0.22); filter: blur(60px); opacity: 0.55; border-radius: 50%; pointer-events: none; }
.about-card .blob-2 { position: absolute; bottom: -50px; left: -30px; width: 160px; height: 160px; background: rgba(var(--accent-rgb),0.18); filter: blur(40px); opacity: 0.5; border-radius: 50%; pointer-events: none; }
.about-card .badge { position: absolute; bottom: 28px; left: 28px; right: 28px; background: rgba(24,20,16,0.85); backdrop-filter: blur(10px); border: 1px solid var(--line-2); border-radius: 16px; padding: 22px; }
.about-card .badge .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 4px; }
.about-card .badge .role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.about-card .badge .meta { font-size: 13px; color: var(--muted); }
.about-card .badge .meta span { display: block; padding: 3px 0; }
.about-card .card-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -75%); width: 56%; max-width: 220px; aspect-ratio: 1; filter: drop-shadow(0 12px 40px rgba(var(--accent-rgb),0.35)); }
.about-card .card-logo svg,
.about-card .card-logo img { width: 100%; height: 100%; display: block; }
.about h2 { font-size: clamp(28px, 4vw, 42px); }
.about p { font-size: 17px; }
.about ul { padding: 0; margin: 24px 0 0; list-style: none; }
.about ul li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--off); }
.about ul li .bullet { color: var(--accent); font-size: 22px; line-height: 1; margin-top: 1px; flex-shrink: 0; width: 14px; text-align: center; }
.about-body-panel {
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0.07), rgba(var(--white-rgb),0.018) 46%, transparent);
  border-left: 2px solid rgba(var(--accent-rgb),0.46);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 6px 0 6px clamp(22px, 3vw, 30px);
}
.about-body-panel > :last-child { margin-bottom: 0; }
.about-body-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 36px);
  box-shadow: 0 20px 54px -42px rgba(0,0,0,0.8);
}
.about-body-card > :last-child { margin-bottom: 0; }
.detail-grid.about-detail-grid { gap: 24px; align-items: stretch; }

/* ---- Process timeline ---- */
.process-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; counter-reset: process-num; }
.process-step {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 32px;
  transition: var(--transition-card);
  position: relative; overflow: hidden;
}
.process-step:hover { border-color: var(--accent); transform: translateY(-2px); }
.process-body h3 { font-size: 20px; margin-bottom: 6px; }
.process-body p { font-size: 15px; margin: 0; }

/* ---- Detail sections (service subpages) ---- */
.detail-section { padding: 80px 0; }
.detail-section:nth-child(even) { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.detail-grid > .detail-content { order: 1; }
.detail-grid > .detail-aside { order: 2; }
.detail-content {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition-card);
}
.detail-content:hover { transform: translateY(-4px); border-color: var(--accent); }
.detail-content h2 { font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 16px; }
.detail-content p { font-size: 16px; margin-bottom: 16px; }
.detail-content > :last-child { margin-bottom: 0; }
.detail-content ul { padding-left: 0; margin: 16px 0 0; list-style: none; display: grid; gap: 12px; }
.detail-content ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--off); padding: 0; }
.detail-content ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 0.6em; }
.detail-content strong { color: var(--off); }
.detail-aside {
  background: var(--navy-2); border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition-card);
}
.detail-aside:hover { transform: translateY(-4px); border-color: var(--accent); }
.detail-aside h3 { font-size: 20px; margin-bottom: 16px; color: var(--accent); }
.detail-aside h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 16px; }
.detail-aside p { font-size: 15px; }
.detail-aside > :last-child { margin-bottom: 0; }
.detail-aside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.detail-aside ul li { display: flex; gap: 12px; font-size: 14px; color: var(--off); align-items: flex-start; }
.detail-aside ul li .svg-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.detail-wide {
  max-width: 820px; margin: 0 auto;
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition-card);
}
.detail-wide:hover { transform: translateY(-4px); border-color: var(--accent); }
.detail-wide h2 { font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 20px; }
.detail-wide p { font-size: 16px; margin-bottom: 16px; }
.detail-wide > :last-child { margin-bottom: 0; }

/* ---- Search terms section ---- */
.search-terms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 32px;
}
.search-term-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  transition: border-color .2s, background .2s, transform .2s;
}
.search-term-chip:hover { border-color: var(--accent); background: rgba(var(--accent-rgb),0.06); transform: translateY(-2px); }
.search-term-icon { color: var(--accent); flex-shrink: 0; }
.search-terms-note {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Related services ---- */
.related-services { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; max-width: 820px; margin-inline: auto; }
.related-card {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center;
  transition: var(--transition-card);
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-card .rc-text h4 { font-size: 16px; margin-bottom: 4px; }
.related-card .rc-text p { font-size: 13px; color: var(--muted); margin: 0; }
.related-card .svg-icon { color: var(--accent); flex-shrink: 0; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-group-label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 32px 0 10px; }
.faq-group-label:first-child { margin-top: 0; }
.faq-item {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--accent); box-shadow: 0 14px 40px -20px rgba(var(--accent-rgb),0.5); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 28px; display: flex; align-items: center; gap: 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--white); line-height: 1.35; transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: ""; width: 22px; height: 22px; flex-shrink: 0; margin-left: auto;
  color: var(--accent); /* drives currentColor in the data-URI SVG */
  background-color: rgba(var(--accent-rgb),0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  border-radius: 50%; transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 28px 26px; border-top: 1px solid var(--line); }
.faq-answer p { font-size: 15px; color: var(--muted); margin: 18px 0 0; }
.faq-answer a { color: var(--accent); }
.faq-answer a:hover { text-decoration: underline; }

/* ---- Contact form ---- */
.contact-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.contact-form { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.required { color: var(--accent); }
.field input, .field textarea, .field select {
  background: var(--navy); border: 1px solid var(--line-2);
  color: var(--white); padding: 14px 16px;
  border-radius: var(--radius-md); font-family: inherit; font-size: 15px;
  transition: border-color .15s, background .15s;
  appearance: none; -webkit-appearance: none;
  width: 100%; line-height: 1.3;
}
.field select { cursor: pointer; background-image: url("/assets/svg/icons/chevron-down-muted.svg"); background-repeat: no-repeat; background-position: right 14px center; background-size: 14px 10px; padding-right: 38px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: rgba(var(--accent-rgb),0.04); }
.field textarea { min-height: 130px; resize: vertical; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
#form-status { font-size: 14px; color: var(--muted); }
.contact-note { font-size: 13px; color: var(--dim); margin-top: 16px; }
.contact-note a { color: var(--accent); }
.contact-aside { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card, .contact-panel { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card { padding: 22px 24px; display: flex; align-items: center; gap: 16px; min-width: 0; }
.contact-aside .contact-card { min-height: 0; }
.contact-card .icon-circle { width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(var(--accent-rgb),0.12); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.contact-card-body { min-width: 0; }
.contact-card h4 { font-size: 13px; font-family: var(--font-body); font-weight: 600; color: var(--muted); margin: 0 0 4px; }
.contact-card .big { font-family: var(--font-display); font-size: 18px; font-weight: 700; line-height: 1.22; color: var(--white); display: block; overflow-wrap: anywhere; }
.contact-card a.big:hover { color: var(--accent); }
.contact-location { color: var(--off); }
.contact-panel { padding: 24px; }
.contact-panel-title { font-size: 17px; margin: 0 0 12px; color: var(--accent); }
.contact-panel-kicker { font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin: 0 0 10px; }
.contact-steps { padding-left: 20px; margin: 0; display: grid; gap: 10px; }
.contact-steps li { font-size: 14px; color: var(--off); padding-left: 4px; }
.contact-service-area { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ---- Form confirmation screen ---- */
#form-success[hidden] { display: none; }
#form-success:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0 4px;
  animation: successIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.success-icon {
  position: relative;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.10);
  border: 2px solid rgba(var(--accent-rgb),0.28);
  display: grid; place-items: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.success-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb),0.22);
  animation: successRing 1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes successRing {
  from { opacity: 0.9; transform: scale(0.75); }
  to   { opacity: 0;   transform: scale(1.35); }
}
.success-check {
  width: 38px; height: 38px;
  color: var(--accent);
  opacity: 0;
  transform: scale(0.82);
  animation: successCheck 0.28s 0.18s ease-out forwards;
}
@keyframes successCheck {
  to { opacity: 1; transform: scale(1); }
}
.success-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 8px 0 14px;
}
.success-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.success-steps {
  width: 100%;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: left;
}
.success-steps-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.success-steps ol {
  padding-left: 20px;
  margin: 0;
  display: grid;
  gap: 10px;
}
.success-steps ol li {
  font-size: 14px;
  color: var(--off);
  line-height: 1.5;
}

/* ---- CTA strip ---- */
.cta-strip { background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-cta-strip { background: var(--navy); }
.cta-strip-card {
  max-width: 820px; margin: 0 auto;
  background: var(--navy-2); border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip-card::before {
  content: ""; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px;
  background: rgba(var(--accent-rgb),0.12); filter: blur(40px);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.cta-strip-card h2 { font-size: clamp(24px, 3vw, 34px); position: relative; }
.cta-strip-card p { position: relative; max-width: 540px; margin: 0 auto 28px; font-size: 17px; }
.cta-strip-card .cta-actions { position: relative; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---- Legal pages ---- */
.legal-doc { max-width: var(--max-narrow); margin: 0 auto; padding: 64px 24px 80px; line-height: 1.65; }
.legal-doc h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 16px; }
.legal-doc h2 { font-size: clamp(22px, 3vw, 28px); margin-top: 40px; }
.legal-doc h3 { font-size: 18px; margin-top: 24px; }
.legal-doc p, .legal-doc li { color: var(--muted); font-size: 16px; }
.legal-doc a { color: var(--accent); }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc .updated { font-size: 14px; color: var(--dim); margin-bottom: 32px; }
.legal-doc .lede { font-size: 17px; color: var(--off); padding: 20px 22px; background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); margin: 0 0 36px; }
.legal-doc ul { padding-left: 22px; margin: 0 0 1em; }
.legal-doc ul li { padding: 4px 0; }
.legal-doc .contact-block { margin-top: 32px; padding: 22px 24px; background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); }
.legal-doc .contact-block p { color: var(--off); margin: 0 0 6px; }

/* ---- Who we help ---- */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.who-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 12px; transition: var(--transition-card); }
.who-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.who-card span { font-size: 15px; font-weight: 600; color: var(--off); }

/* ---- Footer ---- */
.footer { padding: 48px 0 28px; border-top: 1px solid var(--line); background: var(--navy); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1.4fr 1fr; gap: 32px; align-items: start; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer .brand { color: var(--white); margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--dim); max-width: 280px; margin: 0; }
.footer-nav { display: flex; flex-direction: column; gap: 6px; }
.footer-nav-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); padding: 0 0 4px; }
.footer-nav-label + .footer-links + .footer-nav-label { margin-top: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.footer-links a { padding: 6px 12px; border-radius: var(--radius-sm); color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s, background .15s; }
.footer-links a:hover { color: var(--white); background: rgba(var(--white-rgb),0.05); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }
.footer-contact a { color: var(--off); transition: color .15s; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .fc-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--dim); }
.footer-bottom a { color: var(--dim); }
.footer-bottom a:hover { color: var(--accent); }

/* ---- Reveal on scroll ----
   Content is visible by default. Animation only kicks in when JS adds
   the `js-reveal` class to <html> AND the user hasn't asked for reduced motion. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js-reveal .reveal { opacity: 0; transform: translateY(20px); }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; }
  .reveal { transition: none; }
}

/* ---- Light mode ---- */
@media (prefers-color-scheme: light) {
  :root {
    --navy:    #FAF8F1;
    --navy-2:  #FFFFFF;
    --navy-3:  #F2EDE6;
    --line:    rgba(var(--ink-rgb),0.10);
    --line-2:  rgba(var(--ink-rgb),0.18);
    --white:   #14101F;
    --off:     #2A2342;
    --muted:   #5C5670;
    --dim:     #7E7892;
    --shadow:  0 20px 60px rgba(var(--ink-rgb),0.10);
    --shadow-accent: 0 16px 40px -12px rgba(var(--accent-rgb),0.45);
  }
  ::selection { background: var(--accent); color: #fff; }
  .btn-primary { color: #0E0C0A !important; }
  .nav { background: rgba(var(--white-rgb),0.78); }
  .footer { background: rgba(var(--white-rgb),0.78); }
  .about-card .badge { background: rgba(var(--white-rgb),0.85); }
  .hero::before, .hero::after, .page-header::before, .page-header::after, .cta-strip-card::before { opacity: 0.55; }
  .field input, .field textarea, .field select { background: var(--navy-3); color: var(--white); }
  .brand-mark { filter: drop-shadow(0 4px 10px rgba(var(--accent-rgb),0.3)); }
}

/* ---- Section sub-heading paragraph ---- */
.section-sub { font-size: 16px; color: var(--muted); }

/* ---- Sub-headings inside detail-wide cards (e.g. GBP setup page) ---- */
.detail-wide h3 { font-size: 20px; margin-top: 2rem; }

/* ---- Form optional label ---- */
.optional { font-size: 12px; color: var(--dim); font-weight: 400; margin-left: 4px; }

/* ---- GBP Map embed ---- */
.gbp-embed { background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gbp-embed-card {
  background: var(--navy-2); border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); padding: 48px;
  position: relative; overflow: hidden;
}
.gbp-embed-card::before {
  content: ""; position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(var(--accent-rgb),0.07); filter: blur(50px);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.gbp-embed-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.gbp-embed-copy h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; }
.gbp-embed-copy p { font-size: 16px; margin-bottom: 24px; }
.gbp-embed-map iframe {
  width: 100%; height: 360px;
  border-radius: var(--radius); border: 0;
  display: block;
}

/* Contact page map iframe */
.contact-map-embed iframe {
  width: 100%; height: 220px;
  border: 0;
  border-radius: var(--radius-md);
  margin-top: 20px;
  display: block;
}

/* Honeypot anti-spam input — hidden from users and bots-as-users */
.honeypot { display: none !important; }

/* Pricing page section divider rule */
.divider-rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 88px 0 0;
}


/* ---- Responsive ---- */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { margin-bottom: 34px; }
  .hero-visual { max-width: 380px; }
  .problem-grid, .steps, .offer-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .gbp-embed-card { padding: 32px 24px; }
  .gbp-embed-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-header { padding: 64px 0 56px; }
  .contact-aside { grid-template-columns: 1fr; }
  .inline-qa { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .process-step { padding: 24px 28px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 68px; left: 12px; right: 12px;
    background: var(--navy-2); border: 1px solid var(--line-2);
    border-radius: var(--radius); padding: 14px;
  }
  .nav.open .nav-links a {
    padding: 12px 14px;
    text-align: center;
    justify-content: center;
  }
  /* Centre the Services trigger too */
  .nav.open .nav-dropdown-trigger {
    justify-content: center;
  }
  .problem-grid, .steps, .offer-grid { grid-template-columns: 1fr; gap: 18px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .related-services { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .hero p.lead { margin-bottom: 28px; }
  .hero .btn { width: 100%; justify-content: center; }
  .hero-visual { max-width: 320px; }
  .cta-strip-card { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .process-step { padding: 22px 24px; }
  .faq-item summary { padding: 18px 22px; font-size: 16px; }
  .faq-answer { padding: 0 22px 22px; }
  .detail-content, .detail-aside, .detail-wide { padding: 24px; }
}

/* Industry directory classes */
.industry-directory { padding: clamp(72px, 8vw, 96px) 0; background: var(--navy); }
.industry-group + .industry-group { margin-top: 64px; }
.industry-group h2 { font-size: clamp(25px, 3vw, 36px); margin-bottom: 24px; letter-spacing: 0; }
.industry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.industry-card {
  min-height: 166px; padding: 26px 24px;
  background: var(--navy-2); border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.industry-card:hover {
  border-color: rgba(var(--accent-rgb),0.62);
  box-shadow: 0 22px 48px -34px rgba(var(--accent-rgb),0.85);
  transform: translateY(-2px);
}
.industry-card h3 {
  color: var(--white);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0 0 12px;
}
.industry-card p { color: var(--muted); font-size: 15px; line-height: 1.5; margin: 0; }

@media (max-width: 960px) {
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .industry-directory { padding: 58px 0 64px; }
  .industry-group + .industry-group { margin-top: 48px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 136px; }
}

/* ── First Client / Social Proof Placeholder Section ── */
.first-client-section {
  padding: 80px 0 88px;
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.first-client-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.first-client-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.first-client-copy .eyebrow { margin-bottom: 12px; }
.first-client-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.first-client-reasons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}
.fcr-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fcr-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.fcr-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fcr-item strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.fcr-item span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
@media (max-width: 780px) {
  .first-client-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (prefers-color-scheme: light) {
  .first-client-section { background: var(--navy); }
  .first-client-copy h2 { color: var(--text); }
  .fcr-item strong { color: var(--text); }
}

/* ============================================================
   Services nav dropdown — added 2026-05-09
   ============================================================ */

/* Desktop dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-chevron {
  flex-shrink: 0;
  transition: transform .2s ease;
  opacity: .7;
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--navy-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 230px;
  z-index: 200;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
/* Invisible 6px bridge fills the gap between trigger and menu */
.nav-dropdown-trigger {
  position: relative;
}
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
}

/* Show the menu on hover or when JS sets aria-expanded */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu[aria-hidden="false"] {
  display: flex;
}

/* Dropdown menu item styles */
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--white);
  background: rgba(var(--white-rgb), 0.06);
}

/* ---- Nav phone — desktop filled button ---- */
/* Use .nav-links a.nav-phone to beat .nav-links a specificity */
.nav-links a.nav-phone,
.nav-phone {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #0E0C0A !important;   /* override .nav-links a color: var(--muted) */
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, transform .15s;
  margin-left: 8px;
}
.nav-links a.nav-phone:hover,
.nav-phone:hover {
  background: var(--accent-light);
  color: #0E0C0A !important;
  transform: translateY(-1px);
}

/* ---- Nav phone icon — mobile only (before hamburger) ---- */
.nav-phone-icon {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #0E0C0A;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.nav-phone-icon:hover { background: var(--accent-light); }

/* Mobile nav dropdown inline + centred */
@media (max-width: 640px) {
  .nav-phone-icon {
    display: inline-flex;
    margin-left: auto;   /* pushes icon + hamburger flush right */
    margin-right: 8px;
  }
  /* Phone number hidden in mobile menu — icon in nav bar handles it */
  .nav.open .nav-links a.nav-phone,
  .nav.open .nav-phone {
    display: none !important;
  }
  .nav.open .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open .nav-dropdown-menu {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 2px 0 6px;
    min-width: 0;
    width: 100%;
    gap: 0;
  }
  .nav.open .nav-dropdown-menu a {
    text-align: center;
    width: 100%;
    font-size: 13px;
    padding: 9px 14px;
    color: var(--dim);
  }
  .nav.open .nav-dropdown-trigger::after {
    display: none;
  }
}

/* SVG sparkline gradient stops (moved from inline <style> for CSP compliance) */
.spark-stop-1 { stop-color: var(--accent-light); stop-opacity: 0.25; }
.spark-stop-2 { stop-color: var(--accent-light); stop-opacity: 0; }

/* Desktop: show phone in nav bar (>=900px) */
@media (min-width: 900px) {
  .nav-links a.nav-phone,
  .nav-phone { display: inline-fle