/* ==========================================================================
   Alaxona — IPv4 leasing. Light corporate blue.
   ========================================================================== */

:root {
  --brand-900: #062a5e;
  --brand-800: #083a80;
  --brand-700: #0b4a9e;
  --brand-600: #0e5fcb;
  --brand-500: #1a73e8;
  --brand-100: #d9e7fb;
  --brand-50: #eef4ff;

  --ink: #0f1729;
  --ink-2: #33405a;
  --muted: #5a6478;
  --line: #e2e8f2;
  --line-2: #eef1f7;
  --surface: #f7f9fc;
  --white: #ffffff;

  --green: #0f9d58;
  --green-bg: #e8f6ee;
  --amber: #b7791f;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.05);
  --shadow: 0 4px 20px rgba(15, 23, 41, 0.07);
  --shadow-lg: 0 18px 50px rgba(6, 42, 94, 0.12);

  --wrap: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;

  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.021em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(34px, 5vw, 54px); letter-spacing: -0.03em; }
h2 { font-size: clamp(27px, 3.4vw, 38px); }
h3 { font-size: 20px; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; }

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

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

.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 {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-700);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}
.logo:hover { text-decoration: none; }
.logo .mark { flex: none; }
.logo .tld { color: var(--brand-600); }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav a:not(.btn) {
  color: var(--ink-2);
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:not(.btn):hover { color: var(--brand-600); text-decoration: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* --------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand-700);
  color: #fff;
  box-shadow: 0 2px 10px rgba(11, 74, 158, 0.22);
}
.btn-primary:hover { background: var(--brand-800); }

.btn-ghost {
  background: var(--white);
  color: var(--brand-700);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand-500); background: var(--brand-50); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }

.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* -------------------------------------------------------------- sections -- */

.section { padding: 84px 0; }
.section--tight { padding: 64px 0; }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }

.section-head { max-width: 720px; margin: 0 0 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 18px; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 12px;
}

/* ------------------------------------------------------------------ hero -- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% -12%, rgba(26, 115, 232, 0.14), transparent 62%),
    radial-gradient(700px 420px at 4% 6%, rgba(11, 74, 158, 0.09), transparent 60%),
    linear-gradient(180deg, var(--brand-50) 0%, #ffffff 78%);
  border-bottom: 1px solid var(--line);
  padding: 76px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 74, 158, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 74, 158, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--brand-100);
  color: var(--brand-700);
  border-radius: 999px;
  padding: 7px 16px 7px 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.18);
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--brand-700); }

.hero-lead {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 15.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points svg { color: var(--green); flex: none; }

/* hero card */

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card__top {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: #fff;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-card__top strong { display: block; font-size: 17px; font-weight: 600; }
.hero-card__top span { font-size: 13.5px; opacity: 0.82; }
.hero-card__badge {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-card__rows { padding: 8px 26px 18px; }
.hero-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15.5px;
}
.hero-card__row:last-child { border-bottom: 0; }
.hero-card__row dt { color: var(--muted); margin: 0; }
.hero-card__row dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14.5px;
  text-align: right;
}
.tick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-family: var(--font);
  font-size: 15px;
}

