/* ==========================================================================
   ETEJAH — إتجاه لتحليل الأعمال والتطوير
   Design system · bilingual (AR-RTL / EN-LTR) via CSS logical properties
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* brand — sampled from the official logo */
  --navy-950: #0d141c;
  --navy-900: #131c26;
  --navy-850: #182430;
  --navy-800: #1b2733;
  --navy-700: #243447;
  --navy-600: #2e4157;
  --navy-500: #3c5470;
  --navy-400: #5c748e;

  --gold-700: #8c6733;
  --gold-600: #a87f45;
  --gold-500: #c9a063;
  --gold-400: #d9b67f;
  --gold-300: #e8d0a6;
  --gold-100: #f6ecdb;

  --ink: #17222e;
  --ink-2: #3b4c60;
  --muted: #61748a;
  --muted-2: #8a99aa;
  --line: #e3e9f0;
  --line-2: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-tint: #f0f4f9;

  /* typography — Latin first so digits + English resolve to IBM Plex Sans,
     Arabic falls through to IBM Plex Sans Arabic. Keeps numerals Latin. */
  --font: "IBM Plex Sans", "IBM Plex Sans Arabic", -apple-system,
    BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --fs-hero: clamp(2.1rem, 1.15rem + 4.2vw, 4.4rem);
  --fs-h1: clamp(1.85rem, 1.1rem + 3.2vw, 3.35rem);
  --fs-h2: clamp(1.55rem, 1.05rem + 2.1vw, 2.6rem);
  --fs-h3: clamp(1.15rem, 0.95rem + 0.85vw, 1.5rem);
  --fs-lead: clamp(1rem, 0.94rem + 0.34vw, 1.19rem);
  --fs-body: clamp(0.95rem, 0.92rem + 0.16vw, 1.03rem);
  --fs-sm: 0.875rem;
  --fs-xs: 0.79rem;

  /* space + shape */
  --shell: 1240px;
  --gut: clamp(1.1rem, 0.6rem + 2vw, 2.5rem);
  --sec: clamp(3.6rem, 2rem + 6.2vw, 7.5rem);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --sh-1: 0 1px 2px rgba(19, 28, 38, .05), 0 4px 14px rgba(19, 28, 38, .05);
  --sh-2: 0 2px 6px rgba(19, 28, 38, .06), 0 14px 38px rgba(19, 28, 38, .09);
  --sh-3: 0 4px 10px rgba(19, 28, 38, .07), 0 28px 70px rgba(19, 28, 38, .14);
  --sh-gold: 0 14px 40px rgba(168, 127, 69, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t: .38s var(--ease);

  --header-h: 78px;
}

/* ---------- 2. Reset ----------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.85;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

/* Safety net: a <use>-based icon with no size rule would otherwise fall back
   to the SVG default of 300x150 and wreck the layout. Lowest possible
   specificity, so every component rule below still wins. */
svg { inline-size: 18px; block-size: 18px; flex: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.015em;
}

::selection { background: var(--gold-500); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link — the first tab stop on every page, hidden until focused so
   keyboard and screen-reader users can jump past the header. */
.skip {
  position: fixed;
  inset-block-start: .75rem;
  /* PHYSICAL left on purpose: with inset-inline-start the anchor edge flips in
     RTL while translateX(-50%) does not, which pushes the pill off-centre.
     left + translateX(-50%) centres identically in both directions. */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  background: var(--gold-600);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  /* Hidden by clipping, NOT by moving it off-screen: a transform transition on
     an off-screen element gets throttled by the compositor, so the pill can
     stay invisible for a second after it is focused. Clipping reveals it on
     the same frame as the focus. */
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}
.skip:focus {
  clip-path: none;
  opacity: 1;
  pointer-events: auto;
}
main:focus { outline: none; }

/* Latin numerals everywhere, isolated so they never flip inside RTL text */
.num, .stat__val, .pkg__price, time, [data-num] {
  font-variant-numeric: tabular-nums lining-nums;
  direction: ltr;
  unicode-bidi: isolate;
}

/* ---------- 3. Layout ---------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: var(--sec); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--navy-900); color: #c5d1de; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--tight { padding-block: clamp(2.6rem, 1.6rem + 3.6vw, 4.4rem); }

.grid { display: grid; gap: clamp(1rem, .6rem + 1.3vw, 1.9rem); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }

.stack-lg { display: grid; gap: clamp(2rem, 1.2rem + 3vw, 3.6rem); }

/* section heading block */
.shead { max-width: 760px; margin-bottom: clamp(2rem, 1.3rem + 2.4vw, 3.4rem); }
.shead--center { margin-inline: auto; text-align: center; }
.shead h2 { font-size: var(--fs-h2); margin-block: .55rem .9rem; }
.shead p { font-size: var(--fs-lead); color: var(--muted); }
.section--dark .shead p { color: #9fb0c2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .58rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  inline-size: 26px;
  block-size: 2px;
  border-radius: 2px;
  /* NOTE: linear-gradient() has no logical keywords — `to inline-end` is
     invalid and makes the browser drop the whole declaration. Physical
     direction per dir[] is the only correct way. */
  background: linear-gradient(to left, var(--gold-500), transparent);
}
[dir="ltr"] .eyebrow::before { background: linear-gradient(to right, var(--gold-500), transparent); }
.shead--center .eyebrow::before { display: none; }
.section--dark .eyebrow { color: var(--gold-400); }

/* ---------- 4. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-block-size: 52px;
  padding-inline: 1.7rem;
  padding-block: .82rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t), box-shadow var(--t), background var(--t),
    color var(--t), border-color var(--t);
  will-change: transform;
}
.btn svg { inline-size: 18px; block-size: 18px; flex: none; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(-1px); }

/* gold sheen sweep */
.btn::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: -140%;
  inline-size: 60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: skewX(-18deg);
  transition: inset-inline-start .65s var(--ease);
  z-index: -1;
}
.btn:hover::after { inset-inline-start: 140%; }

.btn--gold {
  --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  --btn-fg: #fff;
}
.btn--gold:hover { box-shadow: var(--sh-gold); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { --btn-fg: var(--navy-700); border-color: var(--navy-700); }

.btn--light {
  --btn-bg: rgba(255, 255, 255, .1);
  --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, .26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--navy-800); border-color: #fff; }

.btn--sm { min-block-size: 44px; padding-inline: 1.25rem; font-size: .875rem; }
.btn--wide { inline-size: 100%; }

/* text link with animated underline */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--navy-700);
  position: relative;
}
.tlink svg { inline-size: 17px; block-size: 17px; transition: transform var(--t); }
[dir="rtl"] .tlink svg { transform: scaleX(-1); }
.tlink::after {
  content: "";
  position: absolute;
  inset-block-end: -3px;
  inset-inline-start: 0;
  inline-size: 0;
  block-size: 1.5px;
  background: var(--gold-500);
  transition: inline-size var(--t);
}
.tlink:hover::after { inline-size: 100%; }
.tlink:hover svg { transform: translateX(4px); }
[dir="rtl"] .tlink:hover svg { transform: scaleX(-1) translateX(4px); }

