:root {
  --bg: #FDF2FB;
  --surface: #FFFFFF;
  --brand-50: #FEF7FD;
  --brand-100: #FBDCF8;
  --brand-200: #F9C2F4;
  --brand-300: #F0A1E5;
  --brand-400: #E37BD4;
  --brand-600: #C13598;
  --brand-700: #A12579;
  --ink: #4A1240;
  --ink-soft: #8A2D72;
  --gold-bg: #FBEED2;
  --gold: #F5D98F;
  --gold-ink: #6B4E0A;
  --wa: #128C4B;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px -12px rgba(74, 18, 64, 0.18);
  --shadow-card: 0 6px 24px -10px rgba(74, 18, 64, 0.12);
  --font-display: 'El Messiri', serif;
  --font-body: 'Tajawal', sans-serif;
  --section-pad: clamp(56px, 9vw, 110px);
}

html[lang="fr"], html[lang="en"] {
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--brand-600);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  z-index: 200;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.3; }

.section { padding-block: var(--section-pad); position: relative; }

.section-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(36px, 6vw, 64px); }
.section-head h2 { font-size: clamp(26px, 4.2vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-700);
  background: var(--brand-100);
  border: 1px solid var(--brand-200);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- top banner ---------- */
.topbar {
  background: var(--ink);
  color: var(--brand-100);
  font-size: 14px;
  text-align: center;
  padding: 9px 16px;
  font-weight: 500;
}
.topbar .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-inline-end: 8px;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 242, 251, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--brand-100);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand svg { height: 40px; width: auto; color: var(--ink); }
.brand span { font-family: var(--font-display); font-size: 21px; font-weight: 700; white-space: nowrap; }
.brand b { color: var(--brand-600); font-weight: 700; }

.nav-links { display: none; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand-600); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: 'Inter', 'Tajawal', sans-serif;
}
.lang-switch a[aria-current="true"] { background: var(--ink); color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(193, 53, 152, 0.55);
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--brand-200);
}
.btn-ghost:hover { border-color: var(--brand-400); background: var(--brand-50); }
.btn-sm { padding: 10px 22px; font-size: 14.5px; min-height: 44px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: var(--brand-100); transform: translateY(-2px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(64px, 10vw, 130px) clamp(72px, 10vw, 120px);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-blob.b1 { width: 520px; height: 520px; background: var(--brand-200); top: -180px; inset-inline-end: -120px; }
.hero-blob.b2 { width: 420px; height: 420px; background: var(--gold-bg); bottom: -200px; inset-inline-start: -140px; }

.hero-sil {
  position: absolute;
  inset-inline-end: clamp(-60px, 2vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  height: 130%;
  width: auto;
  color: var(--brand-600);
  opacity: 0.07;
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 720px; }

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-card);
}

.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-600);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 4px;
  height: 12px;
  background: var(--brand-200);
  z-index: -1;
  border-radius: 6px;
}

.hero-sub {
  font-size: clamp(16.5px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.sched-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}
.sched-pills .lbl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
}
.sched-pills .lbl svg { width: 17px; height: 17px; }
.sched-pills .t {
  background: var(--surface);
  border: 1.5px solid var(--brand-200);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  direction: ltr;
}
.sched-pills .sep { width: 1px; height: 22px; background: var(--brand-200); margin-inline: 8px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; height: 17px; color: var(--brand-600); flex: none; }

/* ---------- pain ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 22px;
}
.pain-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--brand-50);
}
.pain-card .icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--brand-100);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card .icon svg { width: 28px; height: 28px; }
.pain-card h3 { font-size: 20px; margin-bottom: 10px; }
.pain-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- solution ---------- */
.solution { background: var(--surface); }
.split {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split-art {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.split-art svg.sil { height: 84%; width: auto; color: var(--brand-600); opacity: 0.85; }
.split-art .ring {
  position: absolute;
  border: 2px dashed var(--brand-300);
  border-radius: 50%;
  opacity: 0.5;
}
.split-art .ring.r1 { width: 280px; height: 280px; animation: spin 36s linear infinite; }
.split-art .ring.r2 { width: 380px; height: 380px; animation: spin 60s linear infinite reverse; }

@keyframes spin { to { transform: rotate(360deg); } }

.split-copy h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 18px; }
.split-copy h2 em { font-style: normal; color: var(--brand-600); }
.split-copy p { color: var(--ink-soft); margin-bottom: 16px; }

.check-list { list-style: none; margin-top: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}
.check-list svg { width: 22px; height: 22px; color: var(--brand-600); flex: none; margin-top: 3px; }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 22px;
  counter-reset: step;
}
.step-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--brand-50);
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand-200);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 19.5px; margin-bottom: 10px; }
.step-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- schedule ---------- */
.schedule { background: var(--surface); }
.sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.group-card {
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
}
.group-card.morning {
  background: var(--bg);
  border: 1.5px solid var(--brand-200);
}
.group-card.evening {
  background: var(--ink);
  color: #fff;
}
.group-card .gc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.group-card .gc-head svg { width: 30px; height: 30px; color: var(--brand-600); flex: none; }
.group-card.evening .gc-head svg { color: var(--gold); }
.group-card h3 { font-size: 24px; }
.group-card .gc-sub { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; }
.group-card.evening .gc-sub { color: var(--brand-100); }
.times { display: flex; flex-wrap: wrap; gap: 10px; }
.times span {
  background: var(--surface);
  border: 1.5px solid var(--brand-300);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 14px;
  direction: ltr;
  font-variant-numeric: tabular-nums;
}
.group-card.evening .times span {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-700);
  color: #fff;
}
.sched-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px;
}
.sched-notes div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
}
.sched-notes svg { width: 21px; height: 21px; color: var(--brand-600); flex: none; margin-top: 3px; }

