/* ==========================================================================
   FlyXability LLC — Global Stylesheet
   Clean, professional, trust-focused. Mobile-first. Supports LTR & RTL.
   ========================================================================== */

:root {
  /* ── Gold Brand Palette ── */
  --fx-primary:       #c9960c;   /* rich gold — buttons, links, highlights  */
  --fx-primary-dark:  #9a7309;   /* deep gold — hover states                */
  --fx-primary-light: #f2b705;   /* bright gold — accents                   */
  --fx-accent:        #f2b705;   /* bright gold — CTA accent button         */

  /* ── Dark Background Scale ── */
  --fx-bg:            #0d0900;   /* near-black gold — main page background  */
  --fx-bg-soft:       #161000;   /* slightly lighter dark                   */
  --fx-bg-tint:       #211800;   /* warm dark gold tint — cards / sections  */
  --fx-bg-card:       #1c1500;   /* card surface                            */

  /* ── Text ── */
  --fx-ink:           #fdf6e3;   /* warm cream — primary text               */
  --fx-ink-soft:      #c8a86a;   /* muted gold — secondary text             */
  --fx-muted:         #7a6030;   /* subdued — captions, metadata            */

  /* ── Borders & Dividers ── */
  --fx-line:          #2e2300;   /* dark gold border                        */
  --fx-line-light:    #4a3800;   /* slightly visible divider                */

  /* ── Utilities ── */
  --fx-whatsapp:      #25D366;
  --fx-whatsapp-dark: #128C7E;
  --fx-shadow:        0 6px 24px rgba(201,150,12,.15);
  --fx-shadow-lg:     0 18px 48px rgba(201,150,12,.28);
  --fx-radius:        14px;
  --fx-radius-sm:     8px;
  --fx-maxw:          1200px;
  --fx-gap:           28px;
  --fx-font:     "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --fx-font-ar:  "Cairo", "Tajawal", "Segoe UI", system-ui, "Noto Sans Arabic", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--fx-font);
  color: var(--fx-ink);
  background: var(--fx-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body { font-family: var(--fx-font-ar); }

/* Phone numbers & numeric strings always read LTR even in RTL mode */
.phone-ltr,
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] a[href^="https://wa.me"],
html[dir="rtl"] .wa-float,
html[dir="rtl"] .wa-float__num,
html[dir="rtl"] .btn--wa {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}
html[dir="rtl"] .wa-float {
  display: flex; /* restore flex layout for the float button */
}

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

a { color: var(--fx-primary); text-decoration: none; }
a:hover { color: var(--fx-primary-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  line-height: 1.25;
  color: var(--fx-accent);
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.35rem); }
p { margin: 0 0 1em; color: var(--fx-ink-soft); }

.container {
  width: 92%;
  max-width: var(--fx-maxw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.section--soft { background: var(--fx-bg-soft); }
.section--tint { background: var(--fx-bg-tint); }
.section--dark { background: #0d0900; color: var(--fx-ink); border-top: 1px solid var(--fx-line-light); border-bottom: 1px solid var(--fx-line-light); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--fx-accent); }
.section--dark p { color: var(--fx-ink-soft); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 40px; }
html[dir="rtl"] .section-head { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fx-primary);
  background: var(--fx-bg-tint);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--fx-primary); color: #0d0900; box-shadow: var(--fx-shadow); font-weight: 700; }
.btn--primary:hover { background: var(--fx-primary-light); color: #0d0900; }
.btn--ghost { background: transparent; color: var(--fx-primary); border-color: var(--fx-primary); }
.btn--ghost:hover { background: var(--fx-primary); color: #0d0900; }
.btn--light { background: var(--fx-bg-tint); color: var(--fx-primary); border-color: var(--fx-line-light); }
.btn--light:hover { background: var(--fx-primary); color: #0d0900; }
.btn--whatsapp { background: var(--fx-whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--fx-whatsapp-dark); color: #fff; }
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,9,0,.97);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--fx-line-light);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fx-ink);
}
.site-header__brand img { height: 38px; width: auto; }
.site-header__brand:hover { text-decoration: none; }
.brand-name {
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 1.1rem;
  line-height: 1;
}
.brand-tag {
  display: block;
  font-size: .72rem;
  color: var(--fx-muted);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: .04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  color: var(--fx-ink-soft);
  font-weight: 500;
  font-size: .97rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.nav a:hover, .nav a.is-active {
  color: var(--fx-accent);
  border-bottom-color: var(--fx-accent);
  text-decoration: none;
}

.header-actions { display: flex; gap: 10px; align-items: center; }

.lang-toggle {
  background: var(--fx-bg-tint);
  border: 1px solid var(--fx-line-light);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: var(--fx-ink);
  cursor: pointer;
  font-size: .88rem;
  transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--fx-primary); color: var(--fx-primary); }

.nav-toggle {
  display: none;
  background: var(--fx-bg-tint);
  border: 1px solid var(--fx-line-light);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--fx-ink); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: var(--fx-bg-soft);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--fx-line);
    box-shadow: var(--fx-shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--fx-line);
    width: 100%;
  }
  .nav a:last-child { border-bottom: 0; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: 72px 0 84px;
  background:
    radial-gradient(1200px 400px at 0% 0%, rgba(24,115,196,.12), transparent 60%),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero__lead { font-size: 1.1rem; max-width: 560px; color: var(--fx-ink-soft); }

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 10px;
}
.hero__highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--fx-ink);
  font-weight: 500;
}
.hero__highlights .check {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fx-bg-tint);
  color: var(--fx-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-top: 2px;
}

