/* ==========================================================
   Build Our Site - styles.css
   Ink navy + confident blue + orange accent. Sora / Inter.
   ========================================================== */

:root {
  --ink: #0b1524;
  --body: #33415c;
  --mut: #64748b;
  --blue: #1849c6;
  --blue-d: #123a9e;
  --blue-t: #eef3fe;
  --orange: #ff6b35;
  --orange-t: #fff0e9;
  --night: #0a1120;
  --line: #e6ebf2;
  --gray: #f5f7fa;
  --green: #0e9f6e;
  --green-t: #e7f7f0;
  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 10px;
  --sh-sm: 0 1px 2px rgba(11,21,36,.05), 0 4px 14px rgba(11,21,36,.06);
  --sh-md: 0 2px 4px rgba(11,21,36,.05), 0 14px 34px rgba(11,21,36,.10);
  --sh-lg: 0 4px 10px rgba(11,21,36,.07), 0 30px 70px rgba(11,21,36,.16);
  --disp: "Sora", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(24,73,198,.45); outline-offset: 2px; border-radius: 4px; }
.wrap { width: min(1140px, calc(100% - 44px)); margin-inline: auto; }
section { padding: clamp(64px, 8vw, 104px) 0; }
use { pointer-events: none; }

/* ---------- Type ---------- */
.h-xl, .h-lg, .h-md, h1, h2, h3, h4 {
  font-family: var(--disp);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.12;
  font-weight: 700;
}
.h-xl { font-size: clamp(2.45rem, 5.3vw, 3.85rem); line-height: 1.06; }
.h-lg { font-size: clamp(1.85rem, 3.4vw, 2.55rem); }
.h-md { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--mut); line-height: 1.6; }
.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.sec-head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 56px); }
.sec-head .h-lg { margin-bottom: 12px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.band-gray { background: var(--gray); }

/* Dark band */
.band-night {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(24, 73, 198, 0.28), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(255, 107, 53, 0.10), transparent 55%),
    var(--night);
  color: #b9c6dd;
}
.band-night .h-lg, .band-night .h-md, .band-night h3 { color: #fff; }
.band-night .lede { color: #93a3c0; }
.band-night .eyebrow { color: #7ba0ff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.99rem;
  padding: 13px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn-lg { padding: 16px 32px; font-size: 1.04rem; }
.btn-blue {
  background: linear-gradient(180deg, #2559e8, var(--blue) 58%, var(--blue-d));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 22px rgba(24,73,198,.32);
}
.btn-blue:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 28px rgba(24,73,198,.42); }
.btn-white {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
}
.btn-white:hover { border-color: #c9d4e3; }
.btn-orange {
  background: linear-gradient(180deg, #ff7f50, var(--orange) 58%, #e5541f);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 8px 22px rgba(255,107,53,.35);
}
.btn-orange:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 12px 30px rgba(255,107,53,.45); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(11,21,36,.06); }
.nav-inner {
  width: min(1140px, calc(100% - 44px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  height: 74px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
}
.logo:hover { text-decoration: none; }
.logo-text { letter-spacing: -0.03em; white-space: nowrap; word-spacing: -0.12em; }
.logo em { font-style: normal; color: var(--blue); }
.logo-mark {
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: linear-gradient(145deg, #2559e8, var(--blue-d));
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(24,73,198,.30);
  flex-shrink: 0;
}
.logo-mark svg { width: 17px; height: 17px; }
.nav-center {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0 auto;
  padding: 0;
}
.nav-center a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--body);
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-center a:hover { color: var(--ink); background: var(--gray); text-decoration: none; }
.nav-center a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-cta {
  background: linear-gradient(180deg, #2559e8, var(--blue) 58%, var(--blue-d));
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 16px rgba(24,73,198,.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { text-decoration: none; transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 9px 22px rgba(24,73,198,.36); }
/* Legacy 3-line burger removed - button now uses the Menu/Close text pill
   defined further down. Do not style .nav-burger span as bars. */

/* ---------- Hero ---------- */
.hero { padding: clamp(44px, 6vw, 84px) 0 clamp(30px, 4vw, 56px); position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -200px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(24,73,198,.09), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(38px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--body);
  box-shadow: var(--sh-sm);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(14,159,110,.18);
  animation: pip 2.2s ease-in-out infinite;
}
@keyframes pip { 0%,100% { transform: scale(1);} 50% { transform: scale(1.25);} }
.hero .h-xl { margin-bottom: 20px; }
.hero .h-xl em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero .h-xl em svg {
  position: absolute;
  left: 2%;
  right: 0;
  bottom: -0.16em;
  width: 96%;
  height: 0.24em;
  color: var(--orange);
  opacity: 0.9;
}
.hero .lede { margin-bottom: 30px; max-width: 480px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-fine {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--mut);
}
.hero-fine svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* ---------- Stage / browser mockup ---------- */
.stage { position: relative; padding: 26px 10px 40px 0; }
.shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.shot-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}
.shot-dots { display: flex; gap: 6px; }
.shot-dots i { width: 10px; height: 10px; border-radius: 50%; }
.shot-dots i:nth-child(1) { background: #f56a5b; }
.shot-dots i:nth-child(2) { background: #f5b944; }
.shot-dots i:nth-child(3) { background: #47c283; }
.shot-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.74rem;
  color: var(--mut);
}
.shot-url svg { width: 11px; height: 11px; color: var(--green); }

/* Mini demo site */
.mini { padding: 16px 18px 18px; }
.mini-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mini-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 0.8rem;
  color: #12314f;
}
.mini-logo i {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #1f6fb0, #14568c);
}
.mini-links { display: flex; gap: 13px; margin-left: auto; }
.mini-links span { font-size: 0.68rem; font-weight: 500; color: var(--mut); }
.mini-cta {
  background: #1f6fb0;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.mini-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 13px;
}
.mini-kicker {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1f6fb0;
  margin-bottom: 7px;
}
.mini-h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}
.mini-p { font-size: 0.7rem; line-height: 1.5; color: var(--mut); margin-bottom: 11px; }
.mini-row { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-btn {
  background: #1f6fb0;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
}
.mini-btn.ghost { background: #fff; color: #12314f; border: 1px solid var(--line); }
.mini-photo {
  border-radius: 9px;
  min-height: 118px;
  background:
    linear-gradient(200deg, rgba(255,255,255,.16), transparent 40%),
    radial-gradient(120px 90px at 75% 25%, rgba(255,209,128,.55), transparent 65%),
    linear-gradient(150deg, #2e6da4 0%, #1d4e7d 55%, #143a5f 100%);
  position: relative;
  overflow: hidden;
}
.mini-photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 44%;
  background: linear-gradient(to top, rgba(10,25,42,.5), transparent);
  clip-path: polygon(0 100%, 0 55%, 18% 30%, 34% 58%, 52% 22%, 68% 52%, 84% 30%, 100% 50%, 100% 100%);
}
.mini-strip { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--body);
  background: #fff;
}
.mini-chip svg { width: 11px; height: 11px; color: #f5b944; }
.mini-chip:nth-child(2) svg { color: var(--blue); }
.mini-chip:nth-child(3) svg { color: var(--green); }

/* Floating cards */
.float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-lg);
  padding: 12px 15px;
  z-index: 3;
  opacity: 0;
}
.stage .float-lead {
  top: 2px;
  right: -14px;
  display: flex;
  gap: 11px;
  align-items: center;
  width: 232px;
  animation: enter .6s cubic-bezier(.2,.7,.3,1) .7s forwards, bob 5.5s ease-in-out 1.4s infinite alternate;
}
.stage .float-review {
  bottom: 4px;
  left: -20px;
  width: 218px;
  animation: enter .6s cubic-bezier(.2,.7,.3,1) 1.15s forwards, bob 6.5s ease-in-out 1.9s infinite alternate;
}
.stage .float-stat {
  bottom: 66px;
  right: -8px;
  display: flex;
  gap: 11px;
  align-items: center;
  animation: enter .6s cubic-bezier(.2,.7,.3,1) 1.55s forwards, bob 6s ease-in-out 2.3s infinite alternate;
}
@keyframes enter { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes bob { from { transform: translateY(0); } to { transform: translateY(-7px); } }
.float .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--blue-t);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.float .ic svg { width: 17px; height: 17px; color: var(--blue); }
.float b { display: block; font-size: 0.76rem; color: var(--ink); line-height: 1.3; }
.float span { display: block; font-size: 0.7rem; color: var(--mut); margin-top: 2px; }
.float-review .stars { display: flex; gap: 2px; margin-bottom: 6px; }
.float-review .stars svg { width: 13px; height: 13px; color: #f5b944; }
.float-stat .up {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--green-t);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.float-stat .up svg { width: 17px; height: 17px; color: var(--green); }
.float-stat b { font-family: var(--disp); font-size: 1.05rem; }

/* ---------- Trust bar ---------- */
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.trust-cell {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}
.trust-cell:last-child { border-right: none; }
.trust-cell .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-t);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-cell .ic svg { width: 19px; height: 19px; color: var(--blue); }
.trust-cell b { display: block; font-size: 0.94rem; color: var(--ink); }
.trust-cell span { font-size: 0.8rem; color: var(--mut); }

/* ---------- Work cards ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.work-thumb { padding: 24px 24px 0; }
.work-site {
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background: #fff;
  padding: 14px 15px 16px;
  box-shadow: 0 -8px 26px rgba(11,21,36,.05);
}
.ws-nav { display: flex; align-items: center; margin-bottom: 12px; }
.ws-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--ink);
}
.ws-logo i { width: 13px; height: 13px; border-radius: 4px; }
.ws-menu { display: flex; gap: 6px; margin-left: auto; }
.ws-menu i { width: 17px; height: 4px; border-radius: 2px; background: var(--line); }
.ws-h {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 9px;
  max-width: 220px;
}
.ws-sub { height: 6px; border-radius: 3px; background: var(--gray); margin-bottom: 5px; }
.ws-sub.s2 { width: 72%; margin-bottom: 12px; }
.ws-btn {
  display: inline-block;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 13px;
}
.ws-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.ws-band i { height: 26px; border-radius: 6px; }
/* trade themes */
.t-hvac { --wc: #1565c0; --wc-soft: #e8f1fc; }
.t-hvac .work-thumb { background: linear-gradient(160deg, #dcebfb, #eef5fd); }
.t-salon { --wc: #b04a75; --wc-soft: #faecf2; }
.t-salon .work-thumb { background: linear-gradient(160deg, #f7e3ec, #fbf1f5); }
.t-land { --wc: #2e7d43; --wc-soft: #e9f5ec; }
.t-land .work-thumb { background: linear-gradient(160deg, #ddefe1, #eef7f0); }
.work-card .ws-logo i, .work-card .ws-btn { background: var(--wc); }
.work-card .ws-band i { background: var(--wc-soft); border: 1px solid var(--line); }
.work-card .ws-band i:first-child { background: var(--wc); opacity: .85; border: none; }
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 24px 20px;
}
.work-meta b { display: block; font-family: var(--disp); font-size: 0.99rem; color: var(--ink); }
.work-meta > div > span { font-size: 0.8rem; color: var(--mut); }
.work-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-t);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--sh-sm);
}
.step-n {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #2559e8, var(--blue-d));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(24,73,198,.28);
}
.step h3 { font-size: 1.16rem; margin-bottom: 9px; }
.step p { font-size: 0.94rem; color: var(--mut); }
.free-pill {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--green-t);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcell {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.bcell:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--sh-md); border-color: #cfd9e6; }
.bcell .ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--blue-t);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.bcell .ic svg { width: 23px; height: 23px; color: var(--blue); }
.bcell h3 { font-size: 1.12rem; margin-bottom: 8px; }
.bcell p { font-size: 0.93rem; color: var(--mut); }
.bcell .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}
.bcell .go svg { transition: transform .15s ease; }
.bcell:hover .go svg { transform: translateX(3px); }
.bcell-hero {
  grid-row: span 2;
  background:
    radial-gradient(360px 300px at 90% 0%, rgba(24,73,198,.10), transparent 62%),
    linear-gradient(170deg, #fff, #f6f9ff);
  border-color: #d8e2f2;
  display: flex;
  flex-direction: column;
}
.bcell-hero .ic { background: linear-gradient(145deg, #2559e8, var(--blue-d)); }
.bcell-hero .ic svg { color: #fff; }
.bcell-hero h3 { font-size: 1.35rem; }
.bcell-hero p { font-size: 0.98rem; }
.big-stat {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.big-stat b {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
}
.big-stat span { font-size: 0.82rem; color: var(--mut); line-height: 1.45; }

/* ---------- Night stats ---------- */
.nstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.nstat {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}
.nstat b {
  display: block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(2.7rem, 4.4vw, 3.6rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}
.nstat b em { font-style: normal; font-size: 0.55em; color: var(--orange); }
.nstat p { font-size: 0.95rem; color: #b9c6dd; margin-bottom: 14px; }
.nstat small { font-size: 0.73rem; color: #6c7f9f; }

/* ---------- Plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.plan.hot { border: 2px solid var(--blue); box-shadow: var(--sh-lg); }
.plan-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ff7f50, var(--orange));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255,107,53,.35);
}
.plan-name { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 5px; }
.plan-for { font-size: 0.88rem; color: var(--mut); margin-bottom: 20px; min-height: 42px; }
.plan-price { display: flex; align-items: baseline; gap: 5px; }
.plan-amt {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 2.9rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-per { font-size: 0.95rem; color: var(--mut); }
.plan-term { font-size: 0.8rem; color: var(--mut); margin: 8px 0 22px; min-height: 20px; }
.plan-term b { color: var(--ink); }
.plan-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; flex: 1; }
.plan-list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--body); }
.plan-list li svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.plan-list li.hd { font-weight: 600; color: var(--ink); }
.plan .btn { width: 100%; }

/* Custom plan card (pricing page) */
.custom-plan {
  margin-top: 22px;
  background:
    radial-gradient(500px 260px at 90% 0%, rgba(24,73,198,.28), transparent 60%),
    var(--night);
  border-radius: var(--r-lg);
  padding: 34px 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: #b9c6dd;
}
.custom-plan .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.custom-plan .ic svg { width: 25px; height: 25px; color: var(--orange); }
.custom-plan h3 { color: #fff; margin-bottom: 6px; font-size: 1.25rem; }
.custom-plan p { font-size: 0.93rem; max-width: 560px; }
.custom-plan > div:nth-child(2) { flex: 1; min-width: 260px; }
.custom-plan .btn { margin-left: auto; }

/* Billing toggle */
.bill-toggle {
  display: inline-flex;
  gap: 4px;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 40px;
}
.bill-toggle button {
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--mut);
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.bill-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.bill-toggle .save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  margin-left: 6px;
}

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-sm);
}
.cmp { width: 100%; border-collapse: collapse; min-width: 700px; font-size: 0.92rem; }
.cmp th, .cmp td { padding: 14px 20px; text-align: left; border-bottom: 1px solid #eef2f7; }
.cmp thead th {
  font-family: var(--disp);
  font-size: 1rem;
  color: var(--ink);
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}
.cmp thead th:not(:first-child), .cmp td:not(:first-child) { text-align: center; }
.cmp thead th small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.74rem; color: var(--mut); margin-top: 2px; }
.cmp .grp td {
  background: var(--gray);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mut);
  padding: 9px 20px;
}
.cmp .yes { color: var(--green); font-weight: 700; }
.cmp .no { color: #c3cedd; }
.cmp td small { display: block; font-size: 0.76rem; color: var(--mut); }
.cmp .hotcol { background: rgba(24,73,198,.035); }

/* ---------- Promises ---------- */
.promises { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.promise { }
.promise .tick {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-t);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.promise .tick svg { width: 18px; height: 18px; color: var(--green); }
.promise b { display: block; font-size: 0.99rem; color: var(--ink); margin-bottom: 5px; }
.promise span { font-size: 0.88rem; color: var(--mut); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .15s ease;
}
.faq-item.open { box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 19px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-q .chev {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--gray);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .22s ease, background .22s ease;
}
.faq-q .chev svg { width: 14px; height: 14px; color: var(--body); }
.faq-item.open .chev { transform: rotate(180deg); background: var(--blue-t); }
.faq-item.open .chev svg { color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 21px; font-size: 0.95rem; color: var(--mut); }
.faq-a-inner a { font-weight: 600; }

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; }
.cta-final .h-lg { max-width: 640px; margin-inline: auto; margin-bottom: 14px; }
.cta-final .lede { max-width: 480px; margin-inline: auto; margin-bottom: 30px; }
.cta-fine { margin-top: 18px; font-size: 0.85rem; color: #93a3c0; }

/* ---------- Footer ---------- */
footer { background: var(--night); color: #93a3c0; padding: 62px 0 32px; font-size: 0.92rem; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
footer .logo { color: #fff; margin-bottom: 16px; }
footer .logo em { color: #7ba0ff; }
.foot-brand p { max-width: 300px; font-size: 0.88rem; line-height: 1.6; }
.foot-col h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.foot-col ul { list-style: none; padding: 0; display: grid; gap: 3px; }
.foot-col a { display: inline-block; color: #93a3c0; padding: 4px 0; }
.foot-col a:hover { color: #fff; text-decoration: none; }
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: #5f7192;
}
.foot-legal a { color: #5f7192; }
.foot-legal a:hover { color: #fff; }
.foot-legal span:last-child { margin-left: auto; }

/* ---------- Page head (subpages) ---------- */
.page-head { padding: clamp(48px, 6vw, 76px) 0 clamp(20px, 3vw, 36px); }
.page-head .h-xl { font-size: clamp(2.2rem, 4.6vw, 3.3rem); margin-bottom: 16px; max-width: 720px; }
.page-head .lede { max-width: 620px; }
.page-head.center { text-align: center; }
.page-head.center .h-xl, .page-head.center .lede { margin-inline: auto; }

/* ---------- Services page ---------- */
.svc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  padding: clamp(42px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.svc:last-of-type { border-bottom: none; }
.svc.flip .svc-visual { order: -1; }
.svc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-t);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.svc-copy h2 { margin-bottom: 12px; }
.svc-copy > p { color: var(--mut); margin-bottom: 18px; }
.check-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 11px; font-size: 0.95rem; color: var(--body); }
.check-list svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.check-list b { color: var(--ink); }
.svc-visual {
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  place-items: center;
  min-height: 250px;
}
.svc-visual .inner-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  padding: 22px;
  width: 100%;
  max-width: 340px;
}
.svc-dark {
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(24,73,198,.26), transparent 60%),
    var(--night);
  border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 56px);
  color: #b9c6dd;
  margin: clamp(42px, 5vw, 60px) 0;
  scroll-margin-top: 90px;
}
.svc-dark .svc-tag { background: rgba(255,255,255,.08); color: #7ba0ff; }
.svc-dark h2 { color: #fff; }
.svc-dark .check-list li { color: #b9c6dd; }
.svc-dark .check-list b { color: #fff; }
/* GBP visual rows */
.gbp-row { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px solid #eef2f7; }
.gbp-row:last-child { border-bottom: none; }
.gbp-row .ico { width: 30px; height: 30px; border-radius: 8px; background: var(--blue-t); display: grid; place-items: center; flex-shrink: 0; }
.gbp-row .ico svg { width: 15px; height: 15px; color: var(--blue); }
.gbp-row b { font-size: 0.82rem; color: var(--ink); display: block; }
.gbp-row span { font-size: 0.73rem; color: var(--mut); }
.gbp-row .pct { margin-left: auto; font-family: var(--disp); font-weight: 700; font-size: 0.92rem; color: var(--green); }
/* Chat visual */
.chat-card { display: grid; gap: 10px; }
.chat-q {
  justify-self: end;
  background: rgba(24,73,198,.3);
  border: 1px solid rgba(123,160,255,.35);
  color: #dbe6fb;
  border-radius: 13px 13px 4px 13px;
  padding: 11px 15px;
  font-size: 0.86rem;
  max-width: 88%;
}
.chat-a {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #c3d0e6;
  border-radius: 13px 13px 13px 4px;
  padding: 12px 15px;
  font-size: 0.86rem;
  max-width: 92%;
}
.chat-a b { color: #fff; }
.chat-a .hl {
  background: rgba(255,107,53,.16);
  border: 1px solid rgba(255,107,53,.35);
  color: #ffb894;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 9px;
}

/* Custom catalog */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.cat-card svg { width: 23px; height: 23px; color: var(--blue); margin-bottom: 13px; }
.cat-card b { display: block; font-size: 0.98rem; color: var(--ink); margin-bottom: 5px; }
.cat-card p { font-size: 0.86rem; color: var(--mut); }

/* ---------- About ---------- */
.about-story { max-width: 720px; }
.about-story p { margin-bottom: 18px; font-size: 1.04rem; color: var(--body); }
.about-story p b { color: var(--ink); }
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.founder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--sh-sm);
}
.founder .ava {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.founder:first-child .ava { background: linear-gradient(145deg, #2559e8, var(--blue-d)); }
.founder:last-child .ava { background: linear-gradient(145deg, #ff7f50, #e5541f); }
.founder b { font-family: var(--disp); font-size: 1.1rem; color: var(--ink); display: block; }
.founder .role {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mut);
  margin: 4px 0 10px;
}
.founder p { font-size: 0.92rem; color: var(--mut); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--body);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--sh-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 600; font-size: 0.89rem; color: var(--ink); margin-bottom: 7px; }
.field label small { color: var(--mut); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid #d5deea;
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 1rem;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,73,198,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-fine { font-size: 0.8rem; color: var(--mut); margin-top: 13px; }
.hidden { display: none !important; }
.contact-side { display: grid; gap: 16px; }
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--sh-sm);
}
.tile .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-t);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tile .ic svg { width: 19px; height: 19px; color: var(--blue); }
.tile b { display: block; color: var(--ink); margin-bottom: 3px; }
.tile p { font-size: 0.88rem; color: var(--mut); }
.tile a.big { font-weight: 600; font-size: 1rem; color: var(--ink); }
.tile a.big:hover { color: var(--blue); }

/* ---------- Thanks / 404 ---------- */
.center-page { min-height: 52vh; display: grid; place-items: center; text-align: center; padding: 76px 0; }
.center-page .inner { max-width: 560px; }
.center-page .h-xl { margin-bottom: 16px; }
.center-page .lede { margin-bottom: 28px; }
.kicker-404 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 14px;
}
.next-steps {
  text-align: left;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.next-steps div { display: flex; gap: 12px; font-size: 0.94rem; color: var(--body); }
.next-steps svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.next-steps b { color: var(--ink); }

/* ---------- Legal ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.28rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--mut); font-size: 0.96rem; margin-bottom: 11px; }
.legal ul { padding-left: 22px; }
.legal-date { font-size: 0.78rem; color: var(--mut); margin-bottom: 32px; }

/* ---------- Reveal ---------- */
html.js .rv { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
html.js .rv.in { opacity: 1; transform: translateY(0); }
html.js .d1.in { transition-delay: .08s; }
html.js .d2.in { transition-delay: .16s; }
html.js .d3.in { transition-delay: .24s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .rv { opacity: 1; transform: none; transition: none; }
  .float { opacity: 1 !important; animation: none !important; }
  .hero-badge .dot { animation: none; }
  .btn, .bcell, .plan, .work-card, .cat-card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero .lede { max-width: 600px; }
  .stage { max-width: 620px; margin-inline: auto; width: 100%; }
  .work-grid, .steps, .nstats, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bcell-hero { grid-column: span 2; grid-row: auto; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan.hot { order: -1; }
  .promises { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(2) { border-right: none; }
  .trust-cell:nth-child(1), .trust-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .svc { grid-template-columns: minmax(0, 1fr); }
  .svc.flip .svc-visual { order: 0; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .founders { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 880px) {
  .nav-center {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(11,21,36,.10);
    flex-direction: column;
    gap: 0;
    padding: 10px 22px 18px;
    margin: 0;
  }
  .nav.open .nav-center { display: flex; z-index: 90; }
  .nav-center a { padding: 13px 6px; font-size: 1.05rem; font-weight: 600; border-radius: 0; border-bottom: 1px solid var(--gray); }
  .nav-burger { display: flex; position: relative; z-index: 2; }
  .nav-cta { display: none; }
  .nav-cta.mobile-cta {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 14px 6px 4px;
    padding: 13px 20px;
    border-radius: 999px;
    color: #fff;
    border-bottom: none;
  }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .work-grid, .steps, .nstats, .bento, .cat-grid { grid-template-columns: 1fr; }
  .bcell-hero { grid-column: auto; }
  .float-lead { right: -4px; }
  .float-review { left: -4px; }
  .float-stat { right: 2px; }
  .form-row { grid-template-columns: 1fr; }
  .custom-plan .btn { margin-left: 0; }
  .foot-legal span:last-child { margin-left: 0; }
}
@media (max-width: 480px) {
  .wrap, .nav-inner { width: calc(100% - 34px); }
  .hero-actions .btn { width: 100%; }
  .trustbar-inner { grid-template-columns: 1fr; }
  .trust-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-cell:last-child { border-bottom: none; }
  .promises { grid-template-columns: 1fr; }
  .mini-hero { grid-template-columns: 1fr; }
  .mini-photo { min-height: 84px; }
  .float-lead { width: 208px; top: -6px; }
  .float-review { width: 200px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-final .btn { width: 100%; }
}

/* ---------- Utility ---------- */
.trustbar { padding: 30px 0 0; }
.section-tight { padding: clamp(44px, 5vw, 68px) 0; }

/* ==========================================================
   v1.1 tweaks
   ========================================================== */

/* Logo: tighter mark-to-text gap and tracking */
.logo { gap: 8px; letter-spacing: -0.035em; }
.logo-mark svg { width: 16px; height: 16px; }

/* Menu pill (replaces 3-line burger) */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 9px 18px;
  min-width: 84px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.15;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  flex-direction: row;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.nav-burger .mo, .nav-burger .mc {
  display: inline-block;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  text-align: center;
}
.nav-burger .mc { display: none; }
.nav.open .nav-burger { background: var(--gray); border-color: #c9d4e3; }
.nav.open .nav-burger .mo { display: none; }
.nav.open .nav-burger .mc { display: inline; }
@media (max-width: 880px) {
  .nav-burger { display: inline-flex; }
  /* neutralize old header-CTA hack; CTA now lives inside the menu panel */
  .nav.open .nav-right .nav-cta { display: none; position: static; }
  .nav-center .nav-cta {
    display: inline-flex;
    justify-content: center;
    position: static;
    margin: 14px 0 4px;
    padding: 13px 20px;
  }
  .nav-center li:last-child a.nav-cta { border-bottom: none; }
}

/* Slim custom-plan bar (homepage pricing preview) */
.custom-plan.slim { padding: 22px 28px; gap: 22px; }
.custom-plan.slim .ic { width: 42px; height: 42px; border-radius: 11px; }
.custom-plan.slim .ic svg { width: 20px; height: 20px; }
.custom-plan.slim h3 { font-size: 1.08rem; margin-bottom: 3px; }
.custom-plan.slim p { font-size: 0.87rem; }
.custom-plan.slim .btn { padding: 11px 22px; font-size: 0.94rem; }

/* Services page: consistent faint dividers between sections */
.svc:last-of-type { border-bottom: 1px solid var(--line); }
#reviews.svc { border-bottom: none; }

/* Mobile sticky CTA bar (injected by main.js) */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(11,21,36,.10);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 12px 10px; font-size: 0.95rem; }
@media (max-width: 760px) { .sticky-cta { display: flex; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta { transition: none; } }
@media (min-width: 881px) { .nav-center .nav-cta { display: none; } }

/* ==========================================================
   v1.2 fixes
   ========================================================== */

/* 2. Logo: unboxed line mark - clearly not a button */
.logo { gap: 9px; }
.logo-mark {
  width: 30px;
  height: 30px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  color: var(--blue);
}
.logo-mark svg { width: 27px; height: 27px; }
footer .logo-mark { color: #fff; }

/* 1. Menu-panel CTA: distinct class, mobile-only by definition */
.menu-cta { display: none; }
@media (max-width: 880px) {
  .nav-center .menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 14px 0 4px;
    padding: 13px 20px;
    border-radius: 999px;
    border-bottom: none;
    background: linear-gradient(180deg, #2559e8, var(--blue) 58%, var(--blue-d));
    color: #fff;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 16px rgba(24,73,198,.28);
  }
}

/* 3. Custom bar chips + hover tooltips */
.ci-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 10px; }
.ci {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.22);
  color: #dbe4f5;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: default;
}
.ci:hover, .ci:focus-visible { border-color: rgba(255,255,255,.45); color: #fff; }
.ci i {
  font-style: normal;
  font-family: Georgia, serif;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  font-size: 0.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #9fb1d1;
  flex-shrink: 0;
}
.ci::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 250px;
  background: #fff;
  color: var(--body);
  font-size: 0.79rem;
  font-weight: 400;
  line-height: 1.45;
  padding: 10px 13px;
  border-radius: 10px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
  z-index: 30;
  text-align: left;
}
.ci:hover::after, .ci:focus::after, .ci:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ci-fine { font-size: 0.8rem; color: #93a3c0; }
.custom-plan.slim { align-items: flex-start; }
.custom-plan.slim .btn { align-self: center; }
@media (max-width: 600px) {
  .ci::after { left: 0; transform: translateY(4px); width: min(250px, 76vw); }
  .ci:hover::after, .ci:focus::after, .ci:focus-visible::after { transform: translateY(0); }
}

/* 4. Mini demo CTA: keep on one line, text centered */
.mini-cta { white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.mini-btn { white-space: nowrap; }
.inner-card .mini-logo { white-space: nowrap; }

/* 5. Services page: divider under every section */
.svc, .svc:last-of-type, #reviews.svc { border-bottom: 1px solid var(--line); }

/* v1.3: monogram chip logo sizing */
.logo-mark { width: 32px; height: 32px; }
.logo-mark svg { width: 32px; height: 32px; }

/* v1.4: menu CTA must never render on desktop - outranks .nav-center a */
@media (min-width: 881px) {
  .menu-cta-li, .nav-center .menu-cta { display: none; }
}

/* v1.5: custom-plan block is always left-aligned regardless of parent */
.custom-plan { text-align: left; }

/* ==========================================================
   v1.6 - Mobile overflow guard
   Prevents grid/flex children from forcing horizontal scroll
   on narrow screens (grid items default to min-width:auto).
   ========================================================== */
@media (max-width: 980px) {
  .svc > *, .contact-grid > *, .founders > *, .form-row > * { min-width: 0; }
  .lead-form { max-width: 100%; }
  .check-list li, .check-list li span { min-width: 0; overflow-wrap: anywhere; }
}
html, body { overflow-x: hidden; }
