/* ============================================================
   Newline Electrik — styles
   Dark, premium, electric. Mobile-first.
   ============================================================ */

:root {
  /* Brand */
  --orange: #f7a21a;
  --orange-2: #ffc24b;
  --orange-deep: #e07f08;
  --blue: #3e8ede;
  --blue-2: #6cb0ff;

  /* Surfaces */
  --bg: #070910;
  --bg-1: #0a0d15;
  --bg-2: #0e131f;
  --surface: #121826;
  --surface-2: #161e2f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #eaf0fb;
  --muted: #98a4bc;
  --muted-2: #6f7c95;

  /* Effects */
  --glow-orange: 0 0 40px rgba(247, 162, 26, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Saira", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--orange); color: #1a1205; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--orange); color: #1a1205; padding: 10px 16px; border-radius: 8px; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

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

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; font-weight: 800; letter-spacing: -0.01em; }

.grad {
  background: linear-gradient(100deg, var(--orange-2), var(--orange) 55%, var(--orange-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-2);
  padding: 7px calc(14px - 0.14em) 7px 14px; border: 1px solid rgba(247, 162, 26, 0.28);
  border-radius: 100px; background: rgba(247, 162, 26, 0.07);
}
.eyebrow svg { width: 16px; height: 16px; flex: none; }

.section { padding-block: clamp(48px, 6vw, 92px); position: relative; }
.section__head { max-width: 760px; margin-bottom: clamp(30px, 3.6vw, 48px); }
.section__title { font-size: clamp(2rem, 5.2vw, 3.6rem); margin-top: 18px; }
.section__lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); margin-top: 18px; max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x); border-radius: 100px; font-weight: 700;
  font-size: 0.96rem; letter-spacing: 0.01em; position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 19px; height: 19px; }
.btn--lg { --pad-y: 17px; --pad-x: 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(100deg, var(--orange-2), var(--orange));
  color: #1c1404;
  box-shadow: 0 10px 30px -10px rgba(247, 162, 26, 0.6);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(247, 162, 26, 0.75); }
.btn--primary:active { transform: translateY(-1px); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-2); transform: translateY(-3px); }

.btn--call {
  background: rgba(247, 162, 26, 0.1); color: var(--orange-2);
  border: 1px solid rgba(247, 162, 26, 0.35); padding: 10px 18px; font-size: 0.9rem;
}
.btn--call:hover { background: var(--orange); color: #1c1404; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 18px clamp(20px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav.scrolled {
  background: rgba(8, 11, 18, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav.scrolled .nav__inner { padding-block: 12px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__img { height: 40px; width: auto; display: block; filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45)); }
@media (min-width: 880px) { .brand__img { height: 48px; } }
.footer__brand .brand__img { height: 40px; }
.brand__mark { width: 30px; height: 30px; color: var(--orange); filter: drop-shadow(0 0 10px rgba(247, 162, 26, 0.55)); flex: none; }
.brand__mark use { fill: currentColor; }
.brand__text { display: inline-flex; align-items: baseline; gap: 7px; font-family: var(--font-display); font-style: italic; font-weight: 900; letter-spacing: 0.01em; }
.brand__new { color: var(--orange); font-size: 1.32rem; }
.brand__elec { color: var(--blue); font-size: 0.86rem; font-weight: 800; letter-spacing: 0.18em; }

.nav__links { display: none; gap: 30px; }
.nav__links a { font-weight: 500; color: var(--muted); font-size: 0.96rem; position: relative; transition: color 0.25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--orange); transition: width 0.3s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line); color: var(--muted); transition: all 0.25s; }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { color: var(--orange-2); border-color: var(--orange); transform: translateY(-2px); }
.btn--call span { display: none; }

