/* ============================================================
   AV HORECA SOLUTIONS — global.css
   Single source of truth for all 33 pages.
   Version: 3.0 — Production Ready
   
   TABLE OF CONTENTS
   1.  Design Tokens (CSS Custom Properties)
   2.  Reset & Base
   3.  Typography Scale
   4.  Layout Utilities  (.con, .sec, .sec-alt)
   5.  Header & Navigation
   6.  Mobile Navigation Overlay
   7.  Announcement / Ticker
   8.  Buttons  (.btn-*)
   9.  Tag / Badge / Label Components
   10. Cards  (product, category, brand, why, trust, testimonial)
   11. Section Patterns  (hero, page-hero, cta, svc-banner, faq)
   12. Forms
   13. Footer
   14. WhatsApp Floating / Sticky Bar
   15. Animations & Utilities
   16. Responsive — 1024px
   17. Responsive — 768px  (tablet / mobile)
   18. Responsive — 480px  (small mobile)
   19. Responsive — 380px  (very small)
   ============================================================ */


/* ─────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --or:   #E05A20;
  --or2:  #FF6B35;
  --ord:  #B8421A;

  /* Backgrounds — dark scale */
  --dk:   #0C0D10;   /* page base */
  --dk2:  #111418;   /* alt section */
  --dk3:  #141519;   /* card surface */
  --dk4:  #1A1C22;   /* card inner */
  --dk5:  #20232B;   /* deep card */

  /* Text */
  --tx:   #E4E6EF;   /* primary */
  --tx2:  #B0B3C4;   /* secondary */
  --tx3:  #72758A;   /* muted */

  /* Semantic */
  --gr:   #22C55E;   /* green / success */
  --gd:   #F59E0B;   /* gold / warning */
  --bl:   #3B82F6;   /* blue / info */
  --wh:   #FFFFFF;

  /* Borders */
  --bd:   rgba(255,255,255,0.06);
  --bd2:  rgba(255,255,255,0.10);
  --bd3:  rgba(224,90,32,0.25);

  /* Radius */
  --r:    8px;
  --rl:   14px;
  --rxl:  20px;

  /* Spacing scale (8-point) */
  --sp1:  8px;
  --sp2:  16px;
  --sp3:  24px;
  --sp4:  32px;
  --sp5:  48px;
  --sp6:  64px;
  --sp7:  80px;
  --sp8:  96px;

  /* Layout */
  --max-w:     1280px;
  --max-w-md:  1100px;
  --hdr-h:     68px;
}


/* ─────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--dk);
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dk);
  color: var(--tx);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }


/* ─────────────────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
   ───────────────────────────────────────────────────────── */
/* Display headings */
.text-display   { font-size: clamp(36px, 5.5vw, 66px); font-weight: 800; }
.text-h1        { font-size: clamp(32px, 4vw, 52px);   font-weight: 800; }
.text-h2        { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; }
.text-h3        { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }

/* Body text */
.text-lg  { font-size: 17px; line-height: 1.75; }
.text-md  { font-size: 15px; line-height: 1.7;  }
.text-sm  { font-size: 13px; line-height: 1.65; }
.text-xs  { font-size: 11px; line-height: 1.5;  }

/* Colors */
.text-primary  { color: var(--tx);  }
.text-muted    { color: var(--tx2); }
.text-dim      { color: var(--tx3); }
.text-accent   { color: var(--or);  }
.text-white    { color: var(--wh);  }
.text-green    { color: var(--gr);  }
.text-gold     { color: var(--gd);  }


/* ─────────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
   ───────────────────────────────────────────────────────── */
.con {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
}

.con-md {
  max-width: var(--max-w-md);
  margin: 0 auto;
  padding: 0 var(--sp3);
}

/* Standard section — consistent vertical rhythm */
.sec {
  padding: var(--sp7) var(--sp4);
  background: var(--dk);
}

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

/* Section header block */
.sec-head {
  margin-bottom: var(--sp5);
}

.sec-head--center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp5);
}

/* Section label (eyebrow text with left line) */
.lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.lbl::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--or);
  flex-shrink: 0;
}
.lbl--center {
  justify-content: center;
}
.lbl--center::before { display: none; }

/* Section title */
.sec-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.sec-title span,
.sec-title em { color: var(--or); font-style: normal; }

/* Section description */
.sec-desc {
  font-size: 15px;
  color: var(--tx2);
  line-height: 1.75;
  max-width: 560px;
  margin-top: var(--sp2);
}

/* Table wrapper */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r);
}


/* ─────────────────────────────────────────────────────────
   5. HEADER & NAVIGATION
   ───────────────────────────────────────────────────────── */
.hdr {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--sp4);
  background: rgba(12,13,16,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--bd);
  transition: background 0.3s;
}

.hdr.scrolled {
  background: rgba(12,13,16,0.98);
}

.hdr-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hdr-h);
  gap: var(--sp3);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--wh); line-height: 1.2; }
.logo-sub  { font-size: 10px; color: var(--tx3); letter-spacing: 0.06em; text-transform: uppercase; }

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav a {
  padding: 8px 13px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  color: var(--tx2);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav a:hover,
.nav a.act {
  color: var(--wh);
  background: rgba(255,255,255,0.06);
}

/* Header right cluster */
.hdr-r {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hdr-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tx);
  white-space: nowrap;
}

/* Hamburger */
.mob-btn {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--wh);
  cursor: pointer;
}


/* ─────────────────────────────────────────────────────────
   6. MOBILE NAVIGATION OVERLAY
   ───────────────────────────────────────────────────────── */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--dk);
  padding: calc(var(--hdr-h) + 16px) var(--sp3) var(--sp3);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mob-nav.open { display: flex; }

.mob-nav a {
  padding: 15px 16px;
  border-radius: var(--rl);
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--tx);
  border-bottom: 1px solid var(--bd);
  transition: color 0.2s;
}

.mob-nav a:hover { color: var(--or); }

.mob-nav-wa {
  margin-top: var(--sp3);
  display: flex;
  justify-content: center;
}


/* ─────────────────────────────────────────────────────────
   7. ANNOUNCEMENT TICKER
   ───────────────────────────────────────────────────────── */
