/* =========================================================
   D-Lock — styles.css
   Dark, technical theme with the blue of the illuminated keypad
   as the accent colour.
   ========================================================= */

:root {
  /* Base palette */
  --bg:        #080b11;
  --bg-2:      #0c1017;
  --surface:   #11161f;
  --surface-2: #161d28;
  --border:    #212a38;
  --border-2:  #2f3a4b;

  --text:      #e9edf4;
  --muted:     #9aa5b6;
  --muted-2:   #6b7688;

  /* Accent — keypad blue */
  --accent:      #3d7bff;
  --accent-2:    #7aa9ff;
  --accent-deep: #1f4fd0;
  --accent-soft: rgba(61, 123, 255, .13);

  /* Signal colours */
  --ok:      #35d39a;
  --ok-soft: rgba(53, 211, 154, .13);
  --gold:    #e3b23c;

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1160px;

  --shadow:    0 24px 64px -24px rgba(0, 0, 0, .75);
  --font:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: var(--text); font-weight: 600; }

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

.text-accent { color: var(--accent-2); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #06101f; padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .72rem 1.3rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: .95rem 1.75rem; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #05101f;
  box-shadow: 0 10px 28px -10px rgba(61, 123, 255, .65);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(61, 123, 255, .8); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8, 11, 17, .7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(8, 11, 17, .94); border-bottom-color: var(--border); }

.header__inner { display: flex; align-items: center; gap: 22px; height: 70px; }

.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand img { width: 32px; height: 32px; }
.brand__name {
  font-weight: 800; font-size: 1.22rem; letter-spacing: -.01em; line-height: 1;
}
.brand__name span { color: var(--accent-2); }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-size: .93rem; color: var(--muted); font-weight: 500;
  white-space: nowrap; position: relative; transition: color .2s ease;
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

/* Language switcher */
.lang {
  display: inline-flex; gap: 2px; padding: 3px;
  border-radius: 999px; border: 1px solid var(--border-2); background: var(--surface);
}
.lang--block { margin-top: 14px; align-self: flex-start; }
.lang__btn {
  font-family: var(--mono); font-size: .73rem; font-weight: 600; letter-spacing: .02em;
  color: var(--muted); background: none; border: 0; cursor: pointer;
  padding: .3rem .6rem; border-radius: 999px; transition: color .2s ease, background .2s ease;
}
.lang__btn:hover:not(.is-active) { color: var(--text); }
.lang__btn.is-active { background: var(--accent); color: #05101f; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 8px 24px 20px;
  background: rgba(8, 11, 17, .985);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; color: var(--muted); border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-nav a.btn { margin-top: 14px; border-bottom: 0; color: #05101f; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 132px 0 84px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -25%; right: -12%; width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(61, 123, 255, .2), transparent 62%);
  filter: blur(24px); pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}

.kicker {
  display: inline-block;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-2);
  padding: .32rem .75rem; margin-bottom: 1.1rem;
  border: 1px solid var(--accent-soft); border-radius: 999px; background: var(--accent-soft);
}

.hero__title {
  font-size: clamp(2.1rem, 4.7vw, 3.5rem);
  line-height: 1.07; font-weight: 800; letter-spacing: -.025em;
  margin-bottom: 1.25rem;
}
.hero__lead { font-size: 1.14rem; color: var(--muted); max-width: 570px; margin-bottom: 1.8rem; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2rem; }

.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 26px; }
.hero__badges li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); flex: 0 0 8px; }

/* Hero image with floating status card */
.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}

.status-card {
  position: absolute; left: -26px; bottom: -26px;
  width: min(310px, 86%);
  background: rgba(17, 22, 31, .9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.status-card__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
}
.status-card__code {
  font-family: var(--mono); font-size: 1.3rem; font-weight: 700; letter-spacing: .1em;
  color: var(--text); white-space: nowrap;
}
.status-card__badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  color: var(--ok); background: var(--ok-soft); border-radius: 999px; padding: .22rem .55rem;
  white-space: nowrap;
}
.status-card__meta { margin-top: 8px; font-size: .82rem; color: var(--muted-2); font-family: var(--mono); }

