/* ════════════════════════════════════════════════════════════
   KazaUmri — Landing page · Design Language v2 "Midnight Ledger"
   Deep warm black · restrained gold · Cormorant + Amiri + DM Sans
   Self-contained: index.html loads this INSTEAD of base.css.
   ════════════════════════════════════════════════════════════ */

:root {
  /* Ink — warm near-blacks, green removed */
  --bg0: #0d0c0a;
  --bg1: #121110;
  --bg2: #181612;
  --bg3: #201d17;
  --bg4: #2a261e;

  /* Gold — used sparingly */
  --gold:        #c9a84c;
  --gold-bright: #e9cd84;
  --gold-deep:   #8a6f33;
  --gold-faint:  rgba(201, 168, 76, 0.07);
  --hairline:    rgba(214, 178, 98, 0.16);
  --hairline-2:  rgba(214, 178, 98, 0.32);

  /* Text */
  --ivory:  #f4eedd;
  --body:   #c9bfa6;
  --muted:  #8d8369;
  --faint:  #5b543f;

  /* Type */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --num-font: 'Marcellus', 'Cormorant Garamond', Georgia, serif; /* lining numerals for prices & counts */
  --arabic: 'Amiri', 'Scheherazade New', serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  --max-w: 1120px;

  /* Legacy aliases — kept for shared scripts (wa-support, share buttons, skip link) */
  --bg:       #0d0c0a;
  --gold2:    #e9cd84;
  --gold-bdr: rgba(214, 178, 98, 0.2);
  --cream:    #f4eedd;
  --cream2:   #c9bfa6;
  --text2:    #8d8369;
  --text3:    #5b543f;
  --text4:    #5b543f;
  --green2:   #7aaa52;
  --r-sm:     0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg0);
  color: var(--body);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(201,168,76,0.25); color: var(--ivory); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ivory); line-height: 1.12; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

/* ── Small-caps section label ── */
.k-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.k-label::before { content: ''; width: 36px; height: 1px; background: var(--hairline-2); }
.k-label.centered { justify-content: center; }
.k-label.centered::after { content: ''; width: 36px; height: 1px; background: var(--hairline-2); }

.k-title {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 500;
  margin: 1.1rem 0 0;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.k-title em { font-style: italic; font-weight: 400; color: var(--gold-bright); }
.k-sub {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: 1.1rem;
  text-wrap: pretty;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, #b08f3c);
  color: #14110a;
  box-shadow: 0 1px 0 rgba(255,235,180,0.4) inset, 0 12px 32px -12px rgba(201,168,76,0.45);
}
.btn-gold:hover {
  color: #14110a;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,240,195,0.55) inset, 0 18px 44px -12px rgba(201,168,76,0.55);
}
.btn-line {
  background: transparent;
  color: var(--body);
  border: 1px solid var(--hairline-2);
}
.btn-line:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--gold-faint); }
.btn-quiet { background: transparent; color: var(--muted); padding: 16px 18px; }
.btn-quiet:hover { color: var(--ivory); }
.btn-sm { padding: 11px 22px; font-size: 0.76rem; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  transition: background .35s, border-color .35s, height .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 64px;
  background: rgba(13,12,10,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand svg { display: block; }
.nav-wordmark {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.nav-wordmark span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-right { display: flex; align-items: center; gap: 8px; }

.lang-row { display: flex; align-items: center; gap: 2px; margin-right: 10px; }
.lang-row button {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--faint); padding: 5px 8px; transition: color .2s;
}
.lang-row button.active { color: var(--gold); }
.lang-row button:hover { color: var(--body); }
.lang-row .sep { color: var(--faint); font-size: 0.6rem; }
/* Working language buttons in hero + footer — the only switcher visible ≤560px */
.lang-opts button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: inherit; letter-spacing: inherit; text-transform: inherit;
}
.lang-opts button:hover { color: var(--body); }
.lang-opts button.active { color: var(--gold); }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--ivory); font-size: 1.3rem; padding: 6px;
}

/* ── Hairline divider with ornament ── */
.ornament-rule {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold-deep); font-size: 0.85rem;
}
.ornament-rule::before, .ornament-rule::after {
  content: ''; height: 1px; width: min(180px, 24vw);
  background: linear-gradient(90deg, transparent, var(--hairline-2));
}
.ornament-rule::after { background: linear-gradient(90deg, var(--hairline-2), transparent); }

