/* ===========================================================================
   Wonder Machinery — site stylesheet
   Blue-dominant industrial palette, light surfaces, no external assets.
   Layout uses CSS logical properties so the Arabic (RTL) build needs no
   separate rules beyond the small RTL block near the end.
   =========================================================================== */

/* ------------------------------------------------------------------ tokens */
:root {
  --blue-950: #041e3d;
  --blue-900: #062b58;
  --blue-800: #0a3e7a;
  --blue-700: #0b4c9b;
  --blue-600: #0e62c8;
  --blue-500: #2079e4;
  --blue-300: #8fbcf1;
  --blue-200: #b8d4f6;
  --blue-100: #e4effc;
  --blue-50: #f1f7fe;

  --ink: #0b1b2b;
  --ink-2: #31465c;
  --muted: #5e7590;
  --line: #dfe8f3;
  --line-2: #eef4fb;
  --bg: #f6f9fd;
  --white: #fff;

  --accent: #f59e0b;
  --accent-soft: #fff5e0;
  --ok: #128a54;
  --ok-soft: #e8f7ef;
  --danger: #c0392b;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 27, 43, 0.06), 0 2px 8px rgba(11, 27, 43, 0.04);
  --shadow: 0 6px 24px rgba(11, 27, 43, 0.08);
  --shadow-lg: 0 18px 48px rgba(6, 43, 88, 0.14);

  --wrap: 1200px;
  --gutter: 20px;
  --header-h: 68px;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    "Noto Sans Thai", "Noto Sans Arabic", "Nirmala UI", sans-serif;
}

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

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

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

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

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-800); }
button { font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

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

.icon {
  flex: none;
  vertical-align: -0.14em;
}

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 200;
  padding: 10px 16px;
  background: var(--blue-800);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { inset-inline-start: 0; color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------------------------------------------------------- utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s, box-shadow .18s, transform .18s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 98, 200, 0.28);
}
.btn--primary:hover {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 98, 200, 0.34);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-200);
}
.btn--ghost:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-800);
}

.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn .icon { font-size: 1.1em; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-600);
}
.link-arrow:hover { color: var(--blue-800); }
.link-arrow .icon { transition: transform .18s; }
.link-arrow:hover .icon { transform: translateX(3px); }
[dir="rtl"] .link-arrow:hover .icon { transform: translateX(-3px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.badge--muted {
  background: var(--blue-100);
  color: var(--blue-700);
}

.blockhead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 20px;
}
.blockhead .icon { color: var(--blue-600); font-size: 1.15em; }
.blockhead--gap { margin-top: 32px; }

.blocklead {
  margin: -6px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.prose {
  margin-bottom: 14px;
  color: var(--ink-2);
}
.prose:last-child { margin-bottom: 0; }

.ticklist li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-2);
}
.ticklist li:last-child { border-bottom: 0; }
.ticklist .icon { color: var(--ok); margin-top: 4px; }

.note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: 14px;
}

.empty {
  padding: 48px 0;
  text-align: center;
  color: var(--muted);
}

/* --------------------------------------------------------------- top bar */
.topbar {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}
.topbar a { color: rgba(255, 255, 255, 0.9); }
.topbar a:hover { color: #fff; }
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}
.topbar__note,
.topbar__mail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__note .icon { color: var(--blue-300); }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* language switcher */
.langsw { position: relative; }
.langsw > summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.langsw > summary::-webkit-details-marker { display: none; }
.langsw > summary:hover { background: rgba(255, 255, 255, 0.1); }
.langsw .icon-caret { font-size: 0.85em; opacity: .8; }
.langsw[open] .icon-caret { transform: rotate(180deg); }

