/* =========================================================
   IMAX Electronics — Circuit Modern palette
   Charcoal + White + Electric-Blue. Geist + Inter Tight.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* IMAX "Circuit" palette */
  --paper:      #FFFFFF;
  --paper-2:    #F1F5F9;
  --paper-soft: #F8FAFC;
  --ink:        #0F172A;
  --ink-2:      #1E293B;
  --volt:       #1D4ED8;      /* electric blue */
  --volt-2:     #3B82F6;
  --volt-soft:  #DBEAFE;
  --volt-deep:  #1E40AF;      /* darker for labels */
  --muted:      #475569;
  --muted-2:    #94A3B8;
  --line:       rgba(15,23,42,.10);
  --line-2:     rgba(15,23,42,.05);

  /* base.css aliases */
  --accent:     var(--volt);
  --accent-2:   var(--volt-2);
  --accent-soft:var(--volt-soft);
  --spot:       #0EA5E9;

  /* type */
  --f-display: "Geist", "Bricolage Grotesque", -apple-system, sans-serif;
  --f-body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "Geist Mono", "JetBrains Mono", monospace;

  /* scale */
  --container:        1320px;
  --container-narrow: 1040px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 12px;
  --shadow-soft: 0 1px 3px rgba(0,0,0,.06), 0 12px 32px -16px rgba(0,0,0,.10);
  --shadow-lift: 0 4px 6px rgba(0,0,0,.07), 0 24px 48px -20px rgba(0,0,0,.14);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
*::selection { background: var(--volt); color: #fff; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
section, header, footer { max-width: 100vw; overflow-x: clip; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--volt); border-radius: 3px; }

/* film grain — very subtle on white */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ---- TYPE ---- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { color: var(--muted); line-height: 1.7; }

.eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--volt);
  display: inline-block;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 20px; height: 2px;
  background: var(--volt); margin-right: 12px; vertical-align: middle; border-radius: 1px;
}
.label-mono {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ---- LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark p { color: rgba(248,250,252,.68); }
.section--slate { background: var(--ink-2); color: var(--paper); }
.section--slate h2, .section--slate h3 { color: var(--paper); }
.section--blue { background: var(--volt); color: #fff; }
.section--soft { background: var(--paper-2); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 8px;
  border: 2px solid var(--volt);
  background: var(--volt); color: #fff;
  transition: all .3s var(--ease);
}
.btn:hover { background: var(--volt-deep); border-color: var(--volt-deep); opacity: 1; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,78,216,.35); }
.btn--ghost { background: transparent; color: var(--volt); }
.btn--ghost:hover { background: var(--volt); color: #fff; }
.btn--ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-white:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white { background: #fff; color: var(--volt); border-color: #fff; }
.btn--white:hover { background: var(--volt-soft); border-color: var(--volt-soft); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 13px; font-weight: 600;
  letter-spacing: .06em;
  padding: 15px 28px; border-radius: 8px;
  background: #25D366; border: 2px solid #25D366; color: #fff;
  transition: all .3s var(--ease);
}
.btn-wa:hover { background: #1EB855; border-color: #1EB855; opacity: 1; transform: translateY(-2px); }
.btn-wa svg { flex-shrink: 0; }

/* ---- ANNOUNCE BAR ---- */
.announce {
  background: var(--ink); text-align: center; padding: 10px 20px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(248,250,252,.75);
}
.announce span { color: var(--volt-2); font-weight: 600; }
.announce a { color: var(--volt-2); }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 16px var(--gutter);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), box-shadow .3s;
}
.nav.scrolled { padding-top: 10px; padding-bottom: 10px; box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-logo {
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--ink);
}
.nav-logo span { color: var(--volt); }
.nav-links {
  display: flex; gap: 28px; justify-content: center; list-style: none;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--volt); opacity: 1; }
.nav-cta { justify-self: end; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); transition: .3s; display: block; }

/* ---- HERO ---- */
.hero {
  background: var(--ink);
  padding: clamp(72px, 12vh, 140px) 0 clamp(64px, 9vw, 120px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(29,78,216,.18) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 15% 80%, rgba(59,130,246,.10) 0%, transparent 60%);
  pointer-events: none;
}
/* grid lines overlay */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 { color: #fff; margin-bottom: 24px; max-width: 18ch; }
.hero h1 em { font-style: normal; color: var(--volt-2); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(248,250,252,.70);
  max-width: 48ch; margin-bottom: 40px; line-height: 1.65;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 56px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 40px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.10);
}
.hero-stat-n {
  font-family: var(--f-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1;
}
.hero-stat-n span { color: var(--volt-2); }
.hero-stat-l { font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(248,250,252,.50); margin-top: 4px; }

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: var(--volt); overflow: hidden; padding: 0;
  border-top: 2px solid rgba(255,255,255,.15);
}
.marquee-track {
  display: flex; align-items: center;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  padding: 14px 40px;
  font-family: var(--f-display); font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.92);
  white-space: nowrap;
  display: flex; align-items: center; gap: 40px;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- CATEGORIES ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--volt-soft) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--volt-soft); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 52px; height: 52px;
  background: var(--volt-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  transition: background .3s;
}
.cat-card:hover .cat-icon { background: var(--volt); }
.cat-icon svg { color: var(--volt); transition: color .3s; }
.cat-card:hover .cat-icon svg { color: #fff; }
.cat-name { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); position: relative; z-index: 1; letter-spacing: -.01em; }
.cat-desc { font-size: 13px; color: var(--muted-2); line-height: 1.5; position: relative; z-index: 1; }
.cat-link {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--volt); font-weight: 500; display: inline-flex; align-items: center; gap: 6px;
  position: relative; z-index: 1; margin-top: auto;
}