/* ── Reveal on scroll ──
   Hidden state is ONLY applied when JS has confirmed it can reveal
   (html.js-reveal added at runtime) — no-JS environments see everything. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
  html.js-reveal .reveal.in { opacity: 1; transform: none; }
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 4.5rem 0 2.5rem;
  background: var(--bg1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-tag { font-size: 0.88rem; color: var(--muted); max-width: 280px; margin-top: 1rem; }
.footer h4 {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer ul a { font-size: 0.88rem; color: var(--muted); }
.footer ul a:hover { color: var(--gold-bright); }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(214,178,98,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--faint);
}
.footer-verse { font-family: var(--arabic); font-size: 0.95rem; color: var(--gold-deep); direction: rtl; }

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(13,12,10,0.97);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; color: var(--ivory); }
.mobile-menu .close-btn {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none; color: var(--muted); font-size: 1.6rem; cursor: pointer;
}

/* ════════ HERO ════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding: 9rem 2rem 6rem;
  overflow: hidden;
}
.hero-sky { position: absolute; inset: 0; pointer-events: none; }
.hero-sky .glow {
  position: absolute; left: 50%; top: 30%;
  width: 1100px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 50% 42% at 50% 50%, rgba(201,168,76,0.10) 0%, rgba(201,168,76,0.035) 45%, transparent 72%);
}
.hero-sky .stars {
  position: absolute; inset: 0; opacity: 0.8;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(233,205,132,0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 14%, rgba(233,205,132,0.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 88% 38%, rgba(233,205,132,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 32% 9%, rgba(233,205,132,0.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 64% 27%, rgba(233,205,132,0.35) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 22% 41%, rgba(233,205,132,0.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 45% 17%, rgba(233,205,132,0.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 93% 8%, rgba(233,205,132,0.5) 50%, transparent 51%);
}
.hero-sky .arc {
  position: absolute; left: 50%; top: -42vw;
  width: 84vw; height: 84vw; min-width: 900px; min-height: 900px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(214,178,98,0.13);
  -webkit-mask-image: linear-gradient(180deg, transparent 55%, #000 78%, transparent 99%);
  mask-image: linear-gradient(180deg, transparent 55%, #000 78%, transparent 99%);
}

/* ── Living night sky ── */
.tstar {
  position: absolute;
  border-radius: 50%;
  background: #e9cd84;
  opacity: var(--o-min, 0.1);
}
@media (prefers-reduced-motion: no-preference) {
  .tstar { animation: twinkle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite alternate; }
}
@keyframes twinkle {
  from { opacity: var(--o-min, 0.08); transform: scale(0.8); }
  to   { opacity: var(--o-max, 0.8);  transform: scale(1.2); }
}

/* ── Cursor lantern ── */
#cursor-glow {
  position: fixed; left: 0; top: 0;
  width: 600px; height: 600px;
  margin: -300px 0 0 -300px;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, rgba(213,180,100,0.085) 0%, rgba(213,180,100,0.03) 38%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}

/* ── Click ripple ── */
.click-ring {
  position: fixed;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  border: 1px solid rgba(233,205,132,0.85);
  box-shadow: 0 0 12px rgba(233,205,132,0.35);
  pointer-events: none;
  z-index: 1400;
  animation: ringOut 0.65s cubic-bezier(.2,.6,.3,1) forwards;
}
.click-dot {
  position: fixed;
  width: 4px; height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: #e9cd84;
  pointer-events: none;
  z-index: 1400;
  animation: dotOut 0.55s ease-out forwards;
}
@keyframes ringOut { from { transform: scale(1); opacity: 1; } to { transform: scale(8); opacity: 0; } }
@keyframes dotOut  { from { transform: scale(1); opacity: 0.9; } to { transform: scale(0.2) translateY(-2px); opacity: 0; } }

