/*!
 * EEINA Landing Pages — Shared Design System
 * Brand Lock v4.3.2 · Mobile-first · RTL-native · WCAG AA+
 * Used by: home · get-started · package · diabetes-2026 · ramadan
 */

/* ───── Reset & base ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }

/* ───── Tokens (v4.3.2 mirror) ───── */
:root {
  /* Brand */
  --olive: #6AB240;
  --olive-hover: #5A9E36;
  --olive-dark: #3D7A1F;
  --olive-darker: #234D10;
  --olive-darkest: #1E4410;
  --olive-tint: #EEF7DC;

  /* Backgrounds */
  --white: #FFFFFF;
  --bg-soft: #FAFAF7;
  --cream: #FDFBF7; /* lighter cream — preserves warmth, +2 L* over previous #FBF8F3 */
  --bg-section: #F2F2EF;
  --jasmine: #F5EBDB;
  --sand: #E5D9B8;

  /* Text */
  --text: #1C1C1E;
  --text-soft: #6E6E73;
  --text-muted: #9B9B96;

  /* Borders */
  --border: #E8E8E6;
  --border-strong: #D8D6CE;

  /* Accent */
  --pro: #A0782A;
  --pro-light: #C9A859;
  --pro-tint: #F5EBDB;

  /* Semantic */
  --success: #1CAC4A;
  --success-bg: #D4EDDA;
  --success-text: #155724;
  --warning: #E5A538;
  --warning-bg: #FFF3CD;
  --warning-text: #856404;
  --error: #B83A3A;
  --error-bg: #FDE8EA;
  --error-text: #B31D27;
  --info: #5F7385;
  --info-bg: #DDE3E9;
  --info-text: #4A5E6D;

  /* Saudi Editorial Families (Brand Book §4.2)
     RESERVED FOR FUTURE USE · Owner-locked 2026-05-20 (D-023)
     Currently not consumed in landing CSS · retained for upcoming meal-stage cards,
     hero family-mode variants, and seasonal editorial themes. Do NOT remove. */
  --sage-100: #E8F0DA;
  --sage-500: #6B8E3D;
  --sage-900: #2E4019;
  --plum-100: #F2DDDA;
  --plum-500: #8B3A3A;
  --plum-900: #4B1E1E;

  /* Type */
  --font-ar: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --font-en: 'IBM Plex Sans', system-ui, sans-serif;

  /* Shadows (cream-tinted) */
  --shadow-sm: 0 1px 2px rgba(60, 52, 38, 0.05);
  --shadow-md: 0 8px 24px rgba(60, 52, 38, 0.08);
  --shadow-lg: 0 24px 56px rgba(60, 52, 38, 0.12);
  --shadow-xl: 0 40px 96px rgba(60, 52, 38, 0.18);

  /* Layout (Brand Book §10.3 xl=1280) */
  --container: 1180px;
  --container-narrow: 920px;
  --container-text: 680px;
  --nav-h: 64px;
  /* Single source of truth for the inline gutter on every container/inner-wrapper
     (header, main sections, footer). Sections stay full-bleed (edge-to-edge);
     this padding lives on the inner 1180px container. 16px desktop · 8px mobile. */
  --gutter: 16px;

  /* Easing */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 640px) { :root { --gutter: 16px; } }
