/* ==========================================================================
   MaxWeb — stylesheet
   Zero external requests. System fonts only. Edit tokens below to rebrand.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — deep petrol teal carries structure, warm amber carries action */
  --brand:        #0033a0;
  --brand-dark:   #002878;
  --brand-light:  #e4ebf9;
  --accent:       #f09b2e;
  --accent-dark:  #d9871c;
  --accent-light: #fdf2e0;

  /* Neutrals */
  --ink:          #0a1733;
  --ink-2:        #16244d;
  --body:         #4a5570;
  /* 4.87:1 on white. The previous #6d7893 was 4.41:1 — just under the WCAG AA
     minimum of 4.5:1, which is what Lighthouse flagged. Don't lighten it again. */
  --muted:        #67718c;
  --line:         #e2e6ef;
  --line-strong:  #cbd2e0;
  --surface:      #ffffff;
  --surface-2:    #f7f8fc;
  --surface-3:    #eef1f8;

  /* Card accent palette. Anchored on UK blue.
     Six hues at matched saturation/lightness so the page reads as one system
     rather than a rainbow. Solid = icons/numbers, -t = tinted background. */
  --c-blue:  #0033a0;  --c-blue-t:  #e4ebf9;
  --c-amber: #d9871c;  --c-amber-t: #fcf0dc;
  --c-coral: #d4553f;  --c-coral-t: #fce8e3;
  --c-green: #3a8c4a;  --c-green-t: #e4f2e6;
  --c-plum:  #7d519f;  --c-plum-t:  #f1e9f7;
  --c-sky:  #2a6a99;  --c-sky-t:  #e3eff7;

  /* Semantic */
  --good:         #0f9d58;
  --bad:          #d64545;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;

  /* Elevation */
  --sh-sm: 0 1px 2px rgba(10,23,51,.06), 0 1px 3px rgba(10,23,51,.05);
  --sh:    0 4px 12px rgba(10,23,51,.07), 0 2px 4px rgba(10,23,51,.04);
  --sh-lg: 0 18px 40px rgba(10,23,51,.12), 0 4px 12px rgba(10,23,51,.06);
  --sh-xl: 0 32px 70px rgba(10,23,51,.18), 0 8px 20px rgba(10,23,51,.08);

  /* Layout */
  --wrap: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* The header is sticky at 72px tall. Without this, clicking any in-page link
     parks the target heading directly underneath it, out of sight. */
  scroll-padding-top: 96px;
}

/* Belt and braces for the element actually being jumped to. */
:target { scroll-margin-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 750;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 5.1vw, 3.85rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.18rem; letter-spacing: -.012em; }
p  { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap-narrow { max-width: 820px; }

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-alt  { background: var(--surface-2); }
.section-dark { background: var(--ink); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 18px;
}

.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark .section-sub { color: #a6b0c6; }
.section-dark .kicker { color: #f0b464; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  font-size: .97rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease,
              background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

/* Amber = "do the thing." Dark ink text on amber clears 7:1 contrast. */
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(240,155,46,.34);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(240,155,46,.44);
}

/* Solid blue = "learn more." Used where amber would compete with a nearby primary. */
.btn-blue {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,51,160,.3);
}
.btn-blue:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-lg);
}
.btn-light:hover { transform: translateY(-2px); }

