/* ═══════════════════════════════════════════
   AKSHARA TECHNOLOGIES — SHARED STYLESHEET
   Brand: Coral #D95858 | Navy #1B2A4A
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --bg:          #FDF8F7;
  --bg-alt:      #F9F0EE;
  --navy:        #1B2A4A;
  --brand:       #D95858;
  --brand-hover: #C44444;
  --brand-light: #FEF0EE;
  --brand-mid:   #F4A09A;
  --white:       #FFFFFF;
  --gray:        #6B7280;
  --gray-light:  #9CA3AF;
  --border:      #EDE4E2;
  --shadow:      0 2px 16px rgba(27,42,74,0.07);
  --shadow-lg:   0 8px 32px rgba(27,42,74,0.13);
  --radius:      12px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,248,247,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.logo-fallback {
  width: 34px; height: 34px; background: var(--brand); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.nav-logo-text { font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--navy);
  padding: 7px 14px; border-radius: 7px; opacity: 0.72;
  transition: opacity 0.2s, color 0.2s; position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--brand); }
.nav-links a.active { opacity: 1; color: var(--brand); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px;
  height: 2px; background: var(--brand); border-radius: 1px;
}
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 100px !important;
  font-size: 14px !important; font-weight: 600 !important;
  opacity: 1 !important; flex-shrink: 0;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--brand) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 1px; transition: all 0.3s var(--ease); }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: var(--bg); flex-direction: column;
  padding: 90px 32px 40px; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 22px; font-weight: 700; color: var(--navy); padding: 14px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--brand); }
.mobile-nav .m-cta { margin-top: 24px; background: var(--navy); color: #fff !important; text-align: center; padding: 16px !important; border-radius: 100px !important; font-size: 18px !important; }

/* ── SECTION UTILITIES ── */
.section { padding: 96px 28px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 16px; }
.section-title .accent { color: var(--brand); }
.section-sub { font-size: 17px; color: var(--gray); line-height: 1.7; max-width: 560px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 88px 28px 96px;
  text-align: center;
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero .section-label { color: var(--brand-mid); }
.page-hero-h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: #fff; margin-bottom: 20px; }
.page-hero-h1 .accent { color: var(--brand-mid); }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 560px; margin: 0 auto 36px; }
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.page-hero-tag {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px; border-radius: 100px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-size: 15px; font-weight: 600; padding: 13px 26px; border-radius: 100px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,88,88,0.30); }
.btn-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--white);
  font-size: 15px; font-weight: 600; padding: 13px 26px; border-radius: 100px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-brand:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,88,88,0.30); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-size: 15px; font-weight: 600;
  padding: 12px 22px; border-radius: 100px;
  border: 1.5px solid var(--border); transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand); font-size: 15px; font-weight: 700;
  padding: 14px 30px; border-radius: 100px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-white:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── INLINE LINK ── */