.hero-bismillah {
  font-family: var(--arabic);
  font-size: 1.05rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 2.6rem;
  position: relative;
}
.hero-calligraphy {
  font-family: var(--arabic);
  font-size: clamp(4.2rem, 11vw, 8.2rem);
  font-weight: 400;
  line-height: 1.7;
  padding: 0.05em 0.18em;
  margin: -0.18em 0;
  background: linear-gradient(170deg, var(--gold-bright) 20%, var(--gold) 55%, var(--gold-deep) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  direction: rtl;
  position: relative;
  text-shadow: none;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 500;
  margin-top: 1.4rem;
  letter-spacing: 0.01em;
  position: relative;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: var(--gold-bright); }
.hero-desc {
  max-width: 540px;
  margin: 1.6rem auto 0;
  font-size: 1.05rem;
  color: var(--muted);
  text-wrap: pretty;
  position: relative;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 2.8rem; flex-wrap: wrap; position: relative; }
.hero-quiet {
  display: flex; align-items: center; justify-content: center; gap: 1.8rem; flex-wrap: wrap;
  margin-top: 3.4rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint);
  position: relative;
}
.hero-quiet span::before { content: '·'; margin-right: 1.8rem; color: var(--gold-deep); }
.hero-quiet span:first-child::before { content: none; }

/* ════════ LEDGER ════════ */
.ledger { padding: 7rem 0; background: var(--bg1); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.ledger-head { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.ledger-head .k-sub { margin-left: auto; margin-right: auto; }
.ledger-board {
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  border: 1px solid var(--hairline);
  padding: 3rem 3.4rem 2.6rem;
  position: relative;
}
.ledger-board::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(214,178,98,0.07);
  pointer-events: none;
}
.ledger-totals {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 1.8rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--hairline);
  gap: 1rem; flex-wrap: wrap;
}
.lt-item { text-align: left; }
.lt-num {
  font-family: var(--num-font);
  font-size: 2.3rem; font-weight: 400; color: var(--ivory);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.lt-num.gold { color: var(--gold-bright); }
.lt-lbl { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); margin-top: 0.5rem; }
.ledger-rows { display: flex; flex-direction: column; }
.ledger-row {
  display: grid;
  grid-template-columns: 30px 130px 1fr 80px;
  align-items: center; gap: 1.4rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(214,178,98,0.07);
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row svg { color: var(--gold); opacity: 0.85; }
.lr-name { display: flex; flex-direction: column; line-height: 1.3; }
.lr-en { font-size: 0.92rem; font-weight: 400; color: var(--ivory); letter-spacing: 0.04em; }
.lr-ar { font-family: var(--arabic); font-size: 0.82rem; color: var(--faint); }
.lr-track { height: 2px; background: var(--bg4); position: relative; overflow: hidden; }
.lr-fill {
  position: absolute; inset: 0; transform-origin: left;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform: scaleX(0); transition: transform 1.4s cubic-bezier(.25,.6,.2,1);
}
.ledger-board.counted .lr-fill { transform: scaleX(var(--p)); }
.lr-val {
  font-family: var(--num-font); font-size: 1.05rem; color: var(--gold-bright);
  text-align: right; font-variant-numeric: tabular-nums;
}
.ledger-note { text-align: center; margin-top: 1.8rem; font-size: 0.8rem; color: var(--faint); font-style: italic; }

/* ════════ MODULES ════════ */
.modules { padding: 8rem 0 4rem; }
.module-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 4.5rem 0;
}
.module-row + .module-row { border-top: 1px solid rgba(214,178,98,0.08); }
.module-row:nth-child(even) .module-visual { order: -1; }
.m-num {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--gold-deep); letter-spacing: 0.2em;
}
.m-title { font-size: 2rem; font-weight: 500; margin: 0.6rem 0 0.2rem; }
.m-arabic { font-family: var(--arabic); font-size: 1.05rem; color: var(--gold-deep); margin-bottom: 1.2rem; }
.m-desc { font-size: 0.98rem; color: var(--muted); max-width: 440px; text-wrap: pretty; }
.m-points { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; }
.m-points li { display: flex; gap: 12px; font-size: 0.88rem; color: var(--body); align-items: baseline; }
.m-points li::before { content: '—'; color: var(--gold-deep); flex-shrink: 0; }
.module-visual { display: flex; justify-content: center; }
.mv-frame {
  width: 100%; max-width: 400px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--bg2), var(--bg1));
  padding: 2.4rem 2.2rem;
}
.mv-cap { font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.6rem; display: flex; justify-content: space-between; }
.mv-cap b { color: var(--gold); font-weight: 500; }
/* mini ledger */
.mini-row { display: grid; grid-template-columns: 64px 1fr 52px; gap: 12px; align-items: center; padding: 8px 0; }
.mini-name { font-size: 0.76rem; color: var(--body); letter-spacing: 0.06em; }
.mini-track { height: 2px; background: var(--bg4); }
.mini-fill { height: 100%; background: var(--gold); opacity: 0.85; }
.mini-val { font-family: var(--num-font); font-size: 0.84rem; color: var(--gold-bright); text-align: right; font-variant-numeric: tabular-nums; }
/* 40 dots */
.dots-40 { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; justify-items: center; }
.d40 { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--hairline-2); position: relative; }
.d40.f { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.4); }
.d40.m::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--gold-deep); }
/* calendar */
.cal-7 { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; justify-items: center; }
.cal-7 .dow { font-size: 0.58rem; letter-spacing: 0.1em; color: var(--faint); }
.cd { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(214,178,98,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; color: var(--faint); }
.cd.full { background: var(--gold-faint); border-color: var(--gold); color: var(--gold-bright); }
.cd.part { border-color: var(--gold-deep); color: var(--body); }

/* ════════ HOW ════════ */
.how { padding: 7rem 0; background: var(--bg1); border-top: 1px solid var(--hairline); }
.how-line { max-width: 640px; margin: 4rem auto 0; position: relative; }
.how-line::before {
  content: ''; position: absolute; left: 29px; top: 10px; bottom: 10px; width: 1px;
  background: linear-gradient(180deg, var(--hairline-2), var(--hairline), transparent);
}
.how-step { display: grid; grid-template-columns: 60px 1fr; gap: 2rem; padding: 1.6rem 0; position: relative; }
.how-num {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid var(--hairline-2);
  background: var(--bg0);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold);
  position: relative; z-index: 1;
}
.how-body h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 0.3rem; }
.how-body p { font-size: 0.92rem; color: var(--muted); max-width: 460px; }