.btn-sm  { padding: 10px 18px; font-size: .9rem; }
.btn-lg  { padding: 16px 32px; font-size: 1.03rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 14px rgba(10,23,51,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 32px; height: 32px; border-radius: 7px; }
.logo-text {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-text span { color: var(--brand); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}
.nav a {
  font-size: .94rem;
  font-weight: 550;
  color: var(--body);
  text-decoration: none;
  transition: color .15s;
}
.nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link {
  font-weight: 650;
  font-size: .94rem;
  color: var(--ink);
  text-decoration: none;
}
.phone-link:hover { color: var(--brand); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: auto;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform .22s, opacity .18s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  background: linear-gradient(180deg, #f5f7fd 0%, #ffffff 62%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -320px; left: 50%;
  width: 1100px; height: 720px;
  transform: translateX(-42%);
  background: radial-gradient(ellipse at center,
              rgba(0,51,160,.16) 0%, rgba(0,51,160,0) 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--sh-sm);
  margin-bottom: 26px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(15,157,88,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(15,157,88,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(15,157,88,.06); }
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--brand) 0%, #3f7bd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 1.15rem;
  color: var(--body);
  margin-top: 24px;
  max-width: 56ch;
}
.lede strong { color: var(--ink); font-weight: 700; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  padding: 0;
  margin-top: 34px;
  font-size: .93rem;
  color: var(--muted);
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-light)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3.4' stroke='%230033a0' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/11px no-repeat;
}
.hero-points strong { color: var(--ink); font-weight: 700; }

/* Hero visual */
.hero-visual { position: relative; }

.browser {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--line);
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--line);
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-bar .r { background: #ff5f57; }
.browser-bar .y { background: #febc2e; }
.browser-bar .g { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 12px;
  padding: 5px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: .72rem;
  color: var(--muted);
  border: 1px solid var(--line);
}
.browser-body { padding: 20px; }

.mock-nav {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid var(--surface-3);
}
.mock-logo { width: 60px; height: 14px; border-radius: 4px; background: var(--ink); }
.mock-links { display: flex; gap: 10px; margin-left: auto; }
.mock-links i { display: block; width: 30px; height: 7px; border-radius: 3px; background: var(--line-strong); }
.mock-btn { width: 54px; height: 22px; border-radius: 999px; background: var(--brand); }

.mock-hero { padding: 26px 0 22px; }
.mock-h1 { height: 17px; border-radius: 5px; background: var(--ink-2); margin-bottom: 9px; width: 88%; }
.mock-h1.short { width: 58%; margin-bottom: 18px; }
.mock-p { height: 8px; border-radius: 4px; background: var(--line-strong); margin-bottom: 8px; width: 92%; }
.mock-p.short { width: 66%; margin-bottom: 20px; }
.mock-cta { width: 118px; height: 34px; border-radius: 999px; background: var(--accent); }

.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-card { height: 62px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  animation: float 5.5s ease-in-out infinite;
}
.float-1 { bottom: -26px; left: -34px; }
.float-2 { top: 42px; right: -40px; animation-delay: -2.6s; }
.fc-icon { font-size: 1.32rem; }
.float-card strong { display: block; font-size: .87rem; color: var(--ink); line-height: 1.3; }
.float-card span   { display: block; font-size: .76rem; color: var(--muted); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- Industry bar ---------- */
.industry-bar {
  padding: 34px 0;
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}
.industry-bar p {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.industry-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
}
.industry-bar li {
  padding: 8px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .89rem;
  font-weight: 600;
  color: var(--ink-2);
}

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.problem-card {
  position: relative;
  padding: 34px 30px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--line-strong);
}
.problem-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--line-strong);
  line-height: 1;
  margin-bottom: 16px;
}
.problem-card h3 { margin-bottom: 12px; }
.problem-card p  { font-size: .97rem; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature {
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.feature-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  background: var(--brand-light);
  border-radius: 12px;
  font-size: 1.3rem;
}
.feature h3 { margin-bottom: 9px; }
.feature p  { font-size: .95rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.plan-featured {
  position: relative;
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: var(--sh-lg);
}
@media (min-width: 900px) {
  .plan-featured { transform: scale(1.035); }
  .plan-featured:hover { transform: scale(1.035) translateY(-4px); }
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan h3 { font-size: 1.32rem; margin-bottom: 8px; }
.plan-for {
  font-size: .92rem;
  color: var(--muted);
  min-height: 3.2em;
  margin-bottom: 22px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.plan-price .amount {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1;
}
.plan-price .unit { font-size: .95rem; color: var(--muted); font-weight: 600; }
.plan-monthly {
  margin: 8px 0 24px;
  font-size: 1rem;
  color: var(--body);
}
.plan-monthly strong { color: var(--brand); font-weight: 750; font-size: 1.1rem; }

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.plan-features li {
  position: relative;
  padding: 8px 0 8px 27px;
  font-size: .94rem;
  border-bottom: 1px solid var(--surface-3);
}
.plan-features li:last-child { border-bottom: 0; }
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 16px;
  background: var(--brand-light)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3.4' stroke='%230033a0' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/11px no-repeat;
  border-radius: 50%;
}
.plan-features strong { color: var(--ink); font-weight: 700; }

.pricing-note {
  max-width: 640px;
  margin: 44px auto 0;
  padding: 22px 26px;
  background: var(--brand-light);
  border-radius: var(--r);
  text-align: center;
  font-size: .97rem;
  color: var(--ink-2);
}

/* ---------- Process ---------- */
.steps {
  list-style: none;
  counter-reset: none;
  padding: 0;
  max-width: 780px;
  margin-inline: auto;
}
.step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 25px; top: 52px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(240,155,46,.45), rgba(240,155,46,.08));
}
.step:last-child::before { display: none; }

.step-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 750;
  box-shadow: 0 6px 20px rgba(0,51,160,.35);
}
.step-body { padding-top: 5px; }
.step-body h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.step-time {
  padding: 4px 12px;
  background: rgba(240,155,46,.14);
  border: 1px solid rgba(240,155,46,.24);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #f5cd94;
}
.step-body p { color: #9aa5bf; font-size: .98rem; }

/* ---------- Comparison table ---------- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
.compare {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: .95rem;
}
.compare th, .compare td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 700;
  font-size: .97rem;
  vertical-align: bottom;
  line-height: 1.35;
}
.compare thead th small {
  display: block;
  font-weight: 500;
  font-size: .79rem;
  color: var(--muted);
  margin-top: 4px;
}
.compare tbody th {
  font-weight: 650;
  color: var(--ink);
  width: 24%;
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover td,
.compare tbody tr:hover th { background: rgba(246,248,252,.7); }

.col-highlight {
  background: var(--brand-light) !important;
  position: relative;
}
.compare thead .col-highlight {
  color: var(--brand-dark);
  box-shadow: inset 0 3px 0 var(--brand);
}
.compare .good { color: var(--good); font-weight: 600; }
.compare .bad  { color: var(--bad); }

/* ---------- Work / samples ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

/* ==========================================================================
   Miniature site previews
   Real markup rendered small, not abstract grey boxes — a prospect should be
   able to see the shape of an actual page. Text sizes are deliberately tiny;
   they read as "a website" rather than as copy to be read.
   ========================================================================== */
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mock-site {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  font-size: 7px;
  line-height: 1.3;
  color: #1b2436;
  user-select: none;
}

/* --- shared chrome --- */
.ms-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  background: #fff;
  border-bottom: 1px solid rgba(10,23,51,.09);
  flex-shrink: 0;
}
.ms-logo {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}
.ms-nav { display: flex; gap: 4px; margin-left: auto; }
.ms-nav i {
  display: block;
  width: 11px; height: 3px;
  border-radius: 2px;
  background: rgba(10,23,51,.22);
}
.ms-pill {
  padding: 3px 7px;
  border-radius: 99px;
  font-size: 5.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.ms-hero { padding: 12px 11px 11px; flex: 1; }
.ms-eyebrow {
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 5px;
  opacity: .85;
}
.ms-h1 {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 5px;
}
.ms-sub { font-size: 5.5px; opacity: .7; margin-bottom: 7px; max-width: 78%; }
.ms-btns { display: flex; gap: 4px; }
.ms-btn {
  padding: 4px 8px;
  border-radius: 99px;
  font-size: 5.5px;
  font-weight: 800;
  white-space: nowrap;
}

.ms-strip {
  padding: 5px 9px;
  font-size: 5.5px;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}

/* --- service tiles row --- */
.ms-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 9px 8px;
  flex-shrink: 0;
}
.ms-tile {
  padding: 6px 4px;
  border-radius: 4px;
  text-align: center;
  font-size: 5.5px;
  font-weight: 700;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(10,23,51,.08);
}

/* --- menu list --- */
.ms-menu { padding: 0 10px 8px; flex-shrink: 0; }
.ms-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 5.5px;
  padding: 2.5px 0;
  border-bottom: 1px dotted rgba(10,23,51,.2);
}
.ms-item b { margin-left: auto; font-weight: 800; }

