/* ============================================================
   Mithqaly — Aureus design system
   "institutional wealth": parchment warmth, evergreen ink,
   gold used only where value lives.
   ============================================================ */

/* ---- Fonts (Cairo variable, self-hosted) ---- */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/fonts/cairo-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFC, U+200C-200E, U+2010-2011;
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/fonts/cairo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}

/* ---- Tokens ---- */
:root {
  --parchment: #f7f5f0;
  --chalk: #fffefc;
  --soft-linen: #eae6df;
  --granite: #3d5250;
  --granite-muted: #8a9e9a;
  --vault: #0d0b09;
  --walnut: #1c1813;
  --walnut-lift: #262018;
  --golden-bronze: #c99839;
  --gold-deep: #a87b24;
  --gold-text: #7a5a12; /* AA-contrast gold for small text on parchment/tints */
  --evergreen: #0a3932;
  --seaweed: #2da175;
  --blushed-brick: #c84646;

  --shadow-card: 0 1px 2px rgba(10, 57, 50, .05), 0 8px 24px -12px rgba(10, 57, 50, .18);
  --shadow-lift: 0 2px 4px rgba(10, 57, 50, .06), 0 18px 40px -16px rgba(10, 57, 50, .28);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  background: var(--parchment);
  color: var(--evergreen);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* warm paper texture: two ultra-soft radial washes, no images */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(201, 152, 57, .07), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(10, 57, 50, .04), transparent 55%);
}
main, header, footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.35; margin: 0 0 .5em; }
h1 { font-weight: 900; font-size: clamp(1.9rem, 4.6vw, 3.1rem); letter-spacing: -.5px; }
h2 { font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-weight: 700; font-size: 1.12rem; }
p  { margin: 0 0 1em; color: var(--granite); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

::selection { background: rgba(201, 152, 57, .3); }

/* number runs inside Arabic text */
.num { direction: ltr; unicode-bidi: embed; font-variant-numeric: tabular-nums; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.16 0.012 75 / .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(0.72 0.13 80 / .14);
  color: var(--soft-linen);
}
.site-header .bar {
  display: flex; align-items: center; gap: 18px;
  padding-block: 10px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; font-size: 1.25rem; }
.brand img { width: 40px; height: 40px; }
.site-nav { display: flex; gap: 22px; margin-inline-start: auto; font-weight: 700; font-size: .95rem; }
.site-nav a { text-decoration: none; color: var(--granite-muted); transition: color .2s; }
.site-nav a:hover { color: var(--soft-linen); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--golden-bronze); color: oklch(0.18 0.02 75);
  font-weight: 800; font-size: .92rem; text-decoration: none;
  padding: 8px 18px; border-radius: 999px;
  box-shadow: 0 4px 14px -6px rgba(201, 152, 57, .8);
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -6px rgba(201, 152, 57, .9); }

/* ---- Ticker strip ---- */
.ticker-wrap {
  background: var(--evergreen); color: var(--soft-linen);
  overflow: hidden; white-space: nowrap;
  font-size: .92rem; font-weight: 700;
  border-bottom: 1px solid rgba(201, 152, 57, .25);
}
.ticker {
  display: inline-flex; gap: 48px; padding: 8px 0;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
.ticker:hover { animation-play-state: paused; }
.ticker .item { display: inline-flex; align-items: center; gap: 8px; }
.ticker .gold-dot { color: var(--golden-bronze); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); } /* RTL: content flows right */
}

/* ============================================================
   VAULT HERO — بيت السبائك
   Drenched warm-dark scene; the live price is the jewel.
   ============================================================ */
