/* ============================================================
   HERO.CSS
   Site header, navigation, hero section, and mobile sticky
   CTA bar. Keyframes live in main.css.
   ============================================================ */

/* ── Layout variables local to header ── */
:root {
  --header-h-mob:  60px;
  --header-h-desk: 72px;
}


/* ────────────────────────────────────────────────────────────
   SITE HEADER  (sticky, mobile-first)
   ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--header-h-mob);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    border-color 200ms var(--ease-in-out),
    box-shadow   200ms var(--ease-in-out),
    background   200ms var(--ease-in-out);
}

.site-header.is-scrolled {
  border-color: var(--slate-100);
  box-shadow: 0 1px 16px rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

/* ── Logo ── */

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-left: -20px;
}

/* نیا لوگو امیج سٹائل */
.header__logo img {
    height: 150px;       /* سائز تھوڑا کم کر کے دیکھیں */
    width: auto;
    background: transparent; /* بیک گراؤنڈ کو شفاف کرنے کے لیے */
    padding: 0;
}
/* پرانی کلاسز (logo__mark اور logo__text) اب ضرورت نہیں ہیں، 
   آپ انہیں ہٹا سکتے ہیں یا ایسے ہی رہنے دیں */

}

/* ── Desktop navigation — hidden on mobile ── */
.header__nav {
  display: none;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color 150ms, background 150ms;
  white-space: nowrap;
}
.header__nav a:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}

/* ── Header action area ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.header__cta-btn {
  display: none;
  align-items: center;
  padding: 9px 18px;
  background: var(--teal-700);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: background 150ms, transform 150ms, box-shadow 150ms;
}
.header__cta-btn:hover {
  background: var(--teal-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
}
.header__cta-btn:active { transform: translateY(0); }

/* ── Hamburger button ── */
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  transition: background 150ms, border-color 150ms;
  flex-shrink: 0;
}
.header__menu-btn:hover {
  background: var(--teal-50);
  border-color: var(--teal-200);
  color: var(--teal-700);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 250ms var(--ease-in-out), opacity 200ms;
  transform-origin: center;
}
.header__menu-btn[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__menu-btn[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-btn[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* ────────────────────────────────────────────────────────────
   MOBILE NAV DRAWER
   ──────────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: var(--header-h-mob) 0 0 0;
  z-index: 190;
  background: var(--white);
  padding: var(--sp-6) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  border-top: 1px solid var(--slate-100);
  transform: translateX(100%);
  transition: transform 300ms var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  padding: var(--sp-4);
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--r-lg);
  transition: background 150ms, color 150ms;
  min-height: 52px;
}
.mobile-nav__link:hover {
  background: var(--teal-50);
  color: var(--teal-700);
}

.mobile-nav__cta {
  margin-top: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--teal-700);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--r-lg);
  transition: background 150ms;
}
.mobile-nav__cta:hover { background: var(--teal-800); }


/* ────────────────────────────────────────────────────────────
   HERO SECTION  (mobile-first)
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h-mob);
  background: var(--white);
}

.hero__bg-blob {
  position: absolute;
  top: -15%;
  right: -25%;
  width: 70%;
  min-width: 300px;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, var(--teal-50) 0%, rgba(234,247,247,0.4) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--sp-10) var(--sp-4) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

/* ── Content column ── */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* ── Trust badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px 6px 8px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s var(--ease-out) 0.05s both;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2.2s ease-in-out infinite;
}

.badge__stars {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.badge__text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  white-space: nowrap;
}

/* ── H1 headline ── */
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 7.8vw, 36px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  margin-bottom: var(--sp-4);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.55s var(--ease-out) 0.15s both;
}

.headline__accent {
  color: var(--teal-700);
  position: relative;
  display: inline;
}
.headline__accent::after {
  content: '';
  position: absolute;
  inset-block-end: -3px;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-200));
  border-radius: var(--r-full);
  transform: scaleX(0);
  transform-origin: left;
  animation: growLine 0.6s var(--ease-out) 0.7s both;
}