.ticker {
  background: linear-gradient(90deg, var(--or) 0%, #FF7A45 50%, var(--or) 100%);
  padding: 9px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: tickerRoll 44s linear infinite;
  width: max-content;
}

.ticker-item {
  padding: 0 26px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ticker-item::after {
  content: '◆';
  opacity: 0.5;
  font-size: 7px;
}

@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Delivery notice bar */
.notice-bar {
  background: linear-gradient(90deg, rgba(224,90,32,0.12), rgba(224,90,32,0.06));
  border-bottom: 1px solid rgba(224,90,32,0.18);
  padding: 10px var(--sp4);
  text-align: center;
  font-size: 13px;
  color: var(--tx);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.notice-bar strong { color: var(--gd); font-weight: 700; }
.notice-bar a { color: var(--gr); font-weight: 700; }
.notice-bar .sep { color: var(--tx3); }


/* ─────────────────────────────────────────────────────────
   8. BUTTONS
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px var(--sp3);
  border-radius: var(--r);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
}

.btn-or {
  background: var(--or);
  color: #fff;
  box-shadow: 0 4px 18px rgba(224,90,32,0.32);
}
.btn-or:hover {
  background: var(--or2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(224,90,32,0.42);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.28);
}
.btn-wa:hover {
  background: #1EBD5A;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--tx);
  border: 1px solid var(--bd2);
}
.btn-ghost:hover {
  border-color: var(--or);
  color: var(--or);
}

.btn-wh {
  background: #fff;
  color: var(--or);
  font-weight: 700;
}
.btn-wh:hover { background: rgba(255,255,255,0.92); }

.btn-tr {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-tr:hover { background: rgba(255,255,255,0.2); }

.btn-outline {
  background: transparent;
  color: var(--wh);
  border: 1.5px solid var(--bd2);
}
.btn-outline:hover {
  border-color: var(--or);
  color: var(--or);
}

/* Size variants */
.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
  min-height: 38px;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
  min-height: 52px;
}


/* ─────────────────────────────────────────────────────────
   9. TAG / BADGE / LABEL COMPONENTS
   ───────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-or  { background: rgba(224,90,32,0.12); color: var(--or2); border: 1px solid rgba(224,90,32,0.2); }
.tag-gr  { background: rgba(34,197,94,0.10); color: var(--gr);  border: 1px solid rgba(34,197,94,0.2); }
.tag-gd  { background: rgba(245,158,11,0.10); color: var(--gd); border: 1px solid rgba(245,158,11,0.2); }
.tag-bl  { background: rgba(59,130,246,0.10); color: var(--bl); border: 1px solid rgba(59,130,246,0.2); }


/* ─────────────────────────────────────────────────────────
   10. CARD COMPONENTS
   ───────────────────────────────────────────────────────── */

/* ── Trust bar ── */
.trust-bar {
  background: var(--dk2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: var(--sp5) var(--sp4);
}

.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: var(--sp3);
}

.trust-item { text-align: center; }
.trust-icon { font-size: 26px; margin-bottom: 8px; }
.trust-num  { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--wh); display: block; }
.trust-lbl  { font-size: 11px; color: var(--tx3); line-height: 1.5; }

/* ── Category cards ── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 18px;
  margin-top: var(--sp5);
}

.cat-card {
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: var(--sp3);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.cat-card:hover { border-color: var(--bd3); transform: translateY(-3px); }
.cat-card:hover::after { transform: scaleX(1); }

.cat-top   { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.cat-icon  { width: 48px; height: 48px; border-radius: 12px; background: var(--dk5); border: 1px solid var(--bd2); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cat-name  { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--wh); margin-bottom: 8px; }
.cat-desc  { font-size: 13px; color: var(--tx2); line-height: 1.65; margin-bottom: 16px; flex: 1; }

.cat-fm       { margin-bottom: 16px; }
.cat-fm-label { font-size: 10px; color: var(--tx3); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.cat-fm-list  { display: flex; flex-wrap: wrap; gap: 4px; }
.cat-fm-chip  { padding: 3px 8px; border-radius: 5px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.15); font-size: 11px; color: #86EFAC; }

.cat-foot     { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--bd); }
.cat-brands   { display: flex; gap: 5px; }
.cat-brand    { padding: 3px 8px; border-radius: 5px; background: rgba(255,255,255,0.04); font-size: 11px; color: var(--tx3); }
.cat-price    { font-size: 13px; color: var(--or); font-weight: 600; }
.cat-arrow    { font-size: 15px; color: var(--tx3); transition: transform 0.2s; }
.cat-card:hover .cat-arrow { color: var(--or); transform: translateX(4px); }
.cat-hero-tag { padding: 3px 9px; border-radius: 100px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); font-size: 10px; font-weight: 700; color: var(--gd); }

/* ── Brand partner cards ── */
.brands-sec {
  padding: var(--sp5) var(--sp4);
  background: var(--dk4);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}

.brands-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp5);
  flex-wrap: wrap;
  justify-content: center;
}

.brands-label { font-size: 12px; color: var(--tx3); font-weight: 600; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.08em; }

.brand-cards  { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.brand-card   { background: var(--dk3); border: 1px solid var(--bd); border-radius: var(--rl); padding: 18px 26px; display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 150px; transition: all 0.22s; cursor: pointer; }
.brand-card:hover { border-color: var(--or); background: rgba(224,90,32,0.04); }
.brand-card-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--wh); letter-spacing: -0.02em; }
.brand-card-type { font-size: 11px; color: var(--tx3); text-align: center; line-height: 1.5; }
.brand-card-auth { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gr); }

/* ── Industry grid ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: 14px;
  margin-top: var(--sp5);
}

.ind-card {
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 20px 14px;
  text-align: center;
  transition: all 0.22s;
  cursor: pointer;
}
.ind-card:hover { border-color: var(--or); transform: translateY(-3px); background: rgba(224,90,32,0.04); }
.ind-icon { font-size: 32px; margin-bottom: 10px; }
.ind-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--tx); }

/* ── Why section ── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: var(--sp4); }
.why-item { display: flex; gap: 14px; }
.why-ic   { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: rgba(224,90,32,0.08); border: 1px solid rgba(224,90,32,0.18); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--wh); margin-bottom: 4px; }
.why-desc  { font-size: 13px; color: var(--tx2); line-height: 1.7; }

.why-visual { display: flex; flex-direction: column; gap: 14px; }
.why-card   { background: var(--dk4); border: 1px solid var(--bd); border-radius: var(--rl); padding: var(--sp3); }
.why-card-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--tx2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cov-item      { background: var(--dk5); border-radius: var(--r); padding: 12px 14px; font-size: 13px; color: var(--tx2); }
.cov-item strong { display: block; color: var(--wh); font-size: 14px; font-weight: 600; margin-bottom: 2px; }

.showroom-card  { background: rgba(224,90,32,0.06); border: 1px solid rgba(224,90,32,0.18); border-radius: var(--rl); padding: 18px; }
.showroom-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--or); margin-bottom: 8px; }
.showroom-addr  { font-size: 13px; color: var(--tx2); line-height: 1.7; }
.showroom-hours { font-size: 12px; color: var(--tx3); margin-top: 6px; }
.showroom-link  { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--or); font-weight: 600; }

/* ── Testimonial cards ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--sp4);
}

.testi-card {
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 26px;
  position: relative;
}

.testi-stars { font-size: 12px; margin-bottom: 14px; }
.testi-quote { font-size: 30px; color: var(--or); opacity: 0.35; margin-bottom: 12px; font-family: Georgia, serif; line-height: 1; }
.testi-text  { font-size: 14px; color: var(--tx2); line-height: 1.8; margin-bottom: 18px; }

.testi-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--bd); padding-top: 14px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; color: #fff; font-size: 14px; flex-shrink: 0; }
.testi-name   { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--wh); font-size: 13px; }
.testi-meta   { font-size: 11px; color: var(--tx3); }

/* ── Showcase / hero product card ── */
.showcase-card {
  background: var(--dk3);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
  overflow: hidden;
  position: relative;
}

.showcase-badge { position: absolute; top: 16px; left: 16px; z-index: 2; }
.showcase-img   { height: 220px; background: linear-gradient(135deg,#1A1C22 0%,#1f0e04 100%); display: flex; align-items: center; justify-content: center; font-size: 72px; border-bottom: 1px solid var(--bd); overflow: hidden; }
.showcase-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.showcase-body  { padding: 20px 22px; }
.showcase-title { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: var(--wh); margin-bottom: 6px; }
.showcase-desc  { font-size: 13px; color: var(--tx2); margin-bottom: 14px; line-height: 1.6; }

.showcase-feats { list-style: none; margin-bottom: 16px; }
.showcase-feats li { font-size: 12px; color: var(--tx2); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.showcase-feats li::before { content: '✓'; color: var(--gr); font-weight: 700; font-size: 11px; flex-shrink: 0; }

.showcase-models { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.model-tag { padding: 4px 10px; border-radius: 6px; background: rgba(224,90,32,0.10); border: 1px solid rgba(224,90,32,0.18); font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--or); }

.showcase-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.showcase-price .from { font-size: 10px; color: var(--tx3); }
.showcase-price .val  { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--wh); }

/* ── About / brand feature cards ── */
.brand-feature-card {
  background: var(--dk3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: var(--sp3);
  transition: border-color 0.2s;
}
.brand-feature-card:hover { border-color: var(--bd3); }
.bf-top  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.bf-name { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 800; color: var(--wh); }
.bf-auth { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gr); }
.bf-desc { font-size: 13px; color: var(--tx2); line-height: 1.6; margin-bottom: 12px; }
.bf-products { display: flex; flex-wrap: wrap; gap: 6px; }
.bf-chip { padding: 3px 10px; border-radius: 5px; background: var(--dk5); font-size: 11px; color: var(--tx3); }

/* ── Value / service cards (about, service pages) ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card  { background: var(--dk3); border: 1px solid var(--bd); border-radius: var(--rl); padding: 26px; }
.value-icon  { font-size: 30px; margin-bottom: 14px; }
.value-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--wh); margin-bottom: 8px; }
.value-desc  { font-size: 13px; color: var(--tx2); line-height: 1.7; }

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.service-card {
  background: var(--dk3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 26px;
  transition: all 0.2s;
}
.service-card:hover { border-color: var(--bd3); transform: translateY(-2px); }
.service-icon  { font-size: 34px; margin-bottom: 14px; }
.service-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--wh); margin-bottom: 8px; }
.service-desc  { font-size: 13px; color: var(--tx2); line-height: 1.7; margin-bottom: 14px; }
.service-features li { font-size: 12px; color: var(--tx2); padding: 4px 0; display: flex; align-items: flex-start; gap: 6px; }
.service-features li::before { content: '✓'; color: var(--gr); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Stat cards ── */
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: var(--sp4); }
.stat-card   { background: var(--dk3); border: 1px solid var(--bd); border-radius: var(--rl); padding: 18px; text-align: center; }
.stat-num    { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--or); }
.stat-label  { font-size: 12px; color: var(--tx3); margin-top: 4px; }

