/*
Theme Name: B2B Accountants
Theme URI: https://b2baccountants.com.au/
Author: B2B Accountants
Description: Custom Australian accounting, tax and advisory website theme.
Version: 1.0.0
Text Domain: b2baccountants
*/

:root {
  --ink: #172019;
  --green: #1d2a22;
  --green-2: #243a2d;
  --red: #b51f2a;
  --red-dark: #85151d;
  --gold: #c99a2e;
  --gold-soft: #f5e8c9;
  --white: #ffffff;
  --paper: #fbfaf7;
  --muted: #68746b;
  --line: rgba(29, 42, 34, .14);
  --shadow: 0 24px 70px rgba(23, 32, 25, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-shell { overflow: clip; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.wide { width: min(1320px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section { padding: 92px 0; }
.section.alt { background: var(--white); }
.section.dark { background: var(--green); color: var(--white); }
.section-head { display: grid; gap: 12px; max-width: 760px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2, .page-title h1, .hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: 0;
}
.section-head h2 { font-size: clamp(34px, 4vw, 56px); }
.section-head p, .lead { color: var(--muted); font-size: 18px; margin: 0; }
.dark .section-head p, .dark .lead { color: rgba(255,255,255,.74); }

.topbar {
  display: none;
  background: var(--green);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; min-width: 218px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; }
.brand small { color: var(--muted); font-weight: 700; font-size: 12px; }
.nav-menu { display: flex; align-items: center; justify-content: center; gap: 8px; align-self: stretch; }
.nav-link {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #26322b;
  font-weight: 750;
  font-size: 15px;
}
.nav-link:hover, .nav-link.active { background: var(--gold-soft); color: var(--red-dark); }
.mega-trigger { position: static; align-self: stretch; display: flex; align-items: center; }
.mega-trigger:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 82px;
  height: 28px;
  display: none;
}
.mega-trigger:hover:after, .mega-trigger:focus-within:after { display: block; }
.mega {
  position: fixed;
  left: 50vw;
  top: 92px;
  z-index: 200;
  width: min(1080px, calc(100vw - 80px));
  max-height: calc(100svh - 118px);
  overflow: auto;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px;
  transition: .2s ease;
}
.mega-trigger:hover .mega, .mega-trigger:focus-within .mega, .mega-trigger.mega-open .mega { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.mega-group { background: #fbfaf7; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.mega-title { display: flex; align-items: center; gap: 10px; font-weight: 900; margin-bottom: 10px; color: var(--green); }
.icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  flex: 0 0 auto;
}
.mega-group a { display: block; color: var(--muted); padding: 6px 0; font-weight: 700; font-size: 13px; line-height: 1.45; }
.mega-group a:hover { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn, .menu-toggle, .icon-btn {
  border: 0;
  cursor: pointer;
  border-radius: var(--radius);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
}
.btn { padding: 0 18px; background: var(--red); color: var(--white); box-shadow: 0 12px 22px rgba(181,31,42,.22); }
.btn:hover { background: var(--red-dark); }
.btn.secondary { background: var(--green); color: var(--white); box-shadow: none; }
.btn.ghost { background: transparent; color: var(--green); border: 1px solid var(--line); box-shadow: none; }
.menu-toggle, .icon-btn { width: 46px; background: var(--green); color: var(--white); display: none; }

.hero {
  height: calc(100svh - 88px);
  min-height: 500px;
  max-height: 760px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23,32,25,.92) 0%, rgba(23,32,25,.78) 45%, rgba(23,32,25,.2) 100%),
    var(--hero-image) center/cover no-repeat;
  color: var(--white);
  padding: 28px 0;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 620px) minmax(240px, 360px); gap: 38px; align-items: center; }
.hero-copy h1 { font-size: clamp(40px, 4.2vw, 64px); max-width: 640px; line-height: .98; }
.hero-copy p { color: rgba(255,255,255,.82); font-size: clamp(16px, 1.25vw, 18px); max-width: 590px; margin: 16px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-panel {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-panel strong { display: block; font-size: 28px; line-height: 1; color: var(--red); }
.hero-panel p { color: var(--muted); margin: 8px 0 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.stat { border-left: 3px solid var(--gold); padding-left: 14px; }
.stat b { display: block; font-size: 21px; }
.stat span { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.35; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 44px rgba(23,32,25,.06);
}
.card.dark-card { background: var(--green); color: var(--white); }
.card h3 { margin: 14px 0 8px; font-size: 23px; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); }
.dark-card p { color: rgba(255,255,255,.72); }
.card-link { margin-top: 18px; display: inline-flex; font-weight: 900; color: var(--red); }
.mini-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.mini-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--green);
  background: #fffdf9;
  font-weight: 800;
  font-size: 13px;
}
.mini-links a:hover { color: var(--red); background: var(--gold-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 520px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.workflow { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.workflow-media { min-height: 430px; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.workflow-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.workflow-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.workflow-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.workflow-step b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  margin-bottom: 14px;
}
.workflow-step h3 { margin: 0 0 8px; font-size: 21px; }
.workflow-step p { margin: 0; color: var(--muted); }
.gold-note {
  background: var(--gold);
  color: var(--green);
  padding: 22px;
  border-radius: var(--radius);
  font-weight: 850;
  margin-top: 24px;
}
.ticks { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.ticks li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.ticks li:before { content: "OK"; color: var(--white); background: var(--red); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 9px; }

.page-hero {
  background: linear-gradient(135deg, var(--green), #101711);
  color: var(--white);
  padding: 82px 0 58px;
}
.breadcrumbs { color: rgba(255,255,255,.68); font-size: 14px; margin-bottom: 18px; }
.breadcrumbs a { color: var(--gold-soft); }
.page-title { display: grid; grid-template-columns: 1fr minmax(260px, 380px); gap: 40px; align-items: end; }
.page-title h1 { font-size: clamp(42px, 5vw, 72px); }
.page-title p { color: rgba(255,255,255,.74); margin: 0; font-size: 19px; }
.service-layout { display: grid; grid-template-columns: 1fr 330px; gap: 34px; align-items: start; }
.content-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 46px);
}
.content-panel h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.12; margin: 0 0 14px; }
.content-panel h3 { margin: 30px 0 10px; font-size: 24px; }
.content-panel p { color: var(--muted); }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.content-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fffdf9;
}
.content-box h3 { margin-top: 0; }
.sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}
.side-card { background: var(--green); color: var(--white); border-radius: var(--radius); padding: 22px; }
.side-card a { color: var(--gold-soft); font-weight: 900; display: block; margin-top: 8px; }
.service-list { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-list a { display: flex; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 750; }
.service-list a:last-child { border-bottom: 0; }
.service-list a:hover, .service-list a.active { color: var(--red); background: var(--gold-soft); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.contact-methods { display: grid; gap: 14px; }
.method { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; gap: 14px; }
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; color: var(--muted); font-weight: 750; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffdf9;
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }

.site-footer { background: #101711; color: var(--white); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 34px; }
.footer-brand img { width: 72px; margin-bottom: 12px; }
.footer-grid h3 { margin: 0 0 14px; color: var(--gold-soft); }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.68); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.52); }

.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,15,12,.54);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.offcanvas {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(430px, 92vw);
  background: var(--white);
  z-index: 100;
  transform: translateX(100%);
  transition: .25s ease;
  padding: 20px;
  overflow-y: auto;
}
body.menu-open .offcanvas { transform: translateX(0); }
body.menu-open .offcanvas-backdrop { opacity: 1; pointer-events: auto; }
.off-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.off-head img { width: 58px; }
.off-links { display: grid; gap: 8px; }
.off-links a, .off-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-weight: 850;
  background: #fffdf9;
}
.off-group { margin-top: 8px; }
.off-sub { display: grid; gap: 6px; padding: 8px 0 0 16px; }
.off-sub a { font-size: 14px; color: var(--muted); }
.close-menu { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: var(--radius); background: var(--green); color: var(--white); cursor: pointer; }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-menu { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .hero-grid, .split, .page-title, .service-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 0; }
  .hero-panel { max-width: 420px; }
  .sidebar { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .mega { display: none; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-links { display: none; }
  .brand { min-width: 0; }
  .brand span { display: none; }
  .hero { padding: 44px 0 34px; min-height: 0; }
  .hero-copy h1 { font-size: 42px; }
  .stats, .cards, .form-grid, .content-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .media-frame { min-height: 360px; }
  .section { padding: 64px 0; }
  .footer-bottom { display: grid; }
}

/* =====================================================
   ANIMATIONS — progressive enhancement
   (.js class added by JS so elements stay visible if JS fails)
   ===================================================== */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .62s ease, transform .62s ease;
  transition-delay: var(--delay, 0s);
}
html.js .reveal.in-view { opacity: 1; transform: none; }

