/* ============================================
   hero.css — PREMIUM LUXURY KINETIC EDITION v2
   ============================================ */

:root {
  --gold: #fed65b;
  --teal: #00e5c8;
  --bg-dark: #051410;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gold-glow: rgba(254, 214, 91, 0.18);
  --teal-glow: rgba(0, 229, 200, 0.22);
}

/* ── HERO BASE ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* ── NOISE GRAIN LAYER ── */
.hero::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 2;
  animation: grainShift 8s steps(2) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-2%, -3%); }
  20%  { transform: translate(3%, 1%); }
  30%  { transform: translate(-1%, 4%); }
  40%  { transform: translate(4%, -2%); }
  50%  { transform: translate(-3%, 2%); }
  60%  { transform: translate(2%, -4%); }
  70%  { transform: translate(-4%, 1%); }
  80%  { transform: translate(1%, 3%); }
  90%  { transform: translate(-2%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ── DEPTH LAYERS ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-orb-1 {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 55%;
  height: 65%;
  background: radial-gradient(ellipse at center, rgba(254, 214, 91, 0.07) 0%, transparent 65%);
  filter: blur(40px);
}

.hero-bg-orb-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 45%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 229, 200, 0.05) 0%, transparent 65%);
  filter: blur(50px);
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-bg-band {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(254, 214, 91, 0.06) 30%, rgba(254, 214, 91, 0.12) 50%, rgba(254, 214, 91, 0.06) 70%, transparent 100%);
}

/* ── LAYOUT ── */
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 5% 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* ── TYPOGRAPHY ── */
.hero-title {
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-title .gold {
  background: linear-gradient(180deg, #fff 0%, #fed65b 55%, #dbaf37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.hero-title .teal {
  color: var(--teal);
  font-style: italic;
  text-shadow: 0 0 8px rgba(0, 229, 200, 0.18);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 36px;
  font-family: 'Manrope', sans-serif;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   BUTTONS — scoped to .hero to beat all
   overrides from header.css or global.css
   ══════════════════════════════════════════ */

.hero .hero-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px;
  max-width: 500px;
  width: 100%;
}

.hero .hero-actions .btn-primary,
.hero .hero-actions .btn-ghost {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  height: 58px !important;
  min-height: 58px;
  padding: 0 !important;
  border-radius: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box !important;
  position: relative;
  overflow: hidden;
  flex: unset !important;
  min-width: unset !important;
  max-width: unset !important;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.35s ease,
              background 0.3s ease,
              border-color 0.3s ease;
}

.hero .hero-actions .btn-primary {
  background: var(--gold) !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(254, 214, 91, 0.25),
              0 2px 8px rgba(254, 214, 91, 0.15);
}

.hero .hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  z-index: 1;
}

.hero .hero-actions .btn-primary:hover::before { left: 160%; }

.hero .hero-actions .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(254, 214, 91, 0.38), 0 6px 16px rgba(254, 214, 91, 0.2);
  background: #ffdf6b !important;
}

.hero .hero-actions .btn-primary:active { transform: translateY(-1px); }

.hero .hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero .hero-actions .btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero .hero-actions .btn-ghost:hover::before { opacity: 1; }

.hero .hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero .hero-actions .btn-ghost:active { transform: translateY(-1px); }

/* ── STATS ── */
.hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}

