/* ==========================================================================
   Kasurde IT — stylesheet
   1. Tokens / themes      5. Sections
   2. Reset & base         6. Components (cards, tables, forms)
   3. Layout helpers       7. Footer & utilities
   4. Header & nav         8. Responsive
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --brand: #3b82f6;
  --brand-2: #22d3ee;
  --accent: #a855f7;
  --ok: #34d399;
  --warn: #fbbf24;
  --danger: #f87171;

  --wrap: 1180px;
  --wrap-narrow: 820px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --border: 1px solid var(--line);

  --shadow-1: 0 1px 2px rgba(2, 6, 23, .08), 0 8px 24px rgba(2, 6, 23, .08);
  --shadow-2: 0 20px 60px rgba(2, 6, 23, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 68px;
}

/* Dark (default) */
html[data-theme="dark"] {
  --bg: #070b14;
  --bg-alt: #0b1120;
  --surface: #0f172a;
  --surface-2: #131c31;
  --line: rgba(148, 163, 184, .16);
  --line-strong: rgba(148, 163, 184, .3);
  --text: #e8eefb;
  --muted: #97a6bf;
  --muted-2: #7d8ca6;
  --brand-ink: #ffffff;
  --glow-1: rgba(59, 130, 246, .28);
  --glow-2: rgba(168, 85, 247, .22);
  --code-bg: rgba(2, 6, 23, .5);
  color-scheme: dark;
}

/* Light */
html[data-theme="light"] {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --line: rgba(15, 23, 42, .1);
  --line-strong: rgba(15, 23, 42, .18);
  --text: #0b1220;
  --muted: #55637a;
  --muted-2: #6b7a92;
  --brand: #2563eb;
  --brand-2: #0891b2;
  --brand-ink: #ffffff;
  --glow-1: rgba(37, 99, 235, .14);
  --glow-2: rgba(168, 85, 247, .12);
  --code-bg: #f1f5f9;
  --shadow-1: 0 1px 2px rgba(15, 23, 42, .05), 0 10px 30px rgba(15, 23, 42, .07);
  --shadow-2: 0 24px 60px rgba(15, 23, 42, .12);
  color-scheme: light;
}

/* 2. RESET & BASE --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.16; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); letter-spacing: -.03em; }
h3 { font-size: 1.14rem; }
p { margin: 0 0 1rem; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--text); font-weight: 650; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
.mono { font-family: var(--font-mono); font-size: .82rem; letter-spacing: -.01em; }
.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: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; border-radius: 6px; }

/* 3. LAYOUT --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(56px, 7.5vw, 104px) 0; }
.section-alt { background: var(--bg-alt); border-block: var(--border); }
.section-head { max-width: 780px; margin: 0 auto clamp(30px, 4vw, 52px); text-align: center; }
.section-sub { color: var(--muted); font-size: 1.06rem; margin: 0; }
.kicker {
  font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--brand-2); margin: 0 0 .6rem;
}
html[data-theme="light"] .kicker { color: var(--brand); }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grad {
  background: linear-gradient(100deg, var(--brand), var(--brand-2) 55%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fineprint { color: var(--muted-2); font-size: .84rem; margin: .4rem 0 0; }

/* 4. HEADER & NAV --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(160%) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 10px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 6px 18px var(--glow-1);
}
.brand-mark svg { width: 19px; height: 19px; }
.brand-name { font-size: 1.08rem; }
.brand-suffix {
  font-family: var(--font-mono); font-size: .68em; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-2); margin-left: .4em;
  vertical-align: .1em;
}
html[data-theme="light"] .brand-suffix { color: var(--brand); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--muted); font-size: .93rem; font-weight: 500;
  padding: .5rem .7rem; border-radius: 9px; transition: color .18s, background .18s;
}
.nav a:hover { color: var(--text); background: color-mix(in srgb, var(--text) 7%, transparent); text-decoration: none; }
.nav .nav-cta {
  margin-left: 6px; color: var(--brand-ink); font-weight: 600;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 18px var(--glow-1);
}
.nav .nav-cta:hover { color: var(--brand-ink); filter: brightness(1.07); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; cursor: pointer;
  background: transparent; color: var(--text); border: var(--border); border-radius: 11px;
  transition: background .18s, border-color .18s;
}
.icon-btn:hover { background: color-mix(in srgb, var(--text) 7%, transparent); border-color: var(--line-strong); }
.icon-btn svg { width: 19px; height: 19px; }
/* Icon shows the mode you'd switch TO */
html[data-theme="dark"] .ico-moon { display: none; }
html[data-theme="light"] .ico-sun { display: none; }
.nav-toggle { display: none; }

