/* Alrowad Factory — Arabic/RTL, light theme.
   Direction set by the category audit (VEKA, Aluprof): light surfaces, one
   saturated accent, and the letter-spacing discipline neither competitor uses.
   No photography anywhere — profile sections are drawn, finishes are CSS. */

:root {
  --slate:        #3e4d63;
  --slate-deep:   #2c374a;
  /* 5.16:1 on white, 4.73:1 on the tinted band — the old #6b7a90 was 4.36 and
     missed AA for body copy on both */
  --slate-mute:   #616e83;
  --magenta:      #d92770;
  --magenta-deep: #bd1459;

  --surface:      #ffffff;
  --surface-sub:  #f4f5f7;
  --surface-alu:  #e7eaee;
  --line:         #dde1e7;
  --ink:          #1e252f;

  --nav-bg:       rgba(255,255,255,.86);
  --nav-bg-solid: rgba(255,255,255,.94);
  --shadow:       rgba(30,37,47,.4);

  --contact-bg:   #2c374a;
  --foot-bg:      #1e252f;
  --foot-text:    #98a3b3;

  /* section-drawing tokens — the profile drawings must re-colour with the
     theme or they read as pasted-in white boxes */
  --dw-line:       #3e4d63;
  --dw-body:       #ffffff;
  --dw-web:        #93a0b1;
  --dw-glass:      #d5dbde;
  --dw-glass-line: #9fadb7;
  --dw-label:      #6b7a90;
  --dw-leader:     #b7c0cc;
  --dw-sheen:      #ffffff;

  --track-display: -0.02em;
  --track-body:    -0.01em;

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 12px;
}

/* Dark palette. Applied when the visitor chose dark, or when they have no
   stored choice and the OS asks for it. */
:root[data-theme="dark"],
:root:not([data-theme="light"]) {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;

    --slate:        #a9b8cc;
    --slate-deep:   #0d1218;
    --slate-mute:   #7d8b9e;
    --magenta:      #ef4b8b;
    --magenta-deep: #d92770;

    --surface:      #11151b;
    --surface-sub:  #161b23;
    --surface-alu:  #212936;
    --line:         #29323f;
    --ink:          #e9edf3;

    --nav-bg:       rgba(17,21,27,.84);
    --nav-bg-solid: rgba(17,21,27,.95);
    --shadow:       rgba(0,0,0,.7);

    --contact-bg:   #0d1218;
    --foot-bg:      #0a0e13;
    --foot-text:    #7d8b9e;

    --dw-line:       #94a9c6;
    --dw-body:       #1a212a;
    --dw-web:        #4d5a6d;
    --dw-glass:      #2b3844;
    --dw-glass-line: #4a6070;
    --dw-label:      #8b98ab;
    --dw-leader:     #3f4a59;
    --dw-sheen:      #cfe4ff;
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --slate:        #a9b8cc;
  --slate-deep:   #0d1218;
  --slate-mute:   #7d8b9e;
  --magenta:      #ef4b8b;
  --magenta-deep: #d92770;

  --surface:      #11151b;
  --surface-sub:  #161b23;
  --surface-alu:  #212936;
  --line:         #29323f;
  --ink:          #e9edf3;

  --nav-bg:       rgba(17,21,27,.84);
  --nav-bg-solid: rgba(17,21,27,.95);
  --shadow:       rgba(0,0,0,.7);

  --contact-bg:   #0d1218;
  --foot-bg:      #0a0e13;
  --foot-text:    #7d8b9e;

  --dw-line:       #94a9c6;
  --dw-body:       #1a212a;
  --dw-web:        #4d5a6d;
  --dw-glass:      #2b3844;
  --dw-glass-line: #4a6070;
  --dw-label:      #8b98ab;
  --dw-leader:     #3f4a59;
  --dw-sheen:      #cfe4ff;
}