/* ---- BRANDS ---- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.brand-cell {
  background: var(--paper);
  padding: 28px 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.brand-cell:hover { background: var(--volt-soft); }
.brand-name {
  font-family: var(--f-display); font-size: 14px; font-weight: 800;
  letter-spacing: -.01em; color: var(--muted); text-align: center;
  transition: color .25s;
}
.brand-cell:hover .brand-name { color: var(--volt-deep); }

/* ---- OFFERS ---- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.offer-card--blue { background: linear-gradient(145deg, var(--volt-deep) 0%, var(--volt) 60%, #60A5FA 100%); }
.offer-card--dark { background: linear-gradient(145deg, var(--ink) 0%, var(--ink-2) 60%, #334155 100%); }
.offer-card--slate { background: linear-gradient(145deg, #0F172A 0%, #1E3A5F 60%, var(--volt-deep) 100%); }
.offer-tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 8px;
}
.offer-card h3 { color: #fff; font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 8px; }
.offer-card p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.5; }
.offer-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 8px 14px;
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 800;
  color: #fff; line-height: 1; text-align: center;
}
.offer-badge span { display: block; font-size: 9px; letter-spacing: .12em; opacity: .75; font-weight: 500; }

/* ---- EMI SECTION ---- */
.emi-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.emi-banks {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.emi-bank {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em;
  padding: 7px 14px; border: 1px solid var(--line);
  border-radius: 6px; color: var(--muted); background: var(--paper-soft);
  font-weight: 500;
}
.emi-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.emi-pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; background: var(--paper-soft);
  border: 1px solid var(--line); border-radius: 10px;
}
.emi-pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--volt-soft); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--volt);
}
.emi-pillar-title { font-family: var(--f-display); font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.emi-pillar-desc { font-size: 13px; color: var(--muted-2); line-height: 1.45; }
.emi-visual {
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 16px; padding: 40px; position: relative; overflow: hidden;
}
.emi-visual::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.25) 0%, transparent 70%);
}
.emi-card-mock {
  background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
  border-radius: 12px; padding: 24px; position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  margin-bottom: 24px;
}
.emi-card-chip {
  width: 36px; height: 28px; background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 5px; margin-bottom: 20px;
}
.emi-card-num {
  font-family: var(--f-mono); font-size: 14px; letter-spacing: .2em;
  color: rgba(255,255,255,.8); margin-bottom: 16px;
}
.emi-card-label {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.emi-card-bank { font-family: var(--f-display); font-size: 1.1rem; font-weight: 800; color: #fff; }
.emi-stat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.emi-stat:last-child { border-bottom: none; }
.emi-stat-key { font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; color: rgba(248,250,252,.5); text-transform: uppercase; }
.emi-stat-val { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: #fff; }
.emi-stat-val em { font-style: normal; color: var(--volt-2); }

/* ---- ENQUIRY CTA ---- */
.enquiry-section {
  background: var(--ink);
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.enquiry-section::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,.20) 0%, transparent 70%);
  pointer-events: none;
}
.enquiry-section .container { position: relative; z-index: 1; }
.enquiry-section h2 { color: #fff; max-width: 18ch; margin: 0 auto 20px; }
.enquiry-section p { color: rgba(248,250,252,.60); max-width: 44ch; margin: 0 auto 40px; }
.enquiry-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.enquiry-contact { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.enquiry-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  color: rgba(248,250,252,.55);
}
.enquiry-contact-item a { color: rgba(248,250,252,.80); }
.enquiry-contact-item a:hover { color: var(--volt-2); opacity: 1; }

/* ---- FOOTER ---- */
.footer { background: #060B14; padding: clamp(52px, 7vw, 88px) 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--f-display); font-size: 1.3rem; font-weight: 800;
  color: #fff; letter-spacing: -.02em; margin-bottom: 12px;
}
.footer-brand-name span { color: var(--volt-2); }
.footer-desc { font-size: 13.5px; color: rgba(248,250,252,.48); line-height: 1.65; max-width: 28ch; margin-bottom: 24px; }
.footer-contact-line {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(248,250,252,.55); margin-bottom: 10px;
}
.footer-contact-line a { color: rgba(248,250,252,.70); }
.footer-contact-line a:hover { color: var(--volt-2); opacity: 1; }
.footer-col-title {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(248,250,252,.35); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(248,250,252,.55); transition: color .25s; }
.footer-links a:hover { color: var(--volt-2); opacity: 1; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em;
  color: rgba(248,250,252,.30);
}
.footer-bottom a { color: rgba(248,250,252,.45); }
.footer-bottom a:hover { color: var(--volt-2); opacity: 1; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,250,252,.55); transition: all .25s;
}
.social-icon:hover { background: var(--volt); border-color: var(--volt); color: #fff; opacity: 1; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in, .no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- UTILITIES ---- */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 52px; }
.section-header { margin-bottom: clamp(36px, 5vw, 56px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .emi-wrap { grid-template-columns: 1fr; gap: 48px; }
  .emi-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-cta.desktop-only { display: none; }
  .nav-links.open {
    display: flex; position: fixed; inset: 57px 0 auto 0; flex-direction: column;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    padding: 28px var(--gutter); gap: 20px;
    border-bottom: 1px solid var(--line); z-index: 99;
  }
  .nav-links.open li a { font-size: 15px; letter-spacing: .06em; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 22px 18px; }
  .offers-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
}