html { overflow-x: clip; } /* V6: prevent h-scroll on html (not body) to keep `position: sticky` working in body descendants */
body {
  overflow-x: clip; /* clip body as well to ensure no escaping elements push page width */
  font-family: var(--font-ar);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tnum { font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ───── Skip link ───── */
.skip-link {
  position: absolute; inset-block-start: 0; inset-inline-start: 0;
  padding: 12px 20px;
  background: var(--olive-dark); color: var(--white);
  border-radius: 0 0 8px 0;
  font-weight: 600; text-decoration: none;
  transform: translateY(-100%);
  transition: transform 200ms var(--ease-out-quart);
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--white); outline-offset: 2px; }

/* ───── Containers ───── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding-inline: var(--gutter); }
.container-text { max-width: var(--container-text); margin: 0 auto; padding-inline: var(--gutter); }

/* ═══════════════════════════════════════════════════════════════════
 * NAV — Brand Book §11.7
 * ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center;
  background: var(--white);
  /* Translucent frosted chrome (Stripe/Apple pattern) where supported */
  border-block-end: 1px solid transparent;
  transition: border-color 280ms var(--ease-out-quart), box-shadow 280ms var(--ease-out-quart), background 280ms var(--ease-out-quart);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: color-mix(in srgb, var(--white) 78%, transparent); -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4); }
}
.nav.scrolled {
  border-block-end-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; height: 30px; border-radius: 6px; }
.nav-logo img { height: 100%; width: auto; object-fit: contain; }
/* !important guards the shared responsive nav against legacy per-page overrides:
   several content hub pages (and content/_category.css) redefine
   `.nav-links{display:flex}` with no media query — and being later in the
   cascade they'd otherwise force the desktop links visible on mobile, blowing
   the layout past the viewport (no inline-start padding in RTL). Below 920px the
   hamburger drawer is the nav, so the links must stay hidden everywhere. */
.nav-links { display: none !important; gap: 30px; }
@media (min-width: 920px) { .nav-links { display: flex !important; } }
.nav-links a, .navdrop-wrap > .navdrop-trigger {
  position: relative;
  color: var(--text); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 160ms var(--ease-out-quart);
}
.nav-links a:hover, .navdrop-wrap > .navdrop-trigger:hover { color: var(--olive-dark); }
/* Active-page indicator — underline (orientation, Nielsen #1) */
.nav-links a[aria-current="page"], .navdrop-wrap > .navdrop-trigger[aria-current="page"] { color: var(--olive-dark); font-weight: 600; }
.nav-links a[aria-current="page"]::after, .navdrop-wrap > .navdrop-trigger[aria-current="page"]::after {
  content: ''; position: absolute; inset-block-end: -7px; inset-inline: 0;
  height: 2px; background: var(--olive-dark); border-radius: 2px;
}
.navdrop-wrap > .navdrop-trigger[aria-current="page"]::after { inset-inline: 0 14px; }
/* Visible keyboard focus (WCAG 2.2 SC 2.4.7) */
.nav-links a:focus-visible, .navdrop-wrap > .navdrop-trigger:focus-visible,
.nav-actions a:focus-visible, .nav-logo:focus-visible {
  outline: 2px solid var(--olive-dark); outline-offset: 4px; border-radius: 6px;
}
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;  /* WCAG SC 2.5.5 minimum touch target (D-024 · 2026-05-20) */
  background: transparent; border: none; cursor: pointer;
  color: var(--text); border-radius: 8px;
}
@media (max-width: 919.98px) { .nav-actions .nav-header-cta { display: none; } }
@media (min-width: 920px) { .nav-menu-btn { display: none; } }

/* ═══════════════════════════════════════════════════════════════════
 * Buttons (Brand Book §11.1)
 * ═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit; font-size: 15px; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms var(--ease-out-quart), color 180ms var(--ease-out-quart), border-color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
  white-space: nowrap;
  user-select: none;
}
.btn-primary { background: var(--olive); color: var(--white); }
.btn-primary:hover { background: var(--olive-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-white { background: var(--white); color: var(--olive-dark); }
.btn-white:hover { background: var(--olive-tint); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--text); }
.btn-outline-on-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-on-dark:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-ghost { background: var(--white); color: var(--olive-dark); border: 1.5px solid var(--olive); }
.btn-ghost:hover { background: var(--olive-tint); border-color: var(--olive-dark); }
.btn-pro { background: var(--pro); color: var(--white); }
.btn-pro:hover { background: color-mix(in srgb, var(--pro) 88%, var(--text)); transform: translateY(-1px); }
.btn-sm { padding: 12px 18px; font-size: 13px; min-height: 48px; }  /* WCAG SC 2.5.5 (D-024) */
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ═══════════════════════════════════════════════════════════════════
 * Section primitives
 * ═══════════════════════════════════════════════════════════════════ */
