@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@400;500;600;700&family=DM+Mono:wght@500&display=swap');

/* ============================================================
   AV HORECA SOLUTIONS — global.css
   New Design System — Light Theme
   ============================================================ */


/* ─────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────────────── */
:root {
  --ink:          #0A1628;
  --ink-mid:      #152238;
  --ink-light:    #1E3252;
  --ember:        #B8520A;
  --ember-deep:   #8F3D00;
  --ember-glow:   #E8720F;
  --gold:         #D4A017;
  --surface-0:    #FFFFFF;
  --surface-1:    #FAF9F6;
  --surface-2:    #F2EFE8;
  --surface-3:    #E8E3D9;
  --text-primary:   #0A1628;
  --text-secondary: #3D4A5C;
  --text-muted:     #6B7A8D;
  --text-on-dark:   #F0EDE6;
  --text-dim:       rgba(240,237,230,0.72);
  --border:         #DDD8CE;
  --border-light:   #ECEAE3;
  --trust:          #1A6B42;
  --trust-bg:       #E8F5EE;
  --section-pad:    100px;
  --container:      1200px;
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --shadow-xs: 0 1px 4px rgba(10,22,40,0.06);
  --shadow-sm: 0 3px 14px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 64px rgba(10,22,40,0.18);
  --shadow-xl: 0 40px 100px rgba(10,22,40,0.24);
}


/* ─────────────────────────────────────────────────────────
   2. BASE
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light only;
  background-color: #FAF9F6;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  background-color: #FAF9F6 !important;
  color: #0A1628;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


/* ─────────────────────────────────────────────────────────
   3. CONTAINER
   ───────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}


/* ─────────────────────────────────────────────────────────
   4. SECTION SYSTEM
   ───────────────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  background-color: #FAF9F6;
}
.section-light { background-color: #FAF9F6; }
.section-stone { background-color: #F2EFE8; }
.section-dark {
  background-color: #0A1628;
  color: white;
}


/* ─────────────────────────────────────────────────────────
   5. SECTION HEADERS
   ───────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background-color: var(--ember); flex-shrink: 0;
}
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background-color: var(--gold); }
.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
  content: '';
  display: block; width: 24px; height: 2px;
  background-color: var(--ember); flex-shrink: 0;
}
.section-dark .eyebrow.center::after { background-color: var(--gold); }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ink); margin-bottom: 16px;
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-dark .section-title { color: #FFFFFF; }
.section-title em {
  color: var(--ember);
  font-style: italic;
}
.section-dark .section-title em { color: var(--gold); }

.section-sub {
  font-size: 17px; color: var(--text-secondary);
  max-width: 580px; line-height: 1.75;
}
.section-dark .section-sub { color: var(--text-dim); }

.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }


/* ─────────────────────────────────────────────────────────
   6. BUTTONS
   ───────────────────────────────────────────────────────── */
.btn-primary {
  background-color: var(--ember);
  color: #FFFFFF; font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(184,82,10,0.28);
  border: none; cursor: pointer; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background-color: var(--ember-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,82,10,0.35);
}