/* ════════ PRICING ════════ */
.pricing { padding: 8rem 0; text-align: center; position: relative; overflow: hidden; }
.pricing::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.pricing-vow {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: var(--ivory); line-height: 1.3;
  max-width: 680px; margin: 1.4rem auto 0;
  text-wrap: balance;
}
.pricing-vow .g { color: var(--gold-bright); }
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 880px; margin: 4.5rem auto 0;
  border: 1px solid var(--hairline);
  background: var(--bg1);
}
.plan { padding: 2.8rem 2rem 2.4rem; position: relative; text-align: center; }
.plan + .plan { border-left: 1px solid rgba(214,178,98,0.1); }
.plan-tag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: #14110a; background: var(--gold);
  padding: 5px 16px; white-space: nowrap;
}
.plan.featured { background: linear-gradient(180deg, rgba(201,168,76,0.07), transparent 60%); }
.plan-name { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.plan-price { font-family: var(--num-font); font-size: 2.9rem; font-weight: 400; color: var(--ivory); margin-top: 1.1rem; line-height: 1; letter-spacing: 0.01em; }
.plan-price sup { font-size: 1.2rem; font-weight: 400; color: var(--muted); margin-right: 2px; }
.plan-per { font-size: 0.78rem; color: var(--faint); margin-top: 0.4rem; }
.plan-line { font-size: 0.85rem; color: var(--muted); margin-top: 1.2rem; font-style: italic; font-family: var(--serif); font-size: 1rem; }
.plan .btn { margin-top: 1.8rem; width: 100%; }
.hardship {
  max-width: 880px; margin: 1.2rem auto 0;
  border: 1px solid var(--hairline);
  background: linear-gradient(170deg, var(--bg2), var(--bg1));
  padding: 2.6rem 3rem;
  display: grid; grid-template-columns: auto 1fr auto; gap: 2.4rem; align-items: center;
  text-align: left;
  position: relative;
}
.hardship::before { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(214,178,98,0.08); pointer-events: none; }
.hardship-ar { font-family: var(--arabic); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.hardship h3 { font-size: 1.45rem; font-weight: 500; }
.hardship p { font-size: 0.9rem; color: var(--muted); max-width: 480px; margin-top: 0.4rem; }
.hardship .btn { position: relative; }
.pricing-foot { margin-top: 2.2rem; font-size: 0.82rem; color: var(--faint); }
.pricing-foot b { color: var(--muted); font-weight: 500; }

/* ════════ VOICES ════════ */
.voices { padding: 7rem 0; background: var(--bg1); border-top: 1px solid var(--hairline); }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; max-width: 1020px; margin: 4rem auto 0; }
.voice { text-align: center; }
.voice-mark { font-family: var(--serif); font-size: 3rem; color: var(--gold-deep); line-height: 0.4; display: block; margin-bottom: 1.4rem; }
.voice-text { font-family: var(--serif); font-size: 1.18rem; font-style: italic; color: var(--body); line-height: 1.55; text-wrap: pretty; }
.voice-by { margin-top: 1.4rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); }

