/**
 * KLKBAT home landing — hero, nav, background effects.
 * Loaded after brand.css on public/home/index.html only.
 */
:root {
  --orange: #e84c0e;
  --orange-glow: rgba(232, 76, 14, 0.5);
  --landing-dark: #080808;
  --landing-card-bg: rgba(255, 255, 255, 0.04);
}

html[lang="ar"],
html[lang="ar"] body {
  font-family: "Tajawal", "Cairo", sans-serif;
}
html[lang="en"],
html[lang="en"] body {
  font-family: "Tajawal", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

body.home-page {
  margin: 0;
  background: transparent;
  color: #fff;
  overflow-x: hidden;
}

/*
 * نفق النيون داخل الهيرو فقط (canvas مطلق داخل .hero-landing).
 * باقي الصفحة تستخدم خلفية الموقع العادية (.site-bg في brand / site-background).
 */
body.home-page .hero-landing #canvas3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

body.home-page #pricing.services--dark {
  scroll-margin-top: var(--home-nav-offset, 72px);
}

/* ——— Nav ——— */
body.home-page nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  /* نفس أسلوب بطاقات الباقات: زجاج خفيف فوق النفق بدل شريط أسود معتم */
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(18, 14, 32, 0.48) 100%
  );
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.home-page nav.site-nav .logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

body.home-page nav.site-nav .logo-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange);
  animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 8px var(--orange);
  }
  50% {
    box-shadow: 0 0 24px var(--orange), 0 0 40px var(--orange-glow);
  }
}

body.home-page nav.site-nav .nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

body.home-page nav.site-nav .nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

body.home-page nav.site-nav .nav-links a:hover {
  color: #fff;
}

body.home-page nav.site-nav .btn-nav {
  padding: 11px 24px;
  background: linear-gradient(165deg, #ff6a2a 0%, #ef5818 52%, #cb3d08 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 10px 24px rgba(232, 76, 14, 0.3),
    0 0 0 1px rgba(232, 76, 14, 0.15);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.home-page nav.site-nav .btn-nav:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22),
    0 14px 32px rgba(232, 76, 14, 0.42),
    0 0 0 1px rgba(255, 152, 112, 0.28);
  transform: translateY(-2px);
  filter: saturate(1.03);
}

body.home-page nav.site-nav .btn-nav:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24),
    0 6px 16px rgba(232, 76, 14, 0.28);
}

body.home-page nav.site-nav .btn-nav:focus-visible {
  outline: 2px solid rgba(255, 163, 122, 0.9);
  outline-offset: 2px;
}

body.home-page nav.site-nav .btn-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

body.home-page nav.site-nav .btn-nav:hover::before {
  opacity: 1;
}

body.home-page nav.site-nav .btn-nav > * {
  position: relative;
  z-index: 1;
}

body.home-page nav.site-nav .btn-nav--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 134, 87, 0.62);
  color: #fff;
  margin-inline-start: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

body.home-page nav.site-nav .btn-nav--ghost:hover {
  background: rgba(232, 76, 14, 0.14);
  border-color: rgba(255, 164, 122, 0.8);
}

body.home-page nav.site-nav .nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

body.home-page .menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(18, 14, 32, 0.48) 100%
  );
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.home-page .menu-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #ff7b3a);
  transform: translateX(-50%);
  transition: all 0.3s;
  border-radius: 2px;
}

body.home-page .menu-toggle span:nth-child(1) {
  top: 15px;
}
body.home-page .menu-toggle span:nth-child(2) {
  top: 23px;
  width: 16px;
}
body.home-page .menu-toggle span:nth-child(3) {
  top: 31px;
}

body.home-page .menu-toggle.active {
  border-color: rgba(255, 149, 107, 0.55);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(232, 76, 14, 0.14) 48%,
    rgba(18, 14, 32, 0.52) 100%
  );
}

body.home-page .menu-toggle.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
body.home-page .menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
body.home-page .menu-toggle.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