.vault-hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -10%, oklch(0.32 0.05 80 / .55), transparent 62%),
    radial-gradient(900px 700px at 8% 112%, oklch(0.3 0.06 70 / .5), transparent 58%),
    oklch(0.16 0.012 75);
  color: var(--soft-linen);
  overflow: hidden;
  padding-block: clamp(56px, 9vh, 110px) clamp(64px, 10vh, 120px);
}
#gold-caustics {
  position: absolute; inset: auto 0 0 0;
  width: 100%; height: 62%;
  display: block;
  opacity: .85;
  pointer-events: none;
}
.vault-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 130% at 50% 108%, transparent 0%, oklch(0.16 0.012 75 / .55) 62%, transparent 100%);
}
.vault-inner { position: relative; max-width: 880px; }
.vault-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--granite-muted); font-weight: 700; font-size: clamp(.85rem, 1.6vw, 1rem);
  letter-spacing: .02em; margin: 0 0 clamp(18px, 3vh, 30px);
}
.vault-kicker .live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--seaweed);
  animation: dot-pulse 1.6s ease-in-out infinite;
}
.vault-h1 {
  margin: 0 0 clamp(28px, 5vh, 48px);
  font-weight: 900;
  font-size: clamp(2.3rem, 6.4vw, 4.4rem);
  line-height: 1.28;
  letter-spacing: -.5px;
  color: oklch(0.93 0.012 85);
}
.vault-h1 .line { display: block; }
.vault-h1 .gold {
  color: var(--golden-bronze);
  filter: drop-shadow(0 2px 26px oklch(0.72 0.13 80 / .45));
}

/* the jewel */
.price-jewel {
  border-block: 1px solid oklch(0.72 0.13 80 / .22);
  padding-block: clamp(22px, 4vh, 36px);
  margin-bottom: clamp(28px, 5vh, 44px);
}
.jewel-label {
  margin: 0 0 6px;
  color: var(--granite-muted); font-weight: 700; font-size: .95rem;
}
.jewel-price {
  direction: ltr; unicode-bidi: isolate;
  display: flex; justify-content: flex-end; /* RTL visual start */
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  font-size: clamp(3.4rem, 11.5vw, 7.5rem);
  line-height: 1.05;
  color: var(--golden-bronze);
  filter: drop-shadow(0 4px 34px oklch(0.72 0.13 80 / .38));
  min-height: 1.05em;
}
/* odometer digit reels */
.odo-group { display: inline-flex; }
.odo-digit {
  display: inline-block; overflow: hidden;
  height: 1.05em; line-height: 1.05;
}
.odo-reel {
  display: block;
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.odo-reel span { display: block; height: 1.05em; }
.odo-comma { display: inline-block; opacity: .55; }
.jewel-unit {
  margin: 8px 0 0;
  color: var(--granite-muted); font-size: .92rem; font-weight: 600;
}
.jewel-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 18px;
  margin-top: clamp(16px, 3vh, 26px);
  color: var(--granite-muted); font-weight: 700; font-size: clamp(.9rem, 1.7vw, 1.02rem);
}
.jewel-row b { color: var(--soft-linen); font-weight: 800; margin-inline-start: 6px; }
.jewel-row .sep { width: 1px; height: 18px; background: oklch(0.72 0.13 80 / .25); }

.vault-cta { margin-top: 0; }
.platforms-dark { color: var(--granite-muted); }

/* hero entrance: blur-rise choreography */
@media (prefers-reduced-motion: no-preference) {
  .stagger {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(10px);
    animation: vault-in 1.1s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: calc(var(--st, 0) * .14s + .1s);
  }
  @keyframes vault-in {
    to { opacity: 1; transform: none; filter: blur(0); }
  }
}

/* ---- Hero (light variant — prices page) ---- */
.hero { padding-block: 64px 40px; position: relative; }
.hero .grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center;
}
.hero .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-text); font-weight: 800; font-size: .9rem;
  background: rgba(201, 152, 57, .12);
  border: 1px solid rgba(201, 152, 57, .35);
  padding: 4px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold-deep); }
.hero .sub { font-size: 1.12rem; max-width: 34em; }
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; align-items: center; }
.store-badges a { transition: transform .25s var(--ease-out), filter .25s; }
.store-badges a:hover { transform: translateY(-4px) scale(1.02); filter: drop-shadow(0 10px 18px rgba(10, 57, 50, .25)); }
.store-badges img, .store-badges svg { height: 56px; width: auto; }
.hero .proof { margin-top: 22px; display: flex; gap: 26px; color: var(--granite); font-weight: 700; font-size: .95rem; }
.hero .proof b { color: var(--evergreen); font-weight: 900; font-size: 1.15rem; display: block; }