/* ── Subheadline ── */
.hero__sub {
  font-size: clamp(15px, 4.2vw, 17px);
  line-height: 1.7;
  color: var(--slate-500);
  margin-bottom: var(--sp-8);
  max-width: 52ch;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.55s var(--ease-out) 0.25s both;
}
.hero__sub strong { font-weight: 600; color: var(--slate-700); }

/* ── CTA button group ── */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.55s var(--ease-out) 0.35s both;
}

/* Primary CTA — Book Free Trial */
.btn-trial {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  min-height: 52px;
  padding: 14px var(--sp-6);
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-900) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-lg);
  text-decoration: none;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: transform 150ms var(--ease-in-out), box-shadow 150ms var(--ease-in-out);
  box-shadow: 0 2px 6px rgba(13,110,110,0.22), 0 1px 2px rgba(0,0,0,0.10);
}
.btn-trial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 550ms var(--ease-out);
}
.btn-trial:hover::before { transform: translateX(100%); }
.btn-trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,110,110,0.32), 0 2px 6px rgba(0,0,0,0.12);
}
.btn-trial:active { transform: translateY(0); }
.btn-trial__text { flex: 1; text-align: center; }
.btn-trial__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-in-out);
}
.btn-trial:hover .btn-trial__arrow { transform: translateX(4px); }

/* Secondary CTA — WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  min-height: 52px;
  padding: 14px var(--sp-6);
  background: var(--white);
  color: var(--slate-700);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--slate-200);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 150ms, border-color 150ms, color 150ms, transform 150ms, box-shadow 150ms;
  box-shadow: var(--shadow-xs);
}
.btn-whatsapp:hover {
  background: #f0fdf4;
  border-color: var(--whatsapp-green);
  color: #14532d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.18);
}
.btn-whatsapp:active { transform: translateY(0); }
.btn-whatsapp__icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Micro-guarantees ── */
.hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 6px var(--sp-4);
  margin-bottom: var(--sp-8);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s var(--ease-out) 0.45s both;
}

.micro__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-500);
  white-space: nowrap;
}

.micro__check {
  width: 14px;
  height: 14px;
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ── Hero stat cards (2×2 grid) ── */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s var(--ease-out) 0.55s both;
}

.stat-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-3) var(--sp-4);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-lg);
  transition: border-color 200ms, box-shadow 200ms;
}
.stat-card:hover {
  border-color: var(--teal-200);
  box-shadow: 0 2px 10px rgba(13,110,110,0.08);
}

.stat-card__value {
  font-family: var(--font-head);
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 800;
  color: var(--teal-700);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.stat-card__value .stat-suffix { font-size: 0.75em; }
.stat-card__value .stat-unit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-400);
}
.stat-card__stars {
  color: var(--gold-500);
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.stat-card__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-400);
  line-height: 1.3;
  margin-top: 3px;
}

/* ── Visual column (image + floating cards) ── */
.hero__visual {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.65s var(--ease-out) 0.3s both;
}

.dots-tl,
.dots-br {
  display: none;
  position: absolute;
  width: 88px;
  height: 88px;
  background-image: radial-gradient(circle, currentColor 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: -1;
}
.dots-tl { top: -20px; left: -16px; color: var(--gold-300); opacity: 0.55; }
.dots-br { bottom: -20px; right: -16px; color: var(--teal-300); opacity: 0.45; }

.image-border-wrap {
  padding: 3px;
  background: linear-gradient(145deg, var(--teal-300) 0%, var(--teal-100) 40%, var(--gold-300) 100%);
  border-radius: var(--r-3xl);
}

.hero__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--r-3xl) - 3px);
  overflow: hidden;
  background: linear-gradient(155deg, var(--teal-900) 0%, var(--teal-700) 45%, var(--teal-500) 100%);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: linear-gradient(145deg, rgba(10,61,61,0.95) 0%, rgba(13,110,110,0.90) 50%, rgba(17,155,155,0.85) 100%);
}
.image-placeholder__icon { width: 72px; height: 72px; opacity: 0.7; }
.image-placeholder__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* Live indicator inside placeholder */
.image-placeholder__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  margin-top: var(--sp-2);
}
.image-placeholder__live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulseDot 1.8s ease-in-out infinite;
  display: block;
}
.image-placeholder__live-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
}