/* =====================================================
   HERO ENHANCEMENTS
   ===================================================== */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.hero-badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.9);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.hero-panel-actions .btn.ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--line);
  box-shadow: none;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.statsbar {
  background: var(--green);
  color: var(--white);
  padding: 36px 0;
  border-bottom: 4px solid var(--gold);
}
.statsbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.statsbar-item b {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
}
.statsbar-item span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.68);
  margin-top: 7px;
  font-weight: 600;
}

/* =====================================================
   KEYWORD MARQUEE STRIP
   ===================================================== */
.keyword-strip {
  background: var(--gold-soft);
  border-top: 1px solid rgba(201,154,46,.25);
  border-bottom: 1px solid rgba(201,154,46,.25);
  padding: 16px 0;
  overflow: hidden;
}
.keyword-strip-inner {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: ks-scroll 36s linear infinite;
}
.keyword-strip span {
  font-weight: 800;
  font-size: 12px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .1em;
  flex-shrink: 0;
}
.keyword-strip span::before { content: "● "; color: var(--gold); }
@keyframes ks-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   WHO WE HELP — CLIENT GRID
   ===================================================== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease;
}
.client-card:hover { box-shadow: 0 14px 40px rgba(23,32,25,.1); transform: translateY(-3px); }
.client-card .icon { margin: 0 auto 12px; }
.client-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--green); }
.client-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* =====================================================
   SERVICE DEEP DIVE
   ===================================================== */
