/* ITSupport RMM - itsupport-rmm.com
   Design system + layout. No external dependencies. */

:root {
  --navy-900: #0e2244;
  --navy-800: #14315f;
  --navy-700: #1b3a6b;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50: #eff5ff;
  --teal-600: #0f8a7e;
  --teal-500: #14a89a;
  --teal-50: #e8f7f5;
  --amber-600: #b45309;
  --ink-900: #0f172a;
  --ink-700: #33415c;
  --ink-600: #4a5875;
  --ink-500: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-deep: #0e2244;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .07), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 44px rgba(14, 34, 68, .14);
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--navy-800); }

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

h1, h2, h3, h4 {
  color: var(--ink-900);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.2rem); }
h3 { font-size: clamp(1.13rem, 1.7vw, 1.32rem); }
h4 { font-size: 1.04rem; }
p { margin: 0 0 1.05em; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

strong { color: var(--ink-900); }
small { font-size: .84rem; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.4rem 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; }

.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(--navy-900); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 650; line-height: 1.2;
  padding: 14px 22px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.btn--primary:hover { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }
.btn--secondary { background: #fff; color: var(--navy-800); border-color: var(--line-strong); }
.btn--secondary:hover { border-color: var(--navy-700); color: var(--navy-900); }
.btn--onDark { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn--onDark:hover { background: var(--blue-50); color: var(--navy-900); }
.btn--outlineDark { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--outlineDark:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, .08); }
.btn--sm { padding: 10px 16px; font-size: .93rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.4rem 0 1rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900); color: #cbd9f0;
  font-size: .86rem; padding: 7px 0;
}
.topbar__inner { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; justify-content: space-between; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; color: #fff; }
.topbar__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(6px);
}
.header__inner { display: flex; align-items: center; gap: 18px; min-height: 70px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.logo__mark { width: 34px; height: 34px; flex: 0 0 auto; }
.logo__text { font-weight: 800; font-size: 1.06rem; color: var(--navy-900); letter-spacing: -.02em; line-height: 1.1; }
.logo__text span { display: block; font-size: .66rem; font-weight: 600; color: var(--ink-500); letter-spacing: .09em; text-transform: uppercase; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 11px; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; color: var(--ink-700); text-decoration: none;
}
.nav__link:hover { background: var(--bg-soft); color: var(--navy-900); }
.nav__link[aria-current="page"] { color: var(--blue-700); background: var(--blue-50); }
.nav__item { position: relative; margin: 0; }
.nav__caret { width: 9px; height: 9px; opacity: .6; }

.nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 268px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.nav__item:hover > .nav__dropdown,
.nav__item:focus-within > .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown li { margin: 0; }
.nav__dropdown a {
  display: block; padding: 9px 11px; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--ink-700); font-size: .93rem; font-weight: 600;
}
.nav__dropdown a small { display: block; font-weight: 500; color: var(--ink-500); }
.nav__dropdown a:hover { background: var(--bg-soft); color: var(--navy-900); }

.header__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header__phone { font-weight: 700; color: var(--navy-800); text-decoration: none; font-size: .95rem; white-space: nowrap; }
.header__phone:hover { text-decoration: underline; }

.burger {
  display: none; width: 44px; height: 44px; margin-left: auto;
  align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer;
}
.burger__bars, .burger__bars::before, .burger__bars::after {
  display: block; width: 20px; height: 2px; background: var(--navy-900); border-radius: 2px; position: relative;
}
.burger__bars::before, .burger__bars::after { content: ""; position: absolute; left: 0; }
.burger__bars::before { top: -6px; }
.burger__bars::after { top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 68px 0; }
.section--tight { padding: 46px 0; }
.section--alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--deep { background: var(--bg-deep); color: #d6e2f5; }
.section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--deep a { color: #bfd6ff; }

.section__head { max-width: 760px; margin-bottom: 34px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 750; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-600); margin-bottom: .7rem;
}
.section--deep .eyebrow { color: #6ee0d2; }
.lede { font-size: 1.13rem; color: var(--ink-600); }
.section--deep .lede { color: #c3d4ee; }
.muted { color: var(--ink-500); }
.center { text-align: center; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(37, 99, 235, .16), transparent 60%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  padding: 62px 0 60px;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.hero h1 { margin-bottom: .5em; }
.hero__lede { font-size: 1.18rem; color: var(--ink-600); max-width: 56ch; }
.hero__points { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .45rem; }
.hero__points li { display: flex; gap: .55rem; font-size: .98rem; font-weight: 600; color: var(--navy-800); }

.hero--sub { padding: 48px 0 44px; }
.hero--sub h1 { max-width: 22ch; }

/* Image frames with graceful gradient fallback */
.img-frame {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #16305c 0%, #2563eb 55%, #14a89a 100%);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame--flat { box-shadow: var(--shadow-md); border-radius: var(--radius); }
.img-frame--sq { aspect-ratio: 4 / 3; }
.img-frame--wide { aspect-ratio: 21 / 9; }
.img-credit { display: block; margin-top: .5rem; font-size: .78rem; color: var(--ink-500); }

/* ---------- Grids and cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--split { grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.grid--sidebar { grid-template-columns: 260px minmax(0, 1fr); gap: 40px; align-items: start; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card--plain { box-shadow: none; }
.card--soft { background: var(--bg-soft); border-color: var(--line); box-shadow: none; }
.card--dark { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); box-shadow: none; }
.card__icon {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-700);
}
.card__icon svg { width: 22px; height: 22px; }
.card__icon--teal { background: var(--teal-50); color: var(--teal-600); }

.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.stat { border-left: 3px solid var(--teal-500); padding-left: 16px; }
.stat__value { display: block; font-size: 1.7rem; font-weight: 800; color: var(--navy-900); line-height: 1.1; }
.section--deep .stat__value { color: #fff; }
.stat__label { font-size: .92rem; color: var(--ink-600); }
.section--deep .stat__label { color: #b9cdea; }

.list-check { list-style: none; padding: 0; margin: 0 0 1.1em; }
.list-check li { position: relative; padding-left: 30px; margin-bottom: .55em; }
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f8a7e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--deep .list-check li::before { background-color: rgba(110, 224, 210, .18); }

.badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--blue-50); color: var(--blue-700);
}
.badge--teal { background: var(--teal-50); color: var(--teal-600); }
.badge--amber { background: #fef3c7; color: var(--amber-600); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; margin-bottom: 12px;
  background: var(--navy-800); color: #fff; font-weight: 700; font-size: .95rem;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 620px; }
table.table caption { text-align: left; padding: 14px 16px; color: var(--ink-500); font-size: .88rem; }
table.table th, table.table td { padding: 12px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.table thead th { background: var(--bg-soft); color: var(--navy-900); font-size: .84rem; text-transform: uppercase; letter-spacing: .05em; }
table.table tbody tr:last-child td { border-bottom: 0; }
table.table td strong { color: var(--navy-900); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.price-card--featured { border-color: var(--blue-600); box-shadow: var(--shadow-md); position: relative; }
.price-card--featured::after {
  content: "Recommended for MSPs"; position: absolute; top: -13px; left: 26px;
  background: var(--blue-600); color: #fff; font-size: .72rem; font-weight: 750;
  letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.price-card h3 { margin-bottom: .25em; }
.price { font-size: 2.2rem; font-weight: 800; color: var(--navy-900); line-height: 1.05; letter-spacing: -.03em; }
.price small { font-size: .92rem; font-weight: 600; color: var(--ink-500); letter-spacing: 0; }
.price-alt { font-size: .92rem; color: var(--ink-600); margin: .35rem 0 0; }
.price-card .btn { margin-top: auto; }
.price-card ul { margin: 1.1rem 0 1.4rem; }

.disclaimer {
  font-size: .86rem; color: var(--ink-500);
  background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 3px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 14px 16px; margin: 20px 0 0;
}
.disclaimer p:last-child { margin-bottom: 0; }

/* ---------- Calculator ---------- */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.calc__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.calc__out { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 18px; display: grid; gap: 10px; }
.calc__line { display: flex; justify-content: space-between; gap: 14px; font-size: .98rem; }
.calc__line strong { font-size: 1.16rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 18px;
}
.faq summary {
  cursor: pointer; font-weight: 650; color: var(--navy-900);
  padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--blue-600); }
.faq details[open] summary::after { content: "\2013"; }
.faq details > *:not(summary) { margin-bottom: 1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 55%, #10617a 100%);
  color: #dce7f8; padding: 56px 0;
}
.cta-band h2 { color: #fff; }
.cta-band__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; align-items: center; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band p:last-of-type { margin-bottom: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .86rem; color: var(--ink-500); padding: 14px 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumbs li::after { content: "/"; margin-left: 8px; color: var(--line-strong); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--ink-600); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .9rem; font-weight: 650; color: var(--navy-900); }
.field .hint { font-size: .82rem; color: var(--ink-500); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  font: inherit; font-size: .97rem; color: var(--ink-900);
  padding: 11px 13px; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); background: #fff; width: 100%;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-600); outline: none; box-shadow: 0 0 0 3px rgba(37, 99, 235, .18); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.form__status {
  display: none; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--teal-50); border: 1px solid #9fd9d2; color: #0b5f57; font-size: .93rem;
}
.form__status.is-visible { display: block; }
.form__error { color: #b91c1c; font-size: .84rem; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 78ch; }
.prose h2 { margin-top: 2.1rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose table.table { min-width: 480px; }
.legal-meta {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; font-size: .92rem; margin-bottom: 1.8rem;
}
.legal-meta p { margin-bottom: .4em; }
.legal-meta p:last-child { margin-bottom: 0; }
.toc { position: sticky; top: 96px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; font-size: .92rem; }
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: .4em; }
.toc a { color: var(--ink-600); text-decoration: none; }
.toc a:hover { color: var(--blue-700); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #b6c8e4; padding: 54px 0 22px; font-size: .94rem; }
.site-footer h2, .site-footer h3 { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)); gap: 30px; }
.footer__brand .logo__text { color: #fff; }
.footer__brand .logo__text span { color: #8fa8cc; }
.footer__col h3 { font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; color: #8fa8cc; margin-bottom: .9em; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: .5em; }
.footer__col a { color: #d5e2f4; text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__nap { margin-top: 16px; line-height: 1.7; }
.footer__nap a { color: #fff; font-weight: 600; }
.footer__bottom {
  margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; font-size: .86rem; color: #93a9cb;
}
.footer__bottom a { color: #c9d8ee; }

/* ---------- Cookie notice ---------- */
.cookie-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 120;
  display: none; gap: 16px; align-items: center; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 14px 18px; font-size: .89rem;
  max-width: 980px; margin: 0 auto;
}
.cookie-bar.is-visible { display: flex; }
.cookie-bar p { margin: 0; flex: 1 1 380px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .grid--4, .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--sidebar { grid-template-columns: 1fr; }
  .toc { position: static; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 12px 20px 18px; margin: 0;
    max-height: calc(100vh - 110px); overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .site-header { position: sticky; }
  .header__inner { position: relative; flex-wrap: wrap; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 12px 10px; font-size: 1rem; }
  .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0;
    padding: 2px 0 6px 10px; margin: 0 0 6px 10px; min-width: 0;
  }
  .nav__caret { display: none; }
  .header__actions { display: none; }
  .hero__grid, .grid--split, .cta-band__inner { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .steps--3, .price-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 44px; }
  .section { padding: 52px 0; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .topbar__inner { justify-content: flex-start; }
  .grid--4, .stat-grid, .calc__row, .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .btn--sm { width: auto; }
  .cookie-bar .btn { width: auto; }
}

@media print {
  .site-header, .topbar, .cookie-bar, .cta-band, .btn { display: none !important; }
  body { color: #000; font-size: 12pt; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .btn:hover { transform: none; }
}