.btn-wa {
  background-color: #25D366;
  color: white; font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 16px rgba(37,211,102,0.28);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-wa:hover {
  background-color: #1fba59;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--ink); color: var(--ink);
  font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.2s, color 0.2s;
  background: transparent; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover {
  background-color: var(--ink);
  color: white;
}

.btn-ghost-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
}

.btn-white {
  background-color: #FFFFFF; color: var(--ember);
  font-weight: 800; font-size: 16px;
  padding: 16px 32px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}


/* ─────────────────────────────────────────────────────────
   7. BADGES
   ───────────────────────────────────────────────────────── */
.badge {
  font-size: 10px; font-weight: 800;
  padding: 4px 9px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
  display: inline-block;
}
.badge-ember { background-color: var(--ember); color: white; }
.badge-dark {
  background: rgba(10,22,40,0.55);
  color: rgba(255,255,255,0.92);
}
.badge-trust {
  background-color: var(--trust-bg);
  color: var(--trust);
}


/* ─────────────────────────────────────────────────────────
   8. ANNOUNCEMENT BAR
   ───────────────────────────────────────────────────────── */
.announce {
  background-color: #0A1628;
  color: rgba(240,237,230,0.72);
  font-size: 12.5px; font-weight: 500;
  padding: 9px 0; text-align: center;
  letter-spacing: 0.02em;
}
.announce strong { color: var(--gold); font-weight: 600; }
.announce a {
  color: var(--ember-glow); font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.announce a:hover { border-color: var(--ember-glow); }
.announce-sep { opacity: 0.3; margin: 0 12px; }


/* ─────────────────────────────────────────────────────────
   9. NAVBAR
   ───────────────────────────────────────────────────────── */
.navbar {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 20px rgba(10,22,40,0.07);
}
.nav-inner {
  display: flex; align-items: center;
  height: 70px; gap: 8px;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  flex-shrink: 0; margin-right: 16px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background-color: var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-logo-text strong {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
  font-family: 'Playfair Display', serif;
}
.nav-logo-text span {
  font-size: 11px; color: var(--text-muted);
  font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; flex: 1;
}
.nav-links a {
  font-size: 13.5px; font-weight: 600;
  color: var(--text-secondary);
  padding: 7px 12px; border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap; display: block;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--ink);
  background-color: var(--surface-2);
}
.nav-links .nav-active > a {
  color: var(--ink);
  font-weight: 700;
}
.nav-actions {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; margin-left: auto;
}
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  font-family: 'DM Mono', monospace;
  text-decoration: none;
}
.nav-burger {
  display: none; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background-color: var(--ink); border-radius: 2px;
  margin: 5px 0; transition: all 0.3s;
}


/* ─────────────────────────────────────────────────────────
   10. MOBILE MENU OVERLAY
   ───────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background-color: #0A1628;
  z-index: 300; flex-direction: column;
  padding: 24px 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 40px;
}
.mobile-menu-close {
  background: none; border: none; cursor: pointer;
  color: white; font-size: 28px; line-height: 1;
  padding: 4px;
}
.mobile-menu-links {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu-links a {
  display: block; font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu-footer {
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-menu-phone {
  font-size: 18px; font-weight: 700; color: white;
  font-family: 'DM Mono', monospace;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}


/* ─────────────────────────────────────────────────────────
   11. TRUST TICKER
   ───────────────────────────────────────────────────────── */
.ticker-wrap {
  background-color: #F2EFE8;
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 8px 0;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 1;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #F2EFE8, transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #F2EFE8, transparent);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 36px;
  font-size: 11.5px; font-weight: 700;
  color: var(--ink); white-space: nowrap;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-right: 1px solid var(--border);
}


/* ─────────────────────────────────────────────────────────
   12. BRANDS STRIP
   ───────────────────────────────────────────────────────── */
.brands {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border);
}
.brands-inner {
  display: flex; align-items: stretch;
}
.brand-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { background-color: var(--surface-1); }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 800;
  color: var(--ink);
}
.brand-pill {
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.05em;
  background-color: var(--trust-bg);
  color: var(--trust);
}


/* ─────────────────────────────────────────────────────────
   13. TESTIMONIAL CARDS
   ───────────────────────────────────────────────────────── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.test-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.test-verified {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700;
  color: var(--trust); background-color: var(--trust-bg);
  padding: 3px 8px; border-radius: 3px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.test-stars {
  color: #D4A017; font-size: 14px;
  letter-spacing: 2px; margin-bottom: 14px;
}
.test-quote {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 20px;
  font-style: italic;
  border-left: 2px solid var(--surface-3);
  padding-left: 14px;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: white;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.test-name {
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.test-biz {
  font-size: 12px;
  color: var(--text-muted);
}


/* ─────────────────────────────────────────────────────────
   14. FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
  background-color: #0A1628;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-tagline {
  font-size: 14px; line-height: 1.7;
  color: rgba(240,237,230,0.65);
  margin: 14px 0 20px;
}
.footer-addr {
  font-size: 13px; line-height: 1.8;
  color: rgba(240,237,230,0.60);
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 8px; }
.soc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.soc-btn:hover { background: #B8520A; border-color: #B8520A; color: #fff; }
.soc-btn svg { width: 18px; height: 18px; fill: currentColor; }
.footer-col h4 {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(240,237,230,0.60);
  transition: color 0.15s;
  text-decoration: none;
}
.footer-links a:hover { color: rgba(240,237,230,0.92); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a {
  color: rgba(255,255,255,0.38);
  transition: color 0.15s;
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }


/* ─────────────────────────────────────────────────────────
   15. MOBILE STICKY BAR
   ───────────────────────────────────────────────────────── */