/* --- team row --- */
.ms-team { display: flex; align-items: center; gap: 5px; padding: 0 10px 9px; flex-shrink: 0; }
.ms-face {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(10,23,51,.14);
  border: 1.5px solid #fff;
  flex-shrink: 0;
}
.ms-teamtext { font-size: 5.5px; font-weight: 700; opacity: .75; }

/* ===== Variant 1 — home services ===== */
.ms-home .ms-logo   { color: #10233f; }
.ms-home .ms-pill   { background: #e0761c; }
.ms-home .ms-hero   { background: #10233f; color: #fff; }
.ms-home .ms-eyebrow{ color: #f0b464; opacity: 1; }
.ms-home .ms-btn-a  { background: #e0761c; color: #fff; }
.ms-home .ms-btn-b  { background: rgba(255,255,255,.14); color: #fff; }
.ms-home .ms-row    { background: #10233f; padding-top: 0; }
.ms-home .ms-strip  { background: #f2efe8; color: #6a5a3c; }

/* ===== Variant 2 — restaurant ===== */
.ms-food .ms-logo   { color: #6d3b1f; letter-spacing: .12em; }
.ms-food .ms-pill   { background: #9c4a22; }
.ms-food .ms-hero   { background: linear-gradient(150deg, #fdf3e6, #f6ddc2); }
.ms-food .ms-eyebrow{ color: #9c4a22; }
.ms-food .ms-h1     { color: #4a2814; }
.ms-food .ms-btn-a  { background: #9c4a22; color: #fff; }
.ms-food .ms-btn-b  { background: #fff; color: #6d3b1f; border: 1px solid rgba(109,59,31,.25); }
.ms-food .ms-menu   { background: #fdf3e6; color: #4a2814; padding-top: 7px; }
.ms-food .ms-strip  { background: #4a2814; color: #f6ddc2; }

/* ===== Variant 3 — professional practice ===== */
.ms-pro .ms-logo    { color: #0033a0; }
.ms-pro .ms-pill    { background: #0033a0; }
.ms-pro .ms-hero    { background: linear-gradient(160deg, #f2f7fd, #dfeaf8); }
.ms-pro .ms-eyebrow { color: #2f8a6a; }
.ms-pro .ms-h1      { color: #0d2143; }
.ms-pro .ms-btn-a   { background: #0033a0; color: #fff; }
.ms-pro .ms-btn-b   { background: #fff; color: #0033a0; border: 1px solid rgba(0,51,160,.22); }
.ms-pro .ms-team    { background: #f2f7fd; padding-top: 6px; }
.ms-pro .ms-strip   { background: #0033a0; color: #cddcf3; }

/* Cards get narrower on small screens — shrink the type to match */
@media (max-width: 760px) {
  .mock-site { font-size: 6px; }
  .ms-h1     { font-size: 11px; }
}

.work-meta { padding: 22px 24px 26px; }
.work-meta h3 { margin-bottom: 7px; }
.work-meta p  { font-size: .93rem; color: var(--muted); }

.work-note {
  margin-top: 28px;
  text-align: center;
  font-size: .87rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- FAQ ---------- */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--sh-sm);
}
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }

.faq summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px 26px;
  cursor: pointer;
  font-weight: 650;
  font-size: 1.03rem;
  color: var(--ink);
  list-style: none;
  transition: background-color .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--surface-2); }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-left: auto;
  background: var(--surface-3)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 5.5L7 9l3.5-3.5' stroke='%234a5570' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/14px no-repeat;
  border-radius: 50%;
  transition: transform .22s, background-color .15s;
}
.faq details[open] summary { background: var(--surface-2); }
.faq details[open] summary::after { transform: rotate(180deg); background-color: var(--brand-light); }

.faq-body { padding: 0 26px 24px; }
.faq-body p { font-size: .97rem; }
.faq-body p + p { margin-top: 13px; }

/* ---------- Quote form ---------- */
.quote-section {
  background: linear-gradient(180deg, var(--surface-2) 0%, #eef2fa 100%);
  border-top: 1px solid var(--line);
}
.quote-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  align-items: start;
}
.quote-copy .section-sub { margin-bottom: 30px; }

.quote-assurances {
  list-style: none;
  padding: 0;
  margin-bottom: 34px;
}
.quote-assurances li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: .97rem;
  color: var(--ink-2);
}
.quote-assurances span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 21px; height: 21px;
  margin-top: 2px;
  background: var(--good);
  color: #fff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
}

.quote-contact {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.quote-contact p {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.quote-contact a {
  display: block;
  font-size: 1.06rem;
  font-weight: 650;
  color: var(--ink);
  padding: 3px 0;
}
.quote-contact a:hover { color: var(--brand); }

.quote-form-wrap {
  position: relative;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.field { margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: .89rem;
  font-weight: 650;
  color: var(--ink);
}
.req { color: var(--bad); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3.5 5.5L7 9l3.5-3.5' stroke='%234a5570' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa3bb; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,51,160,.14);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--bad); }
.field.invalid input:focus,
.field.invalid select:focus { box-shadow: 0 0 0 3px rgba(214,69,69,.14); }

.err {
  display: none;
  margin-top: 6px;
  font-size: .83rem;
  color: var(--bad);
  font-weight: 550;
}
.field.invalid .err { display: block; }

/* honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

#submitBtn { margin-top: 6px; position: relative; }
#submitBtn[disabled] { opacity: .72; cursor: progress; }
.btn-spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
#submitBtn.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-fineprint {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
}
.form-error {
  margin-top: 16px;
  padding: 13px 16px;
  background: #fdeded;
  border: 1px solid #f5c6c6;
  border-radius: 10px;
  color: #9b2c2c;
  font-size: .9rem;
}

.form-success { text-align: center; padding: 26px 8px 14px; }
.success-icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  background: var(--good);
  color: #fff;
  border-radius: 50%;
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15,157,88,.32);
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { font-size: 1rem; }
.success-sub { margin-top: 14px; font-size: .92rem; color: var(--muted); }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(64px, 8vw, 100px) 0;
  background:
    radial-gradient(ellipse 900px 480px at 50% -10%, rgba(0,51,160,.42), transparent 70%),
    var(--ink);
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  max-width: 20ch;
  margin: 0 auto 18px;
}
.final-cta p {
  color: #a9b4cc;
  font-size: 1.1rem;
  margin-bottom: 34px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #93a0bb;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: .93rem;
  max-width: 34ch;
  color: #8b98b5;
}
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text span { color: #f0b464; }

.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-col h2 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer-col a {
  font-size: .93rem;
  color: #93a0bb;
  text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-col .btn { color: #fff; }
.footer-col .btn:hover { color: #fff; }
.footer-hours { font-size: .88rem; color: #7683a3; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .86rem;
  color: #7683a3;
}
.footer-legal a { color: #7683a3; }
.footer-legal a:hover { color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 560px; margin-inline: auto; }
  .browser { transform: none; }
  .float-1 { left: -18px; bottom: -20px; }
  .float-2 { right: -12px; }
  .quote-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 20px;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--surface-3);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: 0; }

  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 16px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }

  .hero { padding-top: 40px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-points { gap: 8px 18px; font-size: .88rem; }

  .float-card { display: none; }
  .hero-visual { max-width: 100%; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form-wrap { padding: 24px 20px; }

  .plan { padding: 28px 24px; }
  .plan-for { min-height: 0; }
  .plan-featured { transform: none; }
  .plan-price .amount { font-size: 2.4rem; }

  .step { gap: 16px; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; }
  .step::before { left: 21px; top: 46px; }

  .faq summary { padding: 18px 18px; font-size: .97rem; }
  .faq-body { padding: 0 18px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .section-head { margin-bottom: 40px; }
}

/* ==========================================================================
   Multi-page components
   ========================================================================== */

/* ---------- Active nav link ---------- */
.nav a.is-active {
  color: var(--brand);
  font-weight: 650;
}
@media (min-width: 901px) {
  .nav a.is-active {
    position: relative;
  }
  .nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -26px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
  }
}
@media (max-width: 900px) {
  .nav a.is-active { color: var(--brand); }
}

/* ---------- Interior page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(44px, 6vw, 76px) 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, #f5f7fd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -260px; left: 50%;
  width: 900px; height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
              rgba(0,51,160,.13) 0%, rgba(0,51,160,0) 68%);
  pointer-events: none;
}
.page-hero > .wrap { position: relative; }
.page-hero h1 { font-size: clamp(1.95rem, 4.4vw, 3.2rem); }
.page-hero .lede { max-width: 62ch; }
.page-hero-tight { padding-bottom: clamp(32px, 4vw, 48px); }

.crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: .86rem;
  color: var(--muted);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand); text-decoration: underline; }
.crumbs span[aria-hidden] { color: var(--line-strong); }

/* ---------- Section spacing variant ---------- */
.section-tight { padding-top: clamp(44px, 5vw, 64px); }

/* ---------- Centered section CTA ---------- */
.center-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}

/* ---------- Compact pricing (home page teaser) ---------- */
.pricing-compact .plan-features { margin-bottom: 22px; }
.pricing-compact .plan-for { min-height: 2.8em; }

/* ---------- Payment terms strip under the plans ---------- */
.pay-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 900px;
  font-size: .92rem;
  color: var(--body);
}
.pay-note li { display: flex; align-items: center; gap: 8px; }
.pay-note li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-light)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3.4' stroke='%230033a0' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/11px no-repeat;
}

.pay-tax {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
  font-size: .84rem;
  color: var(--muted);
}

/* ---------- "Need something bigger?" aside ---------- */
.pricing-aside {
  max-width: 720px;
  margin: 26px auto 0;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  text-align: center;
}
.pricing-aside h3 { font-size: 1.08rem; margin-bottom: 8px; }
.pricing-aside p  { font-size: .95rem; color: var(--muted); }

/* ---------- Mini steps (home page process teaser) ---------- */
.mini-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.mini-step {
  padding: 26px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
}
.mini-step span {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  margin-bottom: 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-weight: 750;
  font-size: .97rem;
}
.mini-step h3 { color: #fff; margin-bottom: 8px; font-size: 1.06rem; }
.mini-step p  { color: #9aa5bf; font-size: .92rem; }

/* ---------- Step "your time" line ---------- */
.step-you {
  margin-top: 10px;
  font-size: .87rem;
  color: #f0b464;
}
.step-you strong { color: #f5cd94; font-weight: 650; }

/* ---------- Detail blocks (services deep dives) ---------- */
.detail-list {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin-inline: auto;
}
.detail {
  padding: 32px 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.detail h3 { font-size: 1.24rem; margin-bottom: 14px; }
.detail p { font-size: .98rem; }
.detail p + p { margin-top: 13px; }
.detail-note {
  margin-top: 16px !important;
  padding: 13px 16px;
  background: var(--surface-2);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  font-size: .92rem !important;
  color: var(--muted);
}

/* ---------- Need / not-included lists ---------- */
.need-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.need-list li {
  padding: 20px 24px 20px 56px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.need-list li::before {
  content: "";
  position: absolute;
  left: 22px; top: 23px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-light)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3.4' stroke='%230033a0' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/12px no-repeat;
}
.need-list strong {
  display: block;
  color: var(--ink);
  font-weight: 650;
  font-size: 1.01rem;
  margin-bottom: 5px;
}
.need-list span { display: block; font-size: .94rem; color: var(--muted); }

/* "not included" variant — dash instead of a checkmark */
.need-list-plain li::before {
  background: var(--surface-3)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6h6' stroke='%236d7893' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    center/12px no-repeat;
}

/* ---------- Beliefs (about page) ---------- */
.belief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.belief {
  padding: 30px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  border-top: 3px solid var(--brand);
  box-shadow: var(--sh-sm);
}
.belief h3 { margin-bottom: 12px; font-size: 1.16rem; }
.belief p  { font-size: .96rem; }

/* ---------- Prose / placeholder ---------- */
.prose h2 { margin-bottom: 20px; }
.prose p { font-size: 1.03rem; }
.prose p + p { margin-top: 16px; }

.placeholder-note {
  padding: 20px 24px;
  background: #fff8e6;
  border: 1px dashed #e0b355;
  border-radius: var(--r);
  color: #7a5a15;
}
.placeholder-note strong { display: block; margin-bottom: 6px; color: #5c430f; }

/* ---------- Stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.stat {
  padding: 30px 20px;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.stat strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat span { font-size: .89rem; color: var(--muted); }

/* ---------- Promise list ---------- */
.promise-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 17px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  color: #ccd4e4;
  font-size: 1rem;
}
.promise-list span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  background: var(--good);
  color: #fff;
  border-radius: 50%;
  font-size: .74rem;
  font-weight: 700;
}

/* ---------- FAQ group headings ---------- */
.faq-group-title {
  font-size: 1.3rem;
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}
.faq-group-title:first-of-type { margin-top: 0; }

/* ---------- Contact page ---------- */
.quote-side-title { font-size: 1.35rem; margin-bottom: 22px; }

.next-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin-bottom: 32px;
  display: grid;
  gap: 16px;
}
.next-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
}
.next-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: .87rem;
  font-weight: 750;
}
.next-steps strong {
  display: block;
  color: var(--ink);
  font-weight: 650;
  margin-bottom: 3px;
}
.next-steps span { font-size: .94rem; color: var(--muted); }

.quote-hours {
  margin-top: 10px;
  font-size: .84rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--muted) !important;
}

/* ---------- 404 ---------- */
.notfound {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(64px, 12vw, 140px) 0;
}
.notfound-code {
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(100deg, var(--brand) 0%, #3f7bd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.notfound h1 { margin-bottom: 16px; }
.notfound p { max-width: 46ch; margin-inline: auto; }
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* ---------- Multi-page responsive ---------- */
@media (max-width: 620px) {
  .detail { padding: 24px 22px; }
  .need-list li { padding: 18px 20px 18px 50px; }
  .need-list li::before { left: 18px; top: 21px; }
  .faq-group-title { font-size: 1.15rem; margin-top: 38px; }
  .stat { padding: 24px 16px; }
  .stat strong { font-size: 1.8rem; }
  .crumbs { margin-bottom: 16px; font-size: .82rem; }
  .center-cta { margin-top: 32px; }
  .center-cta .btn { width: 100%; }
}

/* ==========================================================================
   Local-first components
   ========================================================================== */

/* ---------- Call / text pair in the header ---------- */
.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.header-phone small {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.header-phone strong {
  font-size: 1.02rem;
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -.01em;
}
.header-phone:hover { text-decoration: none; }
.header-phone:hover strong { color: var(--brand); }

/* ---------- Local badge ---------- */
.local-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  background: var(--accent-light);
  border: 1px solid #f0d5a8;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 650;
  color: #8a5c10;
  margin-bottom: 24px;
}
.local-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- "Which one are you?" lanes ---------- */
.lane-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.lane {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lane:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent);
}
.lane-num {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
}
.lane h3 { font-size: 1.2rem; margin-bottom: 10px; }
.lane > p { font-size: .96rem; flex: 1; }
.lane-says {
  margin: 0 0 16px;
  padding: 14px 18px;
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: .95rem;
  font-style: italic;
  color: var(--ink-2);
}
.lane-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--brand);
  text-decoration: none;
}
.lane-link::after {
  content: "→";
  transition: transform .18s;
}
.lane:hover .lane-link::after { transform: translateX(4px); }

/* ---------- Ops board — what the monthly actually buys ----------
   Fixed 3 columns: six items divide evenly into 3 + 3, so there is never a
   ragged last row. Steps down to 2 then 1, both of which stay even. */
.ops-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ops-item {
  padding: 26px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r);
  transition: border-color .18s, background-color .18s;
}
.ops-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}
.ops-item .ops-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6fd39b;
}
.ops-item .ops-status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6fd39b;
  box-shadow: 0 0 0 3px rgba(111,211,155,.2);
}
.ops-item h3 { font-size: 1.04rem; color: #fff; margin-bottom: 7px; }
.ops-item p  { font-size: .9rem; color: #9aa5bf; }

.ops-footnote {
  margin-top: 26px;
  text-align: center;
  font-size: .93rem;
  color: #a6b0c6;
}
.ops-footnote strong { color: #f0b464; }

/* ---------- Industries grid ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 14px;
}
.industry-tile {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.industry-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
  border-color: var(--accent);
}
.industry-tile .it-icon { font-size: 1.5rem; line-height: 1; }
.industry-tile strong {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.industry-tile span { font-size: .82rem; color: var(--muted); }

/* ---------- Big call/text band ---------- */
.call-band {
  padding: 44px 0;
  background: var(--brand);
}
.call-band .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 32px;
  text-align: center;
}
.call-band p {
  font-size: 1.22rem;
  font-weight: 650;
  color: #fff;
  letter-spacing: -.01em;
}
.call-band-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  text-decoration: none;
}
.call-band-num:hover { color: var(--accent); text-decoration: none; }

/* ---------- Local responsive ---------- */
@media (max-width: 900px) {
  .header-phone { display: none; }
  .ops-board { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .lane { padding: 26px 22px; }
  .ops-item { padding: 22px 20px; }
  .ops-board { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
  .industry-tile {
  text-decoration: none; padding: 18px 16px; }
  .call-band .wrap { flex-direction: column; gap: 12px; }
  .call-band p { font-size: 1.08rem; }
}

/* ==========================================================================
   Color rotation
   One place to change how much color the page carries.
   ========================================================================== */

/* Feature icons cycle through all six hues */
.feature:nth-child(6n+1) .feature-icon { background: var(--c-blue-t); }
.feature:nth-child(6n+2) .feature-icon { background: var(--c-amber-t); }
.feature:nth-child(6n+3) .feature-icon { background: var(--c-coral-t); }
.feature:nth-child(6n+4) .feature-icon { background: var(--c-green-t); }
.feature:nth-child(6n+5) .feature-icon { background: var(--c-plum-t); }
.feature:nth-child(6n+6) .feature-icon { background: var(--c-sky-t); }

/* Lanes — one hue each, carried by the number, border and hover */
.lane:nth-child(1) .lane-num { background: var(--c-blue); }
.lane:nth-child(2) .lane-num { background: var(--c-coral); }
.lane:nth-child(3) .lane-num { background: var(--c-plum); }
.lane:nth-child(1) { border-top: 4px solid var(--c-blue); }
.lane:nth-child(2) { border-top: 4px solid var(--c-coral); }
.lane:nth-child(3) { border-top: 4px solid var(--c-plum); }
.lane:nth-child(1) .lane-says { border-left-color: var(--c-blue); background: var(--c-blue-t); }
.lane:nth-child(2) .lane-says { border-left-color: var(--c-coral); background: var(--c-coral-t); }
.lane:nth-child(3) .lane-says { border-left-color: var(--c-plum); background: var(--c-plum-t); }
.lane:nth-child(2) .lane-link { color: var(--c-coral); }
.lane:nth-child(3) .lane-link { color: var(--c-plum); }
.lane:hover { border-color: var(--line); }
.lane:nth-child(1):hover { border-top-color: var(--c-blue); }
.lane:nth-child(2):hover { border-top-color: var(--c-coral); }
.lane:nth-child(3):hover { border-top-color: var(--c-plum); }

/* Industry tiles — tinted icon chips, cycling */
.industry-tile .it-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  font-size: 1.28rem;
}
.industry-tile:nth-child(6n+1) .it-icon { background: var(--c-blue-t); }
.industry-tile:nth-child(6n+2) .it-icon { background: var(--c-amber-t); }
.industry-tile:nth-child(6n+3) .it-icon { background: var(--c-coral-t); }
.industry-tile:nth-child(6n+4) .it-icon { background: var(--c-green-t); }
.industry-tile:nth-child(6n+5) .it-icon { background: var(--c-plum-t); }
.industry-tile:nth-child(6n+6) .it-icon { background: var(--c-sky-t); }

/* Plans — a colored cap on each card */
.plan:nth-child(1) { border-top: 4px solid var(--c-blue); }
.plan:nth-child(2) { border-top: 4px solid var(--accent); }
.plan:nth-child(3) { border-top: 4px solid var(--c-plum); }

/* Ops board — status colors vary so it reads like a live panel */
.ops-item:nth-child(6n+1) .ops-status { color: #6fd39b; }
.ops-item:nth-child(6n+2) .ops-status { color: #7cc2ea; }
.ops-item:nth-child(6n+3) .ops-status { color: #f3b45f; }
.ops-item:nth-child(6n+4) .ops-status { color: #e88f7c; }
.ops-item:nth-child(6n+5) .ops-status { color: #bb9bdc; }
.ops-item:nth-child(6n+6) .ops-status { color: #6fd39b; }
.ops-item .ops-status::before { background: currentColor; box-shadow: none; }

/* Steps — the rail and the numbers pick up color */
.step:nth-child(5n+1) .step-num { background: var(--c-blue); }
.step:nth-child(5n+2) .step-num { background: var(--c-sky); }
.step:nth-child(5n+3) .step-num { background: var(--c-plum); }
.step:nth-child(5n+4) .step-num { background: var(--c-coral); }
.step:nth-child(5n+5) .step-num { background: var(--accent); color: var(--ink); }

/* Mini steps on the home page */
.mini-step:nth-child(5n+1) span { background: var(--c-blue); }
.mini-step:nth-child(5n+2) span { background: var(--c-sky); }
.mini-step:nth-child(5n+3) span { background: var(--c-plum); }
.mini-step:nth-child(5n+4) span { background: var(--c-coral); }
.mini-step:nth-child(5n+5) span { background: var(--accent); color: var(--ink); }

/* Belief cards */
.belief:nth-child(4n+1) { border-top-color: var(--c-blue); }
.belief:nth-child(4n+2) { border-top-color: var(--c-coral); }
.belief:nth-child(4n+3) { border-top-color: var(--c-green); }
.belief:nth-child(4n+4) { border-top-color: var(--c-plum); }

/* Stat tiles */
.stat:nth-child(4n+1) strong { color: var(--c-blue); }
.stat:nth-child(4n+2) strong { color: var(--c-coral); }
.stat:nth-child(4n+3) strong { color: var(--c-green); }
.stat:nth-child(4n+4) strong { color: var(--c-plum); }

/* Sample-layout thumbs */
.thumb-a { background: linear-gradient(140deg, var(--c-blue-t), #bfd0ee); }
.thumb-b { background: linear-gradient(140deg, var(--c-amber-t), #f7ddb4); }
.thumb-c { background: linear-gradient(140deg, var(--c-plum-t), #ddcbec); }

/* ==========================================================================
   One-person sections
   ========================================================================== */

/* ---------- "It's just me" strip ---------- */
.solo {
  padding: clamp(52px, 6vw, 76px) 0;
  background:
    linear-gradient(135deg, var(--c-blue-t) 0%, var(--c-amber-t) 100%);
  border-block: 1px solid var(--line);
}
.solo-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.solo-mark {
  display: grid;
  place-items: center;
  width: 104px; height: 104px;
  background: var(--brand);
  color: #fff;
  border-radius: 26px;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 14px 34px rgba(0,51,160,.28);
}
.solo h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.solo p  { font-size: 1.04rem; color: var(--ink-2); }
.solo p + p { margin-top: 12px; }
.solo-sig {
  display: inline-block;
  margin-top: 16px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand);
}

/* ---------- Quick-answer FAQ on the home page ---------- */
.qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.qa {
  padding: 26px 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  border-left: 4px solid var(--c-blue);
}
.qa:nth-child(6n+2) { border-left-color: var(--c-amber); }
.qa:nth-child(6n+3) { border-left-color: var(--c-coral); }
.qa:nth-child(6n+4) { border-left-color: var(--c-green); }
.qa:nth-child(6n+5) { border-left-color: var(--c-plum); }
.qa:nth-child(6n+6) { border-left-color: var(--c-sky); }
.qa h3 { font-size: 1.04rem; margin-bottom: 8px; }
.qa p  { font-size: .94rem; }

@media (max-width: 620px) {
  .solo-inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .solo-mark { margin-inline: auto; width: 82px; height: 82px; font-size: 2rem; border-radius: 20px; }
}

/* ==========================================================================
   Legal pages — privacy policy, terms of service
   ========================================================================== */
.legal { max-width: 800px; }
.legal-meta {
  padding: 14px 20px;
  margin-bottom: 34px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .88rem;
  color: var(--muted);
}
.legal-meta strong { color: var(--ink); }

.legal h2 {
  font-size: 1.32rem;
  margin: 42px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.04rem; margin: 26px 0 8px; }
.legal p { font-size: .99rem; }
.legal p + p { margin-top: 14px; }
.legal ul { margin: 14px 0; padding-left: 22px; }
.legal li { font-size: .99rem; margin-bottom: 8px; }
.legal li::marker { color: var(--brand); }
.legal a { text-decoration: underline; }

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}
.legal-toc li { margin: 0; }
.legal-toc a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--body);
  text-decoration: none;
}
.legal-toc a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }

/* Flash the section you jumped to, so it's obvious where you landed.
   box-shadow spread makes the halo without nudging the layout. */
.legal h2:target { animation: target-flash 2.2s ease-out; }
@keyframes target-flash {
  0%, 35% { box-shadow: 0 0 0 10px var(--accent-light); background: var(--accent-light); }
  100%    { box-shadow: 0 0 0 10px transparent;         background: transparent; }
}

.legal-callout {
  padding: 18px 22px;
  margin: 20px 0;
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .96rem;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .hero-visual, .final-cta, .nav-toggle, .quote-form-wrap { display: none; }
  body { color: #000; font-size: 12pt; }
  .section { padding: 20px 0; page-break-inside: avoid; }
}