/* Hero stats row */
.hero-stats { display: flex; gap: 32px; padding-top: var(--sp4); border-top: 1px solid var(--bd); }
.hero-stat-num { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--wh); line-height: 1; }
.hero-stat-num span { color: var(--or); }
.hero-stat-lbl { font-size: 12px; color: var(--tx3); margin-top: 4px; }

/* ── Contact cards ── */
.contact-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-card    { background: var(--dk3); border: 1px solid var(--bd); border-radius: var(--rl); padding: 22px; display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.2s; }
.contact-card:hover    { border-color: var(--bd3); }
.contact-card.primary  { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.04); }
.contact-icon   { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-icon.wa       { background: rgba(37,211,102,0.15); }
.contact-icon.phone    { background: rgba(224,90,32,0.15); }
.contact-icon.email    { background: rgba(99,102,241,0.15); }
.contact-icon.location { background: rgba(245,158,11,0.15); }
.contact-label  { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tx3); margin-bottom: 4px; }
.contact-value  { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--wh); margin-bottom: 4px; }
.contact-note   { font-size: 12px; color: var(--tx3); }
.contact-action { margin-top: 10px; }


/* ─────────────────────────────────────────────────────────
   11. SECTION PATTERNS
   ───────────────────────────────────────────────────────── */

/* ── Homepage Hero ── */
.hero {
  min-height: 90vh;
  padding: var(--sp6) var(--sp4) var(--sp7);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dk);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 35%, rgba(224,90,32,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(34,197,94,0.04) 0%, transparent 70%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, black 0%, transparent 70%);
}

.hero-in {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-year    { padding: 4px 12px; border-radius: 100px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); font-size: 11px; font-weight: 700; color: var(--gr); letter-spacing: 0.08em; }
.hero-city    { font-size: 12px; color: var(--tx3); font-weight: 500; }

.hero h1 { font-size: clamp(34px, 5.5vw, 64px); font-weight: 800; color: var(--wh); margin-bottom: 20px; line-height: 1.08; letter-spacing: -0.03em; max-width: 580px; }
.hero h1 em   { font-style: normal; color: var(--or); }

.hero-desc   { font-size: 16px; color: var(--tx2); line-height: 1.75; max-width: 500px; margin-bottom: 32px; }
.hero-brands { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-brands-label { font-size: 12px; color: var(--tx3); font-weight: 500; }
.brand-pill  { padding: 5px 13px; border-radius: 100px; background: var(--dk4); border: 1px solid var(--bd2); font-size: 12px; font-weight: 700; color: var(--tx2); letter-spacing: 0.04em; }
.hero-ctas   { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* ── Page hero (interior pages) ── */
.page-hero {
  padding: calc(var(--hdr-h) + 56px) 0 var(--sp4);
  background: linear-gradient(135deg, #0A0B0F 0%, #111218 60%, #1a0d05 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 60%, rgba(224,90,32,0.08) 0%, transparent 70%);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb   { font-size: 12px; color: var(--tx3); margin-bottom: 14px; }
.breadcrumb a { color: var(--or); }

/* ── Hero product layout ── */
.hero-prod-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-prod-visual {
  background: linear-gradient(135deg, var(--dk3) 0%, #1a0d05 100%);
  border: 1px solid rgba(224,90,32,0.2);
  border-radius: var(--rxl);
  padding: var(--sp5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  min-height: 340px;
  position: relative;
}
.hero-prod-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--rxl);
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(224,90,32,0.1) 0%, transparent 70%);
}

/* ── FAQs ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: var(--sp5); }

.faq-item {
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--bd2); }

.faq-q {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--tx);
  user-select: none;
}
.faq-q:hover { color: var(--wh); }
.faq-arrow { font-size: 14px; color: var(--tx3); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--or); }
.faq-item.open .faq-q { color: var(--wh); }

.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--tx2);
  line-height: 1.75;
  transition: all 0.3s ease;
}
.faq-item.open .faq-a { padding: 0 20px 16px; max-height: 320px; }

/* ── Service banner ── */
.svc-banner {
  background: linear-gradient(135deg, #0e1a0e 0%, #0F1015 100%);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--rxl);
  padding: var(--sp5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp4);
  align-items: center;
}

.svc-banner-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gr); margin-bottom: 8px; }
.svc-banner-title { font-family: 'Syne', sans-serif; font-size: clamp(20px, 3vw, 32px); font-weight: 800; color: var(--wh); margin-bottom: 8px; }
.svc-banner-desc  { font-size: 14px; color: var(--tx2); margin-bottom: 18px; max-width: 480px; line-height: 1.7; }

.svc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-tag  { padding: 5px 12px; border-radius: 100px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.18); font-size: 12px; color: var(--gr); font-weight: 600; }

.svc-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ── CTA section ── */
.cta-sec {
  background: linear-gradient(135deg, var(--or) 0%, #D84E16 100%);
  padding: var(--sp7) var(--sp4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-in { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.cta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.15; }
.cta-sub   { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-addr  { margin-top: 22px; font-size: 12px; color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── Process steps ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step  { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--bd); }
.process-step:last-child { border-bottom: none; }
.step-num  { width: 40px; height: 40px; border-radius: var(--r); background: rgba(224,90,32,0.15); border: 1px solid rgba(224,90,32,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; color: var(--or); flex-shrink: 0; }
.step-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--wh); margin-bottom: 4px; }
.step-desc  { font-size: 13px; color: var(--tx2); line-height: 1.6; }

/* ── Auth badges ── */
.auth-strip { display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--sp4); }
.auth-badge { display: flex; align-items: center; gap: 10px; background: var(--dk3); border: 1px solid rgba(34,197,94,0.2); border-radius: var(--r); padding: 12px 16px; }
.auth-badge-icon { font-size: 20px; }
.auth-badge-name { display: block; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--wh); font-size: 13px; }
.auth-badge-type { display: block; font-size: 11px; color: var(--gr); }

/* ── Industry solution cards (on-page links) ── */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card {
  display: block;
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 26px;
  text-decoration: none;
  transition: all 0.22s;
}
.industry-card:hover { border-color: var(--bd3); transform: translateY(-3px); }
.industry-card-icon  { font-size: 34px; margin-bottom: 12px; }
.industry-card-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--wh); margin-bottom: 8px; }
.industry-card-desc  { font-size: 13px; color: var(--tx2); line-height: 1.65; margin-bottom: 12px; }
.industry-card-cta   { color: var(--or); font-weight: 700; font-size: 13px; }

/* ── Blog / resource cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card {
  display: block;
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: var(--bd3); }
.blog-card-thumb { height: 100px; background: linear-gradient(135deg, rgba(224,90,32,0.15), rgba(224,90,32,0.05)); display: flex; align-items: center; justify-content: center; font-size: 44px; border-bottom: 1px solid var(--bd); }
.blog-card-body  { padding: 20px; }
.blog-card-type  { font-size: 10px; color: var(--or); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px; }
.blog-card-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--wh); margin-bottom: 8px; line-height: 1.3; }
.blog-card-desc  { font-size: 13px; color: var(--tx2); }

/* ── Form card ── */
.form-card    { background: var(--dk3); border: 1px solid var(--bd); border-radius: var(--rxl); padding: var(--sp4); }
.form-title   { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: var(--wh); margin-bottom: 6px; }
.form-sub     { font-size: 13px; color: var(--tx3); margin-bottom: var(--sp3); }
.form-group   { margin-bottom: 14px; }
.form-label   { display: block; font-size: 13px; font-weight: 600; color: var(--tx); margin-bottom: 5px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r);
  background: var(--dk5);
  border: 1px solid var(--bd);
  color: var(--wh);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--or); }