/* Floating cards */
.float-card {
  display: none;
  position: absolute;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 20;
}

.float-card--students {
  bottom: var(--sp-5);
  left: calc(-1 * var(--sp-5));
  opacity: 0;
  transform: translateX(-12px);
  animation: slideInRight 0.5s var(--ease-out) 0.85s both;
}
.float-card--rating {
  top: var(--sp-5);
  right: calc(-1 * var(--sp-5));
  opacity: 0;
  transform: translateX(12px);
  animation: slideInLeft 0.5s var(--ease-out) 1.0s both;
}

.float-card__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card__icon-wrap--teal { background: var(--teal-50); color: var(--teal-600); }
.float-card__icon-wrap--gold { background: var(--gold-100); color: var(--gold-600); }
.float-card__body { display: flex; flex-direction: column; }
.float-card__value {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
}
.float-card__label { font-size: 10px; font-weight: 500; color: var(--slate-400); line-height: 1.3; }
.float-card__stars { color: var(--gold-500); font-size: 11px; letter-spacing: 1.5px; margin-bottom: 1px; }


/* ────────────────────────────────────────────────────────────
   MOBILE STICKY CTA BAR
   ──────────────────────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 150;
  padding: var(--sp-3) var(--sp-4);
  padding-bottom: calc(var(--sp-3) + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--slate-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.07);
  transform: translateY(100%);
  transition: transform 280ms var(--ease-out);
  will-change: transform;
}
.sticky-bar.is-visible { transform: translateY(0); }

.sticky-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  min-height: 48px;
  padding: 12px var(--sp-6);
  background: linear-gradient(135deg, var(--teal-600), var(--teal-900));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-lg);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 150ms;
}
.sticky-bar__btn:hover {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
}


/* ────────────────────────────────────────────────────────────
   REDUCED MOTION — hero
   ──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .hero__headline,
  .hero__sub,
  .hero__cta-group,
  .hero__micro,
  .hero__stats,
  .hero__visual,
  .float-card--students,
  .float-card--rating {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .headline__accent::after {
    transform: scaleX(1) !important;
    animation: none !important;
  }
  .badge__dot,
  .image-placeholder__live-dot {
    animation: none !important;
  }
}


/* ────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ──────────────────────────────────────────────────────────── */

@media (min-width: 375px) {
  .hero__container { padding-inline: var(--sp-5); }
  .hero__headline  { font-size: clamp(30px, 8vw, 38px); }
  .badge__text     { font-size: 12.5px; }
}

@media (min-width: 425px) {
  .hero__container { padding: var(--sp-12) var(--sp-5) var(--sp-10); }
  .hero__headline  { font-size: clamp(32px, 7.5vw, 40px); }
  .hero__stats     { grid-template-columns: repeat(4, 1fr); }
  .stat-card__value { font-size: 18px; }
  .hero__cta-group { flex-direction: row; }
  .btn-trial       { flex: 1.4; width: auto; }
  .btn-whatsapp    { flex: 1; width: auto; }
}

@media (min-width: 640px) {
  .hero__container      { padding: var(--sp-14) var(--sp-8) var(--sp-12); }
  .hero__image-frame    { aspect-ratio: 16 / 9; }
}

@media (min-width: 768px) {
  .site-header      { height: var(--header-h-desk); }
  .hero             { padding-top: var(--header-h-desk); }
  .mobile-nav       { top: var(--header-h-desk); }
  .header__nav      { display: flex; align-items: center; gap: 2px; }
  .header__cta-btn  { display: inline-flex; }
  .header__menu-btn { display: none; }
  .sticky-bar       { display: none; }

  .hero__container {
    padding: var(--sp-16) var(--sp-8) var(--sp-14);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
  }
  .hero__content { grid-column: 1; grid-row: 1; }
  .hero__visual  { grid-column: 2; grid-row: 1; }
  .hero__image-frame { aspect-ratio: 4 / 5; }
  .hero__cta-group { flex-direction: column; }
  .btn-trial, .btn-whatsapp { flex: none; width: 100%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .float-card { display: flex; }
  .dots-tl, .dots-br { display: block; }
  .hero__headline { font-size: clamp(36px, 4.8vw, 46px); }
}

@media (min-width: 1024px) {
  .hero__container {
    padding: var(--sp-20) var(--sp-8) var(--sp-16);
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--sp-16);
  }
  .hero__headline   { font-size: clamp(44px, 4.2vw, 54px); }
  .hero__sub        { font-size: 17px; }
  .hero__cta-group  { flex-direction: row; gap: var(--sp-3); }
  .btn-trial        { flex: 1.5; width: auto; }
  .btn-whatsapp     { flex: 1; width: auto; }
  .hero__stats      { grid-template-columns: repeat(4, 1fr); }
  .stat-card__value { font-size: 22px; }
  .stat-card__label { font-size: 11.5px; }
  .float-card       { padding: var(--sp-4) var(--sp-5); }
  .float-card__value { font-size: 16px; }
  .float-card--students { left: calc(-1 * var(--sp-8)); }
  .float-card--rating   { right: calc(-1 * var(--sp-8)); }
  .hero__image-frame    { aspect-ratio: 3 / 4; }
}