body.home-page .mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

body.home-page .mobile-menu.show {
  transform: translateX(0);
  pointer-events: auto;
}

body.home-page .mobile-menu-links {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.home-page .mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(20, 18, 22, 0.35) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.home-page .mobile-menu-links a:hover {
  border-color: rgba(232, 76, 14, 0.45);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(232, 76, 14, 0.12) 45%,
    rgba(20, 18, 22, 0.4) 100%
  );
  box-shadow: 0 8px 32px rgba(232, 76, 14, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.home-page .mobile-menu-links a::after {
  content: "←";
  color: var(--orange);
  font-size: 1.2rem;
}

html[dir="ltr"] body.home-page .mobile-menu-links a::after {
  content: "→";
}

body.home-page .mobile-menu-links a.nav-goto-pos {
  background: linear-gradient(
    135deg,
    rgba(232, 76, 14, 0.55) 0%,
    rgba(199, 61, 10, 0.4) 50%,
    rgba(20, 18, 22, 0.45) 100%
  ) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(232, 76, 14, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body.home-page .mobile-menu-links a.nav-goto-pos:hover {
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: linear-gradient(
    135deg,
    rgba(242, 96, 24, 0.65) 0%,
    rgba(212, 71, 12, 0.5) 50%,
    rgba(20, 18, 22, 0.4) 100%
  ) !important;
}

body.home-page .mobile-menu-links > button.lang-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(232, 76, 14, 0.12) 100%
  );
  border: 1.5px solid rgba(232, 76, 14, 0.55);
  color: var(--orange);
  font-family: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

body.home-page .mobile-menu-links > button.lang-toggle:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(232, 76, 14, 0.22) 100%
  );
  border-color: rgba(232, 76, 14, 0.85);
  box-shadow: 0 6px 28px rgba(232, 76, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.home-page .mobile-menu-links a.btn-nav.nav-login {
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

/* ——— Hero ——— */
body.home-page .hero-landing {
  position: relative;
  z-index: 10;
  min-height: min(100dvh, 700px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--home-nav-offset, 72px) + 2rem) 60px 60px;
  gap: 0;
  text-align: center;
  background-color: transparent;
  overflow: hidden;
}

body.home-page .hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,76,14,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

body.home-page.has-top-banner .hero-landing {
  padding-top: 11rem;
}

body.home-page .hero-content--revamp {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

body.home-page .hero-split {
  max-width: 1100px;
}

@media (min-width: 900px) {
  body.home-page .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    text-align: start;
  }

  body.home-page .hero-split .hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  body.home-page .hero-split .hero-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }

  html[dir="ltr"] body.home-page .hero-split .hero-text-side {
    order: 1;
    align-items: flex-start;
  }
  html[dir="ltr"] body.home-page .hero-split .hero-action-side {
    order: 2;
    align-items: center;
  }

  html[dir="rtl"] body.home-page .hero-split .hero-text-side {
    order: 1;
    align-items: flex-start;
  }
  html[dir="rtl"] body.home-page .hero-split .hero-action-side {
    order: 2;
    align-items: center;
  }

  body.home-page .hero-split .hero-title--split {
    text-align: start;
  }

  body.home-page .hero-split .hero-sub {
    text-align: start;
    max-width: 100%;
  }

  body.home-page .hero-split .hero-cta {
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
  }

  body.home-page .hero-split .hero-stats {
    align-self: center;
  }
}

@media (max-width: 899px) {
  body.home-page .hero-text-side,
  body.home-page .hero-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  body.home-page .hero-action-side {
    gap: 1.5rem;
  }
}


body.home-page .hero-title--split {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}

body.home-page .hero-line {
  display: block;
  animation: fadeUp 0.7s ease both;
}

body.home-page .hero-line--1 {
  animation-delay: 0.1s;
  background: linear-gradient(to bottom, #ffffff 30%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.home-page .hero-line--2 {
  animation-delay: 0.25s;
}

body.home-page .hero-title--split .hero-title-brand {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  position: relative;
}

body.home-page .hero-title--split .hero-title-brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232,76,14,0.2));
  animation: lineExpand 1s 0.6s ease both;
}