/* ---- Ledger rows (features) ---- */
.ledger { padding-block: clamp(64px, 10vh, 110px); }
.ledger-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1.4;
  max-width: 18em; margin-bottom: clamp(36px, 6vh, 60px);
}
.ledger-row {
  display: grid;
  grid-template-columns: minmax(70px, 130px) 1.6fr 1fr;
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(28px, 5vh, 44px);
  border-top: 1px solid oklch(0.35 0.03 70 / .18);
}
.ledger-row:last-child { border-bottom: 1px solid oklch(0.35 0.03 70 / .18); }
.ledger-num {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900; line-height: 1;
  color: oklch(0.72 0.13 80 / .35);
}
.ledger-body h3 { font-size: clamp(1.15rem, 2.4vw, 1.45rem); font-weight: 800; margin-bottom: .35em; }
.ledger-body p { margin: 0; max-width: 36em; }
.ledger-live { text-align: center; }
.ledger-live b {
  display: block; font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--gold-deep); line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.ledger-live small { color: var(--granite); font-weight: 700; font-size: .85rem; }

/* ---- Sections ---- */
section { padding-block: 56px; }
.section-head { text-align: center; max-width: 42em; margin: 0 auto 40px; }
.section-head .eyebrow { color: var(--gold-text); font-weight: 800; font-size: .88rem; letter-spacing: .5px; }

/* feature cards */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcard {
  background: var(--chalk); border-radius: var(--radius);
  border: 1px solid rgba(10, 57, 50, .06);
  box-shadow: var(--shadow-card);
  padding: 30px 26px;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.fcard .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(201, 152, 57, .18), rgba(201, 152, 57, .06));
  border: 1px solid rgba(201, 152, 57, .3);
  color: var(--gold-deep); font-size: 1.4rem;
}
.fcard p { margin: 0; font-size: .98rem; }

/* trust strip */
.trust {
  background: var(--evergreen); color: var(--parchment);
  border-radius: var(--radius);
  padding: 38px 30px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.trust::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 50% -50%, rgba(201, 152, 57, .25), transparent 70%);
}
.trust .stat { position: relative; }
.trust .stat b { display: block; font-size: 2rem; font-weight: 900; color: var(--golden-bronze); }
.trust .stat span { color: var(--soft-linen); font-weight: 700; font-size: .95rem; }

/* prices grid (prices page) */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.price-card {
  background: var(--chalk); border-radius: var(--radius);
  border: 1px solid rgba(10, 57, 50, .06);
  box-shadow: var(--shadow-card);
  padding: 22px 24px;
}
.price-card .label { color: var(--granite); font-weight: 700; font-size: .92rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.price-card .value { font-weight: 900; font-size: 1.65rem; color: var(--evergreen); transition: color .4s; }
.price-card .value small { font-size: .85rem; color: var(--granite); font-weight: 700; }
.price-card.featured { border: 1px solid rgba(201, 152, 57, .45); background: linear-gradient(160deg, var(--chalk), #fdf8ec); }
.price-card.featured .value { color: var(--gold-deep); }

/* price change pulse */
@keyframes price-pulse {
  0% { text-shadow: 0 0 0 rgba(201, 152, 57, 0); }
  30% { text-shadow: 0 0 18px rgba(201, 152, 57, .55); }
  100% { text-shadow: 0 0 0 rgba(201, 152, 57, 0); }
}
.pulse { animation: price-pulse 1.2s ease-out; }
.up   { color: var(--seaweed) !important; }
.down { color: var(--blushed-brick) !important; }

/* history table + chart */
.history-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 26px; align-items: start; }
table.history {
  width: 100%; border-collapse: collapse;
  background: var(--chalk); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); font-variant-numeric: tabular-nums;
}
table.history th, table.history td { padding: 10px 18px; text-align: start; font-size: .95rem; }
table.history th { background: var(--evergreen); color: var(--soft-linen); font-weight: 700; }
table.history tr:nth-child(even) td { background: #faf8f3; }
table.history td { color: var(--granite); border-top: 1px solid rgba(10, 57, 50, .05); }
table.history td:last-child { font-weight: 800; color: var(--evergreen); }
.chart-card {
  background: var(--chalk); border-radius: var(--radius);
  box-shadow: var(--shadow-card); border: 1px solid rgba(10, 57, 50, .06);
  padding: 22px;
}
.chart-card svg { width: 100%; height: auto; display: block; }
.big-chart .line {
  stroke: var(--golden-bronze); stroke-width: 2.5; fill: none;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
}
.is-visible .big-chart .line { animation: draw-line 1.6s var(--ease-out) forwards .2s; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
.big-chart .dot { fill: var(--gold-deep); }
.big-chart text { font-family: 'Cairo', sans-serif; font-size: 11px; fill: var(--granite); }

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; }
details {
  background: var(--chalk); border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 57, 50, .07);
  box-shadow: var(--shadow-card);
  margin-bottom: 12px; padding: 4px 22px;
  transition: box-shadow .3s;
}
details[open] { box-shadow: var(--shadow-lift); }
summary {
  cursor: pointer; font-weight: 800; padding-block: 14px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; font-size: 1.4rem; color: var(--gold-deep); font-weight: 400;
  transition: transform .3s var(--ease-out); line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); }
