/* ============================================================
   Nahj Al-Injaz — Design System Stylesheet
   RTL-first via CSS logical properties; serves AR (rtl) + EN (ltr)
   Tokens defined in design-system/MASTER.md
   ============================================================ */

:root {
  /* Color tokens */
  --navy-950: #060F1F;
  --navy-900: #0A1830;
  --navy-850: #0D1E3B;
  --navy-800: #122647;
  --navy-700: #1A3560;
  --gold-200: #F2E4BC;
  --gold-300: #E9D08C;
  --gold-400: #DDBB66;
  --gold-500: #C9A24B;
  --gold-600: #A67F2F;
  --gold-700: #7C5E20;
  --ivory: #F7F5F0;
  --paper: #FFFFFF;
  --ink-900: #101828;
  --ink-700: #344054;
  --ink-500: #5D6B82;
  --mist: #B9C4D6;
  --mist-strong: #E6ECF5;
  --line-light: #E7E2D6;
  --line-gold-dark: rgba(201, 162, 75, 0.28);
  --wa: #25D366;
  --wa-dark: #17A653;
  --error: #DC2626;

  /* Gradients */
  --grad-gold: linear-gradient(115deg, #A67F2F 0%, #C9A24B 45%, #E9D08C 100%);
  --grad-gold-soft: linear-gradient(115deg, #C9A24B, #E9D08C);

  /* Type */
  --font-head: 'Alexandria', 'Tajawal', system-ui, sans-serif;
  --font-body: 'Tajawal', 'Alexandria', system-ui, sans-serif;
  --fs-display: clamp(2.1rem, 4.6vw + 0.5rem, 3.6rem);
  --fs-h2: clamp(1.6rem, 2.6vw + 0.5rem, 2.3rem);
  --fs-h3: clamp(1.15rem, 1vw + 0.75rem, 1.35rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;

  /* Space (8px grid) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px; --sp-12: 96px;
  --section-y: clamp(64px, 9vw, 116px);

  /* Shape & elevation */
  --r-card: 16px;
  --r-input: 12px;
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 24px -8px rgba(16, 24, 40, 0.08);
  --shadow-card-hover: 0 2px 4px rgba(16, 24, 40, 0.05), 0 18px 40px -12px rgba(16, 24, 40, 0.16);
  --shadow-gold: 0 10px 30px -10px rgba(201, 162, 75, 0.45);

  /* Z-scale */
  --z-nav: 100;
  --z-drawer: 110;
  --z-fab: 90;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--gold-500); color: var(--navy-950); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.35;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: var(--fs-display); font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.skip-link {
  position: absolute; inset-inline-start: 16px; top: -48px;
  background: var(--navy-900); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 10px; z-index: 999; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
@media (max-width: 480px) { .container { padding-inline: 16px; } }
.section { padding-block: var(--section-y); }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy-900); }

.section-head { max-width: 640px; margin-bottom: var(--sp-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.875rem; color: var(--gold-700);
  margin-bottom: var(--sp-2);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--grad-gold-soft); border-radius: 2px; }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--grad-gold-soft); border-radius: 2px; }
.section--navy .eyebrow { color: var(--gold-300); }
.section-head p { margin-top: var(--sp-2); color: var(--ink-500); }
.section--navy h2, .section--navy h3 { color: var(--mist-strong); }
.section--navy p { color: var(--mist); }

.grid { display: grid; gap: var(--sp-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 28px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  position: relative; overflow: hidden; white-space: nowrap;
  touch-action: manipulation;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn-gold { background: var(--grad-gold); color: var(--navy-950); box-shadow: var(--shadow-gold); }
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%);
  transform: translateX(-130%); transition: transform 0.6s ease;
}
[dir="rtl"] .btn-gold::after { transform: translateX(130%); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(201, 162, 75, 0.6); }
.btn-gold:hover::after { transform: translateX(130%); }
[dir="rtl"] .btn-gold:hover::after { transform: translateX(-130%); }