.form-select option  { background: var(--dk3); }
/* resize and min-height set inline with .form-textarea main rule above */
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  padding: 13px;
  border-radius: var(--r);
  background: var(--or);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
  min-height: 48px;
}
.form-submit:hover { background: var(--ord); transform: translateY(-1px); }
.form-note    { font-size: 11px; color: var(--tx3); text-align: center; margin-top: 8px; }

/* ── Hours card ── */
.hours-card  { background: var(--dk3); border: 1px solid var(--bd); border-radius: var(--rl); padding: var(--sp3); }
.hours-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--wh); margin-bottom: 14px; }
.hours-row   { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bd); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day    { color: var(--tx3); }
.hours-row .time   { color: var(--wh); font-weight: 600; }
.hours-row .closed { color: #EF4444; font-weight: 600; }
.hours-row.today .day,
.hours-row.today .time { color: var(--or); }

/* Product page hero banner */
.ph-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp3);
  align-items: start;
  margin-top: var(--sp4);
}
.ph-banner-icon { font-size: 56px; }

   12. FORMS (contact page)
   ── see .form-* rules in section 10 ──
   ───────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────────────────────
   13. FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
  background: #080A0C;
  padding: var(--sp7) var(--sp4) var(--sp4);
  border-top: 1px solid var(--bd);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp5);
  margin-bottom: var(--sp5);
}

.footer-logo      { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { width: 32px; height: 32px; border-radius: 8px; background: var(--or); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 13px; color: #fff; }
.footer-logo-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--wh); }
.footer-desc      { font-size: 13px; color: var(--tx3); line-height: 1.75; margin-bottom: 18px; }
.footer-addr      { font-size: 12px; color: var(--tx3); line-height: 1.85; }
.footer-addr strong { color: var(--tx2); }

.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.soc-btn { width: 32px; height: 32px; border-radius: 8px; background: var(--dk4); border: 1px solid var(--bd); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all 0.2s; color: var(--tx3); }
.soc-btn:hover { background: var(--or); border-color: var(--or); color: #fff; }

.footer-col-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wh); margin-bottom: 16px; }
.footer-links li  { margin-bottom: 9px; }
.footer-links a   { font-size: 13px; color: var(--tx3); transition: color 0.2s; }
.footer-links a:hover { color: var(--or); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy  { font-size: 12px; color: var(--tx3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: var(--tx3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--or); }

/* Slim footer (blog / SEO / utility pages) */
.footer-slim {
  background: #080A0C;
  padding: 24px var(--sp4);
  text-align: center;
  border-top: 1px solid var(--bd);
  font-size: 13px;
  color: var(--tx3);
}
.footer-slim a { color: var(--or); }


/* ─────────────────────────────────────────────────────────
   14. WHATSAPP FLOATING / STICKY BAR
   ───────────────────────────────────────────────────────── */

/* Floating button — desktop */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-tip {
  background: var(--dk3);
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  padding: 7px 12px;
  font-size: 12px;
  color: var(--tx2);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s;
  pointer-events: none;
  white-space: nowrap;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateY(0); }

.wa-btn-fl {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.2s;
  text-decoration: none;
  position: relative;
}
.wa-btn-fl:hover { transform: scale(1.08); }

.wa-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--or);
  border: 2px solid var(--dk);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

/* Sticky bottom bar — mobile only */
.wa-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: #25D366;
  padding: 14px var(--sp3);
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.35);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.wa-sticky-bar:active { background: #1EBD5A; }


/* ─────────────────────────────────────────────────────────
   15. ANIMATIONS & UTILITIES
   ───────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* Exit intent popup */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.72);
  align-items: center;
  justify-content: center;
  padding: var(--sp3);
}
.exit-popup-overlay.open { display: flex; }

.exit-popup {
  background: var(--dk3);
  border: 1px solid var(--bd3);
  border-radius: var(--rxl);
  max-width: 400px;
  width: 100%;
  padding: var(--sp5);
  text-align: center;
  position: relative;
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--tx3);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.exit-popup-close:hover { color: var(--tx); }


/* ─────────────────────────────────────────────────────────
   16. RESPONSIVE — 1024px (tablet landscape)
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-layout    { grid-template-columns: 1fr; }
  .why-layout     { grid-template-columns: 1fr; gap: 40px; }
  .hero-prod-layout { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: var(--sp4); }
  .trust-grid     { grid-template-columns: repeat(3,1fr); }
  .values-grid    { grid-template-columns: repeat(2,1fr); }
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .industry-grid  { grid-template-columns: repeat(2,1fr); }
  .testi-grid     { grid-template-columns: repeat(2,1fr); }
  .blog-grid      { grid-template-columns: repeat(2,1fr); }
}


/* ─────────────────────────────────────────────────────────
   17. RESPONSIVE — 768px (tablet / mobile)
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --hdr-h: 60px;
    --sp4: 20px;   /* reduce section horizontal padding */
  }

  body { padding-bottom: 68px; }   /* room for sticky WA bar */

  /* Header */
  .hdr       { padding: 0 var(--sp3); }
  .logo-sub  { display: none; }
  .nav       { display: none; }
  .hdr-phone { display: none; }
  .mob-btn   { display: block; }

  /* Sections */
  .sec       { padding: var(--sp6) var(--sp3); }
  .con       { padding: 0 var(--sp3); }
  .con-md    { padding: 0 var(--sp3); }

  /* Hero */
  .hero                 { padding: 48px var(--sp3) 56px; }
  .hero h1              { font-size: 30px; }
  .hero-layout          { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats           { gap: 16px; flex-wrap: wrap; }
  .hero-stat-num        { font-size: 24px; }
  .hero-ctas            { flex-direction: column; }
  .hero-ctas .btn       { justify-content: center; }
  .hero-prod-visual     { min-height: 200px; font-size: 64px; }
  .hp-model-grid        { grid-template-columns: 1fr 1fr; }

  /* Grids */
  .trust-grid     { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .cats-grid      { grid-template-columns: 1fr; }
  .faq-grid       { grid-template-columns: 1fr; }
  .why-layout     { grid-template-columns: 1fr; gap: 24px; }
  .ind-grid       { grid-template-columns: repeat(2,1fr); }
  .svc-banner     { grid-template-columns: 1fr; gap: 18px; }
  .svc-btns       { flex-direction: row; flex-wrap: wrap; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .story-grid     { grid-template-columns: 1fr; }
  .location-grid  { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .brands-served  { grid-template-columns: 1fr; }
  .ph-banner      { grid-template-columns: 1fr; }
  .industry-grid  { grid-template-columns: 1fr; }

  /* CTA buttons */
  .cta-btns         { flex-direction: column; align-items: stretch; }
  .cta-btns .btn    { justify-content: center; }

  /* Filter bar — horizontal scroll */
  .fb, .filter-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .fb button, .filter-btn { white-space: nowrap; flex-shrink: 0; }

  /* WhatsApp */
  .wa-float      { display: none; }
  .wa-sticky-bar { display: flex; }

  /* Ticker */
  .ticker-item       { font-size: 12px; }
  .ticker-track      { animation-duration: 38s; }

  /* Brands */
  .brand-card   { min-width: 120px; padding: 15px 16px; }
  .brand-cards  { gap: 10px; }
}


/* ─────────────────────────────────────────────────────────
   18. RESPONSIVE — 480px (small mobile)
   ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1     { font-size: 26px; }
  .sec-title   { font-size: 24px; }
  .ind-grid    { grid-template-columns: repeat(2,1fr); }
  .cov-item    { padding: 10px 12px; }
  .brand-card  { min-width: 110px; }

  /* Hero stats — 2×2 grid */
  .hero-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stat-num { font-size: 22px; }

  /* Model table — stack on mobile */
  .pf-specs thead { display: none; }
  .pf-specs td    { display: block; padding: 3px 0; }
  .pf-specs td:first-child { font-weight: 700; color: var(--or); margin-top: 6px; }
  .pf-specs tr    { border-bottom: 1px solid var(--bd); padding: 6px 0; display: block; }
}


/* ─────────────────────────────────────────────────────────
   19. RESPONSIVE — 380px (very small)
   ───────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  .logo-sub { display: none; }
  .hdr-phone { display: none; }
  .hero h1 { font-size: 24px; }
  .sec-title { font-size: 22px; }
}


/* ─────────────────────────────────────────────────────────
   20. PRODUCT PAGE COMPONENTS
   (fb filter bar, ps product section, pg product grid,
    pf-name/price/tags extensions, page-level hero helpers,
    products.html category layout, brand grid)
   ───────────────────────────────────────────────────────── */

/* ── Breadcrumb (interior pages) ── */
.bc {
  font-size: 12px;
  color: var(--tx3);
  margin-bottom: 14px;
}
.bc a { color: var(--or); }

/* ── Subheading paragraph below hero h1 ── */
.sub {
  font-size: 16px;
  color: var(--tx2);
  line-height: 1.75;
  max-width: 600px;
  margin-top: 14px;
}

/* ── Products listing page: category grid ── */
.cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 18px;
  margin-top: var(--sp4);
}

/* Hero category card variant */
.cat-card.hero-cat {
  border-color: rgba(224,90,32,0.28);
  background: linear-gradient(135deg,#1E2130,#1a0d05);
}

/* Category badge */
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.b-hero    { background: rgba(245,158,11,0.1);  color: var(--gd); border: 1px solid rgba(245,158,11,0.2); }
.b-fast    { background: rgba(34,197,94,0.10);  color: var(--gr); border: 1px solid rgba(34,197,94,0.2); }
.b-display { background: rgba(59,130,246,0.10); color: var(--bl); border: 1px solid rgba(59,130,246,0.2); }

/* Category chip items list */
.cat-items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}
.ci {
  padding: 3px 9px;
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bd);
  font-size: 11px;
  color: var(--tx3);
}