.section { padding-block: clamp(56px, 6vw, 88px); }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--olive-dark);
  margin-block-end: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-block-end: 12px;
}
.section-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 600px;
}
.section-head { margin-block-end: clamp(32px, 4vw, 48px); }
.section-head.centered { text-align: center; }
.section-head.centered .section-lede { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════════
 * OliveClose — pre-footer
 * ═══════════════════════════════════════════════════════════════════ */
.olive-close {
  background: var(--olive-darkest);
  color: var(--white);
  padding-block: clamp(64px, 8vw, 104px);
  text-align: center;
}
.olive-close-inner { position: relative; }
.olive-close h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-block-end: 16px;
  max-width: 720px;
  margin-inline: auto;
}
.olive-close p {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-inline: auto;
  margin-block-end: 28px;
  line-height: 1.7;
}
.olive-close-disclaimer {
  font-size: 12px !important;
  color: rgba(255,255,255,0.4) !important;
  margin-block-start: 24px !important;
  margin-block-end: 0 !important;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
 * Sticky CTA
 * ═══════════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  inset-block-end: 0; inset-inline: 0;
  background: var(--white);
  border-block-start: 1px solid var(--border-strong);
  box-shadow: 0 -8px 32px rgba(60, 52, 38, 0.10);
  padding: 12px clamp(16px, 4vw, 32px);
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  z-index: 90;
  transform: translateY(110%);
  transition: transform 320ms var(--ease-out-quart);
  padding-block-end: max(12px, env(safe-area-inset-bottom));
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 14px; line-height: 1.4; flex: 1; min-width: 0; }
.sticky-cta-text strong { display: block; font-weight: 600; font-size: 14px; }
.sticky-cta-text small { font-size: 12px; color: var(--text-soft); }
.sticky-cta-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.sticky-cta-dismiss {
  background: transparent; border: none; cursor: pointer;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted); border-radius: 6px;
}
.sticky-cta-dismiss:hover { color: var(--text); background: var(--bg-section); }

/* ═══════════════════════════════════════════════════════════════════
 * Footer
 * ═══════════════════════════════════════════════════════════════════ */
/* Cream-dominant footer (Brand Book §4.3 70/14/8) · provides visual breakpoint after olive-close CTA */
.footer {
  background: var(--cream);
  color: var(--text-soft);
  padding-block: clamp(48px, 5vw, 64px) 20px;
  border-block-start: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-block-end: 32px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-wordmark {
  font-family: var(--font-ar);
  font-size: 22px; font-weight: 700;
  color: var(--text);
  display: flex; gap: 10px; align-items: center;
  margin-block-end: 16px;
}
.footer-wordmark img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-wordmark-en {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--olive-dark);
  font-weight: 500;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--text-soft); max-width: 280px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
  margin-block-end: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-soft); text-decoration: none;
  font-size: 14px;
  transition: color 160ms var(--ease-out-quart);
}
.footer-col a:hover { color: var(--olive-dark); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  padding-block-start: 24px;
  border-block-start: 1px solid var(--border);
  font-size: 12px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 48px; height: 48px;  /* WCAG SC 2.5.5 minimum touch target (D-024 · 2026-05-20) */
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-soft);
  transition: background 160ms var(--ease-out-quart), color 160ms var(--ease-out-quart), border-color 160ms var(--ease-out-quart);
}
.footer-social a:hover { background: var(--olive-tint); color: var(--olive-dark); border-color: var(--olive); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-soft); text-decoration: none; }
.footer-legal a:hover { color: var(--olive-dark); }
.footer-copy { color: var(--text-soft); font-feature-settings: "tnum" 1; }