/* ════════ FAQ ════════ */
.faq { padding: 7rem 0; }
.faq-list { max-width: 680px; margin: 3.5rem auto 0; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0.2rem;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 500; color: var(--ivory);
  text-align: left; transition: color .2s;
}
.faq-q:hover { color: var(--gold-bright); }
.faq-q .x { font-family: var(--sans); font-weight: 300; color: var(--gold); font-size: 1.3rem; transition: transform .35s; flex-shrink: 0; }
.faq-item.open .faq-q .x { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-a p, .faq-a div { padding: 0 0.2rem 1.6rem; font-size: 0.92rem; color: var(--muted); max-width: 600px; }

/* ════════ SHARE (sadaqah jariyah) ════════ */
.share { padding: 6rem 0; background: var(--bg1); border-top: 1px solid var(--hairline); text-align: center; }
.share .k-sub { margin-left: auto; margin-right: auto; margin-bottom: 2.2rem; }
.share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════ FINAL CTA ════════ */
.final { padding: 9rem 0 10rem; text-align: center; position: relative; overflow: hidden; }
.final .arc2 {
  position: absolute; left: 50%; bottom: -58vw; transform: translateX(-50%);
  width: 100vw; height: 100vw; min-width: 1100px; min-height: 1100px;
  border-radius: 50%;
  border: 1px solid rgba(214,178,98,0.16);
  box-shadow: 0 0 120px rgba(201,168,76,0.07) inset;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(0deg, transparent 50%, #000 80%);
  mask-image: linear-gradient(0deg, transparent 50%, #000 80%);
}
.final-ar { font-family: var(--arabic); font-size: 1.3rem; color: var(--gold-deep); margin-bottom: 1.6rem; }
.final h2 { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 500; }
.final p { margin: 1.4rem auto 2.6rem; color: var(--muted); max-width: 460px; font-size: 1rem; text-wrap: pretty; }

/* ── Shared page furniture (kept from base) ── */
.skip-link { font-family: var(--sans); }

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg4);
  border: 1px solid var(--gold);
  color: var(--cream2);
  padding: 10px 22px;
  font-size: 0.85rem;
  z-index: 9999;
  transition: transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.wa-support-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 990;
  text-decoration: none;
}
.wa-support-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 1.4rem; }
  .nav { padding: 0 1.4rem; }
}
@media (max-width: 880px) {
  .module-row { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0; }
  .module-row:nth-child(even) .module-visual { order: 0; }
  .plans { grid-template-columns: 1fr; max-width: 420px; }
  .plan + .plan { border-left: none; border-top: 1px solid rgba(214,178,98,0.1); }
  .plan-tag { transform: translate(-50%, -50%); }
  .hardship { grid-template-columns: 1fr; text-align: center; gap: 1.4rem; padding: 2.4rem 1.8rem; }
  .hardship p { margin-left: auto; margin-right: auto; }
  .voices-grid { grid-template-columns: 1fr; gap: 3rem; max-width: 460px; }
  .ledger-board { padding: 2rem 1.4rem 1.8rem; }
  .ledger-row { grid-template-columns: 24px 86px 1fr 70px; gap: 0.8rem; }
  .lt-num { font-size: 1.8rem; }
  .how-line::before { left: 23px; }
  .how-num { width: 48px; height: 48px; font-size: 1rem; }
  .how-step { grid-template-columns: 48px 1fr; gap: 1.2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lang-row { display: none; }
}