.service-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}
.service-deep-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.service-deep-card:hover { box-shadow: 0 18px 50px rgba(23,32,25,.1); transform: translateY(-3px); }
.service-deep-card .icon { margin-bottom: 16px; }
.service-deep-card h3 { margin: 0 0 10px; font-size: 20px; color: var(--green); }
.service-deep-card > p { color: var(--muted); margin: 0 0 18px; line-height: 1.65; }
.service-deep-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 9px; }
.service-deep-card li { color: var(--muted); font-size: 14px; padding-left: 22px; position: relative; line-height: 1.45; }
.service-deep-card li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.service-deep-card .card-link { display: inline-flex; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.why-card:hover { box-shadow: 0 14px 40px rgba(23,32,25,.09); transform: translateY(-3px); }
.why-card .icon { margin-bottom: 14px; }
.why-card h3 { margin: 0 0 10px; font-size: 18px; color: var(--green); }
.why-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-size: 72px;
  color: var(--gold);
  line-height: .8;
  font-family: Georgia, serif;
  position: absolute;
  top: 18px;
  left: 22px;
  opacity: .5;
}
.testimonial > p { color: var(--muted); margin: 32px 0 18px; font-style: italic; line-height: 1.7; font-size: 15px; }
.testimonial-author { font-weight: 900; font-size: 14px; color: var(--green); }
.testimonial-role { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.faq-item.open { box-shadow: 0 8px 28px rgba(23,32,25,.08); border-color: rgba(201,154,46,.4); }
.faq-q {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--green);
  box-sizing: border-box;
  line-height: 1.4;
}
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.faq-q svg { flex: 0 0 auto; transition: transform .3s ease; color: var(--gold); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 22px; }
.faq-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.faq-cta p { margin: 0; color: var(--muted); font-weight: 700; }

/* Hover lift for cards globally */
.card { transition: box-shadow .25s ease, transform .25s ease; }
.card:hover { box-shadow: 0 18px 50px rgba(23,32,25,.1); transform: translateY(-3px); }

/* =====================================================
   RESPONSIVE — NEW COMPONENTS
   Must live AFTER base styles so cascade is correct
   ===================================================== */
@media (max-width: 980px) {
  .statsbar-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .service-deep { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .statsbar-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .hero-badges { display: none; }
}
@media (max-width: 480px) {
  .statsbar-grid, .client-grid { grid-template-columns: 1fr; }
}