@keyframes lineExpand {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

body.home-page .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 0;
  animation: fadeUp 0.7s 0.35s ease both;
  width: 100%;
  max-width: 520px;
  text-align: center;
}

body.home-page .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s ease both;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}

body.home-page .hero-cta .btn-hero-primary .btn-arrow {
  transition: transform 0.3s;
}

html[dir="rtl"] body.home-page .hero-cta .btn-hero-primary .btn-arrow {
  transform: scaleX(-1);
}

body.home-page .hero-cta .btn-hero-primary:hover .btn-arrow {
  transform: translateX(4px);
}

html[dir="rtl"] body.home-page .hero-cta .btn-hero-primary:hover .btn-arrow {
  transform: scaleX(-1) translateX(4px);
}

body.home-page .hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.7s 0.6s ease both;
  padding: 1.2rem 2.5rem;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 50%, rgba(18,14,32,0.3) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.home-page .hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

body.home-page .hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}

body.home-page .hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

body.home-page .hero-stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}

body.home-page .hero-cta .btn-hero-primary {
  padding: 14px 36px;
  background: linear-gradient(168deg, #ff6d2d 0%, #ef5818 48%, #c93d08 100%);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(232, 76, 14, 0.18),
    0 14px 38px rgba(232, 76, 14, 0.38);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

body.home-page .hero-cta .btn-hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

body.home-page .hero-cta .btn-hero-primary::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.22), transparent);
  opacity: 0.55;
  pointer-events: none;
}

body.home-page .hero-cta .btn-hero-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 186, 153, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 150, 108, 0.35),
    0 18px 44px rgba(232, 76, 14, 0.48);
}

body.home-page .hero-cta .btn-hero-primary:hover::before {
  opacity: 1;
}

body.home-page .hero-cta .btn-hero-outline {
  padding: 14px 36px;
  /* نفس طبقة الزجاج في بطاقات الباقات والـ nav — بدون كتلة داكنة في الأسفل */
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(18, 14, 32, 0.48) 100%
  );
  color: rgba(255, 255, 255, 0.95);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

body.home-page .hero-cta .btn-hero-outline:hover {
  border-color: rgba(255, 149, 107, 0.55);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(232, 76, 14, 0.14) 48%,
    rgba(18, 14, 32, 0.52) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px rgba(232, 76, 14, 0.18);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  body.home-page .hero-landing {
    padding: calc(var(--home-nav-offset, 72px) + 2rem) 24px 48px;
    min-height: min(100dvh, 620px);
  }
  body.home-page .hero-content--revamp {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body.home-page nav.site-nav {
    padding: 16px 20px;
  }
  body.home-page nav.site-nav .nav-links {
    display: none;
  }
  body.home-page nav.site-nav .nav-mobile-actions {
    display: flex !important;
  }
  body.home-page .menu-toggle {
    display: inline-flex;
  }
  body.home-page .hero-landing {
    padding: calc(var(--home-nav-offset, 64px) + 4rem) 20px 40px;
    gap: 0;
    min-height: auto;
  }
  body.home-page .hero-title--split {
    font-size: clamp(34px, 9vw, 50px);
  }
  body.home-page .hero-stats {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  body.home-page .hero-stat-value {
    font-size: 1.2rem;
  }
  body.home-page .hero-stat-divider {
    height: 28px;
  }
  body.home-page .hero-glow {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  body.home-page .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  body.home-page .hero-cta .btn-hero-primary,
  body.home-page .hero-cta .btn-hero-outline {
    width: 100%;
  }
  body.home-page .hero-stats {
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    flex-wrap: nowrap;
  }
  body.home-page .hero-stat-value { font-size: 1rem; }
  body.home-page .hero-stat-label { font-size: 0.65rem; }
}