.stat-chip {
  flex: 1;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.stat-chip:hover {
  border-color: rgba(254, 214, 91, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.stat-chip .val {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.stat-chip .val small {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.7;
}

.stat-chip .lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── VIDEO ── */
.hero-right {
  perspective: 2000px;
  display: flex;
  justify-content: center;
}

.video-container-premium {
  position: relative;
  width: 100%;
  aspect-ratio: 9/14;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(254, 214, 91, 0.04);
  transform: rotateY(-12deg) rotateX(5deg) scale(0.95);
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.8s ease;
  animation: floatVideo 6s ease-in-out infinite;
}

.video-container-premium:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.08);
  box-shadow: 0 80px 160px rgba(0, 0, 0, 0.85), 0 0 60px rgba(254, 214, 91, 0.06);
  z-index: 10;
}

.video-container-premium video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.video-container-premium:hover video { transform: scale(1.06); }

@keyframes floatVideo {
  0%, 100% { transform: rotateY(-12deg) rotateX(5deg) translateY(0); }
  50%       { transform: rotateY(-10deg) rotateX(3deg) translateY(-18px); }
}

/* ── REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.v {
  opacity: 1;
  transform: translateY(0);
}

.hero-right.reveal {
  transform: rotateY(-12deg) rotateX(5deg) scale(0.95);
  opacity: 0;
  transition: opacity 0.9s ease, transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-right.reveal.v {
  opacity: 1;
  transform: rotateY(-12deg) rotateX(5deg) scale(0.95);
}

.hero-title   { animation: heroFallback 0.8s 0.2s both; }
.hero-sub     { animation: heroFallback 0.8s 0.35s both; }
.hero-actions { animation: heroFallback 0.8s 0.45s both; }
.hero-right   { animation: heroFallback 0.8s 0.3s both; }

@keyframes heroFallback { to { opacity: 1; } }

/* ══════════════════════════════════════════
   MOBILE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    padding-top: 72px;
    align-items: center;
    min-height: 100svh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 6% 60px;
  }

  .hero-right { display: none; }

  .hero-title {
    font-size: clamp(34px, 9.5vw, 52px);
    line-height: 1.02;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.55);
  }

  .hero .hero-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100% !important;
  }

  .hero .hero-actions .btn-primary {
    height: 52px !important;
    font-size: 11px !important;
    border-radius: 14px !important;
    letter-spacing: 0.12em !important;
    box-shadow: 0 8px 28px rgba(254,214,91,0.28) !important;
  }

  .hero .hero-actions .btn-ghost {
    height: 48px !important;
    font-size: 11px !important;
    border-radius: 14px !important;
    letter-spacing: 0.08em !important;
    border-color: rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.6) !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 28px !important;
  }

  .stat-chip {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
  }

  .stat-chip .val { font-size: 20px; }
  .stat-chip .lbl { font-size: 9px; letter-spacing: 1px; }

  .hero-trust {
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .hero-trust-text {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
  }
}

c
}
/* ── EYEBROW ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  font-family: 'Manrope', sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0,229,200,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

/* ── TRUST BAR ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-trust-avatars {
  display: flex;
}
.trust-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #051410;
  margin-left: -8px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.trust-avatar:first-child { margin-left: 0; }
.hero-trust-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
}
.hero-trust-text strong {
  color: rgba(255,255,255,0.7);
}

/* ── VIDEO BADGE ── */
.video-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5,20,16,0.85);
  border: 1px solid rgba(0,229,200,0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.video-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ── 4 stat chips ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-eyebrow { font-size: 9px; }
}
/* ══════════════════════════════════════════
   AGROBLOOM-STYLE OVERRIDES
   ══════════════════════════════════════════ */

/* EYEBROW STAR */
.hero-eyebrow-star {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}
.hero-eyebrow-sep {
  opacity: 0.3;
}

/* BUTTONS — pill shape, full width stacked */
.hero .hero-actions {
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  max-width: 420px !important;
}
.hero .hero-actions .btn-primary,
.hero .hero-actions .btn-ghost {
  border-radius: 999px !important;
  height: 60px !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
}
.hero .hero-actions .btn-ghost {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}

/* SCROLL PILL (Stroll Now equivalent) */
.hero-scroll-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.hero-scroll-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

/* MOBILE TRUST ROW */
@media (max-width: 768px) {
  .hero-trust {
    flex-wrap: wrap;
    gap: 10px !important;
  }
  .hero-scroll-pill {
    margin-left: 0;
    font-size: 10px;
    padding: 7px 14px;
  }
  .hero .hero-actions {
    max-width: 100% !important;
  }
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-ghost {
    height: 56px !important;
  }
}

/* ══════════════════════════════════════════
   PREMIUM HERO BACKGROUND OVERHAUL
   ══════════════════════════════════════════ */

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(254,214,91,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at -10% 80%, rgba(0,229,200,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(0,229,200,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(254,214,91,0.04) 0%, transparent 70%),
    linear-gradient(160deg, #071a12 0%, #040f0a 40%, #030d08 70%, #020a06 100%);
  background-attachment: fixed;
}

/* Animated gold sweep line */
.hero-bg-band {
  top: 35%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(254,214,91,0.0) 10%,
    rgba(254,214,91,0.18) 35%,
    rgba(254,214,91,0.32) 50%,
    rgba(254,214,91,0.18) 65%,
    rgba(254,214,91,0.0) 90%,
    transparent 100%);
  animation: bandSweep 6s ease-in-out infinite;
}
@keyframes bandSweep {
  0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
  50%       { opacity: 1;   transform: scaleX(1.05); }
}

/* Stronger top-right gold leak */
.hero-bg-orb-1 {
  top: -20%;
  right: -12%;
  width: 65%;
  height: 75%;
  background: radial-gradient(ellipse at center,
    rgba(254,214,91,0.14) 0%,
    rgba(254,214,91,0.06) 40%,
    transparent 70%);
  filter: blur(60px);
  animation: orbPulse1 8s ease-in-out infinite;
}
@keyframes orbPulse1 {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Stronger bottom-left teal leak */
.hero-bg-orb-2 {
  bottom: -15%;
  left: -8%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at center,
    rgba(0,229,200,0.12) 0%,
    rgba(0,229,200,0.05) 45%,
    transparent 70%);
  filter: blur(55px);
  animation: orbPulse2 10s ease-in-out infinite;
}
@keyframes orbPulse2 {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* Third orb — mid teal accent */
.hero-bg-orb-3 {
  position: absolute;
  top: 55%;
  right: 25%;
  width: 30%;
  height: 35%;
  background: radial-gradient(ellipse at center,
    rgba(0,229,200,0.07) 0%,
    transparent 65%);
  filter: blur(45px);
  animation: orbPulse2 12s ease-in-out infinite reverse;
}

/* Diagonal grid overlay — subtle luxury texture */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Deeper vignette */
.hero-bg-vignette {
  background: radial-gradient(ellipse at 50% 50%,
    transparent 25%,
    rgba(0,0,0,0.35) 65%,
    rgba(0,0,0,0.65) 100%);
}

/* ══════════════════════════════════════════
   HERO BUTTONS — AgroBloom pill style
   ══════════════════════════════════════════ */
.hero-btn-primary,
.hero-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275),
              box-shadow 0.3s ease,
              background 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* PRIMARY — solid gold */
.hero-btn-primary {
  background: var(--gold);
  color: #000;
  border: none;
  box-shadow: 0 8px 28px rgba(254,214,91,0.30),
              0 2px 8px rgba(254,214,91,0.15);
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.hero-btn-primary:hover::before { left: 160%; }
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(254,214,91,0.40),
              0 6px 16px rgba(254,214,91,0.20);
}
.hero-btn-primary:active { transform: translateY(-1px); }

/* GHOST — dark glass */
.hero-btn-ghost {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.40);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.hero-btn-ghost:active { transform: translateY(-1px); }

/* ACTIONS CONTAINER */
.hero .hero-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  max-width: 420px !important;
  width: 100% !important;
}

/* STAT CHIPS — refined */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 32px;
  max-width: 420px;
}
.stat-chip {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, background 0.3s;
}
.stat-chip:hover {
  border-color: rgba(254,214,91,0.20);
  background: rgba(255,255,255,0.05);
}
.stat-chip .val {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-chip .val small {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.65;
}
.stat-chip .lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-btn-primary,
  .hero-btn-ghost {
    height: 58px;
    font-size: 11px;
  }
  .hero .hero-actions {
    max-width: 100% !important;
  }
  .hero-stats {
    max-width: 100%;
    gap: 8px;
  }
  .stat-chip { padding: 14px 16px; border-radius: 16px; }
  .stat-chip .val { font-size: 20px; }
}