/* ── Brands grid on products page ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: var(--sp4);
}

/* Brand card on products page (different from .brand-card in brands-sec) */
.brands-grid .brand-card {
  background: var(--dk3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: border-color 0.22s;
  cursor: default;
}
.brands-grid .brand-card:hover { border-color: var(--bd3); }
.brand-name  { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--wh); letter-spacing: -0.02em; }
.brand-auth  { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gr); }
.brand-items { font-size: 13px; color: var(--tx3); line-height: 1.65; }

/* ── WhatsApp bar (bottom sticky, products page variant) ── */
.wa-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: #25D366;
  padding: 14px var(--sp3);
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.35);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ── Filter bar (product category pages) ── */
.fb {
  background: var(--dk2);
  border-bottom: 1px solid var(--bd);
  padding: 12px var(--sp4);
  position: sticky;
  top: var(--hdr-h);
  z-index: 100;
}
.fb-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fb-btn {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--bd2);
  background: transparent;
  color: var(--tx2);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.fb-btn:hover  { border-color: var(--or); color: var(--or); }
.fb-btn.act    { background: var(--or); border-color: var(--or); color: #fff; }

.wa-fl {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}
.wa-fl a {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-fl a:hover { transform: scale(1.08); }

/* ── Slim footer (product pages use .ftr) ── */
.ftr {
  background: #080A0C;
  padding: 24px var(--sp4);
  text-align: center;
  border-top: 1px solid var(--bd);
  font-size: 12px;
  color: var(--tx3);
}
.ftr-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.ftr-nav a { font-size: 12px; color: var(--tx3); transition: color 0.2s; }
.ftr-nav a:hover { color: var(--or); }

/* ── Products page hero: simpler page-hero variant ── */
section.hero .con .bc + h1,
section.hero .con h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
section.hero .con h1 em { font-style: normal; color: var(--or); }

/* ── Responsive additions for new components ── */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fb      { padding: 10px var(--sp3); top: var(--hdr-h); }
  .fb-in   { gap: 6px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .fb-btn  { flex-shrink: 0; font-size: 12px; padding: 6px 13px; }
  /* .pg responsive — see authoritative block at bottom */
  .brands-grid { grid-template-columns: 1fr; }
  .cats    { grid-template-columns: 1fr; }
  .wa-bar  { display: flex; }
  .wa-fl   { display: none; }
  /* .ps-hdr and .ps-badge responsive — handled in product-layout.css */
}

@media (max-width: 480px) {
  /* .pg — see authoritative block */
  .mt thead { display: none; }
  .mt td  { display: block; padding: 3px 0; }
  .mt td:first-child { font-weight: 700; color: var(--or); margin-top: 6px; }
  .mt tr  { border-bottom: 1px solid var(--bd); padding: 6px 0; display: block; }
}


/* ─────────────────────────────────────────────────────────
   21. ABOUT PAGE COMPONENTS
   ───────────────────────────────────────────────────────── */
.story-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.story-text p  { font-size: 15px; color: var(--tx2); line-height: 1.85; margin-bottom: 18px; }
.story-text strong { color: var(--wh); }
.story-visual  { display: flex; flex-direction: column; gap: 14px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.location-card { background: var(--dk3); border: 1px solid var(--bd); border-radius: var(--rl); overflow: hidden; }
.location-map  { height: 220px; background: var(--dk5); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.location-info { padding: 22px; }
.location-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--wh); margin-bottom: 10px; }
.location-details p  { font-size: 13px; color: var(--tx2); margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.location-details span { flex-shrink: 0; }
.location-cta  { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.display-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.display-feat  { background: var(--dk5); border-radius: var(--r); padding: 12px; font-size: 13px; color: var(--tx2); }

/* ─────────────────────────────────────────────────────────
   22. CONTACT / MAP PAGE COMPONENTS
   ───────────────────────────────────────────────────────── */
.map-section    { padding: 0 var(--sp4) var(--sp7); }
.map-container  { max-width: var(--max-w); margin: 0 auto; }
.map-embed iframe { border: 0; border-radius: var(--rl); display: block; width: 100%; height: 320px; }

@media (max-width: 768px) {
  .story-grid, .location-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 28px; }
  .map-embed iframe { height: 240px; }
}


/* ─────────────────────────────────────────────────────────
   23. SERVICE PAGE COMPONENTS & MISC MISSING DEFINITIONS
   ───────────────────────────────────────────────────────── */

/* Brands served grid (service page) */
.brands-served { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.brand-served-card {
  background: var(--dk3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
}
.brand-served-card:hover { border-color: var(--bd3); }
.brand-served-name { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--wh); letter-spacing: -0.02em; }
.brand-served-tag  { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gr); }
.brand-served-items { font-size: 13px; color: var(--tx3); line-height: 1.65; }

/* Hero model grid (used on some product hero sections) */
.hp-model-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-top: var(--sp3);
}
.hp-model-card {
  background: var(--dk5);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 12px;
  text-align: center;
}
.hp-model-num  { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--or); font-weight: 500; }
.hp-model-cap  { font-size: 12px; color: var(--tx2); margin-top: 3px; }
.hp-model-note { font-size: 10px; color: var(--tx3); margin-top: 2px; }

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


/* ─────────────────────────────────────────────────────────
   24. BLOG / ARTICLE PAGE COMPONENTS
   ───────────────────────────────────────────────────────── */

/* Article layout wrapper */
.article-header {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--hdr-h) + 48px) var(--sp4) var(--sp5);
}

.article-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
}

.article-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--tx3);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bd);
}

/* Article body — long-form content styles */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp5) var(--sp4);
}

.article-body p {
  font-size: 15px;
  color: var(--tx2);
  line-height: 1.85;
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--wh);
  margin-top: 44px;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--wh);
  margin-top: 28px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.article-body strong { color: var(--wh); }

.article-body ul,
.article-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-body li {
  font-size: 15px;
  color: var(--tx2);
  line-height: 1.75;
  margin-bottom: 6px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}

.article-body table th {
  padding: 10px 14px;
  background: var(--dk5);
  color: var(--tx2);
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--bd2);
}

.article-body table td {
  padding: 10px 14px;
  color: var(--tx2);
  border-bottom: 1px solid var(--bd);
}

.article-body table tr:last-child td { border-bottom: none; }
.article-body table td:first-child    { color: var(--tx); font-weight: 500; }
.article-body table strong            { color: var(--wh); }

/* Callout highlight box */
.callout {
  background: rgba(224,90,32,0.07);
  border-left: 3px solid var(--or);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.callout p {
  font-size: 14px !important;
  color: var(--tx) !important;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
}

/* In-article CTA box */
.cta-box {
  background: linear-gradient(135deg, rgba(224,90,32,0.12), rgba(224,90,32,0.06));
  border: 1px solid rgba(224,90,32,0.25);
  border-radius: var(--rl);
  padding: var(--sp4);
  margin: 36px 0;
  text-align: center;
}

.cta-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: var(--wh);
  margin-top: 0 !important;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 14px;
  color: var(--tx2);
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* Related articles block */
.related-articles {
  background: var(--dk3);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 28px 32px;
  margin: 40px 0;
}

.related-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 14px;
}