details p { padding-bottom: 16px; margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(150deg, var(--evergreen) 0%, #0e4a41 100%);
  color: var(--parchment);
  border-radius: calc(var(--radius) + 6px);
  padding: 56px 30px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: -40%;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(201, 152, 57, .14) 60deg, transparent 120deg);
  animation: slow-spin 18s linear infinite;
}
@keyframes slow-spin { to { transform: rotate(360deg); } }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--parchment); }
.cta-band p { color: var(--soft-linen); }

/* footer */
.site-footer {
  border-top: 1px solid rgba(10, 57, 50, .08);
  padding: 34px 0 44px; margin-top: 30px;
  color: var(--granite); font-size: .93rem;
}
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: center; }
.site-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer a { color: var(--granite); text-decoration: none; font-weight: 700; }
.site-footer a:hover { color: var(--gold-deep); }

/* buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--golden-bronze); color: var(--evergreen);
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  padding: 13px 30px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(201, 152, 57, .8);
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -8px rgba(201, 152, 57, .95); }
.btn-gold:active { transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(234, 230, 223, .5); color: var(--parchment);
  font-weight: 800; text-decoration: none;
  padding: 12px 28px; border-radius: 999px;
  transition: background .2s, transform .2s var(--ease-out);
}
.btn-outline:hover { background: rgba(234, 230, 223, .12); transform: translateY(-2px); }

/* universal download CTA */
.download-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; align-items: flex-start; }
.btn-download { font-size: 1.18rem; padding: 16px 38px; }
.btn-download svg { flex: none; }
.platforms {
  display: inline-flex; align-items: center; gap: 8px; margin: 0;
  font-size: .88rem; font-weight: 700; color: var(--granite);
}
.platforms svg { width: 17px; height: 17px; }
.platforms .dot { opacity: .5; }
.platforms-light { color: var(--soft-linen); }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--seaweed); color: #fff; font-weight: 800;
  text-decoration: none; padding: 12px 28px; border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(45, 161, 117, .9);
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.btn-whatsapp:hover { transform: translateY(-3px); }

/* content pages (privacy/contact) */
.page-prose { max-width: 760px; margin-inline: auto; padding-block: 48px; }
.page-prose h1 { margin-bottom: .8em; }
.page-prose h2 { margin-top: 1.6em; font-size: 1.25rem; }
.page-prose ul { color: var(--granite); }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 30px; }
.contact-card {
  background: var(--chalk); border-radius: var(--radius);
  box-shadow: var(--shadow-card); border: 1px solid rgba(10, 57, 50, .06);
  padding: 28px 24px; text-align: center;
}
.contact-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-card a { font-weight: 800; text-decoration: none; color: var(--evergreen); direction: ltr; unicode-bidi: embed; display: inline-block; }
.contact-card a:hover { color: var(--gold-deep); }