@media (min-width: 1280px) {
  .hero__container  { padding: var(--sp-24) var(--sp-6) var(--sp-20); }
  .hero__headline   { font-size: clamp(50px, 3.8vw, 58px); }
  .hero__sub        { font-size: 18px; }
  .stat-card__value { font-size: 24px; }
  .badge__text      { font-size: 13px; }
}

@media (min-width: 1440px) {
  .hero__container {
    grid-template-columns: 55% 45%;
    padding-block: 120px 100px;
  }
  .hero__headline    { font-size: clamp(54px, 3.8vw, 62px); }
  .float-card--students { left: -40px; bottom: var(--sp-8); }
  .float-card--rating   { right: -40px; top: var(--sp-8); }
  .float-card__icon-wrap { width: 42px; height: 42px; }
  .float-card__value { font-size: 17px; }
  .float-card__label { font-size: 11px; }
}

@media print {
  .site-header,
  .sticky-bar,
  .hero__bg-blob,
  .hero__bg-pattern,
  .float-card { display: none !important; }

  .hero { padding-top: 0; }
  .hero__container { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────
   HERO STAT-CARD SCOPE GUARD
   statistics.css loads after this file and redefines .stat-card with
   glassmorphism styles (backdrop-filter, centered text, different
   padding/radius/hover).  These higher-specificity rules restore the
   hero section's original card appearance by scoping under .hero__stats.
   ───────────────────────────────────────────────────────────────── */
.hero__stats .stat-card {
  align-items: flex-start;
  text-align: left;
  height: auto;
  background: var(--slate-50);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 1px solid var(--slate-100);
  border-radius: var(--r-lg);
  box-shadow: none;
  overflow: visible;
  padding: var(--sp-3) var(--sp-4);
  gap: 0;
}
.hero__stats .stat-card::before { display: none; }
.hero__stats .stat-card:hover {
  transform: none;
  background: var(--slate-50);
  border-color: var(--teal-200);
  box-shadow: 0 2px 10px rgba(13,110,110,0.08);
}
.hero__stats .stat-card__value {
  font-size: clamp(20px, 5vw, 24px);
  letter-spacing: -0.02em;
  min-width: auto;
}
.hero__stats .stat-card__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-400);
  margin-top: 3px;
  letter-spacing: 0;
}

@media (min-width: 425px) {
  .hero__stats .stat-card__value { font-size: 18px; }
}
@media (min-width: 768px) {
  .hero__stats .stat-card { padding: var(--sp-3) var(--sp-4); gap: 0; }
}
@media (min-width: 1024px) {
  .hero__stats .stat-card { padding: var(--sp-3) var(--sp-4); gap: 0; }
  .hero__stats .stat-card__value { font-size: 22px; }
  .hero__stats .stat-card__label { font-size: 11.5px; }
}
@media (min-width: 1280px) {
  .hero__stats .stat-card { padding: var(--sp-3) var(--sp-4); }
  .hero__stats .stat-card__value { font-size: 24px; }
}
@media (min-width: 1440px) {
  .hero__stats .stat-card { padding: var(--sp-3) var(--sp-4); }
  .hero__stats .stat-card__value { font-size: 24px; }
}