.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; align-items: center; border-radius: 10px; border: 1px solid var(--line); }
.nav__toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.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-menu {
  position: fixed; inset: 0 0 auto 0; top: 0; z-index: 90;
  padding: 92px clamp(20px, 5vw, 48px) 28px;
  background: rgba(8, 11, 18, 0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; transition: transform 0.35s var(--ease), opacity 0.3s;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu > a:not(.btn) { padding: 15px 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-block: 120px 80px; overflow: hidden;
  background: radial-gradient(120% 90% at 70% 0%, #10182b 0%, var(--bg-1) 45%, var(--bg) 100%);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.9; }
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(110, 176, 255, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(110, 176, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 80% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 30%, #000 30%, transparent 80%);
}
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none; inset: 0;
}
.hero__glow::before, .hero__glow::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.hero__glow::before { width: 540px; height: 540px; background: radial-gradient(circle, rgba(247, 162, 26, 0.4), transparent 65%); top: -120px; right: -80px; }
.hero__glow::after { width: 480px; height: 480px; background: radial-gradient(circle, rgba(62, 142, 222, 0.35), transparent 65%); bottom: -140px; left: -100px; }

.hero__content { position: relative; z-index: 3; width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.hero__title, .hero__sub { max-width: 820px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange-2); padding: 8px calc(16px - 0.1em) 8px 16px; border: 1px solid rgba(247, 162, 26, 0.3);
  border-radius: 100px; background: rgba(247, 162, 26, 0.08);
}
.hero__eyebrow svg { width: 17px; height: 17px; flex: none; }
.hero__title {
  font-size: clamp(2.7rem, 8.5vw, 6.6rem); font-style: italic; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.015em; line-height: 0.95;
}
.hero__title .reveal-line { display: block; overflow: hidden; }
.hero__sub { margin-top: 26px; font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: var(--muted); max-width: 620px; line-height: 1.6; }
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badges { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__badges li { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.hero__badges svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2);
}
/* cancel trailing letter-spacing so the label centers under the mouse icon */
.hero__scroll-txt { margin-inline-end: -0.2em; }
.hero__scroll-dot { width: 24px; height: 38px; border: 2px solid var(--line-strong); border-radius: 14px; position: relative; }
.hero__scroll-dot::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; border-radius: 4px; background: var(--orange); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-1), var(--bg-2)); padding-block: 18px; }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(1.1rem, 2.4vw, 1.7rem); text-transform: uppercase; color: var(--text); opacity: 0.85; }
.marquee__track svg { width: 18px; height: 18px; color: var(--orange); fill: var(--orange); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--bg), var(--bg-1)); }
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
.card {
  position: relative; padding: 32px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(247, 162, 26, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: radial-gradient(circle at 30% 25%, rgba(247, 162, 26, 0.25), rgba(247, 162, 26, 0.06));
  border: 1px solid rgba(247, 162, 26, 0.3); color: var(--orange-2);
}
.card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.55rem; font-style: italic; text-transform: uppercase; margin-bottom: 10px; }
.service-card > p { color: var(--muted); margin-bottom: 20px; }
.ticks { display: grid; gap: 11px; }
.ticks li { display: flex; align-items: flex-start; gap: 11px; color: var(--text); font-size: 0.95rem; }
.ticks svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 2px; }

/* ---------- Why ---------- */
.why { background: var(--bg-1); }
.why__inner { display: grid; gap: clamp(36px, 5vw, 64px); grid-template-columns: 1fr; align-items: start; }
.why__intro .section__title { margin-top: 16px; }
.why__intro .btn { margin-top: 28px; }
.why__license {
  display: flex; align-items: center; gap: 16px; margin-top: 26px; padding: 18px 22px;
  border-radius: var(--radius); border: 1px solid rgba(62, 142, 222, 0.3);
  background: linear-gradient(100deg, rgba(62, 142, 222, 0.12), rgba(62, 142, 222, 0.02));
}
.why__license svg { width: 34px; height: 34px; color: var(--blue-2); flex: none; }
.why__license strong { display: block; font-size: 1.05rem; }
.why__license span { color: var(--muted); font-size: 0.9rem; }