.hero__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--fx-shadow-lg);
  background: #0a2540;
  aspect-ratio: 4 / 3;
}
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__badge {
  position: absolute;
  inset-inline-start: 18px;
  top: 18px;
  background: rgba(201,150,12,.88);
  color: #0d0900;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
}

@media (max-width: 880px) {
  .hero { padding: 48px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__media { aspect-ratio: 16 / 10; }
}

/* -------- Trust bar -------- */
.trust-bar {
  background: var(--fx-primary);
  color: #fff;
  padding: 18px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-bar strong { color: #fff; font-weight: 700; }
.trust-bar__item {
  font-size: .97rem;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.trust-bar__item .stars { color: var(--fx-accent); letter-spacing: 2px; }
@media (max-width: 720px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
}

/* -------- Card grids -------- */
.grid-3 {
  display: grid;
  gap: var(--fx-gap);
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  display: grid;
  gap: var(--fx-gap);
  grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
  display: grid;
  gap: var(--fx-gap);
  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-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-line-light);
  border-radius: var(--fx-radius);
  padding: 26px;
  box-shadow: 0 1px 0 rgba(15,27,45,.02);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fx-shadow);
  border-color: var(--fx-line-light);
}
.card h3 { margin-top: 14px; }
.card p { margin-bottom: 0; }

.card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--fx-bg-tint);
  color: var(--fx-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card__icon svg { width: 26px; height: 26px; }

.card--yemen {
  background: linear-gradient(135deg, #1c1400 0%, #2e2200 100%);
  color: var(--fx-ink);
  border-color: var(--fx-line-light);
}
.card--yemen h3 { color: var(--fx-accent); }
.card--yemen p { color: var(--fx-ink-soft); }
.card--yemen .card__icon { background: rgba(255,255,255,.12); color: #fff; }

/* -------- Testimonials -------- */
.testimonial {
  background: var(--fx-bg-card);
  border-radius: var(--fx-radius);
  padding: 26px;
  border: 1px solid var(--fx-line);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  inset-inline-start: 22px;
  font-size: 54px;
  color: var(--fx-primary);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial p { color: var(--fx-ink); font-weight: 500; }
.testimonial__stars { color: var(--fx-accent); letter-spacing: 2px; font-size: 1rem; margin-top: 8px; }
.testimonial__author { font-size: .88rem; color: var(--fx-muted); margin-top: 10px; }

/* -------- Steps -------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-line-light);
  border-radius: var(--fx-radius);
  padding: 22px;
  position: relative;
}
.step__num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--fx-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h4 { margin: 0 0 6px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--fx-ink-soft); font-size: .96rem; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* -------- CTA block -------- */
.cta-block {
  background: linear-gradient(135deg, #1c1400 0%, #2e2200 100%);
  color: var(--fx-ink);
  border: 1px solid var(--fx-line-light);
  border-radius: 22px;
  padding: 44px;
  text-align: center;
}
.cta-block h2 { color: var(--fx-accent); }
.cta-block p { color: var(--fx-ink-soft); max-width: 640px; margin-inline: auto; }
.cta-block .btn-row { justify-content: center; margin-top: 18px; }
@media (max-width: 640px) { .cta-block { padding: 28px; } }

/* -------- Forms -------- */
form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .94rem; color: var(--fx-ink); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--fx-line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--fx-ink);
  background: var(--fx-bg-tint);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--fx-primary);
  box-shadow: 0 0 0 3px rgba(201,150,12,.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form-note { font-size: .86rem; color: var(--fx-muted); }

/* -------- Info tiles -------- */
.info-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-tile {
  background: var(--fx-bg-card);
  border: 1px solid var(--fx-line-light);
  border-radius: var(--fx-radius);
  padding: 22px;
}
.info-tile h4 { margin: 0 0 6px; color: var(--fx-primary); font-size: 1rem; }
.info-tile p { margin: 0; font-size: .95rem; }
@media (max-width: 740px) { .info-tiles { grid-template-columns: 1fr; } }

/* -------- Split layout -------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: var(--fx-radius); box-shadow: var(--fx-shadow); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* -------- Gallery -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery img { border-radius: var(--fx-radius-sm); object-fit: cover; aspect-ratio: 4/3; box-shadow: 0 4px 18px rgba(15,27,45,.06); }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* -------- Footer -------- */
.site-footer {
  background: #0a0700;
  color: var(--fx-ink-soft);
  padding: 56px 0 24px;
  margin-top: 80px;
  border-top: 1px solid var(--fx-line-light);
}
.site-footer h4 { color: var(--fx-accent); margin-bottom: 14px; font-size: 1rem; letter-spacing: .02em; }
.site-footer a { color: var(--fx-ink-soft); }
.site-footer a:hover { color: var(--fx-accent); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin-bottom: 8px; font-size: .95rem; }
.footer__brand img { height: 160px; width: auto; max-width: 100%; mix-blend-mode: screen; opacity: .92; margin-bottom: 12px; display: block; }
.footer__brand p { color: var(--fx-muted); font-size: .92rem; }
.footer__bottom {
  border-top: 1px solid var(--fx-line-light);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: var(--fx-muted);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* -------- Floating WhatsApp -------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 60;
  background: var(--fx-whatsapp);
  color: #fff;
  width: auto;
  min-width: 58px;
  height: auto;
  min-height: 58px;
  border-radius: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  gap: 3px;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
  transition: transform .2s ease, background .2s ease;
  text-decoration: none;
}
.wa-float:hover { background: var(--fx-whatsapp-dark); transform: scale(1.06); color: #fff; text-decoration: none; }
.wa-float svg { width: 28px; height: 28px; fill: #fff; flex-shrink: 0; }
.wa-float__num { font-size: .72rem; font-weight: 700; color: #fff; letter-spacing: .02em; line-height: 1; white-space: nowrap; }

/* -------- Utility -------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-6 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.08rem; color: var(--fx-ink-soft); }
.pill {
  display: inline-block;
  background: rgba(242,183,5,.12);
  color: var(--fx-accent);
  border: 1px solid rgba(242,183,5,.3);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.legal-content h1 { color: var(--fx-accent); }
.legal-content h2 { margin-top: 32px; color: var(--fx-primary); border-bottom: 1px solid var(--fx-line); padding-bottom: 8px; }
.legal-content h3 { margin-top: 20px; }
.legal-meta { color: var(--fx-muted); font-style: italic; }

/* -------- RTL fine-tuning -------- */
html[dir="rtl"] .hero__grid { grid-template-columns: .95fr 1.05fr; }
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { letter-spacing: 0; }

/* Focus states for accessibility */
:focus-visible {
  outline: 3px solid rgba(201,150,12,.4);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: var(--fx-bg-card);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: var(--fx-shadow);
  z-index: 200;
}

/* ==========================================================================
   SITE HEADER — full-page nav system
   ========================================================================== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.header-logo { display: inline-flex; align-items: center; text-decoration: none; }
.header-logo img { height: 120px; width: auto; mix-blend-mode: screen; }
.header-logo:hover { text-decoration: none; }

/* Desktop nav */
.site-nav { display: flex; }
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fx-ink-soft);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-link:hover  { color: var(--fx-accent); background: rgba(242,183,5,.08); text-decoration: none; }
.nav-link.is-active { color: var(--fx-accent); font-weight: 700; }

/* Scrolled state */
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(201,150,12,.20); }

/* Lang btn */
.lang-btn {
  background: rgba(242,183,5,.10);
  border: 1.5px solid rgba(242,183,5,.35);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  color: var(--fx-accent);
  cursor: pointer;
  font-size: .88rem;
  font-family: var(--fx-font-ar);
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--fx-accent); color: #0d0900; border-color: var(--fx-accent); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--fx-line);
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer;
  width: 42px; height: 42px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--fx-ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Mobile drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,9,0,.75);
  z-index: 90;
  backdrop-filter: blur(2px);
}
.nav-overlay.is-visible { display: block; }

.nav-drawer {
  position: fixed;
  top: 0;
  inset-inline-end: -320px;
  width: 300px;
  height: 100%;
  background: #161000;
  border-inline-start: 1px solid var(--fx-line-light);
  z-index: 95;
  box-shadow: -4px 0 32px rgba(201,150,12,.15);
  padding: 72px 24px 32px;
  overflow-y: auto;
  transition: inset-inline-end .3s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.is-open { inset-inline-end: 0; }
.nav-drawer .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
.nav-drawer .nav-link { padding: 13px 10px; font-size: 1rem; border-bottom: 1px solid var(--fx-line-light); border-radius: 0; color: var(--fx-ink-soft); }
.nav-drawer .nav-link:last-child { border-bottom: none; }

@media (max-width: 960px) {
  .site-nav  { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn--sm { display: none; }
}
@media (max-width: 600px) {
  .header-actions .lang-btn { display: none; } /* shown in drawer only on small */
}

/* ==========================================================================
   BUTTON ADDITIONS
   ========================================================================== */
.btn--sm  { padding: 9px 18px; font-size: .88rem; }
.btn--outline {
  background: transparent;
  color: var(--fx-accent);
  border: 2px solid var(--fx-accent);
}
.btn--outline:hover { background: var(--fx-accent); color: #0d0900; }
.btn--outline-white {
  background: transparent;
  color: var(--fx-accent);
  border: 2px solid rgba(242,183,5,.5);
}
.btn--outline-white:hover { background: rgba(242,183,5,.12); color: var(--fx-accent); }
.btn--accent {
  background: var(--fx-accent);
  color: #0d0900;
  font-weight: 700;
}
.btn--accent:hover { background: var(--fx-primary-light); color: #0d0900; }
.btn--wa {
  background: var(--fx-whatsapp);
  color: #fff;
}
.btn--wa:hover { background: var(--fx-whatsapp-dark); color: #fff; }

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  margin-top: 48px;
  padding: 36px 0 0;
  border-top: 1px solid var(--fx-line);
}
.stat-item { text-align: center; min-width: 110px; }
.stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--fx-accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .85rem;
  color: var(--fx-ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}
