/* ==========================================================================
   Web Support Services design system
   Hand-built. No frameworks. Full-page band layout.
   ========================================================================== */

:root {
  --ink: #0a1830;
  --ink-soft: #2e3f5c;
  --body: #46587a;
  --paper: #ffffff;
  --tint: #f2f6fc;
  --tint-deep: #e7eefa;
  --line: #dfe7f2;
  --blue: #1b4dff;
  --blue-deep: #0d3bd1;
  --blue-soft: #e6edff;
  --sky: #3d8bff;
  --green: #00d982;
  --green-deep: #00b86e;
  --green-soft: #e0faf0;
  --amber: #ffb020;
  --red: #e5484d;
  --navy-2: #12234a;
  --navy-3: #1a2f5e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(10, 24, 48, .05), 0 8px 28px rgba(10, 24, 48, .07);
  --shadow-lift: 0 2px 6px rgba(10, 24, 48, .07), 0 18px 44px rgba(10, 24, 48, .13);
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
}
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.32rem; font-weight: 700; }
h4 { font-size: 1.08rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
strong { color: var(--ink-soft); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--blue); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 860px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none !important; transition: all .18s ease;
  line-height: 1.2; white-space: nowrap;
}
.btn--primary { background: var(--green); color: #062b1c; }
.btn--primary:hover { background: var(--green-deep); color: #fff; transform: translateY(-1px); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--tint-deep); }
.btn--ghost-light { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 17px 36px; font-size: 1.08rem; }
.btn--sm { padding: 9px 18px; font-size: .92rem; }
.btn svg { flex: none; }

/* ---------- Header ---------- */
.announce {
  background: var(--ink); color: #cfe0ff; font-size: .85rem; text-align: center;
  padding: 8px 16px;
}
.announce a { color: var(--green); font-weight: 600; }
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-head__in {
  max-width: 1360px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; height: 74px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none !important; flex: none; }
.logo svg, .logo img { width: 42px; height: 42px; flex: none; }
.nav-burger { flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.18rem;
  color: var(--ink); letter-spacing: -.02em; white-space: nowrap;
}
.logo__tag { font-size: .6rem; font-weight: 600; letter-spacing: .22em; color: var(--blue); text-transform: uppercase; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > li { list-style: none; position: relative; }
.nav { padding: 0; margin-top: 0; margin-bottom: 0; }
.nav__link {
  display: flex; align-items: center; gap: 5px; padding: 10px 12px;
  font-size: .95rem; font-weight: 600; color: var(--ink-soft); border-radius: 10px;
  background: none; border: 0; cursor: pointer; font-family: var(--font-body); white-space: nowrap;
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--blue); background: var(--blue-soft); text-decoration: none; }
.nav__link .caret { transition: transform .15s; }
.nav__link[aria-expanded="true"] .caret { transform: rotate(180deg); }

.menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 10px; min-width: 300px; display: none; z-index: 90;
}
.menu.is-open { display: block; }
.menu a {
  display: flex; gap: 12px; align-items: flex-start; padding: 11px 14px; border-radius: 10px;
  color: var(--ink); text-decoration: none !important;
}
.menu a:hover { background: var(--tint); }
.menu a .mi { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); }
.menu a b { display: block; font-size: .95rem; font-weight: 650; }
.menu a span { display: block; font-size: .8rem; color: var(--body); line-height: 1.35; }
.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 10px; min-width: 620px; }
.menu__head { grid-column: 1 / -1; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--body); padding: 10px 14px 4px; }

.head-cta { display: flex; align-items: center; gap: 10px; }
.head-cta .phone { font-weight: 700; color: var(--ink); font-size: .95rem; text-decoration: none; white-space: nowrap; }
.head-cta .btn { white-space: nowrap; }
@media (max-width: 1240px) { .head-cta .phone { display: none; } }

