/* ===================================================================
   Momin — static styles. Mobile-first, bilingual (RTL/LTR), premium.
   =================================================================== */

/* ---------- Fonts (self-hosted, no external requests) ---------- */
@font-face {
  font-family: "KidzhoodAR";
  src: url("assets/fonts/KidzhoodArabic-Light.otf") format("opentype");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "KidzhoodEN";
  src: url("assets/fonts/Kidzhood-Medium.otf") format("opentype");
  font-weight: 400 700;
  font-display: swap;
}
/* Zagel — used for ALL numerals (Kidzhood does not render digits).
   Standalone family + per-glyph overrides so every 0-9 (Latin digits
   only) inside Kidzhood text automatically falls to Zagel. These are
   declared AFTER Kidzhood so they win for the digit unicode-range. */
@font-face {
  font-family: "Zagel";
  src: url("assets/fonts/ZagelArabicITF-Regular.otf") format("opentype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "KidzhoodAR";
  src: url("assets/fonts/ZagelArabicITF-Regular.otf") format("opentype");
  unicode-range: U+0030-0039;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "KidzhoodEN";
  src: url("assets/fonts/ZagelArabicITF-Regular.otf") format("opentype");
  unicode-range: U+0030-0039;
  font-weight: 100 900;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --orange: #ff7300;
  --blue: #05a3ff;
  --deepblue: #0061ef;
  --yellow: #ffce00;
  --green: #47bf6c;
  --pink: #ffa1cc;
  --ink: #1a1a2e;
  --slate: #5b5b73;

  /* Unified Kidzhood everywhere: each language leads with its own
     Kidzhood face and falls back to the other Kidzhood face so any
     script renders in Kidzhood (numbers still go to Zagel via the
     unicode-range override above). */
  --font-en: "KidzhoodEN", "KidzhoodAR", "Zagel", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ar: "KidzhoodAR", "KidzhoodEN", "Zagel", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-card: 1.75rem;
  --radius-lg: 2rem;
  --shadow-card: 0 12px 40px -16px rgba(26, 26, 46, 0.14);
  --shadow-soft: 0 10px 40px -12px rgba(255, 115, 0, 0.18);
  --shadow-glass: 0 8px 32px rgba(255, 115, 0, 0.1);
  --container: 1120px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background-color: #fff;
  /* Extremely subtle premium white-to-orange wash. Still reads as white. */
  background-image:
    radial-gradient(60rem 40rem at 85% -8%, rgba(255, 115, 0, 0.07), transparent 60%),
    radial-gradient(48rem 34rem at -5% 12%, rgba(255, 206, 0, 0.05), transparent 55%),
    radial-gradient(50rem 38rem at 50% 120%, rgba(5, 163, 255, 0.045), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}
body[data-lang="ar"] {
  font-family: var(--font-ar);
}
body[data-lang="en"] {
  font-family: var(--font-en);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
svg {
  display: block;
}

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.glass {
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 115, 0, 0.16);
}
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(26, 26, 46, 0.06);
}
.en-only {
  display: none;
}
body[data-lang="en"] .en-only {
  display: block;
}
/* Always render the hadith / Arabic placeholders in the Arabic face */
.ar-text {
  font-family: var(--font-ar);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn:active {
  transform: scale(0.96);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: scale(1.03);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--deepblue);
  box-shadow: inset 0 0 0 1px rgba(0, 97, 239, 0.2);
}
.btn-ghost:hover {
  background: #fff;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(5, 163, 255, 0.55);
}
.btn-blue:hover { transform: scale(1.03); }
.btn-white {
  background: #fff;
  color: var(--orange);
}
.btn-white:hover {
  transform: scale(1.03);
}
.block {
  display: block;
  width: 100%;
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.nav-wrap {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0.75rem 0;
}
.nav {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 24px rgba(255, 115, 0, 0.06);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow-glass);
}
.nav-logo img {
  height: 30px;
  width: auto;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(26, 26, 46, 0.7);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.15rem;
  box-shadow: inset 0 0 0 1px rgba(255, 115, 0, 0.15);
}
.lang-btn {
  border: 0;
  cursor: pointer;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(26, 26, 46, 0.55);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.lang-btn.is-active {
  background: var(--orange);
  color: #fff;
}
/* The Arabic toggle ("ع") must always use the Kidzhood Arabic face,
   even while the site is in English mode (EN font lacks Arabic glyphs). */
.lang-btn[data-lang-set="ar"] { font-family: var(--font-ar); }
.nav-cta {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.hamburger {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 115, 0, 0.15);
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease, bottom 0.3s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { top: 19px; transform: translateX(-50%) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 19px; transform: translateX(-50%) rotate(-45deg); }

.mobile-menu {
  max-width: 1000px;
  margin: 0.5rem auto 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
}
.mobile-panel {
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-glass);
}
.mobile-panel ul {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.mobile-panel a:not(.btn) {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(26, 26, 46, 0.75);
}
.mobile-panel a:not(.btn):hover {
  color: var(--orange);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  text-align: center;
}
.float-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float {
  position: absolute;
  will-change: transform;
}
.f-circle { width: 130px; top: -2%; inset-inline-end: 4%; opacity: 0.06; filter: blur(1px); animation: floatySlow 8s ease-in-out infinite; }
.f-pick   { width: 110px; top: 36%; inset-inline-start: -4%; opacity: 0.07; filter: blur(1px); animation: floaty 6s ease-in-out infinite; }
.f-tri    { width: 78px;  bottom: 8%; inset-inline-end: 10%; opacity: 0.1; animation: floatySlow 9s ease-in-out infinite; }
.f-star1  { width: 42px;  top: 11%; inset-inline-start: 7%; opacity: 0.9; animation: floaty 6s ease-in-out infinite 0.6s; }
.f-cres   { width: 38px;  top: 17%; inset-inline-end: 8%; opacity: 0.9; animation: floatySlow 8s ease-in-out infinite 1.1s; }
.f-heart  { width: 32px;  bottom: 22%; inset-inline-start: 9%; opacity: 0.9; animation: floaty 6s ease-in-out infinite 0.3s; }
.f-kaaba  { width: 38px;  bottom: 11%; inset-inline-end: 20%; opacity: 0.95; animation: floatySlow 8s ease-in-out infinite 1.6s; }
.f-star2  { width: 24px;  top: 42%; inset-inline-end: 26%; opacity: 0.8; animation: floaty 6s ease-in-out infinite 0.9s; }

.hero-inner {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 115, 0, 0.15);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.glyph { width: 16px; height: 16px; }
.hadith {
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
  max-width: 640px;
  margin-inline: auto;
  color: var(--ink);
  text-wrap: balance;
}
.hadith-attr {
  font-family: var(--font-ar);
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange);
}
.hero-meaning {
  margin: 1.25rem auto 0;
  max-width: 560px;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.7);
}
.hero-desc {
  margin: 1.5rem auto 0;
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--slate);
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero-cta .btn { width: 100%; max-width: 320px; }
.trust {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
}
.trust > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dot { width: 7px; height: 7px; border-radius: 999px; display: inline-block; }
.dot-green { background: var(--green); }
.dot-blue { background: var(--blue); }
.dot-pink { background: var(--pink); }
.dot-orange { background: var(--orange); }
.dot-yellow { background: var(--yellow); }

/* ===================================================================
   SECTIONS / HEADINGS
   =================================================================== */
.section {
  padding: 4rem 0;
  scroll-margin-top: 6rem;
}
.heading {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kicker-orange { color: var(--orange); background: rgba(255, 115, 0, 0.08); }
.kicker-deepblue { color: var(--deepblue); background: rgba(0, 97, 239, 0.08); }
.kicker-green { color: var(--green); background: rgba(71, 191, 108, 0.1); }
.kicker-blue { color: var(--blue); background: rgba(5, 163, 255, 0.1); }
.heading h2 {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: pretty;
}
.heading p {
  margin-top: 0.75rem;
  font-size: 1.02rem;
  color: var(--slate);
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.25rem; margin-top: 3rem; }
.grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
.soon-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* ===================================================================
   PRODUCT PREVIEW CARDS
   =================================================================== */
.card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); }
.card-media {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  padding: 1rem;
}
.preview {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 3 / 4;
  border-radius: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(26, 26, 46, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.25rem;
  text-align: center;
  overflow: hidden;
}
.preview-cover { background: linear-gradient(180deg, #fff7ee, #fff); }
.preview-sample { background: linear-gradient(180deg, #f3fbff, #fff); justify-content: space-between; }
.preview-cert { background: linear-gradient(180deg, #fffdf3, #fff); }
.preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
}
.preview-brand .glyph { width: 12px; height: 12px; }
.preview-icon { width: 62px; height: 62px; }
.preview-icon.sm { width: 34px; height: 34px; margin-inline: auto; }
.preview-title { font-family: var(--font-ar); font-size: 0.9rem; font-weight: 800; color: var(--ink); }
.preview-name {
  background: rgba(255, 115, 0, 0.1);
  color: var(--orange);
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
.preview-name.muted {
  background: transparent;
  color: rgba(26, 26, 46, 0.5);
  font-size: 0.75rem;
  padding: 0;
}
.preview-outline-row { display: flex; gap: 0.75rem; align-items: center; justify-content: center; }
.preview-outline-row svg { width: 44px; height: 44px; }
.preview-outline-row svg:nth-child(2) { width: 38px; height: 38px; }
.preview-outline-big { width: 58px; height: 58px; }
.palette { display: flex; gap: 0.5rem; }
.palette i { width: 14px; height: 14px; border-radius: 999px; display: block; }
.cert-frame {
  border-radius: 1rem;
  box-shadow: inset 0 0 0 2px rgba(255, 206, 0, 0.5);
  padding: 1.25rem 1rem;
}
.cert-label {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate);
}
.cert-line { display: block; width: 48px; height: 1px; background: rgba(26, 26, 46, 0.1); margin: 0.5rem auto; }
.cert-name { font-family: var(--font-ar); font-size: 0.9rem; font-weight: 800; color: var(--ink); }
.cert-seal { width: 16px; height: 16px; margin: 0.75rem auto 0; }

.card-body { padding: 1.1rem 0.25rem 0; }
.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tag-orange { color: var(--orange); background: rgba(255, 115, 0, 0.08); }
.tag-blue { color: var(--blue); background: rgba(5, 163, 255, 0.1); }
.tag-green { color: var(--green); background: rgba(71, 191, 108, 0.1); }
.card-body h3 { margin-top: 0.5rem; font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.card-body p { margin-top: 0.25rem; font-size: 0.9rem; color: var(--slate); }

/* ===================================================================
   HOW IT WORKS
   =================================================================== */
.steps { display: grid; gap: 1.1rem; margin-top: 3rem; grid-template-columns: 1fr; }
.step {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
}
.step-icon svg { width: 34px; height: 34px; }
.step-num {
  position: absolute;
  top: -8px;
  inset-inline-end: -8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.step h3 { margin-top: 1rem; font-size: 1rem; font-weight: 800; color: var(--ink); }
.step p { margin-top: 0.35rem; font-size: 0.9rem; color: var(--slate); }

/* ===================================================================
   WHY PARENTS — feature cards
   =================================================================== */
.feature {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.feature:hover { transform: translateY(-6px); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature h3 { margin-top: 1rem; font-size: 1rem; font-weight: 800; color: var(--ink); }
.feature p { margin-top: 0.35rem; font-size: 0.9rem; color: var(--slate); }

/* ===================================================================
   COMING SOON
   =================================================================== */
.soon-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.soon-badge {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  background: rgba(26, 26, 46, 0.05);
  color: var(--slate);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.soon-icon { width: 48px; height: 48px; border-radius: 1rem; display: grid; place-items: center; }
.soon-icon svg { width: 26px; height: 26px; }
.soon-card p { font-size: 0.9rem; font-weight: 700; color: var(--ink); }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-section { padding: 3rem 1.25rem; scroll-margin-top: 6rem; }
.cta-band {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin-inline: auto;
  border-radius: 2.5rem;
  background: var(--orange);
  text-align: center;
  padding: 3.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.cta-floats { position: absolute; inset: 0; pointer-events: none; }
.cf { position: absolute; }
.cf1 { width: 120px; inset-inline-start: -6%; top: -10%; opacity: 0.1; animation: floatySlow 9s ease-in-out infinite; }
.cf2 { width: 56px; inset-inline-end: 8%; top: 14%; opacity: 0.2; animation: floaty 6s ease-in-out infinite; }
.cf3 { width: 46px; inset-inline-start: 10%; bottom: 12%; opacity: 0.2; animation: floatySlow 8s ease-in-out infinite; }
.cf4 { width: 40px; inset-inline-end: 14%; bottom: -6%; opacity: 0.15; animation: floaty 7s ease-in-out infinite; }
.cta-inner { position: relative; }
.cta-band h2 {
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.cta-band p { margin: 0.75rem auto 0; max-width: 480px; color: rgba(255, 255, 255, 0.9); }
.cta-band .btn { margin-top: 1.75rem; padding: 0.9rem 2rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { padding: 2rem 1.25rem 2.5rem; scroll-margin-top: 6rem; }
.footer-card {
  max-width: var(--container);
  margin-inline: auto;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer-brand { max-width: 320px; }
.footer-logo { height: 28px; width: auto; }
.footer-brand > p { margin-top: 1rem; font-size: 0.9rem; color: var(--slate); }
.footer-sub {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 46, 0.4);
}
.footer-brand .footer-sub { margin-top: 1.25rem; }
.socials { margin-top: 0.5rem; display: flex; gap: 0.5rem; }
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(26, 26, 46, 0.6);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 46, 0.05);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.socials a:hover { background: var(--orange); color: #fff; }
.socials svg { width: 17px; height: 17px; }
.footer-col ul { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.9rem; font-weight: 600; color: var(--slate); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--slate);
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-weight: 600; transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--orange); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}
@keyframes floatySlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(-5deg); }
}

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

/* ===================================================================
   RESPONSIVE — tablet
   =================================================================== */
@media (min-width: 640px) {
  .hero { padding: 9rem 0 6rem; }
  .hadith { font-size: 2.25rem; }
  .hadith-attr { font-size: 1.2rem; }
  .hero-cta { flex-direction: row; justify-content: center; }
  .hero-cta .btn { width: auto; }
  .section { padding: 6rem 0; }
  .heading h2 { font-size: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .soon-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 4rem 3rem; }
  .cta-band h2 { font-size: 2rem; }
  .footer-card { padding: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ===================================================================
   RESPONSIVE — laptop / desktop
   =================================================================== */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .hamburger { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5, .soon-grid { grid-template-columns: repeat(5, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* Hide mobile menu entirely on desktop */
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

/* ===================================================================
   PRODUCT / ORDER PAGE
   =================================================================== */
.product-main { padding: 7rem 0 3rem; }
.back-link { display: inline-block; margin-bottom: 1.25rem; font-weight: 700; color: var(--slate); }
.back-link:hover { color: var(--orange); }
.product-hero { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: start; }
.product-mockup {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff7ee, #f3fbff);
  border: 1px dashed rgba(255, 115, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mockup-shapes { position: absolute; inset: 0; }
.ms { position: absolute; opacity: 0.16; }
.ms1 { width: 150px; top: 10%; inset-inline-start: 8%; }
.ms2 { width: 120px; bottom: 12%; inset-inline-end: 12%; }
.ms3 { width: 88px; top: 16%; inset-inline-end: 22%; }
.mockup-label {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--slate);
  font-size: 0.9rem;
}
.buy-card { border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-card); }
.buy-title { font-size: 1.8rem; font-weight: 800; margin-top: 0.6rem; color: var(--ink); line-height: 1.2; }
.buy-sub { margin-top: 0.7rem; color: var(--slate); }
.price-row { display: flex; align-items: baseline; gap: 0.6rem; margin: 1.4rem 0 1rem; }
.price { font-size: 2.2rem; font-weight: 800; color: var(--ink); }
.price-unit { color: var(--slate); font-weight: 600; font-size: 0.9rem; }
.buy-btn { font-size: 1.05rem; padding: 1rem 1.6rem; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 0.8rem; color: var(--slate); font-size: 0.85rem; }
.mini-trust { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.mini-trust li { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--slate); font-size: 0.9rem; }

.benefits { margin-top: 4rem; }
.benefits-grid { margin-top: 2rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-card);
}
.b-ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 0.9rem; display: grid; place-items: center; }
.b-ic svg { width: 26px; height: 26px; }
.benefit p { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.benefits-cta { margin-top: 2.25rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.price-inline { color: var(--slate); font-weight: 700; }

@media (min-width: 720px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .product-hero { grid-template-columns: 1.15fr 0.85fr; gap: 2rem; }
}

/* ===================================================================
   PERSONALIZATION PAGE
   =================================================================== */
.personalize-main { padding: 7rem 0 3rem; }
.status-banner {
  border-radius: 1rem;
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}
.status-banner:empty { display: none; }
.status-banner.ok { background: rgba(71, 191, 108, 0.12); color: #2f9c55; }
.status-banner.info { background: rgba(5, 163, 255, 0.1); color: #0061ef; }

.personalize-layout { margin-top: 2rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.p-form { border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-card); }
.field { border: 0; padding: 0; margin: 0 0 1.5rem; }
.field legend, .field > label { display: block; font-weight: 800; color: var(--ink); margin-bottom: 0.6rem; font-size: 1rem; }
.field small { display: block; margin-top: 0.4rem; color: var(--slate); font-size: 0.82rem; }
.field input[type="text"] {
  width: 100%;
  border: 1px solid rgba(26, 26, 46, 0.14);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input[type="text"]:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.15); }
.gender-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.gender-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem;
  border: 2px solid rgba(26, 26, 46, 0.1);
  border-radius: 1.25rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--slate);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.gender-opt .g-emoji { font-size: 1.8rem; line-height: 1; }
.gender-opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.gender-opt.is-active { border-color: var(--orange); background: rgba(255, 115, 0, 0.06); color: var(--ink); }
.gen-status { margin-top: 0.75rem; font-weight: 700; font-size: 0.9rem; min-height: 1.2em; text-align: center; }
.gen-status.busy { color: #0061ef; }
.gen-status.ok { color: #2f9c55; }
.gen-status.err { color: #e23b3b; }
.secure-note.small { margin-top: 1rem; justify-content: center; }

.preview-head { margin-bottom: 1rem; }
.preview-stage { width: 100%; }
.page-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: #fff;
  margin-bottom: 18px;
}

@media (min-width: 960px) {
  .personalize-layout { grid-template-columns: 360px 1fr; gap: 2rem; align-items: start; }
  .p-form { position: sticky; top: 6rem; }
}

/* ===================================================================
   PDF BOOK PAGES (rendered full-size, scaled in preview, captured to PDF)
   =================================================================== */
.pdf-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 1754px;
  height: 1240px;
  transform-origin: top left;
  overflow: hidden;
  background: #fff;
  color: #1a1a2e;
  font-family: var(--font-ar);
  box-sizing: border-box;
}
.wm-star { width: 42px; height: 42px; }

/* Cover */
.pdf-page.cover {
  background: #0061ef;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 90px;
  text-align: center;
}
.cover-illus svg { width: 420px; height: auto; }
.cover-title { display: flex; flex-direction: column; align-items: center; gap: 4px; font-weight: 700; font-size: 110px; line-height: 1.08; color: #fff; }
.cover-title span:first-child { color: #ffce00; }
.cover-logo { position: absolute; bottom: 70px; inset-inline-end: 96px; display: flex; align-items: center; gap: 14px; font-size: 52px; font-weight: 700; color: #fff; }

/* Pillar pages */
.pdf-page.pillar { display: flex; flex-direction: row; align-items: center; gap: 64px; padding: 90px 110px; }
.pillar-content { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 34px; }
.num-badge { width: 96px; height: 96px; border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 54px; font-weight: 700; }
.pillar-title { font-size: 104px; font-weight: 700; line-height: 1.25; color: #111; }
.pillar-sub { font-size: 46px; line-height: 1.7; color: #222; font-weight: 700; }
.q-bar { width: 100%; min-height: 120px; border-radius: 34px; display: flex; align-items: center; gap: 26px; padding: 26px 44px; position: relative; }
.q-badge { position: absolute; top: -18px; inset-inline-start: 34px; width: 54px; height: 54px; border-radius: 999px; background: #0061ef; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700; }
.q-text { font-size: 46px; font-weight: 700; color: #1a1a2e; }
.q-options { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; width: 100%; padding-inline-start: 16px; }
.opt { display: flex; align-items: center; gap: 18px; font-size: 40px; color: #222; font-weight: 700; }
.opt-dot { width: 34px; height: 34px; border-radius: 999px; border: 5px solid; display: inline-block; }
.pillar-art { flex: 0 0 540px; display: flex; align-items: center; justify-content: center; }
.pillar-art svg { width: 500px; height: 500px; }

/* Certificate */
.pdf-page.cert { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 80px 120px; gap: 28px; }
.cert-boy { background: #0061ef; color: #fff; }
.cert-girl { background: #ffa1cc; color: #1a1a2e; }
.cert-logo { display: flex; align-items: center; gap: 14px; font-size: 46px; font-weight: 700; }
.cert-boy .cert-logo { color: #fff; }
.cert-girl .cert-logo { color: #1a1a2e; }
.cert-title { font-size: 116px; font-weight: 700; }
.cert-to { font-size: 50px; font-weight: 700; }
.cert-name-box { width: 80%; min-height: 150px; border-radius: 34px; border: 4px solid currentColor; display: flex; align-items: center; justify-content: center; padding: 16px 30px; }
.cert-fullname { font-size: 80px; font-weight: 700; color: #fff; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.22); }
.cert-desc { font-size: 44px; line-height: 1.6; font-weight: 700; }
.cert-sign { margin-top: 16px; width: 86%; background: #fff; color: #1a1a2e; border-radius: 28px; padding: 34px 50px; display: flex; justify-content: space-between; gap: 30px; font-size: 38px; font-weight: 700; }

/* ===================================================================
   JPG-overlay preview (original artwork as locked background + canvas)
   =================================================================== */
.canvas-frame { margin-bottom: 18px; }
.page-canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: #fff;
}

/* ===================================================================
   Personalization product mockup (static illustration — no live edit)
   =================================================================== */
.p-mockup { display: flex; flex-direction: column; gap: 0.9rem; }
.p-mockup-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #0061ef;
  border: 1px solid rgba(26, 26, 46, 0.06);
}
.p-mockup-frame img { display: block; width: 100%; height: auto; }
.p-mockup-cap { text-align: center; color: var(--slate); font-weight: 700; font-size: 0.9rem; }
@media (min-width: 760px) { .p-mockup { position: sticky; top: 6rem; } }

/* ===================================================================
   2026 redesign additions — hero headline, hadith, showcase gallery,
   footer payments/contact, carousel, brand-icon images, order page
   =================================================================== */

/* Brand SVGs used as floating/decoration images keep their box sizing */
.feature-icon img { width: 30px; height: 30px; }
.soon-icon img { width: 26px; height: 26px; }
.float, .cf { display: block; }

/* Hero headline + hadith block */
.hero-headline {
  font-weight: 800;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 auto 1.1rem;
  max-width: 680px;
  text-wrap: balance;
}
.hadith-block {
  margin: 1.25rem auto 0;
  max-width: 600px;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(5, 163, 255, 0.18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.hadith-block .hadith { font-size: 1.4rem; margin: 0.4rem auto 0; }
.hadith-meaning { margin: 0.85rem auto 0; max-width: 520px; font-size: 1rem; font-weight: 500; font-style: italic; color: rgba(26, 26, 46, 0.7); }
.hadith-momin { margin-top: 0.4rem; font-weight: 800; color: var(--blue); font-size: 0.95rem; }
.trust-4 { gap: 0.6rem 1.25rem; }
.trust-4 > span { color: var(--ink); }

/* Infinite showcase gallery — seamless: every card has an identical
   width + trailing margin, so the duplicated set lines up exactly at
   translateX(-50%) with no visible jump. */
.showcase { padding: 1.5rem 0 3rem; overflow: hidden; }
/* Force a LTR layout context for the gallery (images only) so the
   infinite-loop math is identical in Arabic (RTL) and English. */
.gallery { overflow: hidden; padding-block: 0.75rem; direction: ltr; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.gallery-track { display: flex; direction: ltr; width: max-content; animation: galleryScroll 42s linear infinite; }
.gallery:hover .gallery-track { animation-play-state: paused; }
.g-card {
  flex: 0 0 auto;
  width: 300px;
  max-width: 78vw;
  margin-inline-end: 1.25rem;
  aspect-ratio: 4 / 3;
  padding: 4px;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, var(--gc, var(--blue)), rgba(255, 255, 255, 0.6));
  background-size: 220% 220%;
  box-shadow: 0 14px 34px -12px var(--gc, var(--blue)), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  animation: borderShift 7s ease infinite;
}
/* 5-color cycle (Blue, Pink, Orange, Green, Blue) repeating every 5
   cards so the duplicated set matches set 1 exactly = seamless loop. */
.g-card:nth-child(5n + 1) { --gc: var(--blue); }
.g-card:nth-child(5n + 2) { --gc: var(--pink); }
.g-card:nth-child(5n + 3) { --gc: var(--orange); }
.g-card:nth-child(5n + 4) { --gc: var(--green); }
.g-card:nth-child(5n + 5) { --gc: var(--blue); }
.g-card img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 1.1rem; background: #eef2f8; }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes borderShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@media (prefers-reduced-motion: reduce) { .gallery-track { animation: none; } .g-card { animation: none; } }

/* Why-parents 5-card grid spacing on tablet */
@media (min-width: 720px) and (max-width: 959px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* Footer — payments + contact */
.footer-contact { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { font-size: 0.9rem; font-weight: 600; color: var(--slate); transition: color 0.2s ease; }
.footer-contact a:hover { color: var(--orange); }
.footer-pay {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center;
}
.pay-methods { width: min(360px, 85%); height: auto; }
.pay-line { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--slate); font-weight: 700; font-size: 0.9rem; }
.pay-line .lock { color: var(--green); flex: 0 0 auto; }

/* Product image carousel (Publications page) */
.carousel { display: flex; flex-direction: column; gap: 0.9rem; }
.carousel-main {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3 / 2; background: #eef2f8; box-shadow: var(--shadow-card);
}
.carousel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease; }
.carousel-img.active { opacity: 1; }
.carousel-prev, .carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, 0.92); color: var(--ink); box-shadow: var(--shadow-card);
  display: grid; place-items: center; font-size: 1.3rem; font-weight: 800; z-index: 2;
}
.carousel-prev { inset-inline-start: 0.75rem; }
.carousel-next { inset-inline-end: 0.75rem; }
.carousel-prev:hover, .carousel-next:hover { background: #fff; }
.carousel-thumbs { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.carousel-thumb {
  width: 64px; height: 64px; border-radius: 0.9rem; overflow: hidden; cursor: pointer;
  padding: 0; border: 2px solid transparent; background: #eef2f8; transition: border-color 0.2s ease, transform 0.2s ease;
}
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-thumb.active { border-color: var(--blue); transform: translateY(-2px); }

/* Order-confirmed page */
.oc-main { padding: 8rem 0 4rem; }
.oc-card { max-width: 640px; margin-inline: auto; text-align: center; padding: 2.5rem 1.75rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.oc-badge { width: 76px; height: 76px; margin: 0 auto 1.25rem; border-radius: 999px; display: grid; place-items: center; background: rgba(71, 191, 108, 0.14); }
.oc-badge svg { width: 40px; height: 40px; color: var(--green); }
.oc-card h1 { font-size: 1.8rem; font-weight: 800; color: var(--ink); }
.oc-card .oc-desc { margin-top: 0.8rem; color: var(--slate); }
.oc-steps { margin: 2rem auto 0; max-width: 420px; display: flex; flex-direction: column; gap: 0.85rem; text-align: start; }
.oc-step { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; color: var(--ink); background: rgba(5, 163, 255, 0.06); border-radius: 1rem; padding: 0.85rem 1.1rem; }
.oc-step .oc-dot { width: 26px; height: 26px; flex: 0 0 auto; border-radius: 999px; display: grid; place-items: center; background: var(--green); }
.oc-step .oc-dot svg { width: 15px; height: 15px; color: #fff; }
.oc-cta { margin-top: 1.75rem; }

/* Publications buy-card extras */
.buy-desc { margin-top: 0.7rem; color: var(--slate); font-size: 0.98rem; line-height: 1.6; }
.buy-features { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.buy-features li { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.buy-features .dot { flex: 0 0 auto; }
.product-mockup-wrap { display: flex; flex-direction: column; gap: 0.9rem; }

/* Price rendered in Zagel (currency + number); unit text stays Kidzhood */
.price, .price-inline { font-family: "Zagel", var(--font-ar); }

/* Personalization (success) page extras */
.p-subtitle { font-weight: 800; color: var(--ink); font-size: 1.15rem; margin-top: 0.4rem; }
.form-features { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.form-features li { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.form-features .ck { width: 20px; height: 20px; flex: 0 0 auto; color: var(--green); }
.btn.is-done { background: var(--green); opacity: 1; cursor: default; }
/* Hidden by default — must NOT capture clicks until shown. */
.done-overlay {
  position: fixed; inset: 0; z-index: 60; display: none; place-items: center;
  padding: 1.5rem; background: rgba(26, 26, 46, 0.45);
  opacity: 0; transition: opacity 0.3s ease;
}
.done-overlay.show { display: grid; opacity: 1; }
.done-card { max-width: 440px; text-align: center; padding: 2.25rem 1.75rem; }
.done-badge { width: 72px; height: 72px; margin: 0 auto 1.1rem; border-radius: 999px; display: grid; place-items: center; background: rgba(71, 191, 108, 0.16); }
.done-badge svg { width: 38px; height: 38px; color: var(--green); }
.done-card h2 { font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.done-card p { margin-top: 0.6rem; color: var(--slate); }