.related-link {
  display: block;
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.related-link:hover { border-color: var(--bd3); }

.related-link-type  { font-size: 10px; color: var(--or); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.related-link-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--wh); margin-bottom: 4px; line-height: 1.3; }
.related-link-meta  { font-size: 11px; color: var(--tx3); }

.related-all {
  text-align: center;
  margin-top: 20px;
}

.related-all a {
  display: inline-block;
  color: var(--or);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(224,90,32,0.25);
  padding: 9px 20px;
  border-radius: var(--r);
  transition: all 0.2s;
}
.related-all a:hover {
  background: rgba(224,90,32,0.08);
}

@media (max-width: 768px) {
  .article-header { padding: calc(var(--hdr-h) + 28px) var(--sp3) var(--sp4); }
  .article-body   { padding: var(--sp4) var(--sp3); }
  .related-articles { padding: 20px; }
  .related-grid   { grid-template-columns: 1fr; }
  .article-body h2 { margin-top: 32px; }
}


/* ─────────────────────────────────────────────────────────
   25. SERVICE PAGE COMPONENTS
   ───────────────────────────────────────────────────────── */

/* Info card (why authorized matters, warnings) */
.info-card {
  background: var(--dk);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 28px;
  margin-bottom: 16px;
}

.info-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 16px;
}

/* Check list (✓ items with description) */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-ic   { color: var(--gr); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.check-ttl  { font-size: 14px; font-weight: 600; color: var(--wh); margin-bottom: 2px; }
.check-desc { font-size: 12px; color: var(--tx2); line-height: 1.65; }

/* Warning/caution box */
.warn-box {
  background: rgba(224,90,32,0.08);
  border: 1px solid rgba(224,90,32,0.2);
  border-radius: var(--rl);
  padding: 24px;
}
.warn-title { font-size: 14px; font-weight: 700; color: var(--or); margin-bottom: 8px; }
.warn-desc  { font-size: 13px; color: var(--tx2); line-height: 1.7; }

/* Two-column layout (process + side info) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Page section title with inline span styling */
.sec-title span { color: var(--or); }
.sec-title em   { color: var(--or); font-style: normal; }

@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .two-col { gap: 24px; }
}


/* ─────────────────────────────────────────────────────────
   26. INDEX PAGE INLINE STYLE CLEANUPS
   (Utility classes to replace common repeated inline styles)
   ───────────────────────────────────────────────────────── */

/* Section sub-description centered below sec-head--center */
.sec-desc-center {
  font-size: 15px;
  color: var(--tx2);
  line-height: 1.75;
  max-width: 560px;
  margin: 10px auto 0;
}

/* Generic text utilities */
.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-28 { margin-bottom: 28px; }
.mb-40 { margin-bottom: 40px; }
.mt-14 { margin-top: 14px; }
.mt-24 { margin-top: 24px; }

/* Chip/tag: subtle background item */
.chip {
  padding: 5px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  color: var(--tx);
}


/* ─────────────────────────────────────────────────────────
   27. PRODUCT CATEGORY HERO BANNER
   (replaces inline style on tea-coffee-milk, table-top, etc.)
   ───────────────────────────────────────────────────────── */

.cat-hero-banner {
  background: linear-gradient(135deg, #1a0d05, #1E2130);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--rl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}

.cat-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 8px;
}

.cat-hero-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--wh);
  margin-bottom: 6px;
}

.cat-hero-desc {
  font-size: 13px;
  color: var(--tx2);
  margin-bottom: 14px;
  max-width: 480px;
  line-height: 1.65;
}

.cat-hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}


@media (max-width: 768px) {
  .cat-hero-banner {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
  .cat-hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}


/* ─────────────────────────────────────────────────────────
   28. FOOTER CONTACT LIST & MISC CLEANUP CLASSES
   ───────────────────────────────────────────────────────── */

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  font-size: 13px;
  color: var(--tx2);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--or); }
.footer-contact-link--wa   { color: var(--gr); font-weight: 600; }
.footer-contact-link--wa:hover { color: #1EBD5A; }


/* ─────────────────────────────────────────────────────────
   29. RESOURCES PAGE COMPONENTS
   ───────────────────────────────────────────────────────── */

/* Articles grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px;
  margin-top: var(--sp5);
}

/* Article card */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.article-card:hover { border-color: var(--bd3); transform: translateY(-2px); }

.article-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  border-bottom: 1px solid var(--bd);
}

.article-card .article-body {
  /* Override blog article-body for card context */
  padding: 20px;
  max-width: none;
  margin: 0;
}
.article-card .article-body p { font-size: 15px; color: var(--tx2); margin-bottom: 0; }

.article-tag   { font-size: 10px; color: var(--or); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.article-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--wh); margin-bottom: 8px; line-height: 1.3; }
.article-desc  { font-size: 13px; color: var(--tx2); line-height: 1.65; margin-bottom: 10px; }
.article-card .article-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 11px; color: var(--tx3); }

/* Industries grid (resources page) */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 14px;
  margin-top: var(--sp4);
}

/* ind-card on resources has different content (with desc) */
.ind-card .ind-ic   { font-size: 28px; margin-bottom: 8px; }
.ind-card .ind-desc { font-size: 12px; color: var(--tx3); margin-top: 4px; line-height: 1.5; }

/* City cards */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 10px;
  margin-top: var(--sp3);
}

.city-card {
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 14px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}
.city-card:hover { border-color: var(--bd3); transform: translateY(-2px); }
.city-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--wh); }
.city-tag  { font-size: 11px; color: var(--tx3); margin-top: 3px; }

@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid  { grid-template-columns: repeat(3,1fr); }
}

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


/* ─────────────────────────────────────────────────────────
   30. INDUSTRY PAGES (for-restaurants, for-cloud-kitchens, for-hotels)
   ───────────────────────────────────────────────────────── */

/* page-top: wraps hero + content on industry pages */
.page-top { }

/* Industry page hero override (these pages use section.hero differently) */
.page-top .hero {
  padding: calc(var(--hdr-h) + 56px) 0 var(--sp7);
  background: linear-gradient(135deg, #0A0B0F 0%, #111218 60%, #1a0d05 100%);
  position: relative;
  min-height: unset;
}
.page-top .hero .con { max-width: var(--max-w); margin: 0 auto; width: 100%; padding: 0 var(--sp4); }

/* Badge / eyebrow label (pill style) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(224,90,32,0.1);
  border: 1px solid rgba(224,90,32,0.2);
  font-size: 12px;
  font-weight: 700;
  color: var(--or);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* Hero subtext */
.hero-sub {
  font-size: 15px;
  color: var(--tx2);
  line-height: 1.75;
  max-width: 560px;
  margin: 14px 0 28px;
}

/* Hero stats row */
.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: var(--sp4);
  padding-top: var(--sp4);
  border-top: 1px solid var(--bd);
}
.stat-n { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--wh); line-height: 1; }
.stat-n span { color: var(--or); }
.stat-l { font-size: 12px; color: var(--tx3); margin-top: 3px; }

/* CTA buttons cluster */
.ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Generic cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 18px;
  margin-top: var(--sp5);
}

/* Generic card */
.card {
  background: var(--dk4);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 24px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--bd3); }

.card-ic { font-size: 32px; margin-bottom: 12px; }

.card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--tx2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-price {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--or);
  margin-top: 12px;
}

.card-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--or);
  margin-top: 4px;
  transition: color 0.2s;
}
.card-link:hover { color: var(--or2); }

/* CTA banner inside section */
.cta-banner {
  background: linear-gradient(135deg, rgba(224,90,32,0.12), rgba(224,90,32,0.06));
  border: 1px solid rgba(224,90,32,0.25);
  border-radius: var(--rxl);
  padding: var(--sp5);
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px,3vw,30px);
  font-weight: 800;
  color: var(--wh);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 15px;
  color: var(--tx2);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* Section sub-description */
.sec-sub {
  font-size: 15px;
  color: var(--tx2);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 12px;
}