/* ---------- kit ---------- */
.kit-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--brand-50);
  text-align: center;
}
.kit-card .icon {
  width: 86px; height: 86px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kit-card .icon svg { width: 44px; height: 44px; }
.kit-card h3 { font-size: 19.5px; margin-bottom: 10px; }
.kit-card p { color: var(--ink-soft); font-size: 15.5px; }
.kit-bonus {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold-bg);
  color: var(--gold-ink);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-weight: 700;
  font-size: 15.5px;
}
.kit-bonus svg { width: 22px; height: 22px; flex: none; }

/* ---------- offer ---------- */
.offer { background: var(--ink); color: #fff; overflow: hidden; position: relative; }
.offer .hero-sil { color: var(--brand-200); opacity: 0.05; }
.offer-card {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 56px);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
}
.offer-card .badge-gold { margin-bottom: 18px; }
.offer-card h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 26px; }
.offer-list { list-style: none; margin-bottom: 30px; }
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-block: 9px;
  font-weight: 500;
  border-bottom: 1px dashed var(--brand-100);
}
.offer-list li:last-child { border-bottom: 0; }
.offer-list svg { width: 22px; height: 22px; color: var(--brand-600); flex: none; margin-top: 4px; }
.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.price-old {
  font-size: 19px;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--brand-600);
  text-decoration-thickness: 2.5px;
}
.price-new {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 58px);
  font-weight: 700;
  color: var(--brand-600);
  line-height: 1;
  direction: ltr;
  unicode-bidi: embed;
}
.price-note { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 26px; }
.offer-card .btn { width: 100%; }
.offer-foot {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.offer-foot span { display: inline-flex; align-items: center; gap: 6px; }
.offer-foot svg { width: 16px; height: 16px; color: var(--brand-600); }

/* ---------- guarantee ---------- */
.guarantee-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--brand-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-card);
}
.guarantee-box .shield {
  width: clamp(72px, 10vw, 110px);
  height: clamp(72px, 10vw, 110px);
  border-radius: 50%;
  background: var(--bg);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.guarantee-box .shield svg { width: 55%; height: 55%; }
.guarantee-box h2 { font-size: clamp(22px, 3.4vw, 30px); margin-bottom: 12px; }
.guarantee-box p { color: var(--ink-soft); }
.guarantee-box p strong { color: var(--ink); }

/* ---------- faq ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16.5px;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.faq-item summary .chev svg { width: 16px; height: 16px; }
.faq-item[open] summary .chev { transform: rotate(180deg); background: var(--ink); color: var(--brand-200); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- final cta ---------- */
.final {
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final .hero-sil {
  inset-inline-end: auto;
  inset-inline-start: -40px;
  color: var(--brand-200);
  opacity: 0.06;
}
.final h2 { font-size: clamp(28px, 5vw, 46px); margin-bottom: 16px; position: relative; }
.final p { color: var(--brand-100); max-width: 540px; margin: 0 auto 32px; position: relative; }
.final .urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  position: relative;
}
.final .urgency svg { width: 17px; height: 17px; }

/* ---------- footer ---------- */
.footer {
  background: #2E0A27;
  color: var(--brand-100);
  padding-block: 44px;
  font-size: 14.5px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer .brand { color: #fff; }
.footer .brand svg { color: var(--brand-200); height: 34px; }
.footer .brand span { font-size: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; }
.footer-links a { color: var(--brand-100); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-meta { width: 100%; text-align: center; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(249, 194, 244, 0.15); color: var(--brand-300); font-size: 13.5px; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(18, 140, 75, 0.55);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- mobile sticky cta ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--brand-100);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .p { font-weight: 700; font-size: 15px; white-space: nowrap; }
.sticky-cta .p small { display: block; font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.sticky-cta .btn { flex: 1; padding-block: 12px; min-height: 46px; }

/* ---------- legal / rules page ---------- */
.legal-hero { padding-block: clamp(48px, 7vw, 84px) clamp(20px, 3vw, 36px); text-align: center; }
.legal-hero h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 10px; }
.legal-hero .upd { color: var(--ink-soft); font-size: 14.5px; }
.legal { max-width: 820px; margin-inline: auto; padding-bottom: var(--section-pad); }
.legal-card {
  background: var(--surface);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}
.legal-card h2 { font-size: 21px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.legal-card h2 .n {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: none;
  font-family: var(--font-display);
}
.legal-card p, .legal-card li { color: var(--ink-soft); font-size: 15.5px; }
.legal-card p + p { margin-top: 10px; }
.legal-card ul { padding-inline-start: 22px; margin-top: 10px; }
.legal-card li { margin-bottom: 8px; }
.legal-card strong { color: var(--ink); }
.legal-cta { text-align: center; padding: 10px 0 36px; }

/* ---------- reveal animations ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--d, 0s); }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .topbar .dot, .split-art .ring { animation: none; }
  .btn, .wa-float { transition: none; }
}

/* ---------- responsive ---------- */
@media (min-width: 760px) {
  .split { grid-template-columns: 1fr 1.15fr; }
  .guarantee-box { grid-template-columns: auto 1fr; }
}

@media (max-width: 759px) {
  .guarantee-box { grid-template-columns: 1fr; text-align: center; }
  .guarantee-box .shield { margin-inline: auto; }
  .hero-sil { opacity: 0.05; }
  .wa-float { bottom: 84px; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .sticky-cta { display: none; }
}