/* ---------- Value bar ---------- */
.valuebar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.valuebar__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.valuebar__item { background: var(--bg-2); padding: 30px 26px; }
.valuebar__item h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.valuebar__item p { color: var(--muted); font-size: .93rem; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.022em; margin-bottom: .8rem; }
.section__sub { color: var(--muted); font-size: 1.06rem; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-2);
  margin-bottom: 18px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.14rem; margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* ---------- Partner band (Golftimer) ---------- */
.partner {
  position: relative; overflow: hidden;
  padding: 92px 0;
  background: linear-gradient(160deg, rgba(61, 123, 255, .1), var(--bg) 58%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.partner__glow {
  position: absolute; top: -32%; left: -12%; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(61, 123, 255, .2), transparent 62%);
  filter: blur(24px); pointer-events: none;
}
.partner__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
}
.partner__text .section__title { text-align: left; margin-bottom: 1rem; }
.partner__text > p { color: var(--muted); font-size: 1.04rem; margin-bottom: 1rem; }
.partner__note {
  border-left: 3px solid var(--accent);
  padding: 2px 0 2px 16px;
  font-size: .98rem;
}
.partner__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.7rem; }

.flow { list-style: none; display: grid; gap: 14px; }
.flow__step {
  position: relative;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.flow__step + .flow__step::before {
  content: ""; position: absolute; left: 35px; top: -15px;
  width: 2px; height: 15px; background: var(--border-2);
}
.flow__num {
  width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #05101f;
  font-family: var(--mono); font-weight: 800; font-size: .85rem;
}
.flow__step h3 { font-size: 1rem; margin-bottom: .2rem; }
.flow__step p { color: var(--muted); font-size: .9rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery__item { margin: 0; }
.gallery__item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.gallery__item:hover img {
  transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow);
}
.gallery__item figcaption {
  margin-top: 12px; color: var(--muted-2); font-size: .86rem; line-height: 1.5;
}

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step__num {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #05101f;
  font-weight: 800; font-family: var(--mono); font-size: .95rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.06rem; margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Split (text + media) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split--wide-media { grid-template-columns: .9fr 1.1fr; }
.split__text .section__title { text-align: left; }
.split__text > p { color: var(--muted); font-size: 1.03rem; margin-bottom: 1rem; }
.split__media img { border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.split__media--light img { background: #fff; }

/* ---------- Check list ---------- */
.checklist { list-style: none; display: grid; gap: 12px; margin: 1.4rem 0; }
.checklist li { display: flex; gap: .7rem; color: var(--muted); font-size: .98rem; }
.checklist svg { width: 19px; height: 19px; flex: 0 0 19px; margin-top: .28rem; color: var(--ok); }

/* ---------- Spec list ---------- */
.specs {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
}
.specs__row {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.specs__row:last-child { border-bottom: 0; }
.specs__row dt { color: var(--muted-2); font-family: var(--mono); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; padding-top: .12rem; }
.specs__row dd { color: var(--muted); }

/* ---------- Modules ---------- */
.module {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.module:hover { border-color: var(--border-2); transform: translateY(-3px); }
.module__icon {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-2);
}
.module__icon svg { width: 19px; height: 19px; }
.module h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.module p { color: var(--muted); font-size: .91rem; }

/* ---------- Product row (compatible hardware) ---------- */
.product {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column;
}
.product__media {
  height: 130px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.product__media img { max-height: 130px; width: auto; }
.product__tag {
  align-self: flex-start;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent-2); background: var(--accent-soft); padding: .24rem .6rem; border-radius: 6px; margin-bottom: 12px;
}
.product h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.product p { color: var(--muted); font-size: .94rem; }
.product__badge {
  display: flex; align-items: center; gap: .5rem;
  margin-top: 16px; font-size: .86rem; font-weight: 600; color: var(--ok);
}
.product__badge svg { width: 17px; height: 17px; flex: 0 0 17px; }

/* ---------- Price ---------- */
.price-note {
  margin-top: 32px; padding: 26px 28px;
  border: 1px dashed var(--border-2); border-radius: var(--radius);
  background: var(--surface); text-align: center;
}
.price-note p { color: var(--muted); font-size: 1rem; max-width: 660px; margin: 0 auto 1.2rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .2s ease;
}
.faq__item[open] { border-color: var(--border-2); }
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 18px 52px 18px 22px; position: relative;
  font-weight: 600; font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 2px solid var(--accent-2); border-bottom: 2px solid var(--accent-2);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__item summary:hover { color: var(--accent-2); }
.faq__answer { padding: 0 22px 20px; color: var(--muted); font-size: .96rem; }
.faq__answer p + p { margin-top: .7rem; }
.faq__answer a { color: var(--accent-2); }

/* ---------- Downloads ---------- */
.downloads { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.download {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.download:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.download__icon {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-2);
}
.download__icon svg { width: 21px; height: 21px; }
.download h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.download p { color: var(--muted); font-size: .89rem; }
.download__meta { display: block; margin-top: .5rem; font-family: var(--mono); font-size: .76rem; color: var(--muted-2); }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 96px 0; text-align: center; overflow: hidden; border-top: 1px solid var(--border); }
.cta__glow {
  position: absolute; inset: 0; margin: auto; width: 660px; height: 340px;
  background: radial-gradient(ellipse, rgba(61, 123, 255, .18), transparent 70%);
  filter: blur(12px); pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 760px; }
.cta__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.022em; margin-bottom: 1rem; }
.cta__sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__hint { margin-top: 1.8rem; font-size: .9rem; color: var(--muted-2); }
.cta__hint a { color: var(--accent-2); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 58px 0 26px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 320px; }
.footer__col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; color: var(--muted); font-size: .94rem; padding: 4px 0; }
.footer__col a { transition: color .2s ease; }
.footer__col a:hover { color: var(--accent-2); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--border);
  color: var(--muted-2); font-size: .87rem;
}
.footer__by a { color: var(--gold); }
.footer__by a:hover { text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal { padding: 126px 0 78px; }
.legal__inner { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: 2.1rem; margin-bottom: 1.4rem; letter-spacing: -.02em; }
.legal h2 { font-size: 1.26rem; margin: 2rem 0 .7rem; }
.legal h3 { font-size: 1.03rem; margin: 1.4rem 0 .45rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: .75rem; }
.legal ul { padding-left: 1.3rem; }
.legal a { color: var(--accent-2); }
.legal .back { display: inline-block; margin-bottom: 1.8rem; font-family: var(--mono); font-size: .88rem; color: var(--accent-2); }

/* Sub page hero (FAQ) */
.page-head { padding: 128px 0 12px; }
.page-head__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -.022em; margin-bottom: .8rem; }
.page-head p { color: var(--muted); font-size: 1.06rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { order: -1; max-width: 420px; }
  .status-card { left: auto; right: -14px; bottom: -20px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .downloads { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide-media, .partner__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Collapse the header navigation before it gets cramped */
@media (max-width: 900px) {
  .nav, .nav__cta, .nav__lang { display: none; }
  .nav-toggle { display: flex; }
}

/* Legal pages carry brand + language switch + back link in one row —
   on narrow screens that has to wrap instead of being clipped. */
@media (max-width: 560px) {
  .header__inner { flex-wrap: wrap; height: auto; min-height: 70px; gap: 12px; padding-top: 12px; padding-bottom: 12px; }
  .header__inner .btn { margin-left: 0; }
  .legal { padding-top: 156px; }
  .page-head { padding-top: 118px; }
}

@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .downloads { grid-template-columns: 1fr; }
  .valuebar__inner { grid-template-columns: 1fr; }
  .specs__row { grid-template-columns: 1fr; gap: 4px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item img { aspect-ratio: 4 / 3; }
  .hero { padding-top: 112px; }
  .section, .partner { padding: 68px 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .status-card { position: static; width: 100%; margin-top: 14px; }
}

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

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-nav, .hero__glow, .cta__glow, .nav-toggle, .lang { display: none; }
  .reveal { opacity: 1; transform: none; }
  body { background: #fff; color: #000; }
}