.mob-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border);
  padding: 10px 14px 16px;
  z-index: 500; gap: 8px;
  box-shadow: 0 -4px 24px rgba(10,22,40,0.1);
}
.mob-btn {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  padding: 8px 6px; border-radius: 8px;
  font-size: 11px; font-weight: 700;
  color: var(--text-muted);
  background-color: #F2EFE8;
  cursor: pointer; border: none;
  transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.mob-btn-wa {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  padding: 8px 6px; border-radius: 8px;
  font-size: 11px; font-weight: 700;
  color: #1fba59; background-color: #E8F5EE;
  cursor: pointer; border: none;
  transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.mob-btn-cta {
  flex: 1.6;
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px 8px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  background-color: #B8520A; color: white;
  cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
}


/* ─────────────────────────────────────────────────────────
   16. ANIMATIONS
   ───────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }
.fade-up.delay-5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}


/* ─────────────────────────────────────────────────────────
   17. PROGRESS BAR
   ───────────────────────────────────────────────────────── */
.page-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 1000;
  background: linear-gradient(90deg, #B8520A, #D4A017);
  width: 0%;
  transition: width 0.1s linear;
}


/*
REQUIRED SCRIPTS FOR EVERY PAGE:

1. Progress bar:
window.addEventListener('scroll', () => {
  const d = document.documentElement;
  const pct = (d.scrollTop /
    (d.scrollHeight - d.clientHeight)) * 100;
  const bar = document.getElementById('pageProgress');
  if (bar) bar.style.width = pct + '%';
});

2. Fade up observer:
const obs = new IntersectionObserver(entries => {
  entries.forEach(e => {
    if (e.isIntersecting) e.target.classList.add('in');
  });
}, { threshold: 0.1 });
document.querySelectorAll('.fade-up')
  .forEach(el => obs.observe(el));

3. Mobile menu:
const burger = document.getElementById('navBurger');
const mobileMenu = document.getElementById('mobileMenu');
const menuClose = document.getElementById('menuClose');
if (burger && mobileMenu) {
  burger.addEventListener('click', () =>
    mobileMenu.classList.add('open'));
  menuClose.addEventListener('click', () =>
    mobileMenu.classList.remove('open'));
}
*/


/* ─────────────────────────────────────────────────────────
   18. RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-pad: 72px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: block; }
  .mob-bar { display: flex; }
  body { padding-bottom: 74px; }
  .footer { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .brands-inner { flex-wrap: wrap; }
  .brand-item { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .announce { font-size: 11.5px; padding: 8px 0; }
  .brand-item { flex: 0 0 50%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ==========================================================
   PHASE 4 — PAGE CONTENT SECTIONS
   ========================================================== */


/* ----------------------------------------------------------
   SHARED SECTION SCAFFOLDING
   ---------------------------------------------------------- */

.sec {
  padding: 5rem 0;
  background: var(--surface-1);
}

.sec-alt {
  background: var(--surface-2);
}

.con {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sec-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.sec-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lbl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}

.lbl--center {
  justify-content: center;
  display: flex;
}

.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.sec-title em {
  font-style: italic;
  color: var(--ember);
}

.sec-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.hero {
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 80% 55% at 65% 45%, rgba(184,82,10,0.11) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 5% 85%,  rgba(212,160,23,0.07) 0%, transparent 55%);
  padding: 6.5rem 0 0;
  min-height: unset;
  height: auto;
  position: relative;
  overflow: hidden;
}

.hero-bg,
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}

.hero-in {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-year,
.hero-city {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-year {
  color: var(--gold);
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.28);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.hero-city {
  color: rgba(250,249,246,0.50);
}

/* Headline — expects an <h1> inside .hero-layout left column */
.hero-layout h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.17;
  color: #FAF9F6;
  margin: 0 0 1.25rem;
}

.hero-layout h1 em {
  font-style: italic;
  color: var(--ember);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(250,249,246,0.70);
  margin: 0 0 1.5rem;
  max-width: 500px;
}

/* Brand pills */
.hero-brands {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-brands-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.38);
}

.hero-brands span:not(.hero-brands-label) {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
}

/* CTA group */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FAF9F6;
  line-height: 1;
  display: block;
}

.hero-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.44);
  display: block;
  margin-top: 0.25rem;
}

/* Showcase card (right column) */
.showcase-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

.showcase-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  background: rgba(184,82,10,0.15);
  border: 1px solid rgba(184,82,10,0.30);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  z-index: 1;
}

.showcase-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-body {
  padding: 1.5rem;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FAF9F6;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.showcase-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250,249,246,0.60);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.showcase-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.showcase-feats li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(250,249,246,0.70);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.5;
}

.showcase-feats li::before {
  content: '✓';
  color: var(--ember);
  font-weight: 700;
  flex-shrink: 0;
}

.showcase-models {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.model-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(250,249,246,0.58);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 0.18rem 0.48rem;
  border-radius: 4px;
  white-space: nowrap;
}

.model-tag.active,
.model-tag:first-child {
  color: var(--gold);
  border-color: rgba(212,160,23,0.38);
  background: rgba(212,160,23,0.10);
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.showcase-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FAF9F6;
}

.showcase-price small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.38);
  display: block;
  margin-bottom: 0.1rem;
}

/* Trust bar */
.trust-bar {
  margin-top: 1.25rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.trust-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 0.8rem 0.6rem;
  text-align: center;
}