.langsw__panel {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 8px);
  z-index: 60;
  width: 240px;
  max-height: 380px;
  overflow-y: auto;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.langsw__title {
  margin: 4px 8px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.langsw__panel a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.langsw__panel a:hover { background: var(--blue-50); }
.langsw__panel a.is-current { background: var(--blue-100); color: var(--blue-800); font-weight: 600; }
.langsw__native { flex: 1; }
.langsw__label { font-size: 12px; color: var(--muted); }
.langsw__panel a.is-current .langsw__label { color: var(--blue-700); }
.langsw__check { color: var(--blue-600); }

/* ---------------------------------------------------------------- header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__in {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand__mark { width: 40px; height: 40px; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 17px;
}
.brand__text strong { font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.brand__text em {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}
.nav__link {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}
.nav__link:hover { color: var(--blue-700); background: var(--blue-50); }
.nav__link.is-active { color: var(--blue-700); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  inset-inline: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
}
.header__side { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-size: 20px;
  color: var(--ink-2);
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px var(--gutter) 28px;
  background: var(--white);
  overflow-y: auto;
}
.drawer[hidden] { display: none; }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer__title { font-weight: 700; }
.drawer__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-size: 20px;
}
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-2);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.drawer__nav a .icon { color: var(--blue-500); }
.drawer__langtitle {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer__langgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.drawer__langgrid a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-2);
}
.drawer__langgrid a.is-current {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--blue-800);
  font-weight: 600;
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  padding: 66px 0 72px;
  background:
    radial-gradient(1100px 460px at 78% -12%, var(--blue-100) 0%, rgba(228, 239, 252, 0) 62%),
    linear-gradient(180deg, var(--blue-50) 0%, #fff 74%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 98, 200, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 98, 200, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 78%);
  pointer-events: none;
}
.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero__badge .icon { color: var(--accent); }
.hero__title {
  font-size: clamp(30px, 4.1vw, 52px);
  letter-spacing: -0.025em;
}
.hero__title em {
  display: block;
  font-style: normal;
  color: var(--blue-600);
}
.hero__lead {
  max-width: 60ch;
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-2);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 18px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.02em;
}
.hero__stats span { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* hero art panel */
.hud {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hud__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid var(--line-2);
}
.hud__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-200);
}
.hud__dot:first-child { background: var(--blue-500); }
.hud__title {
  margin-inline-start: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hud__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.hud__tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 118px;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blue-50), #fff);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.hud__tile:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.hud__icon { font-size: 34px; color: var(--blue-600); }
.hud__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-2);
}
.hud__chip {
  position: absolute;
  inset-inline-start: -14px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-800);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.hud__chip .icon { color: #7ef0b4; }

/* ---------------------------------------------------------------- sections */
.section { padding: 74px 0; }
.section--alt { background: var(--bg); }
.section--cats { padding-top: 8px; }
.section__more { margin-top: 34px; text-align: center; }

.section-head { max-width: 74ch; margin-bottom: 38px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__title {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
}
.section-head__lead {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
}
.section-head__rule {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  border-radius: 3px;
  background: var(--blue-600);
}
.section-head--center .section-head__rule { margin-inline: auto; }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

/* category cards */
.cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.catcard {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--blue-800), var(--blue-600));
  color: #fff;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.catcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }
.catcard--alt { background: linear-gradient(150deg, var(--blue-950), var(--blue-800)); }
.catcard::after {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 26px solid rgba(255, 255, 255, 0.07);
}
.catcard__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 26px;
  color: #fff;
}
.catcard__count {
  position: absolute;
  inset-inline-end: 28px;
  top: 26px;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: -0.04em;
}
.catcard h3 { font-size: 21px; color: #fff; }
.catcard p { max-width: 46ch; color: rgba(255, 255, 255, 0.82); font-size: 15px; }
.catcard .link-arrow { color: #fff; }

/* tabs */
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--blue-50);
  border: 1px solid var(--line);
}
.tab {
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
}
.tab:hover { color: var(--blue-700); }
.tab.is-active {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

/* ------------------------------------------------------------ visual block */
.visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--blue-50), var(--white) 70%);
  color: var(--blue-500);
  overflow: hidden;
}
.visual--news { aspect-ratio: 16 / 9; color: var(--blue-500); }
.visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.visual__glyph {
  position: relative;
  font-size: clamp(58px, 9vw, 96px);
  color: var(--blue-600);
}
.visual--news .visual__glyph { font-size: clamp(48px, 7vw, 76px); }
.visual[data-cat="consumables"] .visual__glyph { color: var(--blue-800); }
.visual__model {
  position: absolute;
  inset-inline-start: 16px;
  top: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--blue-700);
}
.visual__rule {
  position: absolute;
  inset-inline: 16px;
  bottom: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-300), transparent);
}

