/* ==========================================================================
   عين الأذن — Global Stylesheet (non-critical, loaded async), RTL
   Professional white + blue editorial style — inspired by premium
   Arabic landing pages (thin-line eyebrows, huge centered headlines,
   big stat rows, full-bleed CTA band). No looping/animated visuals —
   only on-scroll reveal and hover states. Always light.
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f4f8fc;
  --color-surface: #ffffff;
  --color-text: #0b1526;
  --color-text-muted: #55617a;
  --color-text-soft: #8a95ab;
  --color-border: #e4eaf3;
  --color-border-strong: #cdd8ea;

  --color-primary: #2563eb;
  --color-primary-dark: #1743b0;
  --color-sky: #38bdf8;
  --gradient-accent: linear-gradient(120deg, #1d4ed8 0%, #2563eb 55%, #38bdf8 100%);
  --color-accent-light: #eaf2ff;

  --color-success: #16a34a;
  --color-success-light: #eafaf0;
  --color-star: #f5a524;
  --color-link: #2563eb;

  --font-sans: 'Cairo', Tahoma, "Segoe UI", "Arial", "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --max-width: 1180px;
  --content-width: 680px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 35, 75, 0.05), 0 1px 8px rgba(15, 35, 75, 0.04);
  --shadow-md: 0 24px 60px -20px rgba(20, 45, 100, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.prose-width { max-width: var(--content-width); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -0.025em; scroll-margin-top: 90px; color: var(--color-text); }
h1 { font-size: 2.3rem; margin: 0 0 0.5em; font-weight: 800; }
h2 { font-size: 1.8rem; margin: 0 0 0.5em; font-weight: 800; }
h3 { font-size: 1.1rem; margin: 1.4em 0 0.5em; font-weight: 700; }
@media (min-width: 640px) {
  h1 { font-size: 3.8rem; }
  h2 { font-size: 2.7rem; }
  h3 { font-size: 1.3rem; }
}
h4 { font-size: 1.02rem; margin: 1.2em 0 0.4em; }
p { margin: 0 0 1.1em; }
p, li { max-width: 72ch; }

ul, ol { padding-right: 1.3em; padding-left: 0; margin: 0 0 1.2em; }
li { margin-bottom: 0.4em; }

.lead {
  font-size: 1.22rem;
  color: var(--color-text-muted);
  max-width: 60ch;
  font-weight: 500;
  line-height: 1.55;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Soft ambient glow — static, not animated */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(720px circle at 82% -6%, rgba(37, 99, 235, 0.08), transparent 55%),
    radial-gradient(560px circle at 4% 22%, rgba(56, 189, 248, 0.08), transparent 55%),
    var(--color-bg);
}
/* Scroll reveal (interaction-triggered, not a looping animation) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Top utility bar */
.announce-bar {
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.6rem 1rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  position: sticky;
  top: 0;
  z-index: 60;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.4rem;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 0.75rem 1rem;
}
.brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient-accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(37, 99, 235, 0.5);
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav a {
  position: relative;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gradient-accent);
  transition: width 0.25s var(--ease);
  border-radius: 2px;
}
.main-nav a:hover { color: var(--color-text); text-decoration: none; }
.main-nav a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 10px 22px -8px rgba(37, 99, 235, 0.55);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -8px rgba(37, 99, 235, 0.6); }

@media (max-width: 780px) {
  .main-nav { display: none; }
}

/* Eyebrow — thin accent line + label, matching a clean editorial hero */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Hero — title first, then the product image, then the rest of the
   details, on mobile. On desktop the image sits on the right (RTL) as
   a full-height column, with the title stacked above the rest of the
   details on the left. */
.hero { padding: 3.5rem 0 4rem; position: relative; }
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  grid-template-areas: "title" "gallery" "rest";
}
.hero-title { grid-area: title; }
.hero-two-col .product-gallery { grid-area: gallery; }
.product-info-rest { grid-area: rest; }
@media (max-width: 899px) {
  .product-info-rest { margin-top: 0.75rem; }
}

@media (min-width: 900px) {
  .hero-two-col {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 4rem;
    row-gap: 0;
    grid-template-areas: "gallery title" "gallery rest";
  }
  .hero-two-col .product-gallery { align-self: center; }
}