.btn-ghost { border: 1.5px solid var(--line-gold-dark); color: var(--gold-300); background: rgba(201,162,75,0.05); }
.btn-ghost:hover { border-color: var(--gold-500); background: rgba(201,162,75,0.12); transform: translateY(-2px); }
.btn-ghost--light { border-color: rgba(124,94,32,0.35); color: var(--gold-700); background: transparent; }
.btn-ghost--light:hover { border-color: var(--gold-600); background: rgba(201,162,75,0.08); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 26px -10px rgba(37, 211, 102, 0.55); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: var(--z-nav);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 24, 48, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-color: var(--line-gold-dark);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: #fff; }
.brand-name .dot { color: var(--gold-400); }
.brand-tag { font-size: 0.66rem; color: var(--gold-300); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.nav-links a {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  color: var(--mist-strong); font-weight: 500; font-size: 0.975rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-links a:hover { color: var(--gold-300); background: rgba(201,162,75,0.08); }
.nav-links a[aria-current="page"] { color: var(--gold-300); font-weight: 700; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; min-height: 40px; padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--line-gold-dark); color: var(--gold-300);
  font-weight: 700; font-size: 0.9rem; transition: background-color 0.2s ease, border-color 0.2s ease;
}
.lang-switch:hover { background: rgba(201,162,75,0.12); border-color: var(--gold-500); }
.nav .btn { min-height: 44px; padding: 9px 22px; font-size: 0.95rem; }

.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 12px; color: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 1024px) {
  .nav-links, .nav .btn-wa { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-drawer {
    position: fixed; inset-inline: 0; top: 76px; z-index: var(--z-drawer);
    background: rgba(8, 18, 38, 0.97);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-gold-dark);
    padding: var(--sp-2) var(--sp-3) var(--sp-4);
    display: none;
  }
  body.nav-open .nav-drawer { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { background: rgba(8, 18, 38, 0.97); }
  body.nav-open .nav-toggle .icon-menu { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }
  .nav-drawer ul { list-style: none; padding: 0; display: flex; flex-direction: column; }
  .nav-drawer a {
    display: flex; align-items: center; min-height: 52px; padding: 8px 6px;
    color: var(--mist-strong); font-weight: 600; font-size: 1.1rem;
    border-bottom: 1px solid rgba(201,162,75,0.12);
  }
  .nav-drawer a[aria-current="page"] { color: var(--gold-300); }
  .nav-drawer .btn { margin-top: var(--sp-3); width: 100%; }
}
@media (min-width: 1025px) { .nav-drawer { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy-900); color: var(--mist);
  padding-block: calc(76px + clamp(56px, 9vw, 110px)) clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 46% at 78% 18%, rgba(201, 162, 75, 0.16), transparent 70%),
    radial-gradient(46% 44% at 12% 88%, rgba(26, 53, 96, 0.65), transparent 72%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-8); align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .hero-visual { order: -1; max-width: 300px; margin-inline: auto; }
}
.hero h1 { color: #fff; margin-block: var(--sp-2) var(--sp-3); }
.hero h1 .gold {
  background: var(--grad-gold-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: clamp(1.05rem, 1.2vw + 0.8rem, 1.25rem); max-width: 54ch; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-gold-dark); border-radius: 999px;
  padding: 8px 18px; font-size: 0.9rem; font-weight: 500; color: var(--gold-200);
  background: rgba(201, 162, 75, 0.07);
}
.hero-badge .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 0 rgba(221,187,102,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(221,187,102,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(221,187,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(221,187,102,0); }
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid rgba(201,162,75,0.16); }
.hero-trust li { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 0.9rem; color: var(--mist); }
.hero-trust { padding-inline-start: 0; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; }

.line-mask { overflow: hidden; }
.line-mask > span { display: inline-block; }

/* Hero emblem visual */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-emblem { width: min(340px, 72vw); filter: drop-shadow(0 24px 60px rgba(201,162,75,0.22)); }
.hero-ring {
  position: absolute; width: min(430px, 88vw); aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(201, 162, 75, 0.3);
  animation: spin 60s linear infinite;
}
.hero-ring--inner { width: min(370px, 78vw); border-style: solid; border-color: rgba(201,162,75,0.14); animation-direction: reverse; animation-duration: 45s; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-chip {
  position: absolute; padding: 9px 16px; border-radius: 999px;
  background: rgba(13, 30, 59, 0.88); border: 1px solid var(--line-gold-dark);
  color: var(--gold-200); font-size: 0.82rem; font-weight: 700; white-space: nowrap;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero-chip--1 { top: 6%; inset-inline-end: 4%; }
.hero-chip--2 { bottom: 12%; inset-inline-start: 0; }
@media (max-width: 900px) { .hero-chip { display: none; } }

/* ---------- Marquee ---------- */
.marquee-band { background: var(--navy-950); border-block: 1px solid var(--line-gold-dark); padding-block: 18px; overflow: hidden; }
.marquee-label { text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--gold-500); margin-bottom: 10px; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; flex: none; align-items: center; gap: 56px; padding-inline-end: 56px; animation: marquee 34s linear infinite; }
[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--mist); opacity: 0.75; white-space: nowrap; display: flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: "◆"; font-size: 0.5rem; color: var(--gold-600); }
@keyframes marquee { to { transform: translateX(-100%); } }
@keyframes marquee-rtl { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee { flex-wrap: wrap; justify-content: center; } }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--r-card); padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(201, 162, 75, 0.5); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: var(--fs-small); color: var(--ink-500); }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(201,162,75,0.14), rgba(201,162,75,0.05));
  border: 1px solid rgba(201, 162, 75, 0.3); color: var(--gold-700);
  margin-bottom: var(--sp-2);
}
.icon-badge svg { width: 26px; height: 26px; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: var(--sp-2);
  color: var(--gold-700); font-weight: 700; font-size: 0.9rem;
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(-4px); }
[dir="ltr"] .card:hover .card-link svg { transform: translateX(4px); }

