/* ============================================================
   NOMAD INNO — Design System
   Color: Brand Rose #e8406e | Dark mode
   Font: Inter + Space Grotesk
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand */
  --brand: #e8406e;
  --brand-dark: #c42f59;
  --brand-light: #f06090;
  --brand-glow: rgba(232, 64, 110, 0.25);
  --brand-glow-strong: rgba(232, 64, 110, 0.45);

  /* Neutrals */
  --bg: #080b14;
  --bg-2: #0d1120;
  --bg-3: #111827;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(232, 64, 110, 0.35);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Fonts */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);
  --container: min(90%, 1200px);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--brand-glow);

  /* Z-index */
  --z-nav: 100;
  --z-modal: 200;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-med: 0.25s ease;
  --t-slow: 0.4s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
p { color: var(--text-secondary); line-height: 1.75; max-width: 62ch; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8em 1.6em;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--t-med);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 24px var(--brand-glow);
}
.btn-primary:hover {
  background: var(--brand-light);
  box-shadow: 0 0 40px var(--brand-glow-strong);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-glow);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Section Layout ── */
.section-inner {
  width: var(--container);
  margin: 0 auto;
  padding: var(--section-py) 0;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  margin-bottom: 3.5rem;
  max-width: 55ch;
}

/* ────────────────────────────────────────────
   NAV
   ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1rem 0;
  transition: background var(--t-med), backdrop-filter var(--t-med), padding var(--t-med);
}
#navbar.scrolled {
  background: rgba(8, 11, 20, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--brand); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0.5em 1.3em;
  border-radius: 100px;
  font-weight: 600;
  transition: all var(--t-fast) !important;
}
.nav-cta:hover { background: var(--brand-light) !important; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  /* Pure black so the planet image blends in with mix-blend-mode: screen */
  background: #000;
}
.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation-duration: 14s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: 100px; left: -100px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
  top: 40%; left: 35%;
  animation-duration: 22s;
  animation-delay: -3s;
  opacity: 0.15;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.08); }
}

/* ── Hero layout: 3-row grid ── */
.hero-layout {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 130px 0 70px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Row 1: Badge — left aligned */
.hero-row-badge {
  margin-bottom: 2rem;
}

/* Row 2: Globe left + text right, vertically centered */
.hero-row-main {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero-globe-wrap {
  flex: 0 0 440px;
  pointer-events: none;
  animation: floatY 8s ease-in-out infinite;
  /* Fade image edges to transparent — eliminates any box edge regardless of BG color */
  -webkit-mask-image: radial-gradient(ellipse 75% 78% at 50% 50%, black 35%, transparent 90%);
  mask-image: radial-gradient(ellipse 75% 78% at 50% 50%, black 35%, transparent 90%);
}
.hero-globe {
  width: 100%;
  display: block;
}
.hero-text {
  flex: 1;
  min-width: 0;
}

/* Row 3: KPI stats strip — centered */
.hero-row-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Hero text element styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 64, 110, 0.12);
  border: 1px solid rgba(232, 64, 110, 0.3);
  color: var(--brand-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4em 1em;
  border-radius: 100px;
  animation: fadeUp 0.7s 0.05s both;
}
.hero-accent { color: var(--brand); }
.hero-sub {
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0;
  max-width: 46ch;
  animation: fadeUp 0.7s 0.2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  animation: fadeUp 0.7s 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.7s 0.4s both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ────────────────────────────────────────────
   ABOUT
   ──────────────────────────────────────────── */
#about {
  background: var(--bg-2);
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--t-med), background var(--t-med), transform var(--t-med);
  cursor: default;
}
.pillar:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(232, 64, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
}
.pillar h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.pillar p { font-size: 0.9rem; max-width: 100%; margin: 0; }

/* ────────────────────────────────────────────
   CARDS (shared)
   ──────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.products-grid { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: border-color var(--t-med), background var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 30px var(--brand-glow);
}
.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.card:hover .card-accent { transform: scaleX(1); }
.card-featured .card-accent { transform: scaleX(1); }
.card-featured {
  border-color: rgba(232, 64, 110, 0.25);
  background: rgba(232, 64, 110, 0.05);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(232, 64, 110, 0.1);
  border: 1px solid rgba(232, 64, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-light);
}
.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 100%;
  flex-grow: 1;
  margin: 0;
}

/* Topics / platforms list */
.card-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.card-topics li,
.product-platforms span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.3em 0.75em;
  border-radius: 100px;
}
.product-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

/* Card link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-light);
  margin-top: auto;
  transition: gap var(--t-fast), color var(--t-fast);
  cursor: pointer;
}
.card-link:hover { color: var(--brand); gap: 10px; }
.card-link-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 0.65em 1.4em;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
  transition: all var(--t-med);
  box-shadow: 0 0 20px var(--brand-glow);
  align-self: flex-start;
}
.card-link-primary:hover {
  background: var(--brand-light);
  box-shadow: 0 0 32px var(--brand-glow-strong);
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────
   SERVICES section
   ──────────────────────────────────────────── */
#services { background: var(--bg); }

/* ────────────────────────────────────────────
   PRODUCTS section
   ──────────────────────────────────────────── */
#products { background: var(--bg-2); }

/* Product status badge */
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3em 0.85em;
  border-radius: 100px;
  align-self: flex-start;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.product-status-live {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.product-status-live .status-dot {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulse-green 2s infinite;
}
.product-status-soon {
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(251, 191, 36, 0.2);
}
.product-status-soon .status-dot { background: #f59e0b; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 4px #10b981; }
  50% { box-shadow: 0 0 12px #10b981; }
}
.product-tagline {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  font-family: var(--font-heading);
}
.card-product-soon { opacity: 0.85; }
.soon-cta {
  margin-top: auto;
  padding-top: 0.5rem;
}
.soon-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ────────────────────────────────────────────
   CONTACT — centered layout
   ──────────────────────────────────────────── */
#contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 64, 110, 0.1) 0%, transparent 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-inner-centered {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--section-py) 0;
  text-align: center;
}
.contact-inner-centered .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* Email reveal block */
.contact-email-block {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-email-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 100%;
  margin: 0;
}
.contact-email-reveal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 0.85em 1.6em;
  color: var(--brand-light);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-med);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.contact-email-reveal:hover,
.contact-email-reveal.revealed {
  background: rgba(232, 64, 110, 0.08);
  border-color: var(--brand);
  color: var(--brand-light);
  box-shadow: 0 0 24px var(--brand-glow);
}
.contact-email-reveal svg { flex-shrink: 0; }
.contact-email-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 100%;
  margin: 0;
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.contact-socials-centered {
  justify-content: center;
  margin-top: 2rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-med);
  cursor: pointer;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: rgba(232, 64, 110, 0.1);
  border-color: var(--border-hover);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────── */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 30ch;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--brand); }
.footer-soon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.badge-soon {
  font-size: 0.67rem;
  font-weight: 600;
  padding: 0.15em 0.55em;
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(251, 191, 36, 0.2);
  letter-spacing: 0.05em;
}
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 100%;
  margin: 0;
}

/* ────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-layout { padding: 110px 0 60px; }
  .hero-row-main { flex-direction: column; gap: 1.5rem; }
  .hero-globe-wrap { flex: 0 0 auto; width: 300px; }
  .hero-text { text-align: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-row-bottom { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 11, 20, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: calc(var(--z-nav) - 1);
    font-size: 1.4rem;
  }
  .nav-links.open a { color: var(--text-primary); }
  .services-grid,
  .products-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.25rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}