/* ------------------------------------------------------------ product grid */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pgrid__empty { padding: 40px 0; text-align: center; color: var(--muted); }

.pcard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pcard:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pcard[hidden] { display: none; }
.pcard__media { display: block; }
.pcard__media .visual { border-radius: 0; }
.pcard__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 20px 20px 22px;
}
.pcard__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.pcard__title { font-size: 18px; line-height: 1.3; }
.pcard__title a { color: var(--ink); }
.pcard__title a:hover { color: var(--blue-700); }
.pcard__tag { font-size: 14px; color: var(--muted); }
.pcard__feat { display: grid; gap: 6px; margin-top: 2px; }
.pcard__feat li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.pcard__feat .icon { color: var(--ok); margin-top: 3px; }
.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

/* ------------------------------------------------------------- advantages */
.advgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.adv {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.adv__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  font-size: 22px;
  color: var(--blue-600);
}
.adv h3 { font-size: 17px; margin-bottom: 8px; }
.adv p { font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------- markets */
.markets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.market {
  position: relative;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--blue-500);
}
.section--alt .market { background: var(--white); }
.market__num {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--blue-300);
}
.market h3 { font-size: 16px; margin-bottom: 6px; }
.market p { font-size: 13.5px; color: var(--muted); }

/* ------------------------------------------------------------------- news */
.ngrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ncard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ncard:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ncard__media { display: block; }
.ncard__media .visual { border-radius: 0; }
.ncard__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 20px;
}
.ncard__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.ncard__title { font-size: 18px; line-height: 1.35; }
.ncard__title a { color: var(--ink); }
.ncard__title a:hover { color: var(--blue-700); }
.ncard__teaser { font-size: 14px; color: var(--muted); }
.ncard__body .link-arrow { margin-top: auto; }