/* Audience split cards (home) */
.split-card {
  position: relative; overflow: hidden; border-radius: 20px;
  background: var(--navy-850); border: 1px solid var(--line-gold-dark);
  padding: clamp(28px, 4vw, 44px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.split-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 85% 0%, rgba(201,162,75,0.14), transparent 70%);
}
.split-card:hover { transform: translateY(-5px); border-color: rgba(201,162,75,0.55); box-shadow: 0 24px 50px -20px rgba(6, 15, 31, 0.8); }
.split-card h3 { color: #fff; font-size: 1.45rem; margin-block: var(--sp-2) 6px; }
.split-card > p { color: var(--mist); font-size: var(--fs-small); }
.split-card ul { list-style: none; padding: 0; margin-block: var(--sp-3); display: grid; gap: 10px; }
.split-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--mist-strong); font-size: 0.95rem; }
.split-card li svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: 5px; }

/* ---------- Stats ---------- */
.stats-band { background: var(--navy-900); position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 120%, rgba(201,162,75,0.12), transparent 70%);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); text-align: center; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2;
  background: var(--grad-gold-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--mist); font-size: 0.95rem; margin-top: 4px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; position: relative; }
.step { position: relative; padding-inline-start: 0; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: var(--sp-2);
  background: var(--paper); border: 1.5px solid rgba(201,162,75,0.5);
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--gold-700);
  box-shadow: var(--shadow-card); position: relative; z-index: 1;
}
@media (min-width: 961px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps::before {
    content: ""; position: absolute; top: 28px; inset-inline: 12%;
    border-top: 2px dashed rgba(201, 162, 75, 0.4);
  }
}

