/* ==========================================================================
   GetHigh Tracker GT-1 — landing page stylesheet
   Dark automotive theme, no external dependencies (no webfonts, no CDN).
   Shared by the English (/) and Spanish (/es/) pages.
   ========================================================================== */

/* --------------------------------------------------------------- tokens */
:root {
  --bg: #070c17;
  --bg-2: #0a1120;
  --surface: #0f1728;
  --surface-2: #16203a;
  --surface-3: #1d2a48;
  --border: rgba(147, 164, 191, 0.16);
  --border-strong: rgba(147, 164, 191, 0.3);
  --ink: #e8eef9;
  --ink-2: #c3cee2;
  --muted: #93a4bf;
  --dim: #6b7d99;
  --green: #35e08a;
  --blue: #4a9eff;
  --amber: #ffb020;
  --red: #ff5d5d;
  --violet: #a78bfa;
  --brand: linear-gradient(120deg, var(--green), var(--blue));
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9);
  --shadow-soft: 0 12px 40px -24px rgba(0, 0, 0, 0.8);
  --wrap: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.6em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }
strong { color: #fff; font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface-2);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

section { padding: 84px 0; position: relative; }
section > .wrap { position: relative; z-index: 1; }

.section-alt {
  background:
    radial-gradient(800px 420px at 12% 0%, rgba(74, 158, 255, 0.09), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); }
.section-head p { font-size: 18px; color: var(--muted); margin-bottom: 0; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.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)); }

/* --------------------------------------------------------------- header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 12, 23, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #05140d;
  font-size: 17px;
  font-weight: 800;
}
.logo small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a {
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.is-active {
  color: #fff;
  border-bottom-color: var(--green);
  text-decoration: none;
}

.topbar-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang-switch a {
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.lang-switch a[aria-current="true"] {
  background: var(--surface-3);
  color: #fff;
}
.lang-switch a:hover { text-decoration: none; color: #fff; }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 40px;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--brand);
  color: #04160e;
  box-shadow: 0 14px 34px -18px rgba(53, 224, 138, 0.9);
}
.btn-primary:hover { box-shadow: 0 18px 40px -16px rgba(53, 224, 138, 0.8); }
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--surface-2); }
.btn-wa { background: #25d366; color: #05230f; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------- hero */
.hero {
  padding: 74px 0 66px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(53, 224, 138, 0.14), transparent 66%),
    radial-gradient(760px 460px at 4% 4%, rgba(74, 158, 255, 0.16), transparent 68%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 164, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 164, 191, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 420px at 62% 30%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(700px 420px at 62% 30%, #000 10%, transparent 78%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 54px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5.6vw, 60px);
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
}
.hero-points li { display: flex; align-items: center; gap: 8px; margin: 0; }
.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(22, 32, 58, 0.7);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(53, 224, 138, 0.18);
  animation: beacon 2.4s ease-in-out infinite;
}
@keyframes beacon {
  0%, 100% { box-shadow: 0 0 0 4px rgba(53, 224, 138, 0.18); }
  50% { box-shadow: 0 0 0 9px rgba(53, 224, 138, 0.04); }
}

/* --------------------------------------------------------------- figures */
.figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.figure img { display: block; width: 100%; border-radius: var(--radius); }
.figure figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--dim);
  text-align: center;
}
.figure-wide { padding: 26px; }

/* --------------------------------------------------------------- stats */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.stat { text-align: center; padding: 0 8px; }
.stat b {
  display: block;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { font-size: 13.5px; color: var(--muted); }

/* --------------------------------------------------------------- cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card h3 { font-size: 19.5px; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(74, 158, 255, 0.12);
  color: var(--blue);
}
.card-icon svg { width: 22px; height: 22px; }
.card.green .card-icon { background: rgba(53, 224, 138, 0.12); color: var(--green); }
.card.amber .card-icon { background: rgba(255, 176, 32, 0.13); color: var(--amber); }
.card.violet .card-icon { background: rgba(167, 139, 250, 0.13); color: var(--violet); }
.card.red .card-icon { background: rgba(255, 93, 93, 0.12); color: var(--red); }

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}

/* --------------------------------------------------------------- steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 22px 24px 22px 74px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  color: var(--green);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 15px;
}
.steps h3 { font-size: 17.5px; margin-bottom: 7px; }
.steps p { margin: 0; color: var(--muted); font-size: 15.5px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}
.split.reverse .split-media { order: -1; }

/* --------------------------------------------------------------- modes */
.mode-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.mode-card.calm { box-shadow: inset 0 3px 0 0 var(--green); }
.mode-card.aggr { box-shadow: inset 0 3px 0 0 var(--amber); }
.mode-card h3 { font-size: 24px; margin-bottom: 6px; }
.mode-card .mode-kicker {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 14px;
}
.mode-card.calm .mode-kicker { color: var(--green); }
.mode-card.aggr .mode-kicker { color: var(--amber); }
.mode-card ul { margin: 18px 0 0; padding: 0; list-style: none; }
.mode-card ul li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-2);
  font-size: 15.5px;
}
.mode-card ul li::before {
  content: "›";
  position: absolute;
  left: 6px;
  color: var(--muted);
  font-weight: 700;
}
.mode-card .best-for {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
  font-size: 14.5px;
  color: var(--muted);
}
.mode-card .best-for b { display: block; color: var(--ink-2); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }

.note-box {
  margin-top: 26px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  background: rgba(255, 176, 32, 0.06);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 15px;
  color: var(--ink-2);
}
.note-box.info { border-left-color: var(--blue); background: rgba(74, 158, 255, 0.06); }
.note-box.danger { border-left-color: var(--red); background: rgba(255, 93, 93, 0.06); }
.note-box p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- specs */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
table.specs {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}
table.specs caption {
  text-align: left;
  padding: 20px 24px 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
table.specs th, table.specs td {
  text-align: left;
  padding: 13px 24px;
  border-top: 1px solid var(--border);
  vertical-align: top;
  font-size: 15px;
}
table.specs th {
  width: 34%;
  color: var(--muted);
  font-weight: 500;
}
table.specs td { color: var(--ink); }
table.specs td .mono { font-family: var(--mono); font-size: 13.5px; }
table.specs tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.015); }

/* --------------------------------------------------------------- pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border-color: rgba(53, 224, 138, 0.5); box-shadow: 0 0 0 1px rgba(53, 224, 138, 0.18), var(--shadow); }
.price-card h3 { font-size: 22px; }
.price-card .price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 6px 0 2px;
}
.price-card .price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card .price-note { font-size: 13.5px; color: var(--dim); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card ul li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--green);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; }
.badge-best {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(53, 224, 138, 0.14);
  color: var(--green);
  border: 1px solid rgba(53, 224, 138, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
}
.price-card { position: relative; }

/* --------------------------------------------------------------- chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 8px; list-style: none; }
.chips li {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
}

/* --------------------------------------------------------------- faq */
.faq-list { display: grid; gap: 12px; }
details.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 4px 24px;
}
details.faq[open] { border-color: var(--border-strong); background: var(--surface-2); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 34px 18px 0;
  font-weight: 600;
  font-size: 16.5px;
  position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--green);
  font-weight: 400;
  line-height: 1;
}
details.faq[open] summary::after { content: "–"; }
details.faq .faq-body { padding: 0 0 20px; color: var(--ink-2); font-size: 15.5px; }
details.faq .faq-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- form */
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  padding: 34px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(7, 12, 23, 0.7);
  color: var(--ink);
  font-family: inherit;
  font-size: 15.5px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(53, 224, 138, 0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 13px; color: var(--dim); margin: 14px 0 0; }
.form-status {
  margin-top: 14px;
  font-size: 14.5px;
  min-height: 22px;
  color: var(--green);
}
.form-status.error { color: var(--red); }

/* --------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 56px 0 34px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.site-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--ink-2); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--dim);
}
.disclaimer { font-size: 12.8px; color: var(--dim); max-width: 70ch; margin-top: 18px; }

/* --------------------------------------------------------------- floating */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #05230f;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, 0.7);
}
.wa-float:hover { text-decoration: none; transform: translateY(-1px); }
.wa-float svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------- language hint */
.lang-hint {
  display: none;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  font-size: 14px;
}
.lang-hint.is-open { display: block; }
.lang-hint .wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lang-hint p { margin: 0; color: var(--ink-2); }
.lang-hint .btn { padding: 7px 16px; font-size: 13.5px; }
.lang-hint button.close {
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--dim);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* --------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pill .dot { animation: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 34px; }
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 8px 22px 18px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: grid; place-items: center; order: 3; }
  .topbar-actions { margin-left: auto; }
  .hero { padding-top: 52px; }
  .hero-grid, .split, .split.reverse { grid-template-columns: minmax(0, 1fr); }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-2, .price-grid { grid-template-columns: minmax(0, 1fr); }
  .stats .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
  section { padding: 62px 0; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
}

@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .hero h1 { font-size: 33px; }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .form-card, .price-card, .mode-card { padding: 24px; }
  .figure { padding: 12px; }
  .figure-wide { padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lang-switch a { padding: 6px 10px; font-size: 12px; }
}

@media print {
  .topbar, .wa-float, .lang-hint, .hero-actions { display: none; }
  body { background: #fff; color: #000; }
}