/* -------------------------------------------------------------- CTA band */
.band {
  padding: 60px 0;
  background:
    radial-gradient(700px 260px at 88% 10%, rgba(32, 121, 228, 0.5), transparent 70%),
    linear-gradient(120deg, var(--blue-900), var(--blue-700));
  color: #fff;
}
.band__in {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 40px;
  align-items: center;
}
.band h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: #fff;
}
.band p { margin-top: 14px; color: rgba(255, 255, 255, 0.82); }
.band__side { display: grid; justify-items: start; gap: 12px; }
.band .btn--primary {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: 0 6px 22px rgba(4, 30, 61, 0.28);
}
.band .btn--primary:hover { background: var(--blue-50); color: var(--blue-900); }
.band__alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
}
.band__alt a { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.band__mails {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.band__mails a { color: rgba(255, 255, 255, 0.7); }
.band__mails a:hover { color: #fff; }

/* ----------------------------------------------------------------- footer */
.footer {
  padding-top: 62px;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer .brand__text strong { color: #fff; }
.footer .brand__text em { color: var(--blue-300); }
.brand--footer { margin-bottom: 16px; }
.footer__tagline { max-width: 34ch; color: rgba(255, 255, 255, 0.6); }
.footer__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
}
.footer__h {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.footer__h--gap { margin-top: 26px; }
.footer__links { display: grid; gap: 9px; }
.footer__links--inline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer__links a { color: rgba(255, 255, 255, 0.66); }
.footer__links a:hover { color: #fff; }
.footer__mails { display: grid; gap: 9px; margin-bottom: 14px; }
.footer__mails a,
.footer__phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  word-break: break-all;
}
.footer__mails .icon { color: var(--blue-300); flex: none; }
.footer__phone { margin-bottom: 12px; }
.footer__resp {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
}
.footer__resp .icon { color: #7ef0b4; }
.footer__langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__langlabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.footer__langlist { display: flex; flex-wrap: wrap; gap: 6px; }
.footer__langlist a {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.footer__langlist a:hover { border-color: var(--blue-300); color: #fff; }
.footer__langlist a.is-current {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue-300);
  color: #fff;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__disc { max-width: 62ch; }

/* mobile bar */
.mobilebar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(11, 27, 43, 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobilebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px;
  border: 0;
  background: transparent;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
}
.mobilebar__item .icon { font-size: 20px; color: var(--blue-600); }
.mobilebar__item--primary {
  background: var(--blue-600);
  color: #fff;
}
.mobilebar__item--primary .icon { color: #fff; }

/* ------------------------------------------------------------ breadcrumbs */
.crumbs {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.crumbs li { display: inline-flex; align-items: center; gap: 4px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue-700); }
.crumbs__sep { font-size: 0.85em; color: var(--blue-300); }
[dir="rtl"] .crumbs__sep { transform: scaleX(-1); }

/* -------------------------------------------------------------- page head */
.page-head {
  padding: 34px 0 46px;
  background: linear-gradient(180deg, var(--blue-50), #fff);
  border-bottom: 1px solid var(--line-2);
}
.page-head h1 {
  font-size: clamp(27px, 3.2vw, 40px);
}
.page-head__lead {
  max-width: 76ch;
  margin-top: 16px;
  font-size: 16.5px;
  color: var(--ink-2);
}
.section--list { padding-top: 56px; }

/* --------------------------------------------------------- product detail */
.pdp__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 44px;
  align-items: start;
  padding-top: 30px;
}
.pdp__media .visual {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}
.pdp__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pdp__cat a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); }
.pdp__intro h1 {
  font-size: clamp(26px, 3.1vw, 38px);
  letter-spacing: -0.02em;
}
.pdp__tag {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-2);
}
.pdp__feat {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pdp__feat li { display: flex; gap: 10px; color: var(--ink-2); }
.pdp__feat .icon { color: var(--ok); margin-top: 4px; }
.pdp__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.pdp__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--muted);
}
.pdp__trust li { display: inline-flex; align-items: center; gap: 8px; }
.pdp__trust .icon { color: var(--blue-500); }

.pdp__blocks {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  margin-top: 56px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}
.spec { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec__row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
}
.spec__row:last-child { border-bottom: 0; }
.spec__row:nth-child(odd) { background: var(--blue-50); }
.spec dt { color: var(--muted); font-weight: 600; }
.spec dd { margin: 0; color: var(--ink); }

.pdp__askbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--blue-50), var(--white));
  border: 1px solid var(--blue-100);
}
.pdp__askbar h2 { font-size: 21px; }
.pdp__askbar p { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* ---------------------------------------------------------------- article */
.article { padding: 26px 0 0; }
.article__wrap { max-width: 820px; }
.article__head h1 {
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.02em;
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--muted);
}
.article__meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-300);
}
.article__teaser {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-2);
}
.article__media {
  margin: 30px 0 34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.article__body { font-size: 16.5px; }
.article__foot { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }

.prose h2 {
  margin: 34px 0 12px;
  font-size: 22px;
}
.prose h3 { margin: 26px 0 10px; font-size: 18px; }
.prose p { margin-bottom: 16px; color: var(--ink-2); }
.prose ul,
.prose ol { margin: 0 0 18px; padding-inline-start: 22px; list-style: disc; }
.prose li { margin-bottom: 8px; color: var(--ink-2); }
.prose strong { color: var(--ink); }
.prose a { border-bottom: 1px solid var(--blue-200); }
.prose blockquote {
  margin: 20px 0;
  padding: 4px 18px;
  border-inline-start: 3px solid var(--blue-300);
  color: var(--muted);
}
.prose code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--blue-50);
  font-size: 0.92em;
}
.prose table {
  width: 100%;
  margin: 0 0 20px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.prose th,
.prose td {
  padding: 10px 14px;
  border: 1px solid var(--line);
  text-align: start;
}
.prose th { background: var(--blue-50); font-weight: 700; }
.prose img { border-radius: var(--radius); }

/* ------------------------------------------------------------------ about */
.about__story {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.68fr);
  gap: 44px;
  align-items: start;
}
.about__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blue-50), #fff);
  border: 1px solid var(--line);
}
.fact strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.02em;
}
.fact span { font-size: 13px; color: var(--muted); line-height: 1.4; }

