/* ============================================================
   Razor Pest Control — razorpestcontrol.com.au
   Brand: Charcoal #1B1E22 · Forest Green #1F4D3A · Lime #A6D936
          Warm Off-White #F7F7F4 · Light Gray #E5E7EB
   Type:  Montserrat (headings) · Inter (body)
   ============================================================ */

:root {
  --charcoal: #1B1E22;
  --forest:   #1F4D3A;
  --forest-dark: #163a2b;
  --lime:     #A6D936;
  --lime-dark:#8dbf22;
  --offwhite: #F7F7F4;
  --gray:     #E5E7EB;
  --gray-500: #565d68;
  --white:    #ffffff;

  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -18px rgba(27, 30, 34, .35);
  --shadow-sm: 0 6px 18px -8px rgba(27, 30, 34, .28);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 72px;

  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* skip link (keyboard users) */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--charcoal); color: var(--white);
  padding: 10px 16px; border-radius: 0 0 8px 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  transition: top .15s var(--ease);
}
.skip:focus { top: 0; outline: 2px solid var(--lime); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--offwhite);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: 84px 0; }

/* anchor targets clear the sticky header when jumped to */
#services, #pricing, #why, #commercial, #reviews, #faq, #quote, #top {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.section-head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); margin: 0 0 12px;
}
.section-lead { color: var(--gray-500); font-size: 1.06rem; margin: 12px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), background .18s, box-shadow .18s, color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--lime); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--lime-dark); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-ghost-light { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 247, 244, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand img { height: 44px; width: auto; }
.nav { display: flex; gap: 24px; margin-left: 14px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .93rem;
  color: var(--charcoal); opacity: .8; transition: opacity .15s, color .15s;
}
.nav a:hover { opacity: 1; color: var(--forest); }
.header-cta { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.phone-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 6px;
  font-family: var(--font-head); font-weight: 600; color: var(--forest);
}
.phone-link .ico { width: 18px; height: 18px; fill: var(--forest); }
.phone-link:hover { color: var(--lime-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 15% -10%, rgba(166,217,54,.16), transparent 60%),
    linear-gradient(155deg, var(--forest) 0%, var(--charcoal) 78%);
  color: var(--white);
  padding: 66px 0 88px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("assets/shield.png") no-repeat;
  background-position: right -80px top 40px; background-size: 460px;
  opacity: .05; mix-blend-mode: screen; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center;
  position: relative; z-index: 1;
}
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px; border-radius: 999px; font-size: .85rem; margin-bottom: 22px;
}
.rating-badge .stars { color: var(--lime); letter-spacing: 2px; }
.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em;
}
.hero-copy h1 .accent { color: var(--lime); }
.lead { font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 32em; margin: 18px 0 24px; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0 0 30px; }
.trust-row li {
  position: relative; padding-left: 24px; font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.9);
}
.trust-row li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--charcoal); background: var(--lime);
  width: 17px; height: 17px; border-radius: 50%; font-size: .7rem; font-weight: 700;
  display: grid; place-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Quote card ---------- */