/* Process steps */
.process { display: flex; flex-direction: column; gap: 0; }
.pstep   { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--bd); }
.pstep:last-child { border-bottom: none; }
.pnum    { width: 36px; height: 36px; border-radius: var(--r); background: rgba(224,90,32,0.15); border: 1px solid rgba(224,90,32,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 15px; color: var(--or); flex-shrink: 0; }

@media (max-width: 768px) {
  .stats { gap: 16px; }
  .stat-n { font-size: 22px; }
  .grid   { grid-template-columns: 1fr; }
  .ctas   { flex-direction: column; }
  .ctas a { text-align: center; justify-content: center; }
}


/* ─────────────────────────────────────────────────────────
   31. NOTE / NOTICE INLINE COMPONENTS
   ───────────────────────────────────────────────────────── */

.note {
  padding: 12px 18px;
  border-radius: var(--r);
  font-size: 13px;
  line-height: 1.65;
  color: var(--tx2);
}

.note strong { color: var(--wh); }

.note-gr {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--tx);
}
.note-gr a { color: var(--or); font-weight: 600; }

.note-or {
  background: rgba(224,90,32,0.07);
  border: 1px solid rgba(224,90,32,0.2);
}
.note-or a { color: var(--or); font-weight: 600; }

.note-bl {
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.2);
}
.note-bl a { color: var(--bl); font-weight: 600; }


/* ─────────────────────────────────────────────────────────
   32. EXIT POPUP INNER ELEMENTS & FILTER BAR EXTENSIONS
   ───────────────────────────────────────────────────────── */

/* Exit popup inner content */
.exit-popup-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--wh);
  margin-bottom: 8px;
}

.exit-popup-desc {
  font-size: 14px;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 22px;
}

.exit-popup-dismiss {
  background: none;
  border: none;
  color: var(--tx3);
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  padding: 6px;
  font-family: inherit;
}
.exit-popup-dismiss:hover { color: var(--tx2); }

/* Filter bar label/count */
.fb-label { font-size: 12px; color: var(--tx2); font-weight: 600; }
.fb-count { margin-left: auto; font-size: 12px; color: var(--tx2); }

/* text-md utility */
/* .text-md is defined in Typography Scale section above */

/* Exit popup icon/emoji wrapper */
.exit-popup-icon { font-size: 40px; margin-bottom: 10px; }


/* ═══════════════════════════════════════════════════════════
   33. PRODUCTION POLISH — v3.1
   Global layout, hero, spacing, product grid, trust banner,
   page-hero, .ph/.ph-in, section rhythm & scalability fixes.
   ADDITIVE ONLY — preserves all existing rules above.
   ═══════════════════════════════════════════════════════════ */


/* ── 33a. GLOBAL CONTAINER SYSTEM REFINEMENT ─────────────── */

/* Ensure consistent horizontal padding on all viewports */
.con,
.con-md,
.page-hero-inner,
.hdr-in,
.footer-grid,
.footer-bottom {
  box-sizing: border-box;
}

/* Slightly widen default padding on large screens */
@media (min-width: 1280px) {
  .con     { padding: 0 var(--sp5); }
  .con-md  { padding: 0 var(--sp5); }
}

/* Prevent any section from bleeding full-bleed on ultra-wide */
.sec > .con,
.sec-alt > .con {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}


/* ── 33b. HERO SECTIONS ──────────────────────────────────── */

/* Homepage hero: prevent excessive blank space on large desktop */
.hero-in {
  width: 100%;
  padding: 0;  /* container padding handled by .hero padding */
}

/* Hero layout: tighten right column so it doesn't feel too narrow */
.hero-layout {
  grid-template-columns: 1fr 420px;
  gap: var(--sp7);
  align-items: center;
}

/* On collapse (≤1024px), stacked layout gets generous spacing */
@media (max-width: 1024px) {
  .hero-layout { gap: var(--sp5); }
  .hero h1     { max-width: 100%; }
}

/* Hero showcase card — constrain max-width when stacked */
@media (max-width: 1024px) {
  .hero-layout > div:last-child {
    max-width: 520px;
  }
}


/* ── 33c. PAGE HERO (INTERIOR PAGES) ────────────────────── */

/* Give page-hero a proper inner container with consistent padding */
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
  position: relative;
  z-index: 1;
}

/* Consistent page-hero min-height so short content doesn't look cramped */
.page-hero {
  min-height: unset;
  display: block;
}

/* Heading alignment in page-hero: always left, consistent */
.page-hero-inner h1,
.page-hero-inner .sec-title {
  max-width: 720px;
}

.page-hero-inner .sec-desc {
  max-width: 600px;
}


/* ── 33d. PRODUCT PAGE HERO (.ph / .ph-in) ───────────────
   CRITICAL FIX: these classes are used on 7 product pages
   but were not defined in global.css — now defined here.
   ─────────────────────────────────────────────────────── */

.ph {
  padding: calc(var(--hdr-h) + 40px) var(--sp4) var(--sp6);
  background: linear-gradient(135deg, #0A0B0F 0%, #111218 60%, #1a0d05 100%);
  position: relative;
  overflow: hidden;
}

.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 25% 65%, rgba(224,90,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 20% 40%, black 0%, transparent 70%);
  pointer-events: none;
}

.ph-in {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Keep sec-title and sec-desc properly scoped inside .ph */
.ph-in .sec-title { max-width: 680px; }
.ph-in .sec-desc  { max-width: 580px; }

/* Delivery notice on product pages */
.ph-in .notice-bar,
.ph ~ .notice-bar {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .ph {
    padding: calc(var(--hdr-h) + 28px) var(--sp3) var(--sp5);
  }
  .ph-in { padding: 0; }
}


/* ── 33e. HEADING & TYPOGRAPHY ALIGNMENT CONSISTENCY ────── */

/* Section headers: left-aligned sections use consistent max-width */
.sec-head {
  max-width: var(--max-w);
}

/* Centered section headers: enforce centering properly */
.sec-head--center .sec-title,
.sec-head--center .lbl {
  text-align: center;
}

/* Prevent desc from stretching too wide on centered sections */
.sec-head--center .sec-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Left-aligned labels inside centered heads show without the line */
.sec-head--center .lbl { justify-content: center; }
.sec-head--center .lbl::before { display: none; }

/* Consistent eyebrow label line treatment for left-aligned sections */
.sec-head:not(.sec-head--center) .lbl::before {
  display: inline-block;
}



/* product-grid block moved to authoritative section at bottom */

/* ── 33g. CATEGORY CARDS GRID (.cats) ───────────────────── */

/* Category grid on products.html: balanced 3-col on desktop */
.cats {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Cat card: ensure flex-direction keeps footer at bottom */
.cat-card {
  justify-content: space-between;
}

.cat-body {
  flex: 1;
}

@media (min-width: 640px) and (max-width: 900px) {
  .cats { grid-template-columns: 1fr 1fr; }
}

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


/* ── 33h. SECTION RHYTHM CONSISTENCY ────────────────────── */

/* Standardise section vertical padding across all internal pages */
.sec {
  padding-top: var(--sp7);
  padding-bottom: var(--sp7);
}

/* Alt sections maintain same rhythm */
.sec.sec-alt {
  padding-top: var(--sp7);
  padding-bottom: var(--sp7);
}

@media (max-width: 768px) {
  .sec {
    padding-top: var(--sp6);
    padding-bottom: var(--sp6);
  }
}


/* ── 33i. TRUST / INFO BANNER (reusable across internal pages) ──
   New component: .trust-strip — a minimal horizontal trust bar
   for use on product & internal pages for visual continuity.
   ─────────────────────────────────────────────────────────── */

.trust-strip {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 14px var(--sp4);
  overflow: hidden;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp4);
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tx2);
  white-space: nowrap;
}

.trust-strip-item strong {
  color: var(--wh);
  font-weight: 600;
}

.trust-strip-item .ts-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.trust-strip-sep {
  width: 1px;
  height: 18px;
  background: var(--bd2);
  flex-shrink: 0;
}

/* CTA variant inside trust strip */
.trust-strip-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--gr);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-strip-cta:hover {
  background: rgba(34,197,94,0.08);
  color: var(--gr);
}

@media (max-width: 768px) {
  .trust-strip { padding: 12px var(--sp3); }
  .trust-strip-inner { gap: var(--sp2); }
  .trust-strip-sep  { display: none; }
  .trust-strip-item { font-size: 12px; }
}