/* ---------- Testimonials ---------- */
.quote-card { display: flex; flex-direction: column; gap: var(--sp-2); }
.quote-stars { display: flex; gap: 3px; color: var(--gold-500); }
.quote-stars svg { width: 17px; height: 17px; }
.quote-text { color: var(--ink-700); font-size: 1rem; }
.quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: var(--sp-2); border-top: 1px solid var(--line-light); }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  background: var(--grad-gold); color: var(--navy-950); font-size: 1rem;
}
.quote-name { font-weight: 700; color: var(--ink-900); font-size: 0.95rem; line-height: 1.4; }
.quote-role { font-size: 0.82rem; color: var(--ink-500); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy-900); color: var(--mist);
  padding-block: calc(76px + clamp(48px, 7vw, 84px)) clamp(48px, 7vw, 84px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(46% 60% at 82% 20%, rgba(201,162,75,0.14), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-block: var(--sp-2); font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.page-hero p { max-width: 60ch; }
.breadcrumb { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; font-size: 0.85rem; color: var(--mist); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb li + li::before { content: "‹"; margin-inline-end: 8px; color: var(--gold-600); }
[dir="ltr"] .breadcrumb li + li::before { content: "›"; }

/* ---------- Service detail cards ---------- */
.service-card { display: flex; flex-direction: column; }
.service-card .btn { margin-top: auto; align-self: flex-start; min-height: 44px; padding: 8px 20px; font-size: 0.9rem; }
.service-card ul { list-style: none; padding: 0; margin-block: var(--sp-2) var(--sp-3); display: grid; gap: 8px; }
.service-card li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-700); }
.service-card li svg { width: 16px; height: 16px; color: var(--gold-600); flex: none; margin-top: 6px; }

/* ---------- Packages ---------- */
.package { position: relative; display: flex; flex-direction: column; }
.package--featured { border-color: var(--gold-500); border-width: 1.5px; box-shadow: var(--shadow-gold); }
.package-flag {
  position: absolute; top: -14px; inset-inline-start: 50%; transform: translateX(50%);
  background: var(--grad-gold); color: var(--navy-950);
  font-size: 0.78rem; font-weight: 800; padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
[dir="ltr"] .package-flag { transform: translateX(-50%); }
.package-price { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--ink-900); margin-block: 6px var(--sp-2); }
.package-price small { font-size: 0.85rem; font-weight: 500; color: var(--ink-500); }
.package ul { list-style: none; padding: 0; display: grid; gap: 10px; margin-bottom: var(--sp-4); }
.package li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.package li svg { width: 17px; height: 17px; color: var(--gold-600); flex: none; margin-top: 5px; }
.package .btn { margin-top: auto; width: 100%; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--sp-2); max-width: 780px; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--r-card);
  overflow: hidden; transition: border-color 0.25s ease;
}
.faq details[open] { border-color: rgba(201, 162, 75, 0.5); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
  padding: 18px 24px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; color: var(--ink-900); font-size: 1.02rem;
  min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 22px; height: 22px; color: var(--gold-600); transition: transform 0.25s ease; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 24px 20px; color: var(--ink-500); font-size: var(--fs-small); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-900); position: relative; overflow: hidden;
  text-align: center; border-block: 1px solid var(--line-gold-dark);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 70% at 50% 0%, rgba(201,162,75,0.16), transparent 70%);
}
.cta-band .container { position: relative; max-width: 760px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--mist); margin-block: var(--sp-2) var(--sp-4); }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-6); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { display: flex; gap: var(--sp-2); align-items: flex-start; }
.info-card .icon-badge { margin-bottom: 0; flex: none; }
.info-card h3 { font-size: 1.05rem; }
.info-card p, .info-card a { font-size: var(--fs-small); color: var(--ink-500); }
.info-card a { color: var(--gold-700); font-weight: 700; direction: ltr; unicode-bidi: embed; }

.form { display: grid; gap: var(--sp-3); background: var(--paper); border: 1px solid var(--line-light); border-radius: 20px; padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; font-size: 0.92rem; color: var(--ink-900); }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 16px;
  border: 1.5px solid var(--line-light); border-radius: var(--r-input);
  background: var(--ivory); color: var(--ink-900);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.14);
}
.field .hint { font-size: 0.8rem; color: var(--ink-500); }
.field .error-msg { display: none; font-size: 0.82rem; color: var(--error); font-weight: 500; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--error); }
.field.invalid .error-msg { display: block; }
.form-note { font-size: 0.82rem; color: var(--ink-500); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: var(--mist); padding-block: var(--sp-10) var(--sp-4); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); padding-bottom: var(--sp-6); border-bottom: 1px solid rgba(201,162,75,0.16); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--gold-300); font-size: 0.95rem; margin-bottom: var(--sp-2); }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--mist); font-size: 0.92rem; transition: color 0.2s ease; }
.footer a:hover { color: var(--gold-300); }
.footer .brand-name { font-size: 1.15rem; }
.footer .about-blurb { font-size: 0.9rem; margin-top: var(--sp-2); max-width: 34ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex: none; margin-top: 5px; }
.footer-contact .num { direction: ltr; unicode-bidi: embed; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; justify-content: space-between; padding-top: var(--sp-4); font-size: 0.82rem; color: var(--ink-500); }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; z-index: var(--z-fab);
  inset-inline-end: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.7); }
