/* ===========================================================
   G-Tack — موقع العملاء
   نظام التصميم: ماجنتا العلامة، عربي أولاً (RTL)
   =========================================================== */

:root {
  /* Brand */
  --magenta: #e52d7d;
  --magenta-deep: #b81e63;
  --magenta-dark: #8f1149;
  --lime: #eaf540;
  --lime-deep: #c9d400;

  /* Ink & surfaces */
  --ink: #1b1530;
  --ink-soft: #4a4458;
  --muted: #8b8698;
  --line: #ece9f1;
  --surface: #ffffff;
  --surface-2: #faf8fc;
  --surface-3: #f4eef6;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(27, 21, 48, .05);
  --shadow-md: 0 14px 40px rgba(27, 21, 48, .09);
  --shadow-lg: 0 30px 70px rgba(143, 17, 73, .18);
  --shadow-magenta: 0 18px 45px rgba(229, 45, 125, .35);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --container: 1180px;
  --nav-h: 76px;

  --grad-magenta: linear-gradient(135deg, #f0468f 0%, #e52d7d 42%, #b81e63 100%);
  --grad-ink: linear-gradient(160deg, #241a3f 0%, #1b1530 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Tajawal", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

section { position: relative; }
.section-pad { padding-block: 96px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
  color: var(--magenta);
  background: var(--surface-3);
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--magenta); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

h1, h2, h3 { line-height: 1.2; font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 21px; font-weight: 700; }
.lead { color: var(--ink-soft); font-size: clamp(16px, 2vw, 19px); margin-top: 14px; }

.text-grad {
  background: var(--grad-magenta);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-magenta); color: #fff; box-shadow: var(--shadow-magenta); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(229,45,125,.45); }
.btn-ghost { background: var(--surface-3); color: var(--ink); }
.btn-ghost:hover { background: #ebe3ef; }
.btn-light { background: #fff; color: var(--magenta-deep); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn svg { width: 20px; height: 20px; }

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; color: var(--ink); }
.brand .mark { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow-sm); flex: none; }
.brand b { color: var(--magenta); }
.nav.on-hero:not(.scrolled) .brand { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15.5px; font-weight: 600; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 100px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--magenta); background: var(--surface-3); }
.nav.on-hero:not(.scrolled) .nav-links a { color: rgba(255,255,255,.88); }
.nav.on-hero:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.14); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav.on-hero:not(.scrolled) .nav-cta .btn-ghost { background: rgba(255,255,255,.16); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 4px; transition: .3s; }
.nav.on-hero:not(.scrolled) .nav-toggle span { background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 110px;
  background: var(--grad-magenta);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset-block-end: -1px; inset-inline: 0; height: 90px;
  background: var(--surface);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 55%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.hero-glow.g1 { width: 460px; height: 460px; background: #ff7ab8; inset-block-start: -120px; inset-inline-start: -80px; }
.hero-glow.g2 { width: 380px; height: 380px; background: var(--lime); opacity: .18; inset-block-end: 40px; inset-inline-end: -60px; }

/* speed lines motif (from logo) */
.speed-lines { position: absolute; inset-block-start: 18%; inset-inline-end: 6%; opacity: .12; pointer-events: none; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-copy h1 { font-size: clamp(34px, 5.4vw, 62px); font-weight: 800; line-height: 1.08; }
.hero-copy h1 .hl { color: var(--lime); }
.hero-copy .lead { color: rgba(255,255,255,.92); max-width: 520px; font-size: clamp(17px, 2.2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .stat .num { font-size: 30px; font-weight: 800; line-height: 1; }
.hero-stats .stat .num span { color: var(--lime); }
.hero-stats .stat .lbl { font-size: 14px; color: rgba(255,255,255,.8); margin-top: 6px; }
.hero-stats .divider { width: 1px; background: rgba(255,255,255,.22); }

/* ---------- Phone mockup ---------- */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; height: 610px;
  background: #0e0a1c; border-radius: 46px; padding: 13px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.06) inset;
  transform: rotate(-3deg);
}
.phone::before { /* notch */
  content: ""; position: absolute; inset-block-start: 20px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #0e0a1c; border-radius: 0 0 16px 16px; z-index: 4;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: linear-gradient(180deg, #f7f3fb 0%, #fff 40%);
}
/* map */
.map { position: absolute; inset: 0; height: 62%; background: #eef0f5; overflow: hidden; }
.map .road { position: absolute; background: #fff; }
.map .road.r1 { width: 200%; height: 16px; top: 28%; left: -50%; transform: rotate(-18deg); box-shadow: 0 0 0 2px #e3e6ee; }
.map .road.r2 { width: 16px; height: 200%; left: 36%; top: -50%; box-shadow: 0 0 0 2px #e3e6ee; }
.map .road.r3 { width: 200%; height: 12px; top: 64%; left: -50%; transform: rotate(8deg); box-shadow: 0 0 0 2px #e8eaf1; }
.map .block { position: absolute; background: #e6e9f1; border-radius: 6px; }
.map .route {
  position: absolute; top: 30%; left: 24%; width: 120px; height: 130px;
  border-inline-start: 4px dashed var(--magenta); border-block-end: 4px dashed var(--magenta);
  border-end-start-radius: 22px;
}
.pin {
  position: absolute; width: 30px; height: 30px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); box-shadow: var(--shadow-md);
}
.pin::after { content: ""; position: absolute; inset: 8px; background: #fff; border-radius: 50%; }
.pin.a { background: var(--ink); top: 26%; left: 22%; }
.pin.b { background: var(--magenta); top: 52%; left: 50%; }
.car-dot {
  position: absolute; top: 40%; left: 36%; width: 34px; height: 34px; border-radius: 11px;
  background: var(--grad-magenta); display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-magenta); animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(-6px); } }

/* bottom sheet card */
.sheet {
  position: absolute; inset-block-end: 0; inset-inline: 0; background: #fff;
  border-radius: 26px 26px 0 0; padding: 20px 20px 24px; box-shadow: 0 -10px 30px rgba(0,0,0,.06);
}
.sheet .grab { width: 42px; height: 5px; border-radius: 5px; background: #e3e0ea; margin: 0 auto 16px; }
.sheet .eta { display: flex; align-items: center; gap: 12px; }
.sheet .eta .av { width: 46px; height: 46px; border-radius: 14px; background: var(--surface-3); display: grid; place-items: center; color: var(--magenta); flex: none; }
.sheet .eta .t { font-weight: 800; font-size: 16px; }
.sheet .eta .s { font-size: 13px; color: var(--muted); }
.sheet .eta .price { margin-inline-start: auto; font-weight: 800; color: var(--magenta-deep); font-size: 18px; }
.sheet .bar { height: 7px; border-radius: 6px; background: var(--surface-3); margin: 16px 0 14px; overflow: hidden; }
.sheet .bar i { display: block; height: 100%; width: 64%; background: var(--grad-magenta); border-radius: 6px; }
.sheet .go { width: 100%; background: var(--grad-magenta); color: #fff; padding: 13px; border-radius: 14px; font-weight: 800; box-shadow: var(--shadow-magenta); }

/* floating chips around phone */
.chip {
  position: absolute; background: #fff; border-radius: 16px; padding: 11px 15px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14px; color: var(--ink); z-index: 5;
}
.chip .ico { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.chip small { display: block; font-weight: 500; font-size: 11.5px; color: var(--muted); }
.chip.c1 { inset-block-start: 14%; inset-inline-start: -8%; animation: float1 5s ease-in-out infinite; }
.chip.c2 { inset-block-end: 20%; inset-inline-end: -6%; animation: float2 6s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translateY(-12px); } }
@keyframes float2 { 50% { transform: translateY(10px); } }

/* ---------- Trust / logos strip ---------- */
.trust { padding-block: 34px; border-bottom: 1px solid var(--line); }
.trust p { text-align: center; color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; }
.trust-row .item { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-weight: 700; font-size: 15px; }
.trust-row .item svg { width: 20px; height: 20px; color: var(--magenta); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 4px;
  background: var(--grad-magenta); transform: scaleX(0); transform-origin: var(--rtl-origin, right);
  transition: transform .35s ease;
}
.svc:hover::before { transform: scaleX(1); }
.svc .ico {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: var(--surface-3); color: var(--magenta); margin-bottom: 22px;
}
.svc:hover .ico { background: var(--grad-magenta); color: #fff; }
.svc .ico svg { width: 30px; height: 30px; }
.svc h3 { margin-bottom: 10px; }
.svc p { color: var(--ink-soft); font-size: 15.5px; }
.svc .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--magenta); font-weight: 700; font-size: 15px; }
.svc .more svg { width: 16px; height: 16px; transition: transform .25s; }
.svc:hover .more svg { transform: translateX(-4px); }

/* ---------- How it works ---------- */
.how { background: var(--surface-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .n {
  width: 54px; height: 54px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; font-weight: 800; font-size: 22px; color: var(--magenta);
  margin-bottom: 18px; border: 1px solid var(--line);
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; inset-block-start: 40px; inset-inline-start: 64px; width: calc(100% - 54px);
  height: 2px; background: repeating-linear-gradient(to left, var(--line) 0 8px, transparent 8px 16px);
}

/* ---------- Features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat { display: flex; gap: 16px; padding: 24px; border-radius: var(--r-md); transition: background .25s; }
.feat:hover { background: var(--surface-2); }
.feat .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--surface-3); color: var(--magenta-deep); flex: none; }
.feat .ico svg { width: 25px; height: 25px; }
.feat h3 { font-size: 17px; margin-bottom: 5px; }
.feat p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Split CTA bands (drivers / business) ---------- */
.band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.band .pane { padding: 52px 46px; display: flex; flex-direction: column; justify-content: center; }
.band .pane.dark { background: var(--grad-ink); color: #fff; }
.band .pane.bright { background: var(--grad-magenta); color: #fff; }
.band .pane .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.band .pane .eyebrow::before { background: var(--lime); }
.band .pane h2 { font-size: clamp(24px, 3vw, 34px); }
.band .pane p { color: rgba(255,255,255,.86); margin: 14px 0 26px; }
.band .pane ul { display: grid; gap: 12px; margin-bottom: 28px; }
.band .pane li { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.band .pane li svg { width: 20px; height: 20px; color: var(--lime); flex: none; }

/* ---------- Download / app section ---------- */
.download { background: var(--grad-ink); color: #fff; border-radius: var(--r-xl); padding: 60px; position: relative; overflow: hidden; }
.download .dl-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: var(--magenta); filter: blur(90px); opacity: .4; inset-inline-end: -100px; inset-block-start: -120px; }
.download-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.download h2 { color: #fff; }
.download p { color: rgba(255,255,255,.84); margin-top: 14px; }
.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink); padding: 12px 22px; border-radius: 16px;
  transition: transform .2s, box-shadow .2s; position: relative;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .st { line-height: 1.15; }
.store-btn .st small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
.store-btn .st b { font-size: 17px; font-weight: 800; }
.store-btn[data-soon]::after {
  content: "قريباً"; position: absolute; inset-block-start: -9px; inset-inline-start: -9px;
  background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.qr { width: 150px; height: 150px; background: #fff; border-radius: 18px; padding: 12px; box-shadow: var(--shadow-md); }
.download-side { display: flex; align-items: center; gap: 20px; justify-content: flex-start; }
.download-side .qr-cap { font-size: 14px; color: rgba(255,255,255,.8); max-width: 130px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { width: 30px; height: 30px; border-radius: 9px; background: var(--surface-3); color: var(--magenta); display: grid; place-items: center; flex: none; transition: .3s; }
.faq-item[open] summary .ic { background: var(--grad-magenta); color: #fff; transform: rotate(45deg); }
.faq-item .ans { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Footer ---------- */
.footer { background: #16101f; color: rgba(255,255,255,.7); padding-block: 64px 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-about p { font-size: 14.5px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .2s; }
.footer-social a:hover { background: var(--magenta); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; font-weight: 700; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--magenta); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 13.5px; }
.footer-bottom .made { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .services-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .band, .download-grid { grid-template-columns: 1fr; }
  .download { padding: 44px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .section-pad { padding-block: 68px; }
  .services-grid, .feat-grid, .steps { grid-template-columns: 1fr; }
  .hero-stats .divider { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .download-side { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mobile nav drawer ---------- */
.nav-mobile {
  position: fixed; inset: 0; z-index: 99; background: rgba(20,14,28,.5);
  backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .3s;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile .panel {
  position: absolute; inset-block: 0; inset-inline-end: 0; width: min(82%, 320px);
  background: #fff; padding: 90px 26px 30px; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column; gap: 6px;
}
[dir="rtl"] .nav-mobile .panel { transform: translateX(-100%); }
.nav-mobile.open .panel { transform: none; }
.nav-mobile .panel a { padding: 14px 16px; border-radius: var(--r-sm); font-weight: 700; color: var(--ink); }
.nav-mobile .panel a:hover { background: var(--surface-3); color: var(--magenta); }
.nav-mobile .panel .btn { margin-top: 14px; }

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