.nav-burger { display: none; margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(61, 139, 255, .28), transparent 60%),
    radial-gradient(900px 500px at -8% 110%, rgba(0, 217, 130, .16), transparent 55%),
    var(--ink);
  color: #c9d7ef; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(900px 600px at 60% 20%, #000 30%, transparent 75%);
}
.hero__in { position: relative; padding: 84px 0 92px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 .hl {
  background: linear-gradient(92deg, var(--green), var(--sky));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: 1.22rem; max-width: 54ch; color: #b7c8e6; }
.hero--page .hero__in { padding: 64px 0 68px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 8px; }
.hero__proof { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__proof b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.hero__proof span { font-size: .84rem; color: #8fa5c9; }

/* URL check bar (hero CTA) */
.sitecheck { margin-top: 30px; max-width: 560px; }
.sitecheck__row { display: flex; background: #fff; border-radius: 999px; padding: 6px; box-shadow: var(--shadow-lift); }
.sitecheck input {
  flex: 1; border: 0; background: none; padding: 12px 20px; font-size: 1.02rem;
  font-family: var(--font-body); color: var(--ink); min-width: 0;
}
.sitecheck input:focus { outline: none; }
.sitecheck .btn { padding: 12px 26px; }
.sitecheck__note { font-size: .82rem; color: #8fa5c9; margin: 10px 4px 0; }

/* Browser mockup card in hero */
.mock {
  background: linear-gradient(180deg, #16294f, #0e1d3c);
  border: 1px solid rgba(255,255,255,.14); border-radius: 18px;
  box-shadow: 0 30px 70px rgba(2, 8, 20, .55); overflow: hidden; font-size: .84rem;
}
.mock__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mock__url { margin-left: 8px; background: rgba(255,255,255,.09); border-radius: 999px; padding: 5px 14px; color: #9db3d8; font-size: .78rem; }
.mock__body { padding: 20px; display: grid; gap: 12px; }
.mock__row { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 13px 16px; color: #dbe6f9; }
.mock__row .ok { color: var(--green); font-weight: 700; }
.mock__row .warn { color: var(--amber); font-weight: 700; }
.mock__score { display: flex; gap: 12px; }
.mock__ring { flex: 1; text-align: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px 8px; color: #9db3d8; }
.mock__ring b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--green); }

/* ---------- Bands ---------- */
.band { padding: 88px 0; }
.band--tint { background: var(--tint); }
.band--navy { background: var(--ink); color: #b7c8e6; }
.band--navy h2, .band--navy h3 { color: #fff; }
.band--gradient {
  background: radial-gradient(900px 400px at 85% 0%, rgba(61,139,255,.25), transparent 60%), var(--ink);
  color: #b7c8e6;
}
.band--gradient h2 { color: #fff; }
.band__head { max-width: 720px; margin-bottom: 46px; }
.band__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.band__head .lede { font-size: 1.14rem; }
.kicker {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.band--navy .kicker, .band--gradient .kicker { color: var(--green); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  display: flex; flex-direction: column;
}
a.card { color: inherit; text-decoration: none !important; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: #c8d6ea; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 18px;
}
.card .ico--green { background: var(--green-soft); color: var(--green-deep); }
.card .ico--navy { background: var(--ink); color: var(--green); }
.card h3 { margin-bottom: .4em; }
.card p { font-size: .95rem; margin-bottom: 0; }
.card .more { margin-top: auto; padding-top: 18px; font-weight: 650; font-size: .92rem; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.card:hover .more { text-decoration: underline; }
.band--navy .card, .band--gradient .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.band--navy .card h3, .band--gradient .card h3 { color: #fff; }
.band--navy .card p, .band--gradient .card p { color: #a9bcdd; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split + .split { margin-top: 84px; }
.split--flip > .split__media { order: 2; }
.split__media {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
  background: #fff;
}
.split__media img { display: block; width: 100%; }
.split h2 { font-size: clamp(1.7rem, 2.8vw, 2.25rem); }

/* ---------- Ticks ---------- */
.ticks { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-weight: 500; }
.ticks li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--green-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%2300b86e" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/12px no-repeat;
}
.band--navy .ticks li, .band--gradient .ticks li { color: #dbe6f9; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stats b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.stats .up { color: var(--green-deep); }
.stats span { font-size: .9rem; }
.band--navy .stats b, .band--gradient .stats b { color: #fff; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; counter-increment: step; position: relative; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  color: var(--blue); background: var(--blue-soft); border-radius: 999px; padding: 5px 13px;
  display: inline-block; margin-bottom: 16px; letter-spacing: .06em;
}
.step h3 { font-size: 1.15rem; }
.step p { font-size: .93rem; margin: 0; }

/* ---------- Pricing ---------- */
.price-toggle { display: inline-flex; background: var(--tint-deep); border-radius: 999px; padding: 5px; gap: 4px; margin: 0 auto 42px; }
.price-toggle button {
  border: 0; background: none; font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 9px 22px; border-radius: 999px; cursor: pointer; color: var(--ink-soft);
}
.price-toggle button.is-on { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.price-toggle .save { color: #047a4c; font-weight: 700; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px;
  display: flex; flex-direction: column; position: relative;
}
.price-card.is-featured { background: var(--ink); border-color: var(--ink); color: #b7c8e6; box-shadow: var(--shadow-lift); }
.price-card.is-featured h3, .price-card.is-featured .price b { color: #fff; }
.price-card .flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #062b1c; font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 999px; padding: 6px 16px; white-space: nowrap;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.price-card .for { font-size: .88rem; min-height: 44px; margin-bottom: 14px; }
.price { margin: 6px 0 4px; }
.price b { font-family: var(--font-display); font-size: 2.7rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price span { font-size: .92rem; }
.price .was { font-size: .95rem; text-decoration: line-through; opacity: .6; margin-right: 8px; }
.price-card .ticks { font-size: .93rem; margin: 20px 0 26px; gap: 10px; }
.price-card .ticks li { font-weight: 450; }
.price-card.is-featured .ticks li { color: #dbe6f9; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-note { text-align: center; font-size: .88rem; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px;
  align-items: center; padding: 22px 4px; font-family: var(--font-display); font-weight: 700;
  font-size: 1.08rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--tint-deep);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%230a1830" stroke-width="2.6" stroke-linecap="round"><path d="M12 5v14M5 12h14"/></svg>');
  background-repeat: no-repeat; background-position: center; transition: transform .18s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 4px 24px; font-size: .98rem; max-width: 68ch; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: 24px; padding: 56px 52px; position: relative; overflow: hidden;
  background: radial-gradient(700px 300px at 90% -20%, rgba(0,217,130,.35), transparent 60%),
    radial-gradient(600px 300px at 5% 120%, rgba(61,139,255,.3), transparent 60%), var(--ink);
  color: #b7c8e6; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: .3em; }
.cta-banner p { margin: 0; }
.cta-banner__act { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- Checker tools ---------- */
.tool-form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }
.tool-form label { font-weight: 650; color: var(--ink); font-size: .95rem; display: block; margin-bottom: 8px; }
.tool-row { display: flex; gap: 12px; }
.tool-row input[type="url"], .tool-row input[type="text"] {
  flex: 1; border: 2px solid var(--line); border-radius: 12px; padding: 13px 18px;
  font-size: 1.02rem; font-family: var(--font-body); color: var(--ink); min-width: 0;
}
.tool-row input:focus { border-color: var(--blue); outline: none; }
.tool-progress { display: none; margin-top: 22px; }
.tool-progress.is-on { display: block; }
.tool-progress .bar { height: 8px; border-radius: 99px; background: var(--tint-deep); overflow: hidden; }
.tool-progress .bar i { display: block; height: 100%; width: 30%; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--green)); animation: slide 1.2s ease-in-out infinite; }
@keyframes slide { 0% { margin-left: -30%; } 100% { margin-left: 100%; } }
.tool-progress p { font-size: .88rem; margin: 10px 0 0; }
.tool-results { margin-top: 30px; }
.score-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; margin-bottom: 26px; }
.score {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 12px; text-align: center;
}
.score .ring {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 10px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--ink);
}
.score span { font-size: .8rem; font-weight: 600; color: var(--body); }
.finding { border: 1px solid var(--line); border-left-width: 5px; border-radius: 12px; padding: 16px 20px; margin-bottom: 12px; background: #fff; }
.finding--fail { border-left-color: var(--red); }
.finding--warn { border-left-color: var(--amber); }
.finding--pass { border-left-color: var(--green); }
.finding b { color: var(--ink); }
.finding .fr-meta { font-size: .8rem; color: var(--body); }
.finding code { background: var(--tint); border-radius: 6px; padding: 2px 7px; font-size: .82rem; word-break: break-all; }
.tool-note { font-size: .85rem; }

/* ---------- Trust / logo strip ---------- */
.truststrip { display: flex; flex-wrap: wrap; gap: 18px 44px; align-items: center; justify-content: center; opacity: .85; }
.truststrip span { font-weight: 700; color: var(--ink-soft); font-family: var(--font-display); font-size: 1.05rem; display: inline-flex; gap: 9px; align-items: center; }

/* ---------- Quote / testimonial ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote p { font-size: 1rem; color: var(--ink-soft); }
.quote footer { font-size: .86rem; font-weight: 600; color: var(--ink); }
.quote .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 10px; }

/* ---------- Prose (long-form) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.75rem; margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: .45em; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1.4em 0; }
.prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.prose th { color: var(--ink); background: var(--tint); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 650; font-size: .92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  border: 2px solid var(--line); border-radius: 12px; padding: 12px 16px; font-size: 1rem;
  font-family: var(--font-body); color: var(--ink); background: #fff; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; }
.field .hint { font-size: .8rem; }
.alert { border-radius: 12px; padding: 16px 20px; margin-bottom: 22px; font-weight: 500; }
.alert--ok { background: var(--green-soft); color: #045a37; }
.alert--err { background: #fdebec; color: #99262a; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: #8fa5c9; font-size: .92rem; }
.site-foot a { color: #c9d7ef; }
.site-foot a:hover { color: #fff; }
.site-foot a.btn--primary { color: #062b1c; }
.site-foot a.btn--primary:hover { color: #fff; }
.site-foot a.btn--ghost-light { color: #fff; }
.foot-cta { border-bottom: 1px solid rgba(255,255,255,.1); padding: 46px 0; }
.foot-cta .wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.foot-cta h2 { color: #fff; font-size: 1.6rem; margin: 0; }
.foot-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 40px; padding: 56px 0; }
.foot-grid h3, .foot-grid h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-brand p { font-size: .88rem; max-width: 34ch; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; font-size: .82rem; }
.foot-legal .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-legal ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: .84rem; margin-bottom: 26px; color: #8fa5c9; }
.crumbs a { color: #c9d7ef; }
.crumbs span[aria-current] { color: #fff; }

/* ---------- Badge pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 7px 16px;
  font-size: .82rem; font-weight: 600; background: rgba(255,255,255,.09); color: #cfe0ff;
  border: 1px solid rgba(255,255,255,.14); margin-bottom: 22px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,217,130,.2); }
.pill a, .hero .lede a { color: var(--green); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--flip > .split__media { order: 0; }
  .cta-banner { grid-template-columns: 1fr; padding: 44px 32px; }
  .cta-banner__act { justify-content: flex-start; }
}
@media (max-width: 860px) {
  .nav, .head-cta .phone { display: none; }
  .nav-burger { display: block; }
  .site-head.nav-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 14px 18px 22px; box-shadow: var(--shadow-lift);
    max-height: calc(100vh - 74px); overflow: auto;
  }
  .site-head.nav-open .menu { position: static; transform: none; box-shadow: none; border: 0; min-width: 0; padding: 0 0 8px 12px; }
  .site-head.nav-open .menu__cols { grid-template-columns: 1fr; min-width: 0; }
  .band { padding: 62px 0; }
  .hero__in { padding: 56px 0 64px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .sitecheck__row { flex-direction: column; border-radius: 18px; gap: 6px; }
  .sitecheck .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}

@media (max-width: 520px) {
  .site-head__in { gap: 8px; padding: 0 12px; }
  .logo { gap: 8px; }
  .logo svg { width: 32px; height: 32px; }
  .logo__name { font-size: .88rem; }
  .logo__tag { display: none; }
  .head-cta { gap: 0; }
  .head-cta .btn { padding: 8px 10px; font-size: .75rem; }
  .nav-burger { padding: 8px 2px; }
  .wrap { padding: 0 18px; }
}

@media (max-width: 385px) {
  .logo__name { display: none; }
  .mock__body { padding: 14px 8px; }
  .mock__score { flex-wrap: wrap; }
  .mock__row { flex-wrap: wrap; gap: 4px; }
  .mock__bar { flex-wrap: wrap; }
  .btn { white-space: normal; text-align: center; }
  .hero__ctas .btn, .cta-banner__act .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