/* theme swap should feel like a dimmer, not a flash */
body, .nav, .sys, .finish, .table-scroll, .foot, .contact, input, select, textarea {
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: var(--track-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { letter-spacing: var(--track-display); line-height: 1.2; margin: 0; font-weight: 600; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin-bottom: 14px;
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--slate-mute); font-size: 17px; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--pad);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* mark only — the wordmark lives in the hero, not the header */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; display: block; transition: transform .2s; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; gap: 26px; margin-inline-start: auto; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding-block: 6px;
  transition: color .16s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--track-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  font-family: inherit;
}
.btn-primary { background: var(--magenta); color: #fff; }
.btn-primary:hover { background: var(--magenta-deep); }
.btn-ghost { border-color: var(--line); color: var(--slate); background: transparent; }
.btn-ghost:hover { border-color: var(--slate); color: var(--ink); }

/* ---------- theme switch ---------- */

.theme-switch {
  position: relative;
  flex: none;
  width: 74px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alu);
  cursor: pointer;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.theme-switch:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }

.ts-text {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 13px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--slate-mute);
  transition: color .3s;
}
.ts-text::after { content: 'OFF'; }

.ts-knob {
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.28);
  transition: inset-inline-start .34s cubic-bezier(.5,.15,.3,1.25), background .3s;
}