.wa-fab:active { transform: scale(0.96); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4); animation: pulse-ring 2.6s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 1; }
  80%, 100% { transform: scale(1.25); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab::before, .hero-ring, .hero-badge .pulse-dot { animation: none; } }

/* ---------- Values / about ---------- */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
@media (max-width: 900px) { .value-row { grid-template-columns: 1fr; } }
.about-figure {
  border-radius: 20px; background: var(--navy-900); border: 1px solid var(--line-gold-dark);
  display: grid; place-items: center; padding: var(--sp-8); position: relative; overflow: hidden;
}
.about-figure::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 30%, rgba(201,162,75,0.16), transparent 70%); }
.about-figure img, .about-figure svg { width: min(240px, 60%); position: relative; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: var(--sp-3); }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist svg { width: 20px; height: 20px; color: var(--gold-600); flex: none; margin-top: 4px; }
.checklist strong { color: var(--ink-900); }

/* ===== FAN CAROUSEL ===== */
.fan-section {
  padding-block: var(--section-y);
  background: var(--ivory);
  overflow: hidden;
}
.fan-stage {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.fan-track {
  position: relative;
  width: 100%;
  height: 460px;
  perspective: 1400px;
}
.fan-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  min-height: 400px;
  transform-origin: center center;
  transition: box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
  will-change: transform, opacity;
  border-radius: var(--r-card);
  background: var(--paper);
  border: 1px solid var(--line-light);
  box-shadow: 0 4px 24px rgba(16,24,40,0.10), 0 1px 4px rgba(16,24,40,0.06);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  user-select: none;
  overflow: hidden;
}
.fan-card.is-active {
  cursor: default;
  box-shadow: 0 16px 56px rgba(16,24,40,0.20), 0 2px 8px rgba(16,24,40,0.08);
  border-color: rgba(201,162,75,0.50);
}
.fan-card:not(.is-active):hover {
  border-color: rgba(201,162,75,0.40);
}
.fan-card .icon-badge { margin-bottom: var(--sp-2); }
.fan-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.fan-card p { font-size: var(--fs-small); color: var(--ink-500); margin-bottom: 0; }
.fan-card ul { list-style: none; padding: 0; margin-block: var(--sp-2) var(--sp-3); display: grid; gap: 8px; }
.fan-card li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-700); }
.fan-card li svg { width: 15px; height: 15px; color: var(--gold-600); flex: none; margin-top: 5px; }
.fan-card .btn { margin-top: auto; align-self: flex-start; min-height: 40px; padding: 7px 18px; font-size: 0.88rem; }
.fan-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fan-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,75,0.4);
  background: transparent;
  color: var(--gold-700);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex: none;
}
.fan-nav-btn:hover { background: rgba(201,162,75,0.10); border-color: var(--gold-600); transform: scale(1.06); }
.fan-nav-btn:active { transform: scale(0.95); }
.fan-nav-btn svg { width: 18px; height: 18px; }
.fan-dots { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; max-width: 300px; }
.fan-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(201,162,75,0.25);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.fan-dot.is-active {
  background: var(--gold-600);
  transform: scale(1.4);
}
.fan-counter {
  font-size: 0.88rem;
  color: var(--ink-500);
  font-weight: 600;
  min-width: 60px;
  text-align: center;
}
@media (max-width: 640px) {
  .fan-card { width: 250px; min-height: 360px; padding: var(--sp-3); }
  .fan-track { height: 400px; }
}
/* ===== END FAN CAROUSEL ===== */

/* Latin helpers */
:lang(en) .eyebrow { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; }