/* 5. HERO ----------------------------------------------------------------- */
.hero { position: relative; padding: clamp(48px, 7vw, 88px) 0 0; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 720px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(46% 42% at 22% 18%, var(--glow-1), transparent 70%),
    radial-gradient(40% 40% at 78% 8%, var(--glow-2), transparent 72%);
  filter: blur(8px);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .84rem; font-weight: 500; color: var(--text);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 32%, transparent);
  padding: .38rem .8rem .38rem .6rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 70%, transparent); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 60%, transparent); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.lede { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.15rem); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6rem 0 1.5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 600; font-size: .96rem; cursor: pointer;
  padding: .8rem 1.3rem; border-radius: 12px; border: 1px solid transparent;
  transition: transform .16s var(--ease), filter .18s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: var(--brand-ink); box-shadow: 0 10px 26px var(--glow-1); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: color-mix(in srgb, var(--text) 6%, transparent); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--line-strong); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-outline:hover { background: color-mix(in srgb, var(--brand) 10%, transparent); border-color: var(--brand); }
.btn-block { width: 100%; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges li {
  font-family: var(--font-mono); font-size: .74rem; color: var(--muted);
  border: var(--border); border-radius: 999px; padding: .3rem .7rem;
  background: color-mix(in srgb, var(--text) 3%, transparent);
}

.hero-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-2);
  padding: 18px; position: relative; z-index: 1;
}
.card-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 12px; border-bottom: var(--border); }
.card-head .mono { color: var(--muted-2); }
.chip { font-size: .72rem; font-family: var(--font-mono); padding: .12rem .5rem; border-radius: 999px; }
.chip-ok { background: color-mix(in srgb, var(--ok) 16%, transparent); color: var(--ok); border: 1px solid color-mix(in srgb, var(--ok) 32%, transparent); }
.terminal { padding: 14px 4px 6px; display: grid; gap: .62rem; font-size: .9rem; }
.terminal li { color: var(--muted); display: flex; gap: .55rem; align-items: baseline; }
.t-ok { color: var(--ok); flex: 0 0 auto; font-weight: 700; }
.t-dim { color: var(--muted-2); font-family: var(--font-mono); }
.terminal .t-cursor { font-family: var(--font-mono); color: var(--text); font-size: .84rem; }
.caret { display: inline-block; width: 8px; height: 15px; background: var(--brand-2); animation: blink 1.1s steps(2, start) infinite; vertical-align: -2px; }
@keyframes blink { to { visibility: hidden; } }

.stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  margin-top: clamp(34px, 5vw, 60px);
  background: var(--line); border: var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--bg); padding: 20px 22px; display: grid; align-content: start; gap: .18rem; }
.stat-num { font-size: 1.85rem; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--muted); font-size: .86rem; }

/* 6. COMPONENTS ----------------------------------------------------------- */
.svc {
  background: var(--surface); border: var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .25s;
}
.svc:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.svc-ico {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 14px;
  color: var(--brand-2); background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent);
}
html[data-theme="light"] .svc-ico { color: var(--brand); }
.svc-ico svg { width: 22px; height: 22px; }
.svc h3 { margin-bottom: .45rem; }
.svc p { color: var(--muted); font-size: .95rem; }
.svc-accent { background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 10%, var(--surface)), var(--surface)); border-color: color-mix(in srgb, var(--brand) 30%, transparent); }

.ticks { display: grid; gap: .42rem; margin-top: auto; padding-top: .9rem; }
.ticks li { position: relative; padding-left: 1.5rem; color: var(--muted); font-size: .9rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 11px; height: 6px;
  border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok);
  transform: rotate(-45deg); border-radius: 1px;
}
.ticks-lg li { font-size: .97rem; padding-left: 1.7rem; }

/* Plans */
.plans { align-items: stretch; }
.plan {
  position: relative; background: var(--surface); border: var(--border); border-radius: var(--radius-lg);
  padding: 26px; display: flex; flex-direction: column; gap: 0;
  transition: transform .2s var(--ease), box-shadow .25s, border-color .2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: var(--line-strong); }