.quote-card {
  background: var(--white); color: var(--charcoal);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.5);
  position: relative; z-index: 1;
}
.quote-offer {
  position: absolute; top: -13px; right: 22px;
  background: var(--lime); color: var(--charcoal);
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.quote-card h2 { font-size: 1.5rem; }
.quote-sub { color: var(--gray-500); font-size: .95rem; margin: 8px 0 20px; }
.field { margin-bottom: 15px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .86rem; margin-bottom: 6px; color: var(--charcoal);
}
.field label .opt { color: var(--gray-500); font-weight: 500; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  padding: 12px 14px; border: 1.5px solid var(--gray); border-radius: var(--radius-sm);
  background: var(--offwhite); transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 76px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa0a6; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--forest); background: var(--white);
  box-shadow: 0 0 0 4px rgba(31,77,58,.12);
}
.field.invalid input, .field.invalid textarea { border-color: #d64545; background: #fdf3f3; }
.field .err { color: #c33; font-size: .78rem; margin: 5px 0 0; }
.form-note { font-size: .78rem; color: var(--gray-500); text-align: center; margin: 12px 0 0; }
.form-status {
  margin: 14px 0 0; padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 500; text-align: center;
}
.form-status.ok { background: #eaf7db; color: #33560f; border: 1px solid #c7e79a; }
.form-status.bad { background: #fdecec; color: #a12626; border: 1px solid #f3c0c0; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--charcoal); color: var(--white); }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  padding: 26px 22px; text-align: center;
}
.tb-item { flex: 1; min-width: 150px; display: flex; flex-direction: column; gap: 2px; }
.tb-item strong {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--lime); line-height: 1;
}
.tb-item span { font-size: .86rem; color: rgba(255,255,255,.72); }

/* ---------- Services ---------- */
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service {
  text-align: left; font-family: inherit; cursor: pointer;
  background: var(--offwhite); border: 1px solid var(--gray);
  border-radius: var(--radius); padding: 22px 20px;
  transition: transform .18s var(--ease), box-shadow .18s, border-color .18s;
  position: relative;
}
.service:hover, .service:focus-visible {
  transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; outline: none;
}
.service:focus-visible { box-shadow: 0 0 0 3px rgba(31,77,58,.35); }
.s-ico {
  display: inline-grid; place-items: center; width: 50px; height: 50px;
  background: var(--white); border-radius: 12px; font-size: 1.55rem;
  box-shadow: var(--shadow-sm); margin-bottom: 14px;
}
.service h3 { font-size: 1.1rem; margin-bottom: 5px; }
.service p { color: var(--gray-500); font-size: .9rem; margin: 0 0 10px; }
.service .more {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--forest);
  display: inline-flex; align-items: center; gap: 5px;
}
.service .more::after { content: "→"; transition: transform .15s; }
.service:hover .more::after { transform: translateX(3px); }
.services-hint { text-align: center; margin: 34px 0 0; color: var(--gray-500); }
.services-hint a { color: var(--forest); font-weight: 600; text-decoration: underline; }

/* ---------- Pricing ---------- */
.pricing { background: var(--offwhite); }
.offer-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--forest), var(--forest-dark));
  color: var(--white); border-radius: var(--radius); padding: 20px 26px; margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}
.offer-banner strong { font-family: var(--font-head); font-size: 1.1rem; display: block; }
.offer-banner span { color: rgba(255,255,255,.82); font-size: .95rem; }
.price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.price-card {
  background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
  padding: 24px 20px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border-color: var(--lime); box-shadow: var(--shadow-sm); }
.pc-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--charcoal); font-family: var(--font-head);
  font-weight: 700; font-size: .72rem; padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.02rem; min-height: 2.4em; display: flex; align-items: center; }
.price-from {
  font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--forest);
  margin: 6px 0 10px; line-height: 1;
}
.price-from span:not([data-price]) { display: block; font-size: .72rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; }
/* Live-pricing hooks render inline at the full price size (never the small "from" label). */
.price-from [data-price] { display: inline; font-size: inherit; font-weight: inherit; color: inherit; text-transform: none; letter-spacing: normal; }
/* Header: primary 1300 landline with the mobile shown beneath it. */
.phone-nums { display: inline-flex; flex-direction: column; line-height: 1.15; text-align: left; }
.phone-nums small { font-size: .72rem; font-weight: 500; color: var(--gray-500); }
.price-desc { color: var(--gray-500); font-size: .88rem; margin: 0 0 18px; flex: 1; }
.pricing-foot { text-align: center; margin: 28px 0 0; color: var(--gray-500); }
.pricing-foot strong { color: var(--charcoal); }

/* ---------- Why us ---------- */
.why { background: var(--white); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar { text-align: center; padding: 6px; }
.p-ico {
  width: 66px; height: 66px; margin: 0 auto 16px; display: grid; place-items: center;
  font-size: 1.8rem; border-radius: 50%;
  background: var(--offwhite); border: 2px solid var(--forest); box-shadow: var(--shadow-sm);
}
.pillar h3 { color: var(--forest); font-size: 1.16rem; margin-bottom: 8px; }
.pillar p { color: var(--gray-500); font-size: .93rem; margin: 0; }
.how-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 46px; padding-top: 40px; border-top: 1px solid var(--gray);
}
.how-step { display: flex; gap: 14px; align-items: flex-start; }
.how-num {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--lime); color: var(--charcoal); font-family: var(--font-head); font-weight: 800;
  display: grid; place-items: center; font-size: 1.05rem;
}
.how-step strong { font-family: var(--font-head); display: block; margin-bottom: 3px; }
.how-step p { margin: 0; color: var(--gray-500); font-size: .9rem; }