.rating-row { display: flex; align-items: center; gap: 0.5rem; margin: 0.4rem 0 1.4rem; font-size: 0.9rem; color: var(--color-text-muted); }
.stars { color: var(--color-star); letter-spacing: 1px; font-size: 0.92rem; }

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 0.3rem 0 0.5rem;
}
.price-sale { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.02em; color: var(--color-primary-dark); }
.price-original { font-size: 1.15rem; color: var(--color-text-soft); text-decoration: line-through; }
.price-discount {
  background: var(--color-success-light);
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.limited-offer { color: var(--color-primary-dark); font-weight: 700; font-size: 0.88rem; margin: 0 0 0.6rem; }
.price-note { color: var(--color-text-soft); font-size: 0.86rem; margin: 0 0 1.3rem; }

.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.4rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.badge.on-primary { color: var(--color-primary); border-color: #cfe0fd; background: var(--color-accent-light); }
.badge.on-success { color: var(--color-success); border-color: #c9ecd6; background: var(--color-success-light); }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-text);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.15s ease, transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn.secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border-strong);
}
.btn.secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn.whatsapp {
  position: relative;
  background: var(--gradient-accent);
  color: #ffffff;
  border: none;
  font-size: 1.06rem;
  font-weight: 800;
  padding: 1.05rem 1.9rem;
  box-shadow: 0 16px 34px -12px rgba(37, 99, 235, 0.55);
}
.btn.whatsapp:hover { filter: brightness(1.06); color: #fff; transform: translateY(-2px); text-decoration: none; }
.btn.whatsapp .wa-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}
.btn.block { width: 100%; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  color: var(--color-text-muted);
}
.trust-strip li { list-style: none; margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.trust-strip svg { flex-shrink: 0; color: var(--color-primary); }

/* Product visual (in the hero's split layout) — swipeable carousel */
.product-gallery { position: relative; }
.gallery-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  aspect-ratio: 1 / 1;
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-md);
  scrollbar-width: none;
}
.gallery-carousel::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  z-index: 2;
}
.gallery-arrow:hover { background: #ffffff; transform: translateY(-50%) scale(1.06); }
.gallery-arrow:disabled { opacity: 0; pointer-events: none; }
.gallery-arrow-prev { right: 12px; }
.gallery-arrow-next { left: 12px; }
.gallery-arrow svg { display: block; }

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(11, 21, 38, 0.35);
}
.gallery-dot {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.2s ease, width 0.2s ease;
}
.gallery-dot.is-active { background: #ffffff; width: 14px; }

.gallery-preview { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.preview-thumb {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-alt);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.preview-thumb:hover { transform: translateY(-2px); }
.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption { color: var(--color-text-soft); font-size: 0.8rem; margin: 0.6rem 0 0; }

/* Sticky mobile order bar */
.sticky-order-bar {
  position: sticky;
  bottom: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  display: none;
}
.sticky-order-bar .container { display: flex; align-items: center; gap: 1rem; padding: 0; }
.sticky-order-bar .price-sale { font-size: 1.2rem; }
.sticky-order-bar .btn.whatsapp { padding: 0.85rem 1.4rem; font-size: 1rem; }
@media (max-width: 780px) {
  .sticky-order-bar { display: block; }
}

/* Stat band — plain numbers with thin dividers, editorial style */
.stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 720px) {
  .stat-band { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  padding: 2.4rem 1.2rem;
  text-align: center;
  border-left: 1px solid var(--color-border);
}
.stat-item:last-child { border-left: none; }
@media (max-width: 719px) {
  .stat-item:nth-child(odd) { border-left: 1px solid var(--color-border); }
  .stat-item:nth-child(even) { border-left: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--color-border); }
}
.stat-item .num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 0.3rem;
}
.stat-item .label { font-size: 0.85rem; color: var(--color-text-muted); }

/* Generic two-column content grid (used outside the hero) */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Sections */
.section { padding-top: 5.5rem; padding-bottom: 5.5rem; position: relative; }
.section-alt { background: var(--color-bg-alt); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 0; }
.section-head p { color: var(--color-text-muted); margin: 0 auto; font-size: 1.05rem; }

/* Feature banner image */
.feature-banner {
  max-width: 760px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.feature-banner img { width: 100%; height: auto; display: block; }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.feature-card:hover { border-color: #cfe0fd; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--color-accent-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

/* Multi-use showcase */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .usecase-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .usecase-grid { grid-template-columns: repeat(5, 1fr); }
}
.usecase-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usecase-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.usecase-card span { display: block; padding: 0.7rem 0.8rem; font-size: 0.85rem; font-weight: 700; color: var(--color-text); text-align: center; }

/* What's included */
.included-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.included-banner img { width: 100%; height: auto; display: block; }

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table tr:not(:last-child) td { border-bottom: 1px solid var(--color-border); }
.spec-table td { padding: 0.95rem 1.15rem; font-size: 0.94rem; }
.spec-table td:first-child { color: var(--color-text-muted); font-weight: 600; width: 42%; }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-right: 3.4rem;
  margin-bottom: 1.8rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  right: 0; top: -0.1rem;
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(37, 99, 235, 0.5);
}
.steps h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

/* Rating summary */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.rating-big { text-align: center; }
.rating-big .num { font-size: 3.4rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; color: var(--color-primary-dark); }
.rating-note { color: var(--color-text-soft); font-size: 0.85rem; margin-top: 0.5rem; }
.review-quote {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-size: 0.92rem;
  color: var(--color-text);
  margin: 0;
}
.review-quote footer { margin-top: 0.6rem; color: var(--color-text-soft); font-size: 0.8rem; }


/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1.15rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-answer { padding: 0 0 1.2rem; color: var(--color-text-muted); }

/* Callouts */
.callout {
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}
.callout p:last-child { margin-bottom: 0; }

/* Final CTA — full-bleed solid band, static (no photo/video) */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: 28px;
  padding: 4.5rem 2rem;
  text-align: center;
}
.final-cta .eyebrow { justify-content: center; color: rgba(255,255,255,0.85); }
.final-cta .eyebrow::before { background: rgba(255,255,255,0.7); }
.final-cta h2 { color: #fff; margin-top: 0; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 0 auto 1.8rem; font-size: 1.05rem; }
.final-cta .btn.whatsapp { background: #ffffff; color: var(--color-primary-dark); box-shadow: 0 16px 34px -12px rgba(0,0,0,0.35); }
.final-cta .btn.whatsapp .wa-icon { background: var(--color-accent-light); }
.final-cta .btn.whatsapp:hover { color: var(--color-primary-dark); filter: none; background: #f3f7ff; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  margin-top: 3rem;
  padding: 3rem 0 2.2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  padding: 0; margin: 0;
}
.site-footer a { color: var(--color-text-muted); }
.site-footer a:hover { color: var(--color-primary); }
.footer-disclaimer { max-width: 60ch; font-size: 0.8rem; margin-top: 1rem; line-height: 1.6; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.82rem; color: var(--color-text-soft); padding: 1rem 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; padding: 0; }
.breadcrumbs a { color: var(--color-text-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-primary); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: "‹"; margin-right: 0.35rem; color: var(--color-border-strong); }

/* Utility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