/* ═══════════════════════════════════════════════════════════════════
 * Unified Footer · D-023 (2026-05-25) · used across 20+ landing pages
 * Newsletter + 3 cols + trust strip + social + legal + brand statement
 * ═══════════════════════════════════════════════════════════════════ */
.eeina-footer { background: var(--cream, #FBF8F3); color: var(--text, #1C1C1E); padding: clamp(56px, 7vw, 96px) 0 28px; margin-block-start: clamp(60px, 8vw, 96px); border-block-start: 1px solid var(--border, #E8E8E6); font-size: 13.5px; line-height: 1.7; font-family: 'IBM Plex Sans Arabic', -apple-system, sans-serif; }
.ftr-inner { max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }
.ftr-top { display: grid; grid-template-columns: 1fr; gap: 28px; margin-block-end: clamp(40px, 5vw, 64px); padding-block-end: clamp(32px, 4vw, 48px); border-block-end: 1px solid var(--border, #E8E8E6); }
@media (min-width: 880px) { .ftr-top { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; } }
.ftr-top-brand img { height: 32px; margin-block-end: 18px; opacity: 0.95; width: auto; }
.ftr-top-brand .tagline { font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; letter-spacing: -0.015em; color: var(--olive-darker, #2E5A18); line-height: 1.3; margin-block-end: 8px; max-width: 480px; }
.ftr-top-brand p { font-size: 14px; color: var(--text-soft, #6E6E73); line-height: 1.75; max-width: 440px; }
.ftr-newsletter { max-width: 380px; }
.ftr-newsletter label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; color: var(--olive-dark, #3D7A1F); text-transform: uppercase; margin-block-end: 10px; }
.ftr-newsletter-form { display: flex; gap: 8px; }
.ftr-newsletter-form input { flex: 1; min-width: 0; background: #FFFFFF; border: 1px solid var(--border, #E8E8E6); border-radius: 8px; padding: 11px 14px; font: inherit; font-size: 13.5px; color: var(--text, #1C1C1E); outline: none; transition: all 180ms; }
.ftr-newsletter-form input::placeholder { color: #98989D; }
.ftr-newsletter-form input:focus { border-color: var(--olive, #6AB240); box-shadow: 0 0 0 3px rgba(106,178,64,0.12); }
.ftr-newsletter-form button { padding: 11px 18px; background: var(--olive-darker, #2E5A18); color: #FFFFFF; border: 0; border-radius: 8px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 180ms, transform 180ms; white-space: nowrap; }
.ftr-newsletter-form button:hover { background: var(--olive-dark, #3D7A1F); transform: translateY(-1px); }
.ftr-newsletter .note { font-size: 11.5px; color: #98989D; margin-block-start: 8px; }
.ftr-newsletter .ok { font-size: 12px; color: var(--olive-dark, #3D7A1F); margin-block-start: 8px; display: none; align-items: center; gap: 6px; }
.ftr-newsletter .ok.show { display: flex; }
.ftr-newsletter .ok svg { width: 12px; height: 12px; }
.ftr-cols { display: grid; grid-template-columns: 1fr; gap: 36px 32px; margin-block-end: clamp(40px, 5vw, 56px); }
@media (min-width: 560px) { .ftr-cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .ftr-cols { grid-template-columns: repeat(3, 1fr); } }
.ftr-col h4 { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; color: var(--olive-darker, #2E5A18); text-transform: uppercase; margin-block-end: 18px; }
.ftr-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.ftr-col a { font-size: 13.5px; color: var(--text-soft, #6E6E73); transition: color 180ms; text-decoration: none; }
.ftr-col a:hover { color: var(--olive-darker, #2E5A18); }
.ftr-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; padding-block: 26px; border-block: 1px solid var(--border, #E8E8E6); margin-block-end: 24px; align-items: center; }
.ftr-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-soft, #6E6E73); }
.ftr-trust-item svg { width: 14px; height: 14px; color: var(--olive-dark, #3D7A1F); }
.ftr-trust-item strong { color: var(--text, #1C1C1E); font-weight: 600; }
.ftr-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: #98989D; }
.ftr-copy { font-feature-settings: "tnum"; }
.ftr-legal { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.ftr-legal a { color: #98989D; transition: color 180ms; text-decoration: none; }
.ftr-legal a:hover { color: var(--olive-darker, #2E5A18); }
.ftr-social { display: flex; gap: 14px; align-items: center; }
.ftr-social a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--text-soft, #6E6E73); transition: color 180ms, transform 180ms; }
.ftr-social a:hover { color: var(--olive-darker, #2E5A18); transform: translateY(-1px); }
.ftr-social svg { width: 15px; height: 15px; }

/* ═══════════════════════════════════════════════════════════════════
 * Reveal animations (progressive enhancement)
 * ═══════════════════════════════════════════════════════════════════ */
.reveal { transition: opacity 720ms var(--ease-out-quart), transform 720ms var(--ease-out-quart); }
.reveal-init { opacity: 0; transform: translateY(28px); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-init { opacity: 1; transform: none; transition: none; }
}

/* Selection */
::selection { background: var(--olive); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════
 * Shared component: Trust strip (institutional badges)
 * ═══════════════════════════════════════════════════════════════════ */
.trust-strip {
  display: flex; gap: 12px; flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  justify-content: space-around;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.trust-item svg { width: 18px; height: 18px; color: var(--olive-dark); flex-shrink: 0; }
.trust-item strong { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
 * Shared: Campaign banner (dismissable)
 * ═══════════════════════════════════════════════════════════════════ */
.campaign-banner {
  background: var(--warning-bg);
  border-block-start: 1px solid color-mix(in srgb, var(--warning) 30%, transparent);
  border-block-end: 1px solid color-mix(in srgb, var(--warning) 30%, transparent);
  color: var(--warning-text);
  padding: 14px 0;
  font-size: 14px;
  position: relative;
}
.campaign-banner.hidden { display: none; }
.campaign-banner-inner {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}
.campaign-banner svg { width: 18px; height: 18px; flex-shrink: 0; }
.campaign-banner a {
  color: var(--warning-text); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.campaign-dismiss {
  position: absolute; inset-block-start: 50%; inset-inline-end: 16px;
  transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer;
  color: var(--warning-text); opacity: 0.6;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.campaign-dismiss:hover { opacity: 1; background: color-mix(in srgb, var(--warning) 15%, transparent); }


/* ===== Contextual App CTA (growth · injected via base.njk) ===== */
.app-cta { background: var(--olive-dark); color: var(--white); padding-block: clamp(40px, 6vw, 68px); margin-block-start: clamp(28px, 4vw, 48px); }
.app-cta-inner { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.app-cta-bridge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.12); color: var(--white); font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 999px; margin-block-end: 18px; line-height: 1.6; }
.app-cta-bridge svg { width: 17px; height: 17px; flex: none; }
.app-cta h2 { font-size: clamp(23px, 3vw, 33px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; color: var(--white); margin-block-end: 12px; }
.app-cta p { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.85; color: rgba(255,255,255,0.9); max-width: 56ch; margin: 0 auto 24px; }
.app-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.app-cta-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--white); color: var(--olive-dark); border-radius: 999px; font-weight: 700; font-size: 16px; text-decoration: none; transition: transform 160ms var(--ease-out-quart), box-shadow 160ms var(--ease-out-quart); }
.app-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
.app-cta-primary svg { width: 18px; height: 18px; }
.app-cta-whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; background: #25D366; color: var(--white); border-radius: 999px; font-weight: 600; font-size: 15px; text-decoration: none; transition: transform 160ms var(--ease-out-quart), background 160ms var(--ease-out-quart); }
.app-cta-whatsapp:hover { transform: translateY(-2px); background: #1FAD56; }
.app-cta-whatsapp svg { width: 18px; height: 18px; }
.app-cta-trust { font-size: 12.5px !important; color: rgba(255,255,255,0.7) !important; margin: 22px auto 0 !important; }