.about__work {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: start;
}
.caps { display: grid; gap: 14px; }
.caps li {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.caps__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 20px;
}
.caps h3 { font-size: 16px; margin-bottom: 4px; }
.caps p { font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------- contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 40px;
  align-items: start;
}
.contact__side { display: grid; gap: 16px; }
.sidecard {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.sidecard--accent {
  background: linear-gradient(150deg, var(--blue-800), var(--blue-600));
  border-color: transparent;
  color: rgba(255, 255, 255, 0.86);
}
.sidecard--accent .blockhead { color: #fff; }
.sidecard--accent .blockhead .icon { color: rgba(255, 255, 255, 0.8); }
.sidecard__big { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.sidecard__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}
.sidecard__mails { display: grid; gap: 8px; margin-bottom: 14px; }
.sidecard__mails a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}
.sidecard__mails a:hover { background: var(--blue-100); }
.sidecard__name { font-weight: 700; color: var(--blue-800); font-size: 14px; }
.sidecard__addr { font-size: 13px; color: var(--muted); word-break: break-all; }
.sidecard__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.sidecard__tags li {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  font-size: 13px;
  color: var(--blue-800);
}

/* ------------------------------------------------------------------- form */
.form { display: grid; gap: 16px; }
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.field .req { color: var(--danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 16px; /* 16px keeps iOS Safari from zooming the whole page */
  transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(32, 121, 228, 0.16);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aabc0; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--danger); }
.field__err { font-size: 12.5px; color: var(--danger); min-height: 0; }
.form__hp {
  position: absolute;
  inset-inline-start: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__actions { margin-top: 4px; }
.form__actions .btn { width: 100%; }
.form__privacy,
.form__alt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.form__alt a { display: inline-flex; align-items: center; gap: 7px; }
.form__result { border-radius: var(--radius); padding: 18px; font-size: 14.5px; }
.form__result[hidden] { display: none; }
.form__result.is-ok {
  background: var(--ok-soft);
  border: 1px solid #bfe6d2;
  color: #0c5f3b;
}
.form__result.is-err {
  background: #fdecea;
  border: 1px solid #f5c6c1;
  color: #8f2b20;
}
.form__result strong { display: block; margin-bottom: 4px; font-size: 15.5px; }
.form__result a { text-decoration: underline; }

/* -------------------------------------------------------------------- faq */
.faq { display: grid; gap: 10px; max-width: 900px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq__item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item[open] > summary { color: var(--blue-700); }
.faq__icon { color: var(--blue-500); transition: transform .2s; }
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__body { padding: 0 20px 18px; }
.faq__body p { color: var(--muted); font-size: 15px; }

/* ------------------------------------------------------------------- 404 */
.notfound { padding: 80px 0 90px; text-align: center; }
.notfound__code {
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--blue-100);
}
.notfound h1 { margin-top: 6px; font-size: clamp(24px, 3vw, 34px); }
.notfound__lead { margin: 14px auto 0; max-width: 52ch; color: var(--muted); }
.notfound__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.notfound__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}
.notfound__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-2);
}
.notfound__links a:hover { border-color: var(--blue-300); color: var(--blue-700); }
.notfound__links .icon { color: var(--blue-500); }