.link-brand { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--brand); transition: gap 0.2s; }
.link-brand:hover { gap: 9px; }
.link-arrow svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 28px 28px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { display: flex; align-items: center; gap: 12px; }
.stat-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.8); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stat-num { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.m-name { font-size: 15px; font-weight: 700; color: var(--navy); opacity: 0.3; white-space: nowrap; }
.m-dot { opacity: 0.15 !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICE CARDS ── */
.svc-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow); border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-light); }
.svc-icon { width: 46px; height: 46px; background: var(--brand-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.svc-desc { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }

/* ── WORK / PORTFOLIO CARDS ── */
.work-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-card.hidden { display: none; }
.wc-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.wc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.work-card:hover .wc-img img { transform: scale(1.04); }
.wc-body { padding: 18px 20px; }
.wc-tag { font-size: 11px; font-weight: 700; color: var(--brand); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 6px; }
.wc-title { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.wc-desc { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ── TESTIMONIAL CARDS ── */
.t-card { flex-shrink: 0; width: 350px; background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars svg { width: 15px; height: 15px; fill: #F59E0B; }
.t-quote { font-size: 13.5px; color: var(--navy); line-height: 1.75; margin-bottom: 18px; opacity: 0.85; }
.t-author { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 1px solid var(--border); }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--brand); flex-shrink: 0; }
.t-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.t-company { font-size: 11.5px; color: var(--gray); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--brand); padding: 88px 28px; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(26px, 3vw, 42px); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.65; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--navy); color: #fff; padding: 64px 28px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 100px; }
.footer-logo-text { font-size: 15px; font-weight: 700; }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s, color 0.22s;
  flex-shrink: 0;
}
.social-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(217,88,88,0.35);
  color: #fff;
}
.social-btn svg { width: 18px; height: 18px; display: block; fill: currentColor; flex-shrink: 0; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════
   PREMIUM DARK CTA  (reusable across pages)
   Usage: <section class="section"><div class="section-inner">
            <div class="premium-cta">...</div>
          </div></section>
══════════════════════════════════════════ */
.premium-cta {
  background: var(--navy);
  border-radius: 24px;
  padding: 76px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.premium-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.premium-cta::after {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  bottom: -300px; right: -80px;
  background: radial-gradient(circle, rgba(217,88,88,0.22) 0%, transparent 62%);
  pointer-events: none;
}
.pcta-inner { position: relative; z-index: 1; }
.pcta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-mid);
  border: 1px solid rgba(244,160,154,0.3);
  background: rgba(217,88,88,0.1);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 22px;
}
.pcta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  color: #fff; margin-bottom: 18px;
}
.pcta-inner h2 em { font-style: normal; color: var(--brand); }
.pcta-inner p {
  font-size: 1rem; color: rgba(255,255,255,0.58);
  line-height: 1.7; max-width: 500px; margin-bottom: 36px;
}
.pcta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.pcta-cards {
  display: flex; flex-direction: column; gap: 14px;
  flex-shrink: 0; min-width: 230px;
  position: relative; z-index: 1;
}
.pcta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.pcta-card:hover {
  border-color: rgba(217,88,88,0.4);
  background: rgba(217,88,88,0.08);
}
.pcta-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(217,88,88,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pcta-icon svg {
  width: 18px; height: 18px;
  stroke: var(--brand); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.pcta-val { font-size: 1.35rem; font-weight: 900; color: #fff; line-height: 1; }
.pcta-val span { color: var(--brand); }
.pcta-lbl { font-size: 0.74rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── DARK FAQ CARD ── */
.dark-faq-wrap {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  position: relative;
}
.dark-faq-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.dark-faq-wrap::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(217,88,88,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.dfaq-left {
  padding: 56px 48px;
  position: relative; z-index: 1;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.dfaq-left .section-label { color: var(--brand-mid); margin-bottom: 14px; }
.dfaq-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.2;
  color: #fff; margin-bottom: 16px;
}
.dfaq-left h2 em { font-style: normal; color: var(--brand); }
.dfaq-left p { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.dfaq-perks {
  margin-top: 28px; display: flex; flex-direction: column; gap: 12px;
}
.dfaq-perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; font-weight: 600; color: rgba(255,255,255,0.65);
}
.dfaq-perk svg {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: var(--brand); fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.dfaq-right {
  padding: 40px 48px;
  position: relative; z-index: 1;
}
.dfaq-item { border-top: 1px solid rgba(255,255,255,0.07); }
.dfaq-q {
  width: 100%; text-align: left;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.85);
  background: transparent; cursor: pointer;
  transition: color 0.2s;
}
.dfaq-q:hover { color: var(--brand-mid); }
.dfaq-q svg {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s, stroke 0.2s;
}
.dfaq-item.open .dfaq-q { color: #fff; }
.dfaq-item.open .dfaq-q svg { transform: rotate(45deg); stroke: var(--brand-mid); }
.dfaq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.dfaq-item.open .dfaq-a { max-height: 280px; }
.dfaq-a p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; padding-bottom: 18px; }

/* ── RESPONSIVE: premium cta + dark faq ── */
@media (max-width: 1024px) {
  .premium-cta { padding: 60px 48px; gap: 40px; }
  .dfaq-left { padding: 44px 36px; }
  .dfaq-right { padding: 36px; }
}
@media (max-width: 900px) {
  .premium-cta { grid-template-columns: 1fr; gap: 32px; padding: 52px 40px; }
  .pcta-cards { flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .pcta-card { flex: 1; min-width: 180px; }
  .dark-faq-wrap { grid-template-columns: 1fr; }
  .dfaq-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 40px 32px; }
  .dfaq-right { padding: 32px; }
}
@media (max-width: 640px) {
  .premium-cta { padding: 40px 28px; }
  .pcta-cards { flex-direction: column; }
  .dfaq-left, .dfaq-right { padding: 28px 24px; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 100px; border: 1.5px solid var(--border); color: var(--gray); background: transparent; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── TECH BADGE PILLS ── */
.tech-tag { font-size: 12px; font-weight: 500; color: var(--gray); background: var(--white); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; transition: border-color 0.2s, color 0.2s; }
.tech-tag:hover { border-color: var(--brand); color: var(--brand); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .stat-div { display: none; }
}
@media (max-width: 480px) {
  .page-hero { padding: 64px 20px 72px; }
}