.trust-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FAF9F6;
  display: block;
  line-height: 1.2;
}

.trust-lbl {
  font-family: var(--font-body);
  font-size: 0.60rem;
  font-weight: 600;
  color: rgba(250,249,246,0.48);
  display: block;
  line-height: 1.35;
  margin-top: 0.1rem;
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 5rem 0 0;
    min-height: unset;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-layout h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ----------------------------------------------------------
   PRODUCT CATEGORY CARDS
   ---------------------------------------------------------- */

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,82,10,0.20);
}

/* Card top — icon / image area */
.cat-top {
  background: var(--surface-2);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  min-height: 100px;
}

.cat-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.cat-hero-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  background: rgba(184,82,10,0.10);
  border: 1px solid rgba(184,82,10,0.20);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* Card body */
.cat-card > *:not(.cat-top):not(.cat-foot) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.cat-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.25rem 0 0.4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  line-height: 1.3;
}

.cat-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Fast moving chips */
.cat-fm {
  padding: 0 1.5rem 1rem;
}

.cat-fm-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.4rem;
}

.cat-fm-list {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.cat-fm-chip {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface-2);
  border: 1px solid rgba(10,22,40,0.10);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* Card footer */
.cat-foot {
  margin-top: auto;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(10,22,40,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cat-brands {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.cat-brand {
  font-family: var(--font-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid rgba(10,22,40,0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

.cat-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.cat-arrow {
  color: var(--ember);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.cat-card:hover .cat-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cats-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .cats-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------
   WHY CHOOSE US
   ---------------------------------------------------------- */

.why-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.07);
  align-items: flex-start;
}

.why-item:first-child {
  padding-top: 0;
}

.why-item:last-child {
  border-bottom: none;
}

.why-ic {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-md);
  background: rgba(184,82,10,0.08);
  border: 1px solid rgba(184,82,10,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.why-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Right column */
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.why-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  color: #FAF9F6;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FAF9F6;
  margin: 0 0 1rem;
}

/* Coverage grid inside why-card */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cov-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(250,249,246,0.70);
  line-height: 1.35;
}

.cov-item span {
  display: block;
  font-size: 0.60rem;
  font-weight: 400;
  color: rgba(250,249,246,0.40);
  margin-top: 0.1rem;
}

/* Showroom card */
.showroom-card {
  background: var(--surface-2);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}

.showroom-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 0.5rem;
}

.showroom-addr {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.3rem;
  line-height: 1.4;
}

.showroom-hours {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0 0 0.85rem;
}

.showroom-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember);
  text-decoration: none;
  transition: gap 0.18s ease;
}

.showroom-link:hover {
  gap: 0.55rem;
}

@media (max-width: 1024px) {
  .why-layout {
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-visual {
    position: static;
  }
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.testi-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.testi-quote {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ember);
  line-height: 0.6;
  opacity: 0.25;
  user-select: none;
}

.testi-text {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(10,22,40,0.07);
  margin-top: auto;
}

.testi-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--ink);
  color: #FAF9F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}

.testi-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
  margin-top: 0.1rem;
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------- */

.cta-sec {
  background: var(--ember);
  background-image:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(0,0,0,0.08) 0%, transparent 50%);
  padding: 5rem 0;
  position: relative;
  overflow: visible;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-in {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.85rem;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
  margin: 0 0 2rem;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cta-btns .btn-primary {
  background: #fff;
  color: var(--ember);
  border-color: #fff;
}

.cta-btns .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
}

.cta-btns .btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

.cta-btns .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.80);
}

.cta-addr {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btns .btn {
    text-align: center;
    justify-content: center;
  }
}


/* ----------------------------------------------------------
   SCROLL ANIMATIONS
   ---------------------------------------------------------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up {
  animation: fadeUp 0.55s ease both;
}

.anim-fade-up:nth-child(2) { animation-delay: 0.08s; }
.anim-fade-up:nth-child(3) { animation-delay: 0.16s; }
.anim-fade-up:nth-child(4) { animation-delay: 0.24s; }
.anim-fade-up:nth-child(5) { animation-delay: 0.32s; }
.anim-fade-up:nth-child(6) { animation-delay: 0.40s; }


/* ----------------------------------------------------------
   PHASE 4 FIXES + MISSING SECTIONS
   ---------------------------------------------------------- */

/* Fix: category card overflow so cat-top stays inside card */
.cat-card {
  overflow: hidden;
}

/* Fix: trust bar layout */
.trust-bar {
  margin-top: 1rem;
  background: var(--ink);
  padding: 1.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.trust-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
}

/* Fix: Why Visual — Quick Contact block */
.why-contact {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-contact a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(250,249,246,0.80);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.18s ease;
}