/* ----------------------------------------------------------------- modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 30, 61, 0.55);
  backdrop-filter: blur(3px);
}
.modal__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  animation: modal-in .22s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  inset-inline-end: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  color: var(--ink-2);
}
.modal__close:hover { background: var(--blue-50); color: var(--blue-700); }
.modal__head { margin-bottom: 22px; padding-inline-end: 46px; }
.modal__head h2 { font-size: 22px; }
.modal__head p { margin-top: 8px; font-size: 14px; color: var(--muted); }
body.modal-open { overflow: hidden; }

/* ----------------------------------------------------------------- toast */
.toast-stack {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  z-index: 200;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 36px));
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--blue-900);
  color: #fff;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  animation: toast-in .2s ease-out;
  overflow-wrap: anywhere;
}
.toast--ok { background: #0d6a44; }
.toast--err { background: #8f2b20; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- to top */
.to-top {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 24px;
  z-index: 80;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-600);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.to-top[hidden] { display: none; }
.to-top:hover { background: var(--blue-50); }

/* ------------------------------------------------------------ breakpoints */
@media (max-width: 1080px) {
  .pgrid,
  .advgrid,
  .ngrid,
  .markets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__in { gap: 36px; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; }
}

@media (max-width: 900px) {
  .nav,
  .header__side .btn { display: none; }
  .burger { display: inline-flex; }
  .header__side { margin-inline-start: auto; }

  .hero { padding: 44px 0 56px; }
  .hero__in,
  .pdp__top,
  .pdp__blocks,
  .about__story,
  .about__work,
  .contact,
  .band__in {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero__art { order: -1; }
  .hud__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 54px 0; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .pdp__blocks { gap: 34px; }
  .band__in { gap: 26px; }
  .section--cats { padding-top: 0; }
}

@media (max-width: 720px) {
  .pgrid,
  .advgrid,
  .ngrid,
  .markets,
  .cats {
    grid-template-columns: minmax(0, 1fr);
  }
  .pdp__askbar { padding: 24px; }
  .modal__panel { padding: 24px 20px; }
  .mobilebar { display: grid; }
  body { padding-bottom: 64px; }
  .to-top { bottom: 78px; }
  .toast-stack { bottom: 78px; }
  .topbar__note { display: none; }
  .footer__bottom { padding-bottom: 34px; }
}

@media (max-width: 520px) {
  :root { --gutter: 16px; }
  .form__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .hud__chip { inset-inline-start: 0; }
  .spec__row { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .spec dt { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; }
  .article__wrap { padding-inline: var(--gutter); }
  .btn--lg { padding: 13px 20px; font-size: 15px; }
}

/* -------------------------------------------------------------------- RTL */
[dir="rtl"] .visual__rule { background: linear-gradient(270deg, var(--blue-300), transparent); }
[dir="rtl"] .faq__icon,
[dir="rtl"] .icon-caret { /* chevrons point the other way */ }
[dir="rtl"] .hero__title { letter-spacing: 0; }
[dir="rtl"] .brand__text em { letter-spacing: .06em; }
[dir="rtl"] body { line-height: 1.8; }

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

/* ------------------------------------------------------------------ print */
@media print {
  .topbar,
  .header,
  .footer,
  .mobilebar,
  .to-top,
  .toast-stack,
  .modal,
  .band,
  .pdp__askbar,
  .form { display: none !important; }
  body { padding-bottom: 0; color: #000; }
  a { color: #000; }
  .visual { background: none; border: 1px solid #ccc; }
}