/* ---------- Commercial ---------- */
.commercial { background: var(--offwhite); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sector {
  background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .18s var(--ease), box-shadow .18s;
}
.sector:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.sector span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.sector h3 { font-size: 1.08rem; color: var(--forest); margin-bottom: 6px; }
.sector p { color: var(--gray-500); font-size: .9rem; margin: 0; }
.commercial-cta { text-align: center; margin-top: 36px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); padding-bottom: 70px; }
.reviews .section-head { margin-bottom: 22px; }
.reviews-lead.is-sample, .section-lead.is-sample {
  background: #fff7e6; border: 1px solid #f0d79a; color: #7a5b12;
  border-radius: var(--radius-sm); padding: 10px 16px; display: inline-block;
}
.reviews-controls { text-align: center; margin-bottom: 8px; }
.review-pause {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  background: var(--offwhite); border: 1.5px solid var(--gray); color: var(--charcoal);
  border-radius: 999px; padding: 7px 18px; min-height: 40px; cursor: pointer;
}
.review-pause:hover { border-color: var(--forest); color: var(--forest); }
.review-pause:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.review-viewport { overflow: hidden; }
.review-track {
  display: flex; gap: 20px; width: max-content;
  padding: 8px 22px 22px;
  animation: marquee 52s linear infinite;
}
.review-track:hover, .review-track:focus-within, .review-track:focus { animation-play-state: paused; }
.review-track:focus-visible { outline: 2px solid var(--forest); outline-offset: -2px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  width: 340px; flex: 0 0 340px;
  background: var(--offwhite); border: 1px solid var(--gray);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
}
.rc-head { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px;
  display: grid; place-items: center; color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.rc-meta { flex: 1; min-width: 0; }
.rc-name { font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.rc-date { color: var(--gray-500); font-size: .8rem; }
.rc-stars { color: #fbbc05; letter-spacing: 1px; font-size: 1rem; }
.rc-body { color: #3a3f45; font-size: .95rem; margin: 0; }
.rc-foot { display: flex; align-items: center; gap: 7px; color: var(--gray-500); font-size: .8rem; margin-top: auto; }
.reviews-cta { text-align: center; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { background: var(--offwhite); }
.faq-inner { max-width: 780px; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius-sm); overflow: hidden; }
.acc-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--charcoal);
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.acc-ico { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.acc-ico::before, .acc-ico::after {
  content: ""; position: absolute; background: var(--forest); border-radius: 2px;
  transition: transform .2s var(--ease);
}
.acc-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc-ico::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.acc-item.open .acc-ico::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .28s var(--ease); }
.acc-a p { margin: 0; padding: 0 20px 18px; color: var(--gray-500); font-size: .96rem; }

/* ---------- Area + credentials strip ---------- */
.area-strip { background: var(--charcoal); color: var(--white); }
.area-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 34px; align-items: center;
  padding: 44px 22px;
}
.area-suburbs h3 { font-size: 1.2rem; margin-bottom: 8px; }
.area-suburbs p { color: rgba(255,255,255,.72); margin: 0; font-size: .95rem; }
.credentials { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.credentials li { font-size: .92rem; color: rgba(255,255,255,.9); }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(120deg, var(--forest) 0%, var(--forest-dark) 100%); color: var(--white); }
.final-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: 54px 22px; flex-wrap: wrap;
}
.final-inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.final-inner p { color: rgba(255,255,255,.82); margin: 8px 0 0; }
.final-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 58px 22px 34px; }
.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; max-width: 34em; margin: 0 0 10px; }
.footer-abn { font-size: .84rem !important; color: rgba(255,255,255,.5); }
.footer-col h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a:hover { color: var(--lime); }
.footer-bar {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 20px 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem;
}
.footer-bar .muted { color: rgba(255,255,255,.5); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; gap: 12px; padding: 12px 16px;
  background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.12);
}
.mobile-bar .btn { flex: 1; }