.why-contact a:hover {
  color: var(--gold);
}

/* ----------------------------------------------------------
   INDUSTRY TABS SECTION
   ---------------------------------------------------------- */

.ind-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(10,22,40,0.08);
  padding-bottom: 0;
}

.ind-tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.65rem 1.25rem;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.ind-tab:hover {
  color: var(--ink);
}

.ind-tab.active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.ind-content {
  display: none;
}

.ind-content.active {
  display: block;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ind-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ind-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ind-card-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.ind-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.ind-card-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.ind-card-link {
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--ember);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   RESOURCES / GUIDES SECTION
   ---------------------------------------------------------- */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.guide-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,82,10,0.18);
}

.guide-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
}

.guide-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}

.guide-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   WHO WE SERVE GRID
   ---------------------------------------------------------- */

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.serve-item {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.serve-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.serve-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.serve-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 768px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------
   SERVICE SECTION (dark bg variant)
   ---------------------------------------------------------- */

.sec-dark {
  background: var(--ink);
  padding: 5rem 0;
}

.sec-dark .sec-title {
  color: #FAF9F6;
}

.sec-dark .sec-desc {
  color: rgba(250,249,246,0.65);
}

.sec-dark .lbl {
  color: var(--gold);
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 2rem;
}

.service-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(250,249,246,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ----------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(10,22,40,0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(10,22,40,0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  transition: color 0.18s ease;
}

.faq-q:hover {
  color: var(--ember);
}

.faq-chevron {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-q {
  color: var(--ember);
}

.faq-a {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 0 1.25rem;
  margin: 0;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}


/* ----------------------------------------------------------
   BRANDS PARTNER STRIP
   ---------------------------------------------------------- */

.brands-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.brand-block {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brand-block-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
}

.brand-block-range {
  font-family: var(--font-body);
  font-size: 0.80rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}

.brand-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--trust);
  background: var(--trust-bg);
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .brands-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ----------------------------------------------------------
   BREADCRUMB NAV
   ---------------------------------------------------------- */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.breadcrumb a:hover {
  color: var(--ember);
}

.breadcrumb-sep {
  color: rgba(10,22,40,0.25);
  font-size: 0.65rem;
}

.breadcrumb-current {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Dark background variant */
.breadcrumb--light a,
.breadcrumb--light {
  color: rgba(250,249,246,0.50);
}

.breadcrumb--light a:hover {
  color: rgba(250,249,246,0.90);
}

.breadcrumb--light .breadcrumb-sep {
  color: rgba(250,249,246,0.25);
}

.breadcrumb--light .breadcrumb-current {
  color: rgba(250,249,246,0.80);
}

/* ----------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------- */

.page-hero {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(184,82,10,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 5% 80%, rgba(212,160,23,0.06) 0%, transparent 55%);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero .breadcrumb {
  color: rgba(250,249,246,0.50);
  margin-bottom: 1.25rem;
}

.page-hero .breadcrumb a {
  color: rgba(250,249,246,0.50);
}

.page-hero .breadcrumb a:hover {
  color: rgba(250,249,246,0.90);
}

.page-hero .breadcrumb-sep {
  color: rgba(250,249,246,0.25);
}

.page-hero .breadcrumb-current {
  color: rgba(250,249,246,0.75);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FAF9F6;
  margin: 0 0 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--ember);
}

.page-hero .sec-desc,
.page-hero p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,249,246,0.70);
  max-width: 600px;
  margin: 0 0 1.5rem;
}

.page-hero-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.page-hero-badge {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.28);
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
}

.page-hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.page-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FAF9F6;
  line-height: 1;
  display: block;
}

.page-hero-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.44);
  display: block;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 2.5rem;
  }
  .page-hero-stats {
    gap: 1.25rem;
  }
}

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,82,10,0.18);
}

.contact-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.contact-card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ember);
}

.contact-card-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.contact-card-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.contact-card-cta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-info-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}

.enquiry-form {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.form-label span {
  color: var(--ember);
  margin-left: 0.1rem;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--ink);
  background: var(--surface-1);
  border: 1.5px solid rgba(10,22,40,0.12);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.85rem;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(184,82,10,0.10);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  background: var(--trust-bg);
  border: 1px solid rgba(26,107,66,0.20);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--trust);
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: none;
}

.form-success.visible {
  display: block;
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
  margin-top: 2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   SERVICE PAGE
   ---------------------------------------------------------- */

.service-brands-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.service-brand-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(250,249,246,0.80);
  letter-spacing: 0.05em;
}

.service-brand-badge span {
  color: var(--gold);
  font-size: 0.65rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-card-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.5;
}