@media (max-width: 480px) {
  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .trust-strip-sep { display: none; }
  .trust-strip-cta {
    grid-column: 1 / -1;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}


/* ── 33j. RESOURCES / CITY SECTION REFINEMENT ───────────── */

/* Cities grid: fixed 5-col on desktop → responsive */
.cities-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 1024px) {
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .cities-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

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

/* City card: consistent min-height so grid stays even */
.city-card {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Industries grid on resources: fixed 3-col desktop */
.industries-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

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

/* Articles grid: consistent 3-col */
.articles-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

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



/* ── 33l. FOOTER GRID ALIGNMENT ─────────────────────────── */

/* Footer: ensure grid has consistent max-width wrapper */
.footer-grid {
  padding: 0 var(--sp4);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 var(--sp3);
    gap: var(--sp4);
  }
}


/* ── 33m. INTERNAL PAGE CONSISTENCY PATCHES ─────────────── */

/* page-hero on products.html: ensure breadcrumb is consistent */
.page-hero-inner .breadcrumb {
  margin-bottom: 16px;
}

/* Ensure sec-title in page-hero is always white */
.page-hero .sec-title,
.ph-in .sec-title {
  color: var(--wh);
}

/* Ensure .lbl in page-hero always shows the orange line */
.page-hero-inner .lbl,
.ph-in .lbl {
  color: var(--or);
}

/* For-industry pages (for-restaurants, for-hotels etc.)
   hero section: tighten left content width */
.page-top .hero-sub {
  max-width: 520px;
}

/* Consistent CTA cluster alignment on all hero sections */
.ctas {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .ctas { align-items: stretch; }
  .ctas a { justify-content: center; text-align: center; }
}


/* ── 33n. VISUAL BALANCE & SPACING PATCHES ──────────────── */

/* SEC-DESC: ensure it doesn't break layout on centered sections */
.sec-desc {
  word-break: break-word;
}

/* Why section layout gap tightened for better proportion */
.why-layout {
  gap: 56px;
}

@media (max-width: 1024px) {
  .why-layout { gap: var(--sp5); }
}

/* Process steps: uniform padding */
.process-step,
.pstep {
  padding: 20px 0;
}

/* Contact grid: ensure even 50/50 split */
.contact-grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp4); }
}


/* ── 33o. BUTTON ALIGNMENT CONSISTENCY ──────────────────── */

/* Ensure btn-wa in hero ctas aligns properly */
.hero-ctas .btn-wa,
.hero-ctas .btn-ghost,
.hero-ctas .btn-or,
.hero-ctas .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* btn in ctas row on industry pages */
.ctas .btn {
  min-height: 46px;
}


/* ── 33p. SCALABILITY FUTURE-PROOFING ───────────────────── */

/* Product grids should scale gracefully with more products */
/* .pg[data-count="1"] — replaced by section 34 :has() horizontal layout */
/* Category cards scale cleanly with more categories added */
.cats {
  /* Already auto-fill; this ensures 4+ categories look even */
  align-items: stretch;
}

.cat-card {
  /* Even height in grid rows */
  height: 100%;
}

/* Blog grid: stable with more articles */
.blog-grid {
  align-items: stretch;
}

.blog-card {
  height: 100%;
}

/* Related grid: clean 3-col max */
.related-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}


/* ── 33q. RESPONSIVE CLEANUP & MOBILE POLISH ────────────── */

@media (max-width: 768px) {
  /* Page hero mobile */
  .page-hero {
    min-height: 160px;
    padding: calc(var(--hdr-h) + 32px) 0 var(--sp5);
  }
  .page-hero-inner {
    padding: 0 var(--sp3);
  }

  /* Industry page hero */
  .page-top .hero {
    padding: calc(var(--hdr-h) + 32px) 0 var(--sp5);
  }
  .page-top .hero .con {
    padding: 0 var(--sp3);
  }

  /* Tighten hero stats on mobile */
  .stats { gap: 14px; }
  .stat-n { font-size: 24px; }

  /* Product section header wraps cleanly */
  /* .ps-hdr responsive — handled in authoritative block */
  /* Cat hero banner stacks properly */
  .cat-hero-banner {
    gap: 14px;
  }

  /* Article header readable on mobile */
  .article-header {
    padding: calc(var(--hdr-h) + 24px) var(--sp3) var(--sp4);
  }

  /* Footer slim spacing */
  .footer {
    padding: var(--sp6) 0 var(--sp4);
  }
}

@media (max-width: 480px) {
  /* Hero adjustments */
  .hero-ctas { flex-direction: column; }
  .hero-ctas > * { width: 100%; text-align: center; justify-content: center; }

  /* Breadcrumbs readable */
  .bc, .breadcrumb { font-size: 11px; }

  /* Trust grid compact */
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .trust-num  { font-size: 18px; }
  .trust-icon { font-size: 22px; }

  /* Brands served compact */
  .brands-served { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  /* .pg 1fr — handled in authoritative block */
}


/* ── 33r. NOTICE BAR on INTERNAL PAGES ──────────────────── */

/* notice-bar appears between header and .ph on product pages —
   already positioned correctly; ensure it doesn't collapse */
.notice-bar {
  flex-shrink: 0;
}


/* ── 33s. MISC INLINE STYLE CLEANUP ─────────────────────── */

/* Remove reliance on inline style for footer contact padding */
.footer .footer-col-last {
  margin-top: var(--sp4);
}

/* Standardise hover transitions globally */
a, button {
  transition-property: color, background-color, border-color, transform, box-shadow, opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

/* Ensure no orphan content overflow on any component */



/* ── 33t. FOOTER GRID CONTAINER FIX ─────────────────────── */
/* Ensure footer-grid is always max-width constrained with
   auto margin, since many pages wrap it in <footer class="footer">
   but the grid itself was missing the container constraint */
.footer > .footer-grid {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}



/* ═══════════════════════════════════════════════════════════
   34. HERO HEADING CONSISTENCY — v3.2
   Ensures all page hero h1 elements match the large bold
   style of the homepage. Fixes about, contact, service,
   resources, city pages, and industry pages.
   ═══════════════════════════════════════════════════════════ */

/* ── All page-hero h1 — consistent large heading ──────────── */
.page-hero-inner h1,
.page-hero-inner h1.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 16px;
}

.page-hero-inner h1 span,
.page-hero-inner h1 em {
  color: var(--or);
  font-style: normal;
}

/* ── page-hero bottom padding — remove excessive gap ─────── */
.page-hero {
  padding-bottom: var(--sp5);
}

/* ── resources page-hero description ─────────────────────── */
.page-hero-inner .sec-desc {
  font-size: 16px;
  color: var(--tx2);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 12px;
}

/* ── Industry pages (.page-top .hero) — widen content ────── */
/* Content was feeling narrow at 520px max — widened to 640px */
.page-top .hero-sub {
  max-width: 640px;
  font-size: 16px;
}

/* Industry page h1 — ensure large size ──────────────────── */
.page-top .hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 16px;
}

.page-top .hero h1 em {
  color: var(--or);
  font-style: normal;
}

/* ── City pages — page-hero heading ──────────────────────── */
/* City pages now use page-hero-inner so h1 rule above applies */
/* Extra: stats row on city pages */
.page-hero-inner .stats {
  margin-top: var(--sp4);
  padding-top: var(--sp4);
  border-top: 1px solid var(--bd);
}

.page-hero-inner .ctas {
  margin-top: var(--sp4);
}

/* ── .ph h1 — product category pages ─────────────────────── */
.ph-in h1,
.ph-in h1.sec-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 720px;
}

.ph-in h1 span,
.ph-in h1 em {
  color: var(--or);
  font-style: normal;
}

/* ── products.html page-hero — allow wider heading ────────── */
/* Was constrained to 720px — let it breathe on large screens */
.page-hero-inner h1 {
  max-width: 860px;
}

/* ── Consistent lbl (eyebrow) treatment in all heroes ─────── */
.page-hero-inner .lbl,
.ph-in .lbl,
.page-top .hero .lbl {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Mobile adjustments ───────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero-inner h1,
  .page-hero-inner h1.sec-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .page-top .hero h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .ph-in h1,
  .ph-in h1.sec-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .page-hero {
    padding-bottom: var(--sp4);
  }
}

@media (max-width: 480px) {
  .page-hero-inner h1,
  .page-hero-inner h1.sec-title,
  .page-top .hero h1 {
    font-size: 26px;
  }
}