/* ---------- Service detail modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(27,30,34,.6); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 20px;
  animation: fade .18s var(--ease);
}
/* `hidden` attr must win over the display:grid above (class beats UA [hidden]) */
.modal-overlay[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--white); border-radius: var(--radius); max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 30px; position: relative;
  box-shadow: var(--shadow); animation: pop .2s var(--ease);
}
@keyframes pop { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute; top: 10px; right: 10px; background: none; border: none;
  width: 44px; height: 44px; display: grid; place-items: center;
  font-size: 1.9rem; line-height: 1; color: var(--gray-500); cursor: pointer; border-radius: 8px;
}
.modal-close:hover { color: var(--charcoal); }
.modal-close:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.modal-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.modal-ico {
  display: inline-grid; place-items: center; width: 58px; height: 58px; flex: 0 0 58px;
  background: var(--offwhite); border-radius: 14px; font-size: 1.9rem;
}
.modal-head h3 { font-size: 1.4rem; }
.modal-price { font-family: var(--font-head); font-weight: 700; color: var(--forest); margin: 4px 0 0; }
.modal-desc { color: #3a3f45; margin: 0 0 20px; }
.modal-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 24px; }
.modal-cols h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--forest); margin-bottom: 10px; }
.modal-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.modal-cols li { position: relative; padding-left: 22px; font-size: .92rem; color: #3a3f45; }
.modal-cols li::before { content: "✓"; position: absolute; left: 0; color: var(--lime-dark); font-weight: 700; }
body.modal-open { overflow: hidden; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .how-strip { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .area-inner { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 720px) {
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  .nav { display: none; }
  .header-cta .phone-link span { display: none; }
  .section { padding: 58px 0; }
  .hero { padding: 44px 0 66px; }
  .trust-bar-inner { gap: 20px 10px; }
  .tb-item { min-width: 44%; }
  .offer-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .final-inner { flex-direction: column; align-items: flex-start; }
  .modal-cols { grid-template-columns: 1fr; gap: 16px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 66px; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .final-actions .btn { width: 100%; }
  .price-card h3 { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .review-track { animation: none; }
  .review-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .reviews-controls { display: none; } /* nothing to pause when static */
  .btn:hover, .service:hover, .sector:hover { transform: none; }
}

/* ============================================================
   Interior pages (service / location landing pages)
   ============================================================ */
.breadcrumb { font-size: .82rem; }
.breadcrumb a { color: var(--forest); }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(900px 460px at 12% -10%, rgba(166,217,54,.16), transparent 60%),
    linear-gradient(155deg, var(--forest) 0%, var(--charcoal) 82%);
  padding: 34px 0 60px;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("assets/shield.png") no-repeat; background-position: right -60px top 20px;
  background-size: 380px; opacity: .05; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,.72); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin: 16px 0 0; max-width: 18em; }
.page-hero .lead { color: rgba(255,255,255,.85); max-width: 42em; margin: 16px 0 26px; }

.prose { max-width: 760px; }
.prose > p { margin: 0 0 18px; color: #3a3f45; font-size: 1.04rem; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 36px 0 12px; }
.prose h3 { font-size: 1.14rem; margin: 24px 0 8px; color: var(--forest); }
.prose ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 9px; color: #3a3f45; }
.prose ul li::before { content: "✔"; position: absolute; left: 0; color: var(--lime-dark); font-weight: 700; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { background: var(--offwhite); border: 1px solid var(--gray); border-radius: var(--radius); padding: 22px; }
.value .v-ico { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.value h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 6px; }
.value p { color: var(--gray-500); font-size: .92rem; margin: 0; }

.page-cta-note { text-align: center; margin: 22px auto 0; color: var(--gray-500); max-width: 40em; }

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

/* interactive sector tiles (homepage business section) */
button.sector { font: inherit; text-align: left; width: 100%; cursor: pointer; }
button.sector:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(31,77,58,.35); }
.sector .more { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--forest); display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; }
.sector .more::after { content: "→"; transition: transform .15s; }
button.sector:hover .more::after { transform: translateX(3px); }

/* static reviews grid (/reviews/ page) */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-grid .review-card { width: auto; flex: none; }