.ts-sun, .ts-moon {
  grid-area: 1 / 1;
  width: 15px;
  height: 15px;
  transition: opacity .24s, transform .38s cubic-bezier(.5,.15,.3,1.25);
}
.ts-sun { fill: #e8a317; stroke: #e8a317; }
.ts-moon { fill: #16202e; opacity: 0; transform: rotate(-70deg) scale(.5); }

/* checked = dark mode: blue-lit track, knob travels, moon takes over */
.theme-switch[aria-checked="true"] {
  background: #0b1220;
  border-color: rgba(37,99,235,.42);
  /* wide and faint rather than a tight ring — the hard 1px outline was the
     harsh part, so it is gone and the bloom carries the glow instead */
  box-shadow: 0 0 10px rgba(37,99,235,.16), 0 0 22px rgba(37,99,235,.09);
}
.theme-switch[aria-checked="true"] .ts-knob { inset-inline-start: 45px; }
.theme-switch[aria-checked="true"] .ts-text {
  inset-inline-end: auto;
  inset-inline-start: 13px;
  color: #ffffff;
}
.theme-switch[aria-checked="true"] .ts-text::after { content: 'ON'; }
.theme-switch[aria-checked="true"] .ts-sun { opacity: 0; transform: rotate(70deg) scale(.5); }
.theme-switch[aria-checked="true"] .ts-moon { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .ts-knob, .ts-sun, .ts-moon { transition: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-inline-start: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--slate); margin: 4px 0; transition: transform .2s, opacity .2s; }

/* ---------- hero ---------- */

.hero {
  background:
    radial-gradient(1000px 480px at 88% -12%, rgba(217,39,112,.07), transparent 62%),
    linear-gradient(180deg, var(--surface-sub), var(--surface));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-in {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero h1 { margin-bottom: 24px; }

/* the short name carries the display weight; the full legal name sits under it
   at body-adjacent size so the whole thing stays readable at 375px */
.hero-name {
  display: block;
  font-size: clamp(40px, 7.2vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}
.hero-full {
  display: block;
  margin-top: 14px;
  font-size: clamp(16px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: var(--track-body);
  color: var(--slate);
  max-width: 22ch;
}
.hero-full::before {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  background: var(--magenta);
  margin-bottom: 16px;
  border-radius: 2px;
}

.hero-lead { font-size: clamp(15.5px, 1.8vw, 18px); color: var(--slate-mute); max-width: 50ch; margin-bottom: 26px; }

.hero-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
  max-width: 520px;
}
.hero-points li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.hero-points li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- stats ---------- */

.stats { border-bottom: 1px solid var(--line); background: var(--surface); }
.stats-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}
.stat { background: var(--surface); padding: 30px 26px; }
.stat b {
  display: block;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: var(--track-display);
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.stat b i { font-style: normal; font-size: .5em; font-weight: 600; color: var(--slate-mute); margin-inline-start: 4px; }
.stat span { display: block; font-size: 13px; color: var(--slate-mute); margin-top: 6px; }

/* ---------- systems ---------- */

.systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sys {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sys:hover {
  border-color: var(--slate-mute);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px var(--shadow);
}
.sys-fig {
  background: var(--surface-sub);
  border-bottom: 1px solid var(--line);
  padding: 26px 20px;
  display: grid;
  place-items: center;
}
.sys-fig svg { width: 100%; height: auto; max-width: 230px; }
.sys-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.sys-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-alu);
  color: var(--slate);
  margin-bottom: 12px;
}
.sys-tag.alu { background: rgba(217,39,112,.1); color: var(--magenta-deep); }
.sys h3 { font-size: 19px; margin-bottom: 8px; }
.sys > .sys-body > p { font-size: 14px; color: var(--slate-mute); margin-bottom: 18px; }
.sys dl { margin: auto 0 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.sys dl > div { display: flex; justify-content: space-between; gap: 10px; background: var(--surface); padding: 9px 13px; }
.sys dt { font-size: 13px; color: var(--slate-mute); }
.sys dd { margin: 0; font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------- spec table ---------- */

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 14px 18px; text-align: start; border-bottom: 1px solid var(--line); font-size: 14px; }
thead th {
  background: var(--surface-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--slate-mute);
  white-space: nowrap;
}
tbody th { font-weight: 500; color: var(--slate); }
td { font-variant-numeric: tabular-nums; font-weight: 500; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover th, tbody tr:hover td { background: var(--surface-sub); }
.best { color: var(--magenta-deep); font-weight: 700; }

/* ---------- finishes ---------- */

.finish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.finish { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.finish i { display: block; height: 88px; }
.finish span { display: block; padding: 12px 14px; font-size: 13px; color: var(--slate); }
.finish span b { display: block; font-weight: 600; color: var(--ink); font-size: 13px; }

/* ---------- process ---------- */

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: s; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line); counter-increment: s; }
/* the magenta rule is drawn by ::after so it can fill on reveal */
.step::before {
  content: counter(s, decimal-leading-zero);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--magenta);
  letter-spacing: .06em;
}
.step h3 { font-size: 16px; margin: 18px 0 7px; }
.step p { font-size: 13.5px; color: var(--slate-mute); line-height: 1.7; }

/* ---------- contact ---------- */

.contact { background: var(--contact-bg); color: #fff; }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: #b6c0cf; }
.contact-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-list { display: grid; gap: 20px; margin-top: 30px; }
.contact-list div { border-top: 1px solid rgba(255,255,255,.14); padding-top: 16px; }
.contact-list dt { font-size: 12px; color: #93a1b5; margin-bottom: 5px; }
.contact-list dd { margin: 0; font-size: 16px; font-weight: 500; line-height: 1.6; }
.contact-list dd a {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: 1px;
  transition: color .18s, border-color .18s;
}
.contact-list dd a:hover { color: var(--magenta); border-color: var(--magenta); }

.form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form label { display: block; font-size: 13px; color: #b6c0cf; margin-bottom: 7px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: var(--track-body);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--magenta); outline-offset: 1px; }
.form select option { color: var(--ink); }
.form textarea { resize: vertical; min-height: 96px; }
.form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { font-size: 12px; color: #93a1b5; margin-top: 12px; line-height: 1.7; }

/* ---------- footer ---------- */

.foot { background: var(--foot-bg); color: var(--foot-text); padding-block: 40px; font-size: 13px; }
.foot-in { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-brand img { height: 40px; width: auto; }
.foot-brand span { display: block; color: #fff; font-size: 15px; font-weight: 600; letter-spacing: var(--track-display); line-height: 1.3; }
.foot-brand span b { display: block; font-size: 12px; font-weight: 400; color: var(--foot-text); letter-spacing: var(--track-body); margin-top: 3px; }

/* same treatment as Green Line and Almotawakel */
.nivo-credit { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.nivo-credit span { font-size: 9px; font-weight: 500; letter-spacing: .1em; color: var(--foot-text); }
.nivo-credit img { width: 27px; height: 27px; object-fit: contain; }

/* ---------- motion ----------
   Restrained on purpose: this reads as precision, not as a startup landing
   page. Everything here is disabled under prefers-reduced-motion. */

/* light travelling across the glazing */
@keyframes sheen {
  0%   { transform: translateX(0); }
  55%  { transform: translateX(430px); }
  100% { transform: translateX(430px); }
}
.sheen { animation: sheen 6s cubic-bezier(.4,0,.2,1) infinite; }

/* gaskets breathe so the eye finds the sealing line */
@keyframes gasketPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}
.gaskets circle { animation: gasketPulse 3.4s ease-in-out infinite; }
.gaskets circle:nth-child(2) { animation-delay: .35s; }
.gaskets circle:nth-child(3) { animation-delay: .7s; }
.gaskets circle:nth-child(4) { animation-delay: 1.05s; }

/* the section drawing settles in rather than popping */
@keyframes drawingIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
.section-drawing { animation: drawingIn .9s cubic-bezier(.22,.9,.28,1) both; }

/* nav lifts off the page once you scroll */
.nav { transition: box-shadow .25s, background .25s; }
.nav.scrolled { box-shadow: 0 6px 24px -14px var(--shadow); background: var(--nav-bg-solid); }

/* buttons nudge on hover */
.btn { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28), transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(1px); }

/* stat numerals hold their width while counting */
.stat .num { display: inline-block; font-variant-numeric: tabular-nums; }

/* system cards lift their drawing on hover */
.sys-fig svg { transition: transform .35s cubic-bezier(.22,.9,.28,1); }
.sys:hover .sys-fig svg { transform: scale(1.06); }
.sys-fig { overflow: hidden; }

/* process line fills as the steps arrive */
.step { --fill: 0; }
.step::after {
  content: '';
  position: absolute;
  top: -2px;
  inset-inline-start: 0;
  height: 2px;
  width: 100%;
  background: var(--magenta);
  transform: scaleX(var(--fill));
  transform-origin: right;
  transition: transform .7s cubic-bezier(.22,.9,.28,1);
}
.step.in { --fill: 1; }

/* finish swatches lift and deepen */
.finish { transition: transform .22s, box-shadow .22s, border-color .22s; }
.finish:hover { transform: translateY(-4px); border-color: var(--slate-mute); box-shadow: 0 14px 28px -20px var(--shadow); }
.finish i { transition: height .22s; }
.finish:hover i { height: 96px; }

@media (prefers-reduced-motion: reduce) {
  .sheen, .gaskets circle, .section-drawing { animation: none; }
  .sheen { display: none; }
  .step::after { transition: none; }
  .sys:hover .sys-fig svg, .finish:hover { transform: none; }
}

/* ---------- reveal ---------- */

/* Hidden only once JS confirms it can reveal them again — without the .js gate
   a script failure would leave most of the page invisible. */
.js .rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .systems-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .stats-in { grid-template-columns: repeat(2, 1fr); }
  .finish-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 76px;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 20px;
    gap: 4px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding-block: 11px; }
  .nav .btn-primary { display: none; }

  /* the switch stays reachable once the CTA and links collapse */
  .nav-in { gap: 10px; }
  .theme-switch { order: 2; margin-inline-start: auto; }
  .nav-toggle { order: 3; margin-inline-start: 0; }

  .hero-in { grid-template-columns: 1fr; }
  .hero-fig { order: -1; }
  .contact-in { grid-template-columns: 1fr; }
  .systems-grid, .finish-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; max-width: none; }
  .hero-full { max-width: none; }
}

@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
  .stats-in { grid-template-columns: 1fr; }
}