.service-card-list li::before {
  content: '✓';
  color: var(--trust);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}

.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.warning-box {
  background: rgba(184,82,10,0.06);
  border: 1px solid rgba(184,82,10,0.18);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.warning-box strong {
  color: var(--ember);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checklist-item::before {
  content: '✓';
  color: var(--trust);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ----------------------------------------------------------
   PRODUCTS LISTING PAGE
   ---------------------------------------------------------- */

.page-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.size-card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.size-card-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ember);
}

.size-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.size-card-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.size-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.size-card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(10,22,40,0.07);
  margin-top: auto;
}

/* City grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.city-item {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.city-item span {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .size-grid {
    grid-template-columns: 1fr;
  }
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   NAVBAR DROPDOWNS
   ---------------------------------------------------------- */

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(10,22,40,0.10);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: 0.5rem 0.5rem 0.5rem;
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.18s ease 0.12s, transform 0.18s ease 0.12s, visibility 0.18s ease 0.12s;
  z-index: 1000;
  pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 0.15s ease;
  color: var(--ink);
}

.nav-dropdown-item:hover {
  background: var(--surface-2);
}

.nav-dropdown-icon {
  font-size: 1.1rem;
  width: 1.75rem;
  text-align: center;
  flex-shrink: 0;
}

.nav-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-dropdown-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.nav-dropdown-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(10,22,40,0.07);
  margin: 0.35rem 0.5rem;
}

.nav-dropdown-arrow {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
  vertical-align: middle;
  transition: transform 0.18s ease;
}

.nav-item:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* ============================================================
   LOGO IMAGES — nav and footer
   ============================================================ */
.nav-logo-img {
  max-width: 160px;
  height: auto;
  display: block;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

/* ============================================================
   BLOG ARTICLE STYLING — Phase 6
   ============================================================ */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.3;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
}

.article-body ul,
.article-body ol {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.4rem;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.article-body th {
  background: var(--ink);
  color: #FAF9F6;
  font-weight: 600;
  padding: 0.65rem 1rem;
  text-align: left;
}

.article-body td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(10,22,40,0.07);
  color: var(--text-secondary);
}

.article-body tr:nth-child(even) td {
  background: var(--surface-2);
}

.article-body strong {
  color: var(--ink);
  font-weight: 700;
}

.article-body a {
  color: var(--ember);
  text-decoration: none;
  font-weight: 500;
}

.article-body a:hover {
  text-decoration: underline;
}

.article-callout {
  background: var(--surface-2);
  border-left: 3px solid var(--ember);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.article-callout strong {
  color: var(--ember);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  background: rgba(184,82,10,0.08);
  border: 1px solid rgba(184,82,10,0.18);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .article-body {
    max-width: 100%;
  }
}

.google-review-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(250,249,246,0.60);
  text-decoration: none;
  transition: color 0.18s ease;
}
.google-review-link:hover {
  color: var(--gold);
}

/* ============================================================
   MOBILE AUDIT FIXES
   ============================================================ */

/* Tap target minimum 44px — applies globally */
.btn-primary,
.btn-outline { min-height: 44px; }

@media (max-width: 960px) {
  /* Safe-area inset for iPhone X+ home indicator */
  .mob-bar {
    padding-bottom: max(16px, calc(16px + env(safe-area-inset-bottom)));
  }
  body {
    padding-bottom: max(74px, calc(74px + env(safe-area-inset-bottom)));
  }
  .footer {
    padding-bottom: max(80px, calc(80px + env(safe-area-inset-bottom)));
  }
  /* Logo max height on mobile */
  .nav-logo-img  { height: 32px; }
  .nav-logo-mark { width: 36px; height: 36px; font-size: 14px; }
  /* CTA in sticky bar — 44px tap target */
  .mob-btn-cta { min-height: 44px; }
}

/* Minimum readable font size on mobile */
@media (max-width: 600px) {
  .announce { font-size: 12px; }
  .eyebrow  { font-size: 12px; }
  .lbl      { font-size: 0.75rem; }
}

/* ================================================================
   WA FLOAT BUTTON (desktop) + STICKY BAR (mobile)
   Copied to global.css so all pages (homepage etc.) get styling.
   ================================================================ */

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.wa-tip {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn-fl {
  position: relative;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}

.wa-btn-fl:hover { transform: scale(1.08); }

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0;   }
}

.wa-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  padding: 0.85rem 1rem;
  text-decoration: none;
  z-index: 800;
  transition: opacity 0.2s;
}

.wa-sticky-bar:hover { opacity: 0.92; }

@media (max-width: 768px) {
  .wa-sticky-bar { display: block; }
  .wa-float      { bottom: 66px; }
}

/* ================================================================
   EXIT INTENT POPUP — visual styles (display toggled by JS)
   ================================================================ */