/* ---- Scroll reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.is-visible { opacity: 1; transform: none; }

  /* number roll on update */
  [data-price] { transition: color .35s; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
  .reveal { opacity: 1; }
  .cta-band::before, .phone-col::before { animation: none; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero .grid { grid-template-columns: 1fr; gap: 36px; }
  .features { grid-template-columns: 1fr; }
  .ledger-row { grid-template-columns: 56px 1fr; }
  .ledger-live { grid-column: 2; text-align: start; display: flex; align-items: baseline; gap: 10px; }
  .history-wrap { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hero { padding-block: 40px 24px; }
  section { padding-block: 40px; }
}
@media (max-width: 480px) {
  .store-badges img, .store-badges svg { height: 48px; }
  .hero .proof { gap: 18px; }
}

/* ---- Blog ---- */
.blog-index { padding-block: 48px; }
.blog-index .section-head { text-align: start; margin-bottom: 34px; }
.blog-intro { max-width: 640px; color: var(--granite); font-size: 1.05rem; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.post-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--chalk); border-radius: var(--radius);
  border: 1px solid rgba(10, 57, 50, .07);
  box-shadow: var(--shadow-card);
  padding: 26px 24px; text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-card h2 { font-size: 1.12rem; color: var(--evergreen); margin: 0; line-height: 1.5; }
.post-card p { margin: 0; color: var(--granite); font-size: .95rem; }
.post-card .post-meta { margin-top: auto; }
.post-meta { color: var(--granite-muted); font-weight: 700; font-size: .85rem; }
.post h1 { line-height: 1.4; }
.post article h2 { margin-top: 1.8em; }
.post article h3 { margin-top: 1.3em; font-size: 1.08rem; }
.post article ul, .post article ol { color: var(--granite); line-height: 1.9; padding-inline-start: 22px; }
.post article a { color: var(--gold-deep); font-weight: 700; }
.post article table { width: 100%; border-collapse: collapse; margin: 1.2em 0; background: var(--chalk); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-card); font-size: .95rem; }
.post article th, .post article td { padding: 10px 14px; text-align: start; border-bottom: 1px solid rgba(10, 57, 50, .08); }
.post article th { background: var(--evergreen); color: var(--soft-linen); font-weight: 800; }
.post article tr:last-child td { border-bottom: none; }
.post article blockquote { margin: 1.2em 0; padding: 14px 20px; background: var(--chalk); border-inline-start: 3px solid var(--golden-bronze); border-radius: var(--radius-sm); color: var(--granite); }
.post article blockquote p { margin: 0; }
.crumbs { font-size: .88rem; font-weight: 700; color: var(--granite-muted); margin-bottom: 18px; }
.crumbs a { color: var(--gold-text); text-decoration: none; }
.crumbs a:hover { color: var(--gold-deep); }
.post-faq h2 { margin-bottom: .8em; }
.post-cta { margin-top: 44px; display: flex; flex-direction: column; gap: 18px; }
.post-cta .cta-band { padding: 40px 26px; }
.post-cta .cta-band h2 { font-size: 1.35rem; }
.prices-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--evergreen); color: var(--soft-linen);
  border-radius: var(--radius); padding: 18px 22px;
  text-decoration: none; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.prices-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.prices-card-text { display: flex; flex-direction: column; gap: 3px; }
.prices-card-text b { font-weight: 800; }
.prices-card-text small { color: var(--granite-muted); font-weight: 700; }
.prices-card-text small b { color: var(--golden-bronze); }
.prices-card-arrow { margin-inline-start: auto; color: var(--golden-bronze); font-size: 1.3rem; }
.related { margin-top: 40px; }
.related h2 { font-size: 1.15rem; }
.related ul { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; }
.related a { color: var(--gold-text); font-weight: 700; text-decoration: none; }
.related a:hover { color: var(--gold-deep); }