/* ---------- 5. Header ---------------------------------------------------- */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  block-size: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-block-end: 1px solid transparent;
  transition: block-size .3s var(--ease), background .3s var(--ease),
    border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck {
  --header-h: 66px;
  background: rgba(255, 255, 255, .95);
  border-block-end-color: var(--line);
  box-shadow: 0 6px 26px rgba(19, 28, 38, .07);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  inline-size: 100%;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.brand img { block-size: 46px; inline-size: auto; transition: block-size .3s var(--ease); }
.header.is-stuck .brand img { block-size: 40px; }

.nav { display: flex; align-items: center; gap: .15rem; margin-inline-start: auto; }
.nav__link {
  position: relative;
  padding: .55rem .82rem;
  border-radius: 9px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav__link:hover { color: var(--navy-700); background: var(--bg-tint); }
.nav__link::after {
  content: "";
  position: absolute;
  inset-block-end: 4px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  inline-size: 0;
  block-size: 2px;
  border-radius: 2px;
  background: var(--gold-500);
  transition: inline-size .3s var(--ease);
}
[dir="ltr"] .nav__link::after { transform: translateX(-50%); }
.nav__link.is-active { color: var(--navy-700); font-weight: 600; }
.nav__link.is-active::after { inline-size: 20px; }

.header__cta { display: flex; align-items: center; gap: .55rem; flex: none; }

.lang {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-block-size: 42px;
  padding-inline: .9rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: all var(--t);
}
.lang svg { inline-size: 16px; block-size: 16px; }
.lang:hover { border-color: var(--navy-700); color: var(--navy-700); }

/* Burger — a 44px pill so it reads as a pair with the language button next to
   it, and three bars that all share one centre point: the open state is then a
   pure rotation with no compensating translate, which is what makes the
   menu→close morph land exactly on a symmetric X. */
.burger {
  display: none;
  position: relative;
  inline-size: 44px;
  block-size: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  flex: none;
  transition: border-color var(--t), background var(--t);
  -webkit-tap-highlight-color: transparent;
}
.burger:hover { border-color: var(--navy-400); background: var(--bg-tint); }
.burger:active { background: var(--bg-tint); }
.burger span {
  position: absolute;
  /* inset:0 + a fixed width + auto margins centres the bar identically in RTL
     and LTR, without an inset-inline-start:50% that would flip, and without a
     centring translate that would fight the animation's transform. Anchoring by
     inset alone would also make the bar width depend on the border width. */
  inset-inline: 0;
  margin-inline: auto;
  /* Lucide's `menu` at a 24 viewBox: bars 18 wide, 6 apart, round caps. The
     rest of the site's icons come from that set, so the drawn-in-CSS burger
     matches them instead of being a near-miss. Its open X (18px across) also
     matches the drawer's own close icon. */
  inline-size: 18px;
  inset-block-start: 50%;
  margin-block-start: -1px;
  block-size: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .38s var(--ease), opacity .16s linear;
}
.burger span:nth-child(1) { transform: translateY(-6px); }
.burger span:nth-child(3) { transform: translateY(6px); }
/* middle bar retracts into the centre instead of just fading — reads as the two
   outer bars swallowing it */
body.nav-open .burger span:nth-child(2) { transform: scaleX(0); opacity: 0; transition-duration: .14s; }
body.nav-open .burger span:nth-child(1) { transform: rotate(45deg); }
body.nav-open .burger span:nth-child(3) { transform: rotate(-45deg); }
/* let the middle bar clear out before the arms cross, and reverse the order on
   the way back */
body.nav-open .burger span:nth-child(1),
body.nav-open .burger span:nth-child(3) { transition-delay: .07s; }
.burger span:nth-child(2) { transition-delay: .07s; }

/* Mobile drawer — anchored to the inline-START edge in both directions
   (right in RTL, left in LTR) and pushed off-screen along the matching
   PHYSICAL axis. Mixing inset-inline-end with a positive translateX pulls the
   panel back into view in RTL, which is why the translate is per-direction. */
.drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  inline-size: min(86vw, 350px);
  z-index: 950;
  background: #fff;
  padding: 1.4rem 1.4rem calc(1.4rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: .2rem;
  transform: translateX(105%);
  transition: transform .42s var(--ease-out);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -12px 0 48px rgba(19, 28, 38, .16);
  visibility: hidden;
}
[dir="ltr"] .drawer { transform: translateX(-105%); box-shadow: 12px 0 48px rgba(19, 28, 38, .16); }
body.nav-open .drawer { transform: translateX(0); visibility: visible; }

.drawer__top { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-block-end: 1.3rem; }
/* inline-size:auto is not optional here — without it the image falls back to its
   `width` attribute (360) against a CSS-fixed 44px height, so the lockup renders
   ~6x too wide, spills past the drawer edge and squeezes the close button below
   its 42px touch target. */
.drawer__top img { block-size: 44px; inline-size: auto; }
/* Same 44px pill as the burger that opened it — the open and close affordances
   are the same control, so they should not be two different shapes. */
.drawer__close {
  inline-size: 44px;
  block-size: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: border-color var(--t), background var(--t);
  -webkit-tap-highlight-color: transparent;
}
.drawer__close:hover { border-color: var(--navy-400); background: var(--bg-tint); }
.drawer__close svg { inline-size: 20px; block-size: 20px; }

.drawer__link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .92rem .9rem;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink-2);
  border-block-end: 1px solid var(--line-2);
  transition: background var(--t), color var(--t);
}
.drawer__link svg { inline-size: 18px; block-size: 18px; color: var(--gold-600); flex: none; }
.drawer__link:hover, .drawer__link.is-active { background: var(--bg-tint); color: var(--navy-700); }
.drawer__foot { margin-block-start: auto; padding-block-start: 1.4rem; display: grid; gap: .6rem; }