.why__list { display: grid; gap: 16px; }
.why__list li { display: flex; gap: 18px; padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: border-color 0.3s, transform 0.3s; }
.why__list li:hover { border-color: rgba(247, 162, 26, 0.4); transform: translateX(4px); }
.why__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex: none; background: rgba(247, 162, 26, 0.1); border: 1px solid rgba(247, 162, 26, 0.25); color: var(--orange-2); }
.why__ic svg { width: 24px; height: 24px; }
.why__list h3 { font-size: 1.15rem; margin-bottom: 5px; }
.why__list p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Areas ---------- */
.areas { background: linear-gradient(180deg, var(--bg-1), var(--bg)); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips li {
  padding: 11px 20px; border-radius: 100px; border: 1px solid var(--line);
  background: var(--surface); color: var(--muted); font-weight: 500; font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.chips li:hover { color: var(--orange-2); border-color: var(--orange); background: rgba(247, 162, 26, 0.08); transform: translateY(-3px); }

/* ---------- Process ---------- */
.process { background: var(--bg); }
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
.steps li { position: relative; padding: 30px 26px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); transition: transform 0.3s, border-color 0.3s; }
.steps li:hover { transform: translateY(-5px); border-color: rgba(247, 162, 26, 0.35); }
.steps__n { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 2.4rem; color: transparent; -webkit-text-stroke: 1.5px rgba(247, 162, 26, 0.55); display: block; margin-bottom: 14px; }
.steps h3 { font-size: 1.25rem; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.contact__inner { display: grid; gap: clamp(36px, 5vw, 60px); grid-template-columns: 1fr; align-items: stretch; }
.contact__info { align-self: start; }
.contact__info .section__title { margin-top: 16px; }
.contact__list { margin-top: 32px; display: grid; gap: 12px; }
.contact__list a, .contact__static { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); transition: border-color 0.3s, transform 0.3s, background 0.3s; }
.contact__list a:hover { border-color: var(--orange); transform: translateX(4px); background: rgba(247, 162, 26, 0.05); }
.contact__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; background: rgba(247, 162, 26, 0.1); border: 1px solid rgba(247, 162, 26, 0.25); color: var(--orange-2); }
.contact__ic svg { width: 22px; height: 22px; }
.contact__label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); }
.contact__list strong, .contact__static strong { font-weight: 600; font-size: 1.02rem; }

.contact__form { padding: clamp(24px, 4vw, 38px); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); display: grid; gap: 18px; align-content: space-between; }
.field { display: grid; gap: 8px; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--bg-1);
  border: 1px solid var(--line-strong); color: var(--text); transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247, 162, 26, 0.18); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2398a4bc' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.18); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.92rem; min-height: 1.2em; text-align: center; }
.form-note.ok { color: #5ad19a; }
.form-note.err { color: #ff8585; }
#submitBtn.loading { opacity: 0.75; pointer-events: none; }
#submitBtn.loading .btn__label::after { content: "…"; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 80px); }
.footer__inner { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 44px; }
.footer__brand p { color: var(--muted); margin-top: 16px; max-width: 360px; font-size: 0.94rem; }
.footer__lic { color: var(--orange-2) !important; font-weight: 500; font-size: 0.86rem !important; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a, .footer__muted { display: block; color: var(--muted); padding: 6px 0; transition: color 0.25s; }
.footer__col a:hover { color: var(--orange-2); }
.footer__muted { color: var(--muted-2); }
.footer__bar { border-top: 1px solid var(--line); padding: 22px clamp(20px, 5vw, 48px); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; max-width: var(--container); margin-inline: auto; font-size: 0.85rem; color: var(--muted-2); }

/* ---------- Reveal animation (JS-driven, motion-safe) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.anim .reveal { opacity: 0; transform: translateY(30px); }
  html.anim .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  html.anim .hero__title .reveal-line > * , html.anim .hero__title .reveal-line { will-change: transform; }
}

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .btn--call span { display: inline; }
  .icon-btn { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__links { display: flex; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .why__inner { grid-template-columns: 1.05fr 1fr; }
  .contact__inner { grid-template-columns: 1fr 1.1fr; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1100px) {
  .why__list { gap: 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .marquee__track { animation: none; }
  .hero__scroll-dot::after { animation: none; }
}