.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.exit-popup {
  max-width: 420px;
  width: 90%;
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.exit-popup h3 {
  color: var(--ink);
}

.exit-popup-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(0,0,0,0.06);
  border: none;
  color: var(--ink);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.exit-popup-close:hover { background: rgba(0,0,0,0.12); }

.exit-popup-icon {
  font-size: 2.25rem;
  margin-bottom: 0.6rem;
}

.exit-popup-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

/* ================================================================
   SERVICE BANNER (two-column layout on dark section)
   ================================================================ */

.svc-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.svc-banner-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.svc-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--surface-1);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.svc-banner-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250,249,246,0.70);
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

.svc-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 220px;
}

@media (max-width: 768px) {
  .svc-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .svc-btns {
    width: 100%;
  }
  .svc-btns a {
    text-align: center;
    justify-content: center;
  }
}

/* ================================================================
   BRANDS SECTION — "Authorized Partner for" label
   ================================================================ */

.brands-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Scroll performance */
.cta-sec { contain: layout; transition: none; animation: none; }

/* Empty icon containers after emoji removal */
.cat-icon:empty,
.why-ic:empty,
.nav-dropdown-icon:empty { display: none; }
.cat-top:has(> .cat-icon:empty):not(:has(> span)) { min-height: 0; padding: 0; }

/* Contact page icon circles */
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon.wa { background: #25D366; }
.contact-icon.phone { background: var(--ember); }
.contact-icon.email { background: var(--ink); }
.contact-icon.location { background: var(--ink); }

/* Service page — authorized brand badge icons */
.auth-badge-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.auth-badge-icon--pradeep { background: rgba(184,82,10,0.12); color: var(--ember); }
.auth-badge-icon--ibrew { background: rgba(26,107,66,0.12); color: var(--trust); }
.auth-badge-icon--aeonic { background: rgba(10,22,40,0.08); color: var(--ink); }

/* Service card icons */
.service-card-icon svg { display: block; color: var(--ember); }

/* Price enquire button on product pages */
.price-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ember);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.price-enquire-btn:hover { background: #8f3e08; }

/* FIX 5 — Category card grid: equal-height rows, hide empty cat-icon containers */
.cats-grid { align-items: stretch; }
.cat-card { display: flex; flex-direction: column; }
.cat-foot { margin-top: auto; }
.cat-top:empty { display: none; }

/* Pan India note below city grid */
.pan-india-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* FIX 7 — Orange CTA to footer scroll freeze */
.cta-sec { isolation: isolate; }
.footer { transform: translateZ(0); }

/* FIX 1 — Category card grid overhaul */

/* 3-column fixed grid, equal-height rows */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Hide legacy cat-top (grey box cause) */
.cat-top { display: none !important; }

/* Card: flex column, card-level padding, full height */
.cats-grid .cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/* Badge sits at top; absent badge = no space; reset oversized generic padding */
.cats-grid .cat-card > .cat-hero-tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}

/* Remove per-element padding — card handles it */
.cats-grid .cat-card .cat-name {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}
.cats-grid .cat-card .cat-desc {
  padding-left: 0;
  padding-right: 0;
  flex: 1;       /* fills remaining space so footer pins to bottom */
}
.cats-grid .cat-card .cat-fm {
  padding-left: 0;
  padding-right: 0;
}
.cats-grid .cat-card .cat-foot {
  padding-left: 0;
  padding-right: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(10,22,40,0.07);
  padding-top: 12px;
}

/* products.html: cat-body is the content wrapper; make it grow; reset generic padding */
.cats-grid .cat-card > .cat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
}
.cats-grid .cat-card .cat-body .cat-desc { flex: 1; }