.scrim {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(13, 20, 28, .5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .34s, visibility .34s;
}
body.nav-open .scrim { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ---------- 6. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(3.2rem, 2rem + 6vw, 6.5rem))
    clamp(3.4rem, 2rem + 6vw, 7rem);
  background: var(--navy-900);
  color: #b9c7d6;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90ch 60ch at 78% 8%, rgba(201, 160, 99, .2), transparent 62%),
    radial-gradient(70ch 55ch at 6% 92%, rgba(60, 84, 112, .55), transparent 65%),
    linear-gradient(155deg, var(--navy-950), var(--navy-800) 55%, var(--navy-700));
}
/* animated mesh blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  animation: drift 24s ease-in-out infinite;
}
.hero__blob--1 { inline-size: 44vw; block-size: 44vw; inset-block-start: -12%; inset-inline-end: -8%; background: rgba(201, 160, 99, .42); }
.hero__blob--2 { inline-size: 38vw; block-size: 38vw; inset-block-end: -16%; inset-inline-start: -10%; background: rgba(46, 65, 87, .9); animation-delay: -8s; animation-duration: 30s; }
.hero__blob--3 { inline-size: 26vw; block-size: 26vw; inset-block-start: 42%; inset-inline-start: 38%; background: rgba(217, 182, 127, .16); animation-delay: -15s; animation-duration: 36s; }

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(3%, -5%, 0) scale(1.12); }
  66% { transform: translate3d(-4%, 4%, 0) scale(.93); }
}

/* fine grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120ch 70ch at 50% 30%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(120ch 70ch at 50% 30%, #000 25%, transparent 78%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

.hero__title {
  font-size: var(--fs-hero);
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.028em;
  margin-block: 1.05rem 1.25rem;
}
.hero__title .gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500) 45%, var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: var(--fs-lead);
  color: #a7b8c9;
  max-inline-size: 56ch;
  margin-block-end: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-block-end: 2.6rem; }

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .48rem 1rem .48rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 160, 99, .4);
  background: rgba(201, 160, 99, .1);
  color: var(--gold-300);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .01em;
}
.hero__chip .dot {
  inline-size: 7px; block-size: 7px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(217, 182, 127, .65);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 182, 127, .6); }
  70% { box-shadow: 0 0 0 12px rgba(217, 182, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 182, 127, 0); }
}

/* hero stat strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.2rem clamp(1rem, .5rem + 1.6vw, 2.4rem);
  padding-block-start: 1.9rem;
  border-block-start: 1px solid rgba(255, 255, 255, .12);
}
.hero__stat .v {
  display: block;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.hero__stat .v i { font-style: normal; color: var(--gold-400); }
.hero__stat .k { font-size: var(--fs-xs); color: #8fa2b5; letter-spacing: .01em; }

/* hero visual: orbiting analytics panel */
.hero__visual { position: relative; display: grid; place-items: center; min-block-size: 380px; }
.hero__ring {
  position: absolute;
  inline-size: min(92%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(201, 160, 99, .3);
  animation: spin 46s linear infinite;
}
.hero__ring::after {
  content: "";
  position: absolute;
  inset-block-start: -6px;
  inset-inline-start: calc(50% - 6px);
  inline-size: 12px; block-size: 12px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 18px 3px rgba(217, 182, 127, .55);
}
.hero__ring--2 { inline-size: min(72%, 340px); border-style: solid; border-color: rgba(255, 255, 255, .08); animation-duration: 34s; animation-direction: reverse; }
.hero__ring--2::after { background: #fff; box-shadow: 0 0 14px 2px rgba(255, 255, 255, .4); inline-size: 8px; block-size: 8px; inset-inline-start: calc(50% - 4px); inset-block-start: -4px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* tilt wrapper keeps the float keyframes (on .panel) free of JS transforms */
.panel-tilt {
  position: relative;
  inline-size: min(100%, 400px);
  transition: transform .3s var(--ease);
  transform-style: preserve-3d;
}

.panel {
  position: relative;
  inline-size: 100%;
  border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .17);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.panel__head { display: flex; align-items: center; justify-content: space-between; margin-block-end: 1.2rem; }
.panel__head h4 { font-size: .96rem; color: #fff; }
/* 12px is the floor for anything a visitor has to read on a phone — below it
   the text stops being legible and mobile-usability audits flag it. */
.panel__tag {
  font-size: max(12px, .68rem); font-weight: 700; letter-spacing: .06em;
  color: #7ee2b8; background: rgba(126, 226, 184, .14);
  border: 1px solid rgba(126, 226, 184, .3);
  padding: .22rem .55rem; border-radius: 6px;
}
.panel__bars { display: flex; align-items: flex-end; gap: .55rem; block-size: 128px; margin-block-end: 1.1rem; }
.panel__bar {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(to top, rgba(201, 160, 99, .28), var(--gold-500));
  block-size: var(--h, 40%);
  transform-origin: bottom;
  animation: grow 1.1s var(--ease-out) backwards;
}
.panel__bar:nth-child(1) { animation-delay: .15s; }
.panel__bar:nth-child(2) { animation-delay: .25s; }
.panel__bar:nth-child(3) { animation-delay: .35s; }
.panel__bar:nth-child(4) { animation-delay: .45s; }
.panel__bar:nth-child(5) { animation-delay: .55s; }
.panel__bar:nth-child(6) { animation-delay: .65s; background: linear-gradient(to top, rgba(255, 255, 255, .2), #fff); }
@keyframes grow { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.panel__rows { display: grid; gap: .7rem; }
.panel__row { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: #a7b8c9; }
.panel__row b { color: #fff; font-weight: 600; }
.panel__meter { block-size: 5px; border-radius: 3px; background: rgba(255, 255, 255, .12); overflow: hidden; margin-block-start: .3rem; }
.panel__meter i { display: block; block-size: 100%; border-radius: 3px; background: linear-gradient(to left, var(--gold-600), var(--gold-400)); inline-size: var(--w, 60%); }
[dir="ltr"] .panel__meter i { background: linear-gradient(to right, var(--gold-600), var(--gold-400)); }

.panel__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .68rem .9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy-800);
  animation: float 6s ease-in-out infinite reverse;
}
.panel__float svg { inline-size: 17px; block-size: 17px; color: var(--gold-600); }
.panel__float--a { inset-block-end: -22px; inset-inline-start: -18px; }
.panel__float--b { inset-block-start: -20px; inset-inline-end: -16px; animation-delay: -3s; }

/* page hero (inner pages) */
.phero {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(2.6rem, 1.6rem + 4vw, 4.6rem))
    clamp(2.6rem, 1.6rem + 4vw, 4.6rem);
  background: var(--navy-900);
  color: #a7b8c9;
  overflow: hidden;
  isolation: isolate;
}
.phero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(70ch 46ch at 82% 0%, rgba(201, 160, 99, .22), transparent 62%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
}
.phero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(90ch 40ch at 50% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(90ch 40ch at 50% 20%, #000, transparent 75%);
}
.phero h1 { font-size: var(--fs-h1); color: #fff; margin-block: .8rem .85rem; }
.phero p { font-size: var(--fs-lead); color: #9fb0c2; max-inline-size: 70ch; }
.phero .eyebrow { color: var(--gold-400); }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-size: var(--fs-xs); color: #7d90a4; margin-block-start: 1.5rem; }
/* Padded to clear the 24x24 minimum pointer-target size (WCAG 2.5.8): the bare
   text link measured 38x23 on a phone. The negative margin keeps the row from
   growing visually. */
.crumbs a { transition: color var(--t); padding-block: 4px; margin-block: -4px; display: inline-block; }
.crumbs a:hover { color: var(--gold-400); }
.crumbs svg { inline-size: 13px; block-size: 13px; opacity: .55; }
[dir="rtl"] .crumbs svg { transform: scaleX(-1); }

/* ---------- 7. Cards ----------------------------------------------------- */
.card {
  position: relative;
  padding: clamp(1.4rem, 1rem + 1vw, 2rem);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
  block-size: 100%;
}
.card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  block-size: 3px;
  background: linear-gradient(to left, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
[dir="ltr"] .card::before {
  background: linear-gradient(to right, var(--gold-500), var(--gold-300));
  transform-origin: left;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--sh-2); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  display: grid;
  place-items: center;
  inline-size: 56px;
  block-size: 56px;
  border-radius: 15px;
  margin-block-end: 1.15rem;
  background: linear-gradient(140deg, var(--gold-100), #fff);
  border: 1px solid var(--gold-300);
  color: var(--gold-600);
  transition: transform var(--t), background var(--t), color var(--t);
}
.card__icon svg { inline-size: 26px; block-size: 26px; }
.card:hover .card__icon {
  transform: rotate(-6deg) scale(1.07);
  background: linear-gradient(140deg, var(--gold-500), var(--gold-600));
  color: #fff;
  border-color: transparent;
}
.card h3 { font-size: var(--fs-h3); margin-block-end: .6rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card__list { display: grid; gap: .45rem; margin-block-start: 1.05rem; }
.card__list li { display: flex; gap: .55rem; font-size: .885rem; color: var(--muted); }
.card__list svg { inline-size: 16px; block-size: 16px; color: var(--gold-500); flex: none; margin-block-start: .38rem; }
.card__foot { margin-block-start: 1.3rem; }

.card--dark { background: rgba(255, 255, 255, .045); border-color: rgba(255, 255, 255, .1); }
.card--dark p { color: #93a5b8; }
.card--dark .card__icon { background: rgba(201, 160, 99, .13); border-color: rgba(201, 160, 99, .3); color: var(--gold-400); }
.card--dark:hover { background: rgba(255, 255, 255, .07); border-color: rgba(201, 160, 99, .32); }

.card--num { padding-block-start: 2.6rem; }
.card__num {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-end: 1.3rem;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-tint);
  letter-spacing: -.04em;
  transition: color var(--t);
  pointer-events: none;
}
.card:hover .card__num { color: var(--gold-100); }
.section--dark .card__num { color: rgba(255, 255, 255, .07); }

/* feature row (icon + text, no box) */
.feat { display: flex; gap: 1rem; }
.feat__ic {
  flex: none;
  display: grid; place-items: center;
  inline-size: 46px; block-size: 46px;
  border-radius: 13px;
  background: var(--gold-100);
  color: var(--gold-600);
}
.feat__ic svg { inline-size: 22px; block-size: 22px; }
.feat h3, .feat h4 { font-size: 1.03rem; margin-block-end: .35rem; }
.feat p { font-size: .9rem; color: var(--muted); }
.section--dark .feat__ic { background: rgba(201, 160, 99, .14); color: var(--gold-400); }
.section--dark .feat p { color: #93a5b8; }

/* ---------- 8. Stats ----------------------------------------------------- */
.stat { text-align: center; padding: clamp(1.1rem, .8rem + .8vw, 1.7rem) .6rem; }
.stat__val {
  display: block;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section--dark .stat__val { background: linear-gradient(140deg, #fff, var(--gold-300)); -webkit-background-clip: text; background-clip: text; }
.stat__val small { font-size: .55em; font-weight: 600; }
.stat__key { font-size: .88rem; color: var(--muted); margin-block-start: .3rem; }
.section--dark .stat__key { color: #93a5b8; }
.stats-row { border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; overflow: hidden; }
.stats-row .stat + .stat { border-inline-start: 1px solid var(--line-2); }
.section--dark .stats-row { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.section--dark .stats-row .stat + .stat { border-inline-start-color: rgba(255, 255, 255, .08); }

/* ---------- 9. Marquee (CSS-only, no JS — proven pattern) ---------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; inline-size: max-content; animation: marquee 38s linear infinite; }
[dir="rtl"] .marquee__track { animation-name: marquee-rtl; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

.chip-sector {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-inline-end: 14px;
  padding: .72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.chip-sector svg { inline-size: 18px; block-size: 18px; color: var(--gold-600); }
.section--dark .chip-sector { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); color: #c5d1de; }

/* ---------- 10. Process / timeline -------------------------------------- */
.steps { position: relative; display: grid; gap: clamp(1rem, .6rem + 1.2vw, 1.6rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.step { position: relative; padding: 1.6rem 1.35rem; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform var(--t), box-shadow var(--t); }
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.step__n {
  display: grid; place-items: center;
  inline-size: 42px; block-size: 42px;
  border-radius: 12px;
  background: var(--navy-700);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-block-end: 1rem;
  transition: background var(--t), transform var(--t);
}
.step:hover .step__n { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); transform: scale(1.08); }
.step h3 { font-size: 1.02rem; margin-block-end: .4rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* vertical timeline */
.tline { position: relative; display: grid; gap: clamp(1.4rem, 1rem + 1.2vw, 2.2rem); padding-inline-start: 2.4rem; }
.tline::before {
  content: "";
  position: absolute;
  inset-block: .6rem 0;
  inset-inline-start: 11px;
  inline-size: 2px;
  background: linear-gradient(to bottom, var(--gold-500), var(--gold-300), transparent);
}
.tline__item { position: relative; }
.tline__item::before {
  content: "";
  position: absolute;
  inset-block-start: .55rem;
  inset-inline-start: -2.4rem;
  inline-size: 24px; block-size: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold-500);
  box-shadow: 0 0 0 5px rgba(201, 160, 99, .13);
}
.tline__yr { font-size: .8rem; font-weight: 700; color: var(--gold-600); letter-spacing: .04em; }
.tline__item h3 { font-size: 1.08rem; margin-block: .25rem .4rem; }
.tline__item p { font-size: .92rem; color: var(--muted); }
.section--dark .tline__item::before { background: var(--navy-900); }
.section--dark .tline__item p { color: #93a5b8; }

/* ---------- 11. Accordion ------------------------------------------------ */
.acc { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.acc + .acc { margin-block-start: .8rem; }
.acc__q {
  inline-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  text-align: start;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  transition: color var(--t), background var(--t);
}
.acc__q:hover { color: var(--gold-700); background: var(--bg-soft); }
.acc__q .ic {
  flex: none;
  display: grid; place-items: center;
  inline-size: 30px; block-size: 30px;
  border-radius: 9px;
  background: var(--bg-tint);
  color: var(--navy-700);
  transition: transform .38s var(--ease), background var(--t), color var(--t);
}
.acc__q .ic svg { inline-size: 17px; block-size: 17px; }
.acc.is-open .acc__q { color: var(--gold-700); }
.acc.is-open .acc__q .ic { transform: rotate(180deg); background: var(--gold-500); color: #fff; }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s var(--ease); }
.acc.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > div { overflow: hidden; }
.acc__a p { padding: 0 1.35rem 1.35rem; color: var(--muted); font-size: .94rem; }

/* ---------- 12. Packages ------------------------------------------------- */
.pkgs { display: grid; gap: clamp(1rem, .6rem + 1.3vw, 1.7rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr)); align-items: stretch; }

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.1rem + 1vw, 2.1rem);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--sh-2); border-color: var(--gold-300); }

.pkg--pop {
  border-color: transparent;
  box-shadow: var(--sh-3);
  background: linear-gradient(var(--navy-800), var(--navy-800)) padding-box,
    linear-gradient(150deg, var(--gold-400), var(--gold-600)) border-box;
  border: 2px solid transparent;
  color: #b9c7d6;
}
.pkg--pop h3, .pkg--pop .pkg__price { color: #fff; }
.pkg--pop .pkg__desc { color: #9fb0c2; }
.pkg--pop .pkg__list li { color: #b9c7d6; }
.pkg--pop .pkg__list svg { color: var(--gold-400); }
.pkg--pop:hover { transform: translateY(-12px); }

.pkg__badge {
  position: absolute;
  inset-block-start: -13px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  padding: .35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #fff;
  font-size: max(12px, .72rem);
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: var(--sh-gold);
}
[dir="ltr"] .pkg__badge { transform: translateX(-50%); }

.pkg__name { font-size: 1.16rem; margin-block-end: .4rem; }
.pkg__desc { font-size: .875rem; color: var(--muted); min-block-size: 2.9em; }
.pkg__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-block: 1.1rem .35rem;
  font-size: clamp(1.9rem, 1.5rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.pkg__price .cur { font-size: max(12px, .42em); font-weight: 600; color: var(--gold-600); letter-spacing: 0; }
.pkg--pop .pkg__price .cur { color: var(--gold-400); }
.pkg__meta { font-size: .8rem; color: var(--muted-2); margin-block-end: 1.4rem; padding-block-end: 1.4rem; border-block-end: 1px solid var(--line-2); }
.pkg--pop .pkg__meta { color: #8fa2b5; border-block-end-color: rgba(255, 255, 255, .12); }

.pkg__list { display: grid; gap: .62rem; margin-block-end: 1.7rem; flex: 1; }
.pkg__list li { display: flex; gap: .6rem; font-size: .885rem; color: var(--ink-2); }
.pkg__list svg { inline-size: 17px; block-size: 17px; color: var(--gold-500); flex: none; margin-block-start: .3rem; }
.pkg__list li.off { color: var(--muted-2); }
.pkg__list li.off svg { color: var(--line); }

/* custom package builder */
.builder {
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 3rem);
  background: linear-gradient(155deg, var(--navy-850), var(--navy-700));
  color: #b9c7d6;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.builder::before {
  content: "";
  position: absolute;
  inline-size: 40rem; block-size: 40rem;
  inset-block-start: -18rem; inset-inline-end: -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 99, .3), transparent 66%);
  z-index: -1;
}
.builder h2, .builder h3 { color: #fff; }
.builder__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 1rem + 3vw, 3.4rem); align-items: start; }

.range-wrap { margin-block: 2rem 1.2rem; }
.range-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .4rem;
  font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.1;
}
.range-val .cur { font-size: max(12px, .34em); color: var(--gold-400); font-weight: 600; }
.range-tier {
  display: block;
  text-align: center;
  margin-block-start: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: .02em;
}

input[type="range"] {
  inline-size: 100%;
  block-size: 34px;
  margin-block-start: 1.6rem;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  direction: ltr; /* keep low→high left→right in both languages */
}
input[type="range"]::-webkit-slider-runnable-track {
  block-size: 8px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gold-500) 0%, var(--gold-500) var(--p, 0%), rgba(255, 255, 255, .14) var(--p, 0%), rgba(255, 255, 255, .14) 100%);
}
input[type="range"]::-moz-range-track { block-size: 8px; border-radius: 999px; background: rgba(255, 255, 255, .14); }
input[type="range"]::-moz-range-progress { block-size: 8px; border-radius: 999px; background: var(--gold-500); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  inline-size: 30px; block-size: 30px;
  margin-block-start: -11px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--gold-500);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .34);
  transition: transform .2s var(--ease);
}
input[type="range"]::-moz-range-thumb {
  inline-size: 30px; block-size: 30px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--gold-500);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .34);
}
input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.15); }
.range-ends { display: flex; justify-content: space-between; margin-block-start: .5rem; font-size: .78rem; color: #8fa2b5; direction: ltr; }
[dir="rtl"] .range-ends { flex-direction: row; }

.svc-count { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block-end: .9rem; margin-block-end: 1.1rem; border-block-end: 1px solid rgba(255, 255, 255, .12); font-size: .9rem; }
.svc-count b { color: var(--gold-300); }

.svc-list { display: grid; gap: .1rem; max-block-size: 380px; overflow-y: auto; padding-inline-end: .5rem; scrollbar-width: thin; scrollbar-color: rgba(201, 160, 99, .5) transparent; }
.svc-list::-webkit-scrollbar { inline-size: 5px; }
.svc-list::-webkit-scrollbar-thumb { background: rgba(201, 160, 99, .5); border-radius: 3px; }
.svc-list::-webkit-scrollbar-track { background: rgba(255, 255, 255, .05); border-radius: 3px; }

/* default = locked; JS only adds .on — prevents an unstyled flash on load */
.svc {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .62rem .3rem;
  font-size: .885rem;
  color: rgba(255, 255, 255, .3);
  border-block-end: 1px solid rgba(255, 255, 255, .06);
  transition: color .3s var(--ease), opacity .3s var(--ease);
}
.svc .ic { flex: none; display: grid; place-items: center; inline-size: 22px; block-size: 22px; border-radius: 7px; background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .28); transition: all .3s var(--ease); }
.svc .ic svg { inline-size: 13px; block-size: 13px; }
.svc .ic .i-check { display: none; }
.svc .ic .i-lock { display: block; }
.svc.on { color: #e4ebf2; }
.svc.on .ic { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #fff; box-shadow: 0 4px 12px rgba(201, 160, 99, .38); }
.svc.on .ic .i-check { display: block; }
.svc.on .ic .i-lock { display: none; }
.svc__from { margin-inline-start: auto; font-size: max(12px, .74rem); color: rgba(255, 255, 255, .32); white-space: nowrap; }
.svc.on .svc__from { color: var(--gold-300); }

/* comparison table */
.tbl-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); background: #fff; -webkit-overflow-scrolling: touch; }
table.cmp { inline-size: 100%; min-inline-size: 620px; border-collapse: collapse; font-size: .9rem; }
table.cmp th, table.cmp td { padding: .95rem 1.05rem; text-align: start; border-block-end: 1px solid var(--line-2); }
table.cmp thead th { background: var(--bg-soft); font-size: .84rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
table.cmp tbody tr:hover { background: var(--bg-soft); }
table.cmp td.c { text-align: center; }
table.cmp svg { inline-size: 18px; block-size: 18px; display: inline-block; vertical-align: middle; }
table.cmp .yes { color: #2f9e6e; }
table.cmp .no { color: var(--line); }

/* ---------- 13. Forms ---------------------------------------------------- */
.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .875rem; font-weight: 600; color: var(--ink); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  inline-size: 100%;
  min-block-size: 52px;
  padding: .85rem 1.05rem;
  font-size: 16px; /* prevents iOS zoom-on-focus */
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-block-size: 130px; resize: vertical; line-height: 1.75; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2361748a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 17px;
  padding-inline-end: 2.6rem;
}
[dir="ltr"] .field select { background-position: right 1rem center; padding-inline-end: 2.6rem; padding-inline-start: 1.05rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 160, 99, .15);
}
.field .hint { font-size: .78rem; color: var(--muted-2); }
.field .err { font-size: .78rem; color: #c0392b; display: none; }
.field.is-bad input, .field.is-bad select, .field.is-bad textarea { border-color: #e08b82; }
.field.is-bad .err { display: block; }

/* honeypot — clip, never off-canvas (off-canvas creates RTL overflow) */
.hp { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.form__note { font-size: .8rem; color: var(--muted-2); }
.form__ok, .form__bad { display: none; align-items: center; gap: .6rem; padding: .95rem 1.1rem; border-radius: 13px; font-size: .9rem; font-weight: 500; }
.form__ok { background: #e9f7f0; color: #1d7a52; border: 1px solid #b8e4cf; }
.form__bad { background: #fdecea; color: #b03a2e; border: 1px solid #f3c4be; }
.form__ok svg, .form__bad svg { inline-size: 19px; block-size: 19px; flex: none; }
.form__ok.show, .form__bad.show { display: flex; }

/* contact channel cards */
.chan {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.chan:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--gold-300); }
.chan__ic { flex: none; display: grid; place-items: center; inline-size: 50px; block-size: 50px; border-radius: 14px; background: var(--gold-100); color: var(--gold-600); }
.chan__ic svg { inline-size: 23px; block-size: 23px; }
.chan__k { font-size: .78rem; color: var(--muted-2); }
.chan__v { font-weight: 600; color: var(--ink); font-size: .95rem; word-break: break-word; }
.chan--wa .chan__ic { background: #e4f8ec; color: #1da851; }

/* ---------- 14. CTA band ------------------------------------------------- */
.cta {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 1.4rem + 3vw, 4rem) clamp(1.4rem, 1rem + 2.4vw, 3.4rem);
  background: linear-gradient(150deg, var(--navy-850), var(--navy-700) 60%, var(--navy-600));
  color: #b9c7d6;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60ch 40ch at 50% -10%, rgba(201, 160, 99, .3), transparent 62%);
}
.cta::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(60ch 30ch at 50% 50%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(60ch 30ch at 50% 50%, #000, transparent 76%);
}
.cta h2 { color: #fff; font-size: var(--fs-h2); margin-block: .7rem .9rem; }
.cta p { color: #9fb0c2; font-size: var(--fs-lead); max-inline-size: 62ch; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-block-start: 2rem; }

/* ---------- 15. Footer --------------------------------------------------- */
.footer { background: var(--navy-950); color: #8fa2b5; padding-block: clamp(2.8rem, 2rem + 3vw, 4.6rem) 0; font-size: .9rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: clamp(1.6rem, 1rem + 2.4vw, 3rem); }
.footer__brand img { block-size: 78px; inline-size: auto; margin-block-end: 1.1rem; }
.footer__brand p { max-inline-size: 40ch; font-size: .885rem; line-height: 1.85; }
.footer h4 { color: #fff; font-size: .95rem; margin-block-end: 1.1rem; }
.footer__list { display: grid; gap: .62rem; }
.footer__list a { display: inline-flex; align-items: center; gap: .45rem; font-size: .885rem; transition: color var(--t), transform var(--t); }
.footer__list a svg { inline-size: 14px; block-size: 14px; color: var(--gold-500); flex: none; }
.footer__list a:hover { color: var(--gold-400); transform: translateX(-4px); }
[dir="ltr"] .footer__list a:hover { transform: translateX(4px); }
.footer__c { display: flex; gap: .7rem; align-items: flex-start; font-size: .885rem; }
.footer__c + .footer__c { margin-block-start: .85rem; }
.footer__c svg { inline-size: 17px; block-size: 17px; color: var(--gold-500); flex: none; margin-block-start: .3rem; }
.footer__c a { transition: color var(--t); }
.footer__c a:hover { color: var(--gold-400); }

.social { display: flex; gap: .55rem; margin-block-start: 1.5rem; }
.social a {
  display: grid; place-items: center;
  inline-size: 40px; block-size: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  color: #8fa2b5;
  transition: all var(--t);
}
.social a svg { inline-size: 18px; block-size: 18px; }
.social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: #fff; transform: translateY(-3px); }

.footer__bar {
  margin-block-start: clamp(2rem, 1.4rem + 2vw, 3.2rem);
  padding-block: 1.4rem;
  border-block-start: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  font-size: .82rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: .35rem 1.2rem; }
.footer__legal a { transition: color var(--t); }
.footer__legal a:hover { color: var(--gold-400); }
.footer__credit a { color: var(--gold-500); font-weight: 600; }
.footer__credit a:hover { color: var(--gold-300); }

/* ---------- 16. Floating WhatsApp + to-top ------------------------------- */
.fab {
  position: fixed;
  inset-block-end: calc(1.15rem + env(safe-area-inset-bottom));
  inset-inline-start: 1.15rem;
  z-index: 800;
  display: grid;
  place-items: center;
  inline-size: 56px;
  block-size: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .42);
  transition: transform var(--t);
}
.fab svg { inline-size: 27px; block-size: 27px; }
.fab:hover { transform: scale(1.09); }
.fab::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: halo 2.6s ease-out infinite;
}
@keyframes halo {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.65); opacity: 0; }
}

.totop {
  position: fixed;
  inset-block-end: calc(1.15rem + env(safe-area-inset-bottom));
  inset-inline-end: 1.15rem;
  z-index: 800;
  display: grid;
  place-items: center;
  inline-size: 48px;
  block-size: 48px;
  border-radius: 14px;
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--sh-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all var(--t);
}
.totop svg { inline-size: 20px; block-size: 20px; }
.totop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--gold-600); }

/* ---------- 17. Cookie bar ---------------------------------------------- */
.cookie {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 880;
  padding: 1rem var(--gut) calc(1rem + env(safe-area-inset-bottom));
  background: rgba(19, 28, 38, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #b9c7d6;
  border-block-start: 1px solid rgba(201, 160, 99, .3);
  transform: translateY(105%);
  transition: transform .5s var(--ease-out);
}
.cookie.show { transform: translateY(0); }

/* The consent bar (z 880) sits above the floating buttons (z 800) and on a
   phone it is tall enough to bury both of them. Lift them over it for as long
   as it is on screen; --cookie-h is published by main.js. */
body.cookie-on .fab,
body.cookie-on .totop {
  inset-block-end: calc(var(--cookie-h, 0px) + 1.15rem + env(safe-area-inset-bottom));
}
.fab, .totop { transition: transform var(--t), inset-block-end .35s var(--ease-out); }
.cookie__in { max-inline-size: var(--shell); margin-inline: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }
.cookie p { font-size: .86rem; max-inline-size: 74ch; }
.cookie a { color: var(--gold-400); text-decoration: underline; text-underline-offset: 3px; }
.cookie__btns { display: flex; gap: .55rem; flex: none; }

/* ---------- 18. Legal pages --------------------------------------------- */
.legal { max-inline-size: 860px; margin-inline: auto; }
.legal__meta { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--muted-2); background: var(--bg-soft); border: 1px solid var(--line); padding: .5rem .9rem; border-radius: 999px; margin-block-end: 2rem; }
.legal__meta svg { inline-size: 15px; block-size: 15px; color: var(--gold-600); }
.legal h2 { font-size: 1.32rem; margin-block: 2.4rem 1rem; padding-block-end: .7rem; border-block-end: 1px solid var(--line); }
.legal h2:first-of-type { margin-block-start: 0; }
.legal h3 { font-size: 1.05rem; margin-block: 1.5rem .55rem; }
.legal p { margin-block-end: 1rem; color: var(--ink-2); }
.legal ul { display: grid; gap: .6rem; margin-block-end: 1.2rem; }
.legal ul li { display: flex; gap: .65rem; color: var(--ink-2); }
.legal ul li::before { content: ""; flex: none; inline-size: 7px; block-size: 7px; border-radius: 50%; background: var(--gold-500); margin-block-start: .72em; }
.legal ol { display: grid; gap: .6rem; margin-block-end: 1.2rem; padding-inline-start: 1.3rem; list-style: decimal; }
.legal ol li { color: var(--ink-2); padding-inline-start: .3rem; }
.legal ol li::marker { color: var(--gold-600); font-weight: 700; }
.callout {
  display: flex;
  gap: .9rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--r);
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  margin-block: 1.4rem;
}
.callout svg { inline-size: 21px; block-size: 21px; color: var(--gold-700); flex: none; margin-block-start: .25rem; }
.callout p { margin: 0; font-size: .92rem; color: #6f5326; }
.callout strong { color: var(--gold-700); }
.callout--warn { background: #fdf3f2; border-color: #f3c4be; }
.callout--warn svg { color: #b03a2e; }
.callout--warn p { color: #8c3327; }
.callout--warn strong { color: #b03a2e; }

/* ---------- 19. Misc ----------------------------------------------------- */
.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .48rem .95rem; border-radius: 999px; background: var(--bg-tint); border: 1px solid var(--line); font-size: .85rem; color: var(--ink-2); }
.pill svg { inline-size: 15px; block-size: 15px; color: var(--gold-600); }
.section--dark .pill { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .11); color: #c5d1de; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 1rem + 3.4vw, 4rem); align-items: center; }
.split--wide { grid-template-columns: 1.15fr .85fr; }

.media { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--bg-tint); }
.media img { inline-size: 100%; block-size: 100%; object-fit: cover; }

/* Embedded map. Never combine aspect-ratio with min-block-size on the frame:
   the browser then derives the WIDTH from the enforced height (320 × 16/7 =
   731px) and blows the layout out sideways on phones. Fixed responsive height
   + an absolutely positioned iframe is immune to that. */
.map-frame {
  position: relative;
  inline-size: 100%;
  max-inline-size: 100%;
  block-size: clamp(300px, 44vw, 460px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--line);
}
.map-frame iframe { position: absolute; inset: 0; inline-size: 100%; block-size: 100%; border: 0; }
.media--frame { padding: .7rem; background: linear-gradient(150deg, var(--gold-300), var(--line)); }
.media--frame > * { border-radius: calc(var(--r-xl) - .7rem); overflow: hidden; }

.quote {
  position: relative;
  padding: clamp(1.4rem, 1rem + 1.2vw, 2.2rem);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  block-size: 100%;
  display: flex;
  flex-direction: column;
}
.quote__mark { inline-size: 34px; block-size: 34px; color: var(--gold-300); margin-block-end: .8rem; }
.quote p { font-size: .95rem; color: var(--ink-2); flex: 1; }
.quote__who { display: flex; align-items: center; gap: .8rem; margin-block-start: 1.4rem; padding-block-start: 1.2rem; border-block-start: 1px solid var(--line-2); }
.quote__av { inline-size: 44px; block-size: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--navy-700); color: #fff; font-weight: 700; font-size: .95rem; flex: none; }
.quote__n { font-weight: 600; color: var(--ink); font-size: .92rem; }
.quote__r { font-size: .8rem; color: var(--muted-2); }
.stars { display: flex; gap: .12rem; margin-block-end: .7rem; }
.stars svg { inline-size: 15px; block-size: 15px; color: var(--gold-500); }

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-block-end: 2rem; }
.tab {
  padding: .62rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--t);
}
.tab:hover { border-color: var(--gold-400); color: var(--gold-700); }
.tab.is-active { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }

/* 404 */
.nf { text-align: center; padding-block: clamp(5rem, 3rem + 8vw, 9rem); }
.nf__code { font-size: clamp(5rem, 3rem + 12vw, 11rem); font-weight: 700; line-height: 1; letter-spacing: -.05em; background: linear-gradient(140deg, var(--navy-700), var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 20. Scroll reveal ------------------------------------------- */
/* The horizontal reveal offsets park an element 30px outside its column. On a
   phone in LTR that lands past the inline-end edge and widens the document, so
   the page content area clips on the x-axis. `clip` (not `hidden`) is used so
   no scroll container is created and sticky/fixed children keep working. */
main { overflow-x: clip; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* preloader */
.pre {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  transition: opacity .6s var(--ease), visibility .6s;
}
.pre.done { opacity: 0; visibility: hidden; }
.pre img { inline-size: 108px; animation: beat 1.5s ease-in-out infinite; }
@keyframes beat {
  0%, 100% { transform: scale(1); opacity: .82; }
  50% { transform: scale(1.09); opacity: 1; }
}
.pre__bar { position: absolute; inset-block-end: 0; inset-inline-start: 0; block-size: 3px; inline-size: 0; background: linear-gradient(to left, var(--gold-600), var(--gold-300)); animation: load 1.4s var(--ease-out) forwards; }
[dir="ltr"] .pre__bar { background: linear-gradient(to right, var(--gold-600), var(--gold-300)); }
@keyframes load { to { inline-size: 100%; } }

/* ---------- 21. Responsive ---------------------------------------------- */
@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
  :root { --header-h: 72px; }
  .nav { display: none; }
  /* `.nav` carried the `margin-inline-start:auto` that pushed the actions to the
     far edge; once it is hidden that push has to move to `.header__cta` itself.
     Putting it on `.burger` does nothing — its parent is `flex:none`, so there is
     no free space inside it to absorb an auto margin. */
  .burger { display: block; }
  /* the two header controls must read as one pair: same height, same pill, and
     44px is also the touch-target floor */
  .lang { min-block-size: 44px; }
  .header__cta { margin-inline-start: auto; }
  .header__cta .btn { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.6rem; }
  /* Keep the headline + CTA above the fold on phones: the dashboard visual
     follows the copy instead of pushing it down a full screen. */
  .hero__visual { min-block-size: 300px; }
  .panel-tilt { inline-size: min(100%, 360px); }
  .split, .split--wide, .builder__grid { grid-template-columns: 1fr; }
  .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  :root { --header-h: 66px; }
  .g-2, .g-3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .stats-row .stat:nth-child(odd) { border-inline-start: 0; }
  .stats-row .stat:nth-child(n+3) { border-block-start: 1px solid var(--line-2); }
  .section--dark .stats-row .stat:nth-child(n+3) { border-block-start-color: rgba(255, 255, 255, .08); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; text-align: center; }
  .footer__brand img { margin-inline: auto; }
  .footer__brand p { margin-inline: auto; }
  .footer__brand .social { justify-content: center; }
  .footer__bar { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .cookie__in { flex-direction: column; align-items: stretch; }
  .cookie__btns { inline-size: 100%; }
  .cookie__btns .btn { flex: 1; }
  .brand img { block-size: 42px; }
  .header.is-stuck .brand img { block-size: 38px; }
  .hero__visual { min-block-size: 260px; }
  .hero__ring { inline-size: min(96%, 330px); }
  .hero__ring--2 { inline-size: min(76%, 260px); }
  .panel__float--a { inset-inline-start: -6px; }
  .panel__float--b { inset-inline-end: -6px; }
}

@media (max-width: 560px) {
  :root { --r-xl: 22px; --r-lg: 18px; }
  .g-4 { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__actions .btn { inline-size: 100%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__list a { justify-content: center; }
  .footer__c { justify-content: center; text-align: start; }
  .tline { padding-inline-start: 1.9rem; }
  .tline__item::before { inset-inline-start: -1.9rem; inline-size: 20px; block-size: 20px; }
  .fab { inline-size: 52px; block-size: 52px; }
  .totop { inline-size: 44px; block-size: 44px; }
  .panel__float { font-size: max(12px, .74rem); padding: .55rem .7rem; }
  .stat { padding-inline: .3rem; }
}

@media (max-width: 400px) {
  .pkg__price { font-size: 1.8rem; }

  /* On a 320px screen a 56px and a 48px floating button eat a third of the
     width and sit over whatever is at the bottom of the page. Shrink them —
     still comfortably above the 44px touch-target minimum. */
  .fab { inline-size: 48px; block-size: 48px; }
  .fab svg { inline-size: 23px; block-size: 23px; }
  .totop { inline-size: 44px; block-size: 44px; }
}

/* Two stat columns stay readable down to ~360px; only the smallest phones
   need a single column, otherwise the hero gets needlessly tall. */
@media (max-width: 344px) {
  .hero__stats { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr !important; }
  .stats-row .stat + .stat { border-inline-start: 0; border-block-start: 1px solid var(--line-2); }
}

/* touch devices: kill hover transforms that feel sticky */
@media (hover: none) {
  .card:hover, .pkg:hover, .step:hover, .chan:hover, .quote:hover { transform: none; }
  .btn:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Printing matters here: clients print the legal pages and the packages
   table. Strip the chrome, flatten the dark sections to ink on paper, and
   reveal the destination of every link. */
@media print {
  .header, .drawer, .scrim, .fab, .totop, .cookie, .pre, .hero__bg,
  .skip, .marquee, .cta, .nav, .burger, .breadcrumb { display: none !important; }

  html, body { background: #fff !important; color: #000 !important; }
  .section { padding-block: .8rem !important; }
  .shell { max-inline-size: none; padding-inline: 0; }

  /* dark bands become plain paper */
  .section--dark, .section--navy, .hero, .footer, .pkg--pop {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #ccc;
  }
  .section--dark *, .section--navy *, .hero *, .footer *, .pkg--pop * {
    color: #000 !important;
    text-shadow: none !important;
  }

  a { text-decoration: underline; }
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; color: #444; }
  main a[href^="#"]::after,
  main a[href^="mailto"]::after,
  main a[href^="tel"]::after { content: ""; }

  .card, .pkg, .step, .acc, .quote, .svc, table, figure { break-inside: avoid; page-break-inside: avoid; }
  h1, h2, h3 { break-after: avoid; page-break-after: avoid; }

  /* accordions print open — the answers are the content worth keeping */
  .acc__a { max-block-size: none !important; overflow: visible !important; opacity: 1 !important; }
  .acc__q .ic { display: none; }

  [data-reveal] { opacity: 1 !important; transform: none !important; }
  iframe, .map { display: none !important; }
}