.hero-card__foot {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 18px 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-card__price { font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.hero-card__price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.hero-card__note { font-size: 13.5px; color: var(--muted); }

/* ------------------------------------------------------------- trust bar -- */

.trustbar { background: var(--white); border-bottom: 1px solid var(--line); padding: 34px 0; }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trustbar__num {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-700);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.trustbar__lbl { font-size: 14.5px; color: var(--muted); margin-top: 4px; }

/* ----------------------------------------------------------------- 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)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--brand-100); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 0; }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

/* ------------------------------------------------------------------ prose */

.prose-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.prose p { color: var(--ink-2); font-size: 17px; }
.prose h3 { margin-top: 28px; }
.prose h3:first-child { margin-top: 0; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.checklist li svg { flex: none; color: var(--green); margin-top: 3px; }
.checklist strong { color: var(--ink); display: block; }
.checklist span { color: var(--muted); font-size: 15.5px; }

.callout {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-left: 4px solid var(--brand-600);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 16px;
  color: var(--ink-2);
}
.callout strong { color: var(--brand-800); }

/* --------------------------------------------------------------- pricing -- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.price:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.price--featured {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 1px var(--brand-600), var(--shadow);
}
.price__tag {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--brand-700);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.price__size {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price__count { color: var(--muted); font-size: 15px; margin-top: 6px; }

.price__amount {
  margin: 22px 0 4px;
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-700);
  letter-spacing: -0.035em;
  line-height: 1;
}
.price__amount .per { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price__amount--ask { font-size: 27px; letter-spacing: -0.02em; }
.price__unit { font-size: 14.5px; color: var(--muted); min-height: 22px; }

.price__list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  gap: 11px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.price__list li { display: flex; gap: 10px; align-items: flex-start; }
.price__list svg { flex: none; color: var(--green); margin-top: 4px; }
.price .btn { margin-top: auto; }

.price-note {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--muted);
  text-align: center;
}

.price__tag--alt {
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
}

/* quantity stepper on the /24 pricing card */

.qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 4px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
}
.qty__label { font-size: 14.5px; font-weight: 600; color: var(--ink); }

.qty__control {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}
.qty__btn {
  width: 36px;
  border: 0;
  background: var(--surface);
  color: var(--brand-700);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.qty__btn:hover { background: var(--brand-100); }
.qty__btn:disabled { color: #b3bac7; cursor: not-allowed; background: var(--surface); }

.qty__input {
  width: 48px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  -moz-appearance: textfield;
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input:focus { outline: none; background: var(--brand-50); }

.qty__total {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.qty__total span[data-qty-total] { font-weight: 700; color: var(--brand-700); font-size: 17px; }

/* quantity + price estimate inside the lead form */

.field-hint { font-weight: 500; color: var(--muted); text-transform: none; letter-spacing: 0; }

.price-estimate {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--brand-800);
  margin: -6px 0 18px;
}
.price-estimate strong { font-weight: 700; }
.price-estimate[hidden] { display: none; }

/* ----------------------------------------------------------------- table -- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.matrix {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15.5px;
}
table.matrix th, table.matrix td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
table.matrix thead th {
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
table.matrix tbody th { font-weight: 500; color: var(--ink-2); }
table.matrix tbody tr:last-child th,
table.matrix tbody tr:last-child td { border-bottom: 0; }
table.matrix td { color: var(--muted); }
table.matrix td.yes { color: var(--green); font-weight: 600; }
table.matrix td.no { color: #b3bac7; }
table.matrix .col-hi { background: var(--brand-50); }

/* ----------------------------------------------------------------- steps -- */

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 32px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-700);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  z-index: 1;
}
.step::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.step:last-child::after { display: none; }
.step h3 { margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 15.5px; margin-bottom: 0; }

/* ------------------------------------------------------------------- faq -- */

.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq details[open] { border-color: var(--brand-100); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  padding: 19px 54px 19px 22px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-600);
  border-bottom: 2px solid var(--brand-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq summary:hover { color: var(--brand-700); }
.faq .answer { padding: 0 22px 21px; color: var(--muted); font-size: 16px; }
.faq .answer p { margin-bottom: 0.8em; }

/* -------------------------------------------------------------- contact -- */

.contact {
  background:
    radial-gradient(800px 420px at 82% 8%, rgba(26, 115, 232, 0.28), transparent 62%),
    linear-gradient(160deg, var(--brand-900), var(--brand-700) 62%, var(--brand-600));
  color: #fff;
  padding: 84px 0;
}
.contact .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: start;
}
.contact h2 { color: #fff; }
.contact .eyebrow { color: #9dc4ff; }
.contact__intro p { color: rgba(255, 255, 255, 0.82); font-size: 17.5px; }
.contact__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 15px; }
.contact__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.contact__list svg { flex: none; color: #7fe0ab; margin-top: 4px; }

/* ------------------------------------------------------------------ form -- */

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-2);
}

.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .req { color: #d93025; }

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 108px; line-height: 1.55; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #d93025; }

.field-error { display: none; color: #d93025; font-size: 13.5px; margin-top: 6px; }
.field-error.show { display: block; }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.consent input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-600);
  cursor: pointer;
}
.consent a { text-decoration: underline; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-box { margin-bottom: 18px; min-height: 68px; }

.form-status {
  display: none;
  border-radius: 9px;
  padding: 14px 16px;
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--green-bg); color: #0b6b3c; border: 1px solid #b8e2ca; }
.form-status.err { background: #fdecea; color: #a4231b; border: 1px solid #f5c6c2; }

.btn[aria-busy="true"] { opacity: 0.72; pointer-events: none; }

.form-foot { margin-top: 14px; font-size: 13.5px; color: var(--muted); text-align: center; }

/* ---------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: 52px 0 32px;
  font-size: 15px;
}
.site-footer .logo { color: #fff; }
.site-footer .logo .tld { color: #6ea8ff; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top p { max-width: 460px; margin: 14px 0 0; font-size: 15px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-nav a { color: rgba(255, 255, 255, 0.78); font-weight: 500; }
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ------------------------------------------------------------ legal page -- */

.legal-hero {
  background: linear-gradient(180deg, var(--brand-50), #fff);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 44px;
}
.legal-hero h1 { margin-bottom: 10px; }
.legal-hero p { color: var(--muted); margin-bottom: 0; }

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 56px 0 88px;
}

.legal-toc { position: sticky; top: 96px; }
.legal-toc strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.legal-toc a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
  border-left: 2px solid transparent;
}
.legal-toc a:hover { background: var(--brand-50); color: var(--brand-700); text-decoration: none; }

.legal-body { max-width: 780px; font-size: 16.5px; }
.legal-body section + section { margin-top: 64px; padding-top: 56px; border-top: 2px solid var(--line); }
/* html already sets scroll-padding-top for the sticky header — adding
   scroll-margin here as well would double the offset. */
.legal-body h2 { font-size: clamp(26px, 3vw, 32px); }
.legal-body h3 { font-size: 18.5px; margin: 34px 0 10px; }
.legal-body h4 { font-size: 16.5px; margin: 24px 0 8px; color: var(--ink); }
.legal-body p, .legal-body li { color: var(--ink-2); }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 1em; }
.legal-body li { margin-bottom: 7px; }
.legal-body address {
  font-style: normal;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 0 0 1em;
  line-height: 1.7;
}
.legal-meta {
  font-size: 14.5px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-block;
  margin-bottom: 26px;
}

/* ------------------------------------------------------------ responsive -- */

@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero-card { max-width: 520px; }
  .prose-split { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .contact .wrap { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; padding-top: 40px; }
  .legal-toc { position: static; }
  .legal-toc ol { grid-template-columns: repeat(2, 1fr); display: grid; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 72px 0 auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    margin: 0;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 17px; }
  .nav .btn { margin-top: 16px; border-bottom: 0; }

  .section { padding: 60px 0; }
  .hero { padding: 52px 0 64px; }
  .price-grid, .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .form-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .form-card { padding: 24px; }
  .contact { padding: 60px 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .grid-2, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .hero-actions .btn { width: 100%; }
  .card { padding: 22px; }
  .legal-toc ol { grid-template-columns: minmax(0, 1fr); }
  .step { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; }
  .step::before { width: 38px; height: 38px; font-size: 16px; }
  .step::after { left: 19px; top: 38px; }
}