/* Mobile: single column */
@media (max-width: 768px) {
  .cats-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   FIX 2 — Reduce gap between hero and categories section
   ================================================================ */
#categories { padding-top: 2rem; margin-top: 0; }

/* ================================================================
   FIX 3 — See All Reviews button centering
   ================================================================ */
.testi-more {
  text-align: center;
  margin: 32px auto 0;
}
.testi-more .btn-outline {
  display: inline-block;
}

/* ================================================================
   FIX 4 — WHO WE SERVE industry cards — dark navy
   ================================================================ */
.ind-card.serve-item {
  background: var(--ink);
  border-color: transparent;
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.ind-card.serve-item .ind-name,
.ind-card.serve-item .serve-label {
  color: #fff;
  font-weight: 600;
}
.ind-card.serve-item:hover {
  background: var(--ember);
  box-shadow: 0 4px 16px rgba(184,82,10,0.25);
}

/* ================================================================
   FIX 6 — Instagram float button
   ================================================================ */
.ig-btn-fl {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(131,58,180,0.4);
  z-index: 9998;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-ig 2s infinite;
}
.ig-btn-fl:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(131,58,180,0.6);
}
.ig-btn-fl svg { width: 26px; height: 26px; fill: #fff; }

@keyframes pulse-ig {
  0%, 100% { box-shadow: 0 4px 12px rgba(131,58,180,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(131,58,180,0.7); }
}

@media (max-width: 768px) {
  .ig-btn-fl { bottom: 134px; }
  .wa-float   { bottom: 66px; }
}

/* ----------------------------------------------------------
   ABOUT PAGE — Brand card alignment (FIX 2)
   ---------------------------------------------------------- */

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bf-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
}

.bf-name.brand-block-name {
  margin-bottom: 0;
  text-align: center;
}

.bf-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1rem;
  text-align: center;
  flex: 1;
}

.bf-products.brand-block-range {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  line-height: normal;
}

.bf-chip {
  display: inline-block;
  background: var(--surface-2);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ----------------------------------------------------------
   GENERIC GRID + CARD — used in for-cloud-kitchens, for-hotels (FIX 3)
   ---------------------------------------------------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Fixed icon height so empty and emoji icons take the same vertical space */
.card-ic {
  min-height: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.35;
  padding-top: 0;
}

.card p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card .card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ember);
}

.card .card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.card .card-link {
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--ember);
  text-decoration: none;
  margin-top: auto;
}

.card .text-md {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------
   PRODUCTS PAGE — 7-card cats-grid: center the lone last card
   When the last card is alone in its row (7 of 9 positions),
   move it to column 2 (middle) so the gap is symmetric.
   ---------------------------------------------------------- */
.cats-grid > .cat-card:last-child:nth-child(3n + 1) {
  grid-column-start: 2;
}

/* ----------------------------------------------------------
   TASK 3 — Mobile floating button safe positioning (375px)
   Raises wa-float and ig-btn-fl clear of the mob-bar (~79px).
   wa-float:  mob-bar (79px) + 11px gap = 90px
   ig-btn-fl: wa-float bottom (90px) + height (56px) + 12px gap = 158px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .wa-float   { bottom: 90px; }
  .ig-btn-fl  { bottom: 158px; }
}

/* ═══════════════════════════════════════════════════════
   PART 2 — Industry / Guide / City card CSS
   All previously unstyled card components on index.html
   and resources.html
   ═══════════════════════════════════════════════════════ */

/* ── INDUSTRY SOLUTION CARDS (index.html + resources.html) ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.ind-card {
  background: var(--surface-1);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ind-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ind-ic:empty { display: none; }
.ind-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.ind-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) { .ind-grid { grid-template-columns: 1fr; } }
@media (max-width: 1024px) and (min-width: 769px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── INDUSTRY CARD CONTENT — index.html specific ── */
.industry-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.industry-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.industry-card-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ember);
  margin-top: 0.5rem;
}

/* ── GUIDE / ARTICLE CARDS (index.html + resources.html) ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.guide-card {
  background: var(--surface-1);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* resources.html: article-thumb is inside guide-card */
.article-thumb {
  height: 110px;
  background: var(--surface-2);
  flex-shrink: 0;
}
/* resources.html: article-body wraps tag/title/desc/meta */
.article-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.guide-tag, .article-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.guide-title, .article-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.guide-desc, .article-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.article-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
/* index.html guide cards: tag/title/desc are direct children (no article-body wrapper) */
.guide-card > div:first-child:empty { display: none; }
.guide-card > .guide-tag  { padding: 1.25rem 1.5rem 0; }
.guide-card > .guide-title { padding: 0 1.5rem; }
.guide-card > .guide-desc { padding: 0 1.5rem 1.5rem; }
@media (max-width: 768px) { .guides-grid { grid-template-columns: 1fr; } }
@media (max-width: 1024px) and (min-width: 769px) { .guides-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── CITY CARDS (resources.html) ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.city-card {
  background: var(--surface-1);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.city-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.city-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.city-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pan-india-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 768px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) and (min-width: 769px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════════════════
   PART 4 — Mobile layout fixes (375px)
   ═══════════════════════════════════════════════════════ */

/* FIX 1: Trust grid — the line-1863 rule overrides earlier 480px breakpoint.
   Re-apply collapse rules AFTER that definition so they win. */
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* FIX 2: cats-grid 7th-card centering — guard the rule to 3-col only.
   Without this, grid-column-start:2 in a 1fr grid creates an implicit
   column and breaks the layout at 480px and below. */
@media (max-width: 480px) {
  .cats-grid > .cat-card:last-child:nth-child(3n + 1) {
    grid-column-start: auto;
  }
}