.plan h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.plan-for { color: var(--muted); font-size: .92rem; min-height: 2.7em; }
.price { margin: .3rem 0 0; }
.amount { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }
.plan-note { color: var(--muted-2); font-size: .84rem; margin-bottom: .4rem; }
.plan .ticks { padding-top: 1rem; padding-bottom: 1.3rem; }
.plan .btn { margin-top: auto; }
.plan-featured {
  border-color: color-mix(in srgb, var(--brand) 48%, transparent);
  box-shadow: 0 24px 60px -20px var(--glow-1);
}
.ribbon {
  position: absolute; top: -13px; left: 26px; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

/* Process */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: var(--border);
  border-radius: var(--radius); padding: 24px;
}
.step-num { display: block; font-size: .8rem; color: var(--brand-2); margin-bottom: .7rem; letter-spacing: .1em; }
html[data-theme="light"] .step-num { color: var(--brand); }
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Compare table */
.table-scroll { overflow-x: auto; border: var(--border); border-radius: var(--radius); background: var(--surface); }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; font-size: .93rem; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: var(--border); vertical-align: top; }
.compare thead th {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2);
  background: var(--surface-2); position: sticky; top: 0; font-weight: 600;
}
.compare tbody th { font-weight: 600; color: var(--text); width: 20%; }
.compare tbody td { color: var(--muted); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: color-mix(in srgb, var(--brand) 5%, transparent); }
.disclaimer { color: var(--muted-2); font-size: .82rem; margin-top: .8rem; }
.compare-cta {
  margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; background: var(--surface); border: var(--border); border-radius: var(--radius); padding: 20px 24px;
}
.compare-cta p { margin: 0; color: var(--muted); }

/* About */
.about { display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.about-copy p { color: var(--muted); }
.about-actions { margin-top: 1.4rem; }
.about-side { display: grid; gap: 18px; }
.panel { background: var(--surface); border: var(--border); border-radius: var(--radius); padding: 22px; }
.panel-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); margin-bottom: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tags li {
  font-family: var(--font-mono); font-size: .74rem; color: var(--muted);
  border: var(--border); border-radius: 8px; padding: .28rem .55rem;
  background: color-mix(in srgb, var(--text) 3%, transparent);
}
/* FAQ */
.faq { background: var(--surface); border: var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 18px 20px; font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .22s var(--ease);
}
.faq[open] summary::after { transform: rotate(-135deg); }
.faq[open] summary { color: var(--brand-2); }
html[data-theme="light"] .faq[open] summary { color: var(--brand); }
.faq-body { padding: 0 20px 18px; color: var(--muted); font-size: .95rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* Contact */
.section-contact { background: var(--bg-alt); border-top: var(--border); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-list { display: grid; gap: 18px; margin-top: 1.8rem; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list small { color: var(--muted-2); }
.contact-ico {
  flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px;
  color: var(--brand-2); background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent);
}
html[data-theme="light"] .contact-ico { color: var(--brand); }
.contact-ico svg { width: 20px; height: 20px; }

.contact-card {
  background: var(--surface); border: var(--border); border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-1);
}
.contact-card h3 { margin-bottom: 1.1rem; }
.field { margin-bottom: 15px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: .87rem; font-weight: 550; margin-bottom: .38rem; color: var(--text); }
input, select, textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: .68rem .8rem; transition: border-color .18s, box-shadow .18s;
}
textarea { resize: vertical; min-height: 96px; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent);
}
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .82rem; margin: .3rem 0 0; min-height: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .9rem; margin: .8rem 0 0; min-height: 1.2em; }
.form-status.is-ok { color: var(--ok); }
.form-status.is-err { color: var(--danger); }
.btn[disabled] { opacity: .6; cursor: progress; }

/* 7. FOOTER & UTILITIES --------------------------------------------------- */
.site-footer { border-top: var(--border); background: var(--bg); padding: clamp(40px, 5vw, 64px) 0 26px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand p { color: var(--muted); font-size: .9rem; margin-top: 1rem; max-width: 38ch; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); margin-bottom: .9rem; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { color: var(--muted); font-size: .91rem; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  margin-top: clamp(30px, 4vw, 48px); padding-top: 20px; border-top: var(--border);
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; align-items: baseline;
}
.footer-bottom p { margin: 0; color: var(--muted-2); font-size: .84rem; }

.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
  background: var(--surface); color: var(--text); border: var(--border); box-shadow: var(--shadow-1);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { text-decoration: none; border-color: var(--brand); }
.to-top svg { width: 18px; height: 18px; }

/* 8. RESPONSIVE ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: 2; }
  .about, .contact { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: var(--border); border-top: var(--border);
    padding: 12px 22px 20px; box-shadow: var(--shadow-2);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .7rem .6rem; font-size: 1rem; }
  .nav .nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; display: inline-flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 16px 18px; }
  .stat-num { font-size: 1.55rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .compare-cta { flex-direction: column; align-items: flex-start; }
}

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

@media print {
  .site-header, .to-top, .hero-glow, .contact-card { display: none; }
  body { background: #fff; color: #000; }
}

/* No-JS safety: reveal-on-scroll elements stay visible without scripts */
.no-js .reveal { opacity: 1; transform: none; }
