/* ============================================================
   TopFix Repair — Landing Page Styles
   Brand palette:
   --forest  #1A5C3A  (Primary)
   --sea      #2E8B57  (Accent)
   --mint     #5FBA7A  (Highlight)
   --white    #F0F7F2  (Background)
   ============================================================ */

:root {
  --forest: #1A5C3A;
  --forest-dark: #134129;
  --sea: #2E8B57;
  --mint: #5FBA7A;
  --mint-soft: #cfe8d7;
  --bg: #F0F7F2;
  --white: #ffffff;
  --ink: #14241b;
  --muted: #4d6357;
  --line: #d9e7df;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(20, 65, 41, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 65, 41, 0.18);
  --container: 1180px;

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }

/* Section headings in uppercase site-wide */
h1, h2 { text-transform: uppercase; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background:
    radial-gradient(700px 400px at 50% 30%, rgba(95,186,122,.18), transparent 60%),
    var(--bg);
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-gear { width: 96px; height: 96px; color: var(--forest); animation: hero-spin 1.3s linear infinite; }
.preloader-gear path, .preloader-gear circle { vector-effect: non-scaling-stroke; }
.preloader-text { font-family: 'Montserrat', var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--forest); text-transform: uppercase; letter-spacing: -0.03em; }
.preloader-text span { color: var(--sea); }
.no-scroll { overflow: hidden; }

/* ---------- Booking modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(20, 36, 27, .55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  animation: modalFade .25s ease;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 32px 30px; width: 100%; max-width: 440px; max-height: 92vh; overflow: auto;
  box-shadow: var(--shadow-lg); animation: modalPop .28s cubic-bezier(.2,.7,.3,1);
}
.modal h2 { color: var(--forest); font-size: 1.5rem; }
.modal-sub { color: var(--muted); font-size: .95rem; margin: 6px 0 20px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border: none; background: var(--bg); border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: var(--muted); transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--mint-soft); color: var(--forest); }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

/* ---------- 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: 13px 24px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 8px 20px rgba(26,92,58,.28); }
.btn-primary:hover { background: var(--forest-dark); box-shadow: 0 12px 28px rgba(26,92,58,.36); transform: translateY(-2px); }

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

.btn-light { background: #fff; color: var(--forest); }
.btn-light:hover { background: var(--bg); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--forest); }

.btn-ghost { background: var(--mint-soft); color: var(--forest); }
.btn-ghost:hover { background: var(--mint); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 2000;
  background: rgba(240, 247, 242, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(12px); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img { height: 52px; width: auto; display: block; }
.site-footer .logo-img { height: 64px; }
.site-footer .logo-text { font-size: 1.4rem; }
/* footer: stack text under the icon, icon centered above (like the logo lockup) */
.site-footer .logo { flex-direction: column; align-items: center; gap: 8px; }
.logo-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--forest); color: var(--mint); border-radius: 11px;
}
.logo-text { font-family: 'Montserrat', var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--forest); text-transform: uppercase; letter-spacing: -0.03em; }
.logo-text span { color: var(--sea); }
.logo-light .logo-text { color: #fff; }
.logo-light .logo-text span { color: var(--mint); }
.logo-light .logo-mark { background: rgba(255,255,255,.12); color: var(--mint); }

.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 500; font-size: .97rem; color: var(--muted); position: relative; padding: 4px 0;
}
.main-nav a:hover { color: var(--forest); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--sea); transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

/* Services dropdown */
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.main-nav .caret { transition: transform .25s ease; }
.main-nav .has-dropdown:hover .caret,
.main-nav .has-dropdown:focus-within .caret { transform: rotate(180deg); }
/* invisible bridge so hover survives the gap to the menu */
.main-nav .has-dropdown::after {
  content: ''; position: absolute; left: -12px; right: -12px; top: 100%; height: 16px;
}
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 290px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease; z-index: 130;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li + li { border-top: 1px solid rgba(217,231,223,.6); }
.dropdown a {
  display: block; padding: 15px 18px; border-radius: 11px;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--ink);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--mint-soft); color: var(--forest); padding-left: 22px; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--forest); font-family: var(--font-head); }
.phone-link:hover { color: var(--sea); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--forest); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line); background: var(--bg); padding: 18px 22px 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.mobile-menu a { display: block; padding: 11px 4px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(95,186,122,.28), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(46,139,87,.18), transparent 55%),
    var(--bg);
  padding: 70px 0 84px;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

/* ---------- Hero animated background ---------- */
.hero-anim { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-anim .gear { position: absolute; color: var(--sea); stroke-width: 1.9px; }
.hero-anim .gear path, .hero-anim .gear circle { vector-effect: non-scaling-stroke; }
.gear-1 { top: -70px; right: -50px; width: 320px; opacity: .22; animation: hero-spin 42s linear infinite; }
.gear-2 { bottom: -80px; left: 6%; width: 210px; color: var(--mint); opacity: .28; animation: hero-spin-rev 34s linear infinite; }
.gear-3 { top: 36%; right: 28%; width: 140px; opacity: .20; animation: hero-spin 28s linear infinite; }

@keyframes hero-spin { to { transform: rotate(360deg); } }
@keyframes hero-spin-rev { to { transform: rotate(-360deg); } }

.hero-anim .float {
  position: absolute; bottom: -50px; color: var(--sea); opacity: 0;
  animation-name: hero-floatUp; animation-timing-function: linear; animation-iteration-count: infinite;
}
.hero-anim .float svg { width: 100%; height: 100%; display: block; }
@keyframes hero-floatUp {
  0%   { transform: translateY(30px) rotate(0deg); opacity: 0; }
  12%  { opacity: .30; }
  85%  { opacity: .30; }
  100% { transform: translateY(-520px) rotate(70deg); opacity: 0; }
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint-soft); color: var(--forest);
  font-weight: 600; font-size: .85rem; padding: 7px 14px; border-radius: 999px;
  font-family: var(--font-head); margin-bottom: 22px;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sea); box-shadow: 0 0 0 4px rgba(46,139,87,.2); }

.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.65rem); letter-spacing: -1px; line-height: 1.1;
  color: var(--forest); margin-bottom: 20px;
}
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-trust li { font-size: .95rem; color: var(--muted); }
.hero-trust strong { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--forest); }

/* Hero booking card */
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-lg); scroll-margin-top: 100px;
}
.hero-card h2 { font-size: 1.5rem; color: var(--forest); }
.hero-card-sub { color: var(--muted); font-size: .95rem; margin: 6px 0 22px; }
.book-form { display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field[hidden] { display: none; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select {
  font-family: var(--font-body); font-size: 1rem; padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(46,139,87,.15); background: #fff;
}
.form-note { font-size: .78rem; color: var(--muted); text-align: center; }
.form-note a { color: var(--sea); font-weight: 700; text-decoration: underline; }
.form-note a:hover { color: var(--forest); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--forest); color: #fff; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 20px 22px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-head); font-size: 1rem; }
.trust-ico {
  width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%;
  background: var(--mint); color: var(--forest-dark); font-size: .8rem; font-weight: 700;
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head-left { text-align: left; margin: 0 0 32px; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem;
  color: var(--sea); margin-bottom: 12px;
}
.eyebrow-light { color: var(--mint); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--forest); letter-spacing: -.6px; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* ---------- Card grids ---------- */
.card-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }
.reviews-grid { grid-template-columns: repeat(2, 1fr); }

.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--mint);
}
.why-ico {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  background: var(--mint-soft); border-radius: 14px; font-size: 1.6rem; margin-bottom: 16px;
}
.why-card h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Service cards (compact squircle style) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.services-grid li { display: flex; }
.service-card {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%;
  background: #fff; border: none;
  border-radius: 38px 38px 38px 12px; padding: 36px 22px 28px;
  box-shadow: 0 16px 36px rgba(20,65,41,.10);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
/* inner rim / ободок */
.service-card::after {
  content: ''; position: absolute; inset: 8px; pointer-events: none;
  border: 1.5px solid rgba(26,92,58,.22);
  border-radius: 30px 30px 30px 8px;
  transition: border-color .3s ease;
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 30px 56px rgba(20,65,41,.18);
  outline: none;
}
.service-card:hover::after, .service-card:focus-visible::after { border-color: var(--mint); }

.service-ico {
  display: inline-grid; place-items: center; width: 70px; height: 70px;
  color: var(--forest); margin-bottom: 16px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), color .3s ease;
}
.service-ico svg { width: 38px; height: 38px; }
.service-card:hover .service-ico, .service-card:focus-visible .service-ico {
  transform: translateY(-2px) scale(1.08); color: var(--sea);
}

.service-card h3 {
  font-size: 1.12rem; color: var(--ink); margin-bottom: 12px; transition: color .3s ease;
}
.service-card:hover h3, .service-card:focus-visible h3 { color: var(--forest); }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--sea);
  opacity: .85; transition: gap .25s ease, opacity .25s ease;
}
.service-link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.service-card:hover .service-link, .service-card:focus-visible .service-link { opacity: 1; gap: 10px; }
.service-card:hover .service-link svg, .service-card:focus-visible .service-link svg { transform: translateX(3px); }

/* Arch layout — cards arranged along a curve (desktop only) */
@media (min-width: 1001px) {
  .services-grid {
    display: flex; flex-wrap: nowrap; align-items: flex-start; justify-content: center;
    gap: 16px; padding-top: 12px; padding-bottom: 110px;
  }
  .services-grid li { flex: 1 1 0; min-width: 0; transition: transform .35s cubic-bezier(.2,.7,.3,1); }
  .service-card { padding: 28px 14px 22px; border-radius: 32px 32px 32px 10px; }
  .service-card::after { inset: 7px; border-radius: 26px 26px 26px 7px; }
  .service-ico { width: 58px; height: 58px; margin-bottom: 12px; }
  .service-ico svg { width: 34px; height: 34px; }
  .service-card h3 { font-size: 1rem; margin-bottom: 10px; }
  .service-link { font-size: .85rem; }

  /* parabolic offsets: high in the middle, lower toward the edges (7 cards) */
  .services-grid li:nth-child(1) { transform: translateY(100px); }
  .services-grid li:nth-child(2) { transform: translateY(48px); }
  .services-grid li:nth-child(3) { transform: translateY(10px); }
  .services-grid li:nth-child(4) { transform: translateY(10px); }
  .services-grid li:nth-child(5) { transform: translateY(48px); }
  .services-grid li:nth-child(6) { transform: translateY(100px); }
}

/* ---------- How it works (staircase) ---------- */
.stairway { position: relative; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  align-items: end; padding: 170px 0 28px; padding-left: 150px;
}
.steps-grid .step { position: relative; list-style: none; display: flex; flex-direction: column; align-items: center; text-align: center; }
/* staircase rises up toward the right */
.steps-grid .step:nth-child(1) { transform: translateY(0); }
.steps-grid .step:nth-child(2) { transform: translateY(-54px); }
.steps-grid .step:nth-child(3) { transform: translateY(-108px); }
.steps-grid .step:nth-child(4) { transform: translateY(-162px); }

/* the step "block" — flat top with a thick 3D edge */
.step-plate {
  position: relative; width: 100%; max-width: 220px; min-height: 78px;
  display: grid; place-items: center; padding: 16px 18px; border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4f0 100%);
  box-shadow: 0 12px 0 0 #d2e3d8, 0 28px 26px rgba(20,65,41,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover .step-plate {
  transform: translateY(-5px);
  box-shadow: 0 12px 0 0 #d2e3d8, 0 36px 32px rgba(20,65,41,.24);
}
.step-title {
  font-family: 'Montserrat', var(--font-head); font-weight: 800; letter-spacing: -.01em;
  font-size: 1.18rem; line-height: 1.2; color: var(--forest); text-align: center;
}
.step-desc { margin: 26px auto 0; color: var(--muted); font-size: .94rem; max-width: 220px; text-align: center; }

/* walking person photo — anchored to the first step */
.walker {
  position: absolute; left: -140px; bottom: calc(100% - 26px); width: 250px; height: auto; z-index: 4;
  pointer-events: none; animation: walk-bob 1.9s ease-in-out infinite;
}
@keyframes walk-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px 18px; padding: 10px 0 0; align-items: stretch; }
  .steps-grid .step { transform: none !important; }
  .walker { display: none; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Commercial ---------- */
.commercial {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(95,186,122,.18), transparent 60%),
    var(--forest);
  color: #fff;
}
.commercial-top { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; margin-bottom: 44px; }
.commercial-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: #fff; margin-bottom: 18px; letter-spacing: -.6px; }

/* commercial photo + floating badge */
.commercial-media { position: relative; }
.commercial-img {
  width: 100%; height: 100%; min-height: 440px; max-height: 580px;
  object-fit: cover; display: block; border-radius: 22px;
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.commercial-badge {
  position: absolute; left: 18px; top: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.94); -webkit-backdrop-filter: saturate(160%) blur(6px); backdrop-filter: saturate(160%) blur(6px);
  color: var(--forest); font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  padding: 9px 16px; border-radius: 999px; box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.commercial-badge .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--sea);
  box-shadow: 0 0 0 4px rgba(46,139,87,.25);
}
.commercial-copy > p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin-bottom: 30px; }
.commercial-copy strong { color: var(--mint); }

.commercial-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-bottom: 34px; }
.commercial-list li { padding-left: 18px; border-left: 3px solid var(--mint); }
.commercial-list h3 { font-size: 1.08rem; color: #fff; margin-bottom: 4px; }
.commercial-list p { color: rgba(255,255,255,.78); font-size: .92rem; }

.commercial-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* CTA must pop on the dark-green background */
.commercial-actions .btn-primary {
  background: var(--mint); color: var(--forest-dark);
  box-shadow: 0 10px 26px rgba(95,186,122,.4);
}
.commercial-actions .btn-primary:hover {
  background: #74c98c; color: var(--forest-dark);
  box-shadow: 0 14px 32px rgba(95,186,122,.5);
}

.commercial-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px 22px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.stat:hover {
  transform: translateY(-4px) scale(1.025);
  background: rgba(255,255,255,.12);
  border-color: rgba(95,186,122,.45);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.stat strong { display: block; font-family: var(--font-head); font-size: 2.1rem; color: var(--mint); margin-bottom: 4px; }
.stat span { color: rgba(255,255,255,.82); font-size: .92rem; }

/* ---------- Brands ---------- */
.brand-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.brand-grid li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 12px; text-align: center; font-family: var(--font-head); font-weight: 600;
  color: var(--forest); font-size: 1.05rem; transition: .2s; letter-spacing: -.3px;
}
.brand-grid li:hover { background: var(--forest); color: #fff; transform: translateY(-3px); }
/* Animated wrench + brand marquee */
.brands-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; margin: 24px 0 30px; }
.brands-wrench-wrap { position: relative; display: grid; place-items: center; }
.brands-wrench-wrap::before {
  content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95,186,122,.22), transparent 68%); z-index: 0;
}
.brands-wrench {
  position: relative; z-index: 1; width: clamp(130px, 18vw, 180px); height: auto;
  transform-origin: 50% 50%; animation: wrench-rock 3.6s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(20,65,41,.22));
}
.brands-wrench svg { width: 100%; height: 100%; display: block; }
@keyframes wrench-rock { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }

.brands-we-fix {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2px;
  font-size: .82rem; font-weight: 600; color: var(--sea);
}

/* Infinite brand marquee */
.brand-marquee {
  width: 100%; overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-track { display: flex; width: max-content; animation: brand-marquee 32s linear infinite; }
.brand-track:hover { animation-play-state: paused; }
.brand-track span {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: 'Montserrat', var(--font-head); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--forest);
}
.brand-track span::after { content: '•'; color: var(--mint); margin: 0 34px; font-size: .7em; }
@keyframes brand-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.brands-note { text-align: center; margin-top: 26px; color: var(--muted); }
.brands-note a { color: var(--sea); font-weight: 600; text-decoration: underline; }

/* ---------- Reviews ---------- */
.reviews { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.stars { color: #f5a623; letter-spacing: 2px; }
.reviews .section-lead .stars { font-size: 1.2rem; vertical-align: middle; margin-right: 8px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.review-card .stars { font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.7; margin-bottom: 18px; }
.review-card footer { display: flex; flex-direction: column; }
.review-card footer strong { font-family: var(--font-head); color: var(--forest); }
.review-card footer span { color: var(--muted); font-size: .88rem; }

/* ---------- Google reviews card ---------- */
.google-review {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 42px 34px; box-shadow: var(--shadow);
}
.google-review-top { display: flex; align-items: center; justify-content: center; gap: 13px; margin-bottom: 18px; }
.g-logo { width: 42px; height: 42px; flex-shrink: 0; }
.gr-meta { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.gr-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.08rem; }
.gr-sub { color: var(--muted); font-size: .85rem; }
.gr-score { font-family: var(--font-head); font-weight: 700; font-size: 3.4rem; line-height: 1; color: var(--forest); }
.gr-stars { font-size: 1.7rem; color: #f5a623; letter-spacing: 4px; margin: 8px 0 8px; }
.gr-count { color: var(--muted); margin-bottom: 28px; }
.gr-count strong { color: var(--ink); }
.gr-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reviews-widget { margin: 0 auto; }
.reviews-link { text-align: center; margin-top: 22px; }
.reviews-link a { color: var(--sea); font-family: var(--font-head); font-weight: 600; text-decoration: none; }
.reviews-link a:hover { color: var(--forest); text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--mint); box-shadow: var(--shadow); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.05rem; color: var(--forest); font-weight: 600; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--sea); border-radius: 2px;
  transition: transform .25s ease;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2.5px; }
.faq-icon::after { left: 8px; top: 0; width: 2.5px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { color: var(--muted); }

/* ---------- Service area map ---------- */
.map-embed {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.map-embed { position: relative; }
#serviceMap { width: 100%; height: 470px; background: #0e1a14; }
.map-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1200;
  height: 58px; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 10px; pointer-events: none;
  background: linear-gradient(to top, rgba(19,65,41,.96) 0%, rgba(26,92,58,.5) 55%, transparent 100%);
  font-family: 'Montserrat', var(--font-head); font-weight: 800; letter-spacing: -.01em;
  font-size: .95rem; color: #fff;
}
.map-embed .leaflet-container { font-family: var(--font-body); }
.map-embed .leaflet-control-zoom a { color: var(--forest); }
.map-embed .leaflet-control-attribution {
  background: transparent; color: rgba(255,255,255,.4);
  font-size: 7px; line-height: 1.3; padding: 0 4px; border-radius: 0;
}
.map-embed .leaflet-control-attribution a { color: rgba(255,255,255,.5); }
@media (max-width: 560px) { #serviceMap { height: 360px; } }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(95,186,122,.35), transparent 60%),
    var(--sea);
  color: #fff; padding: 64px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,.78); padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px;
}
.footer-brand p { margin: 18px 0; font-size: .95rem; max-width: 320px; }
.footer-social { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px 16px; align-items: center; }
.footer-social a {
  color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 500; transition: color .2s;
}
.footer-social a:hover { color: var(--mint); }
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--mint); }
.footer-contact li { margin-bottom: 10px; line-height: 1.55; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .88rem; }
.footer-bottom ul { display: flex; gap: 20px; }
.footer-bottom a { font-size: .88rem; }
.footer-bottom a:hover { color: var(--mint); }

/* ---------- Service detail pages ---------- */
.svc-hero {
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(95,186,122,.28), transparent 60%),
    var(--bg);
  padding: 60px 0 70px;
}
.svc-breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 22px; }
.svc-breadcrumb a { color: var(--sea); font-weight: 600; }
.svc-breadcrumb a:hover { text-decoration: underline; }
.svc-hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.svc-emoji {
  display: inline-grid; place-items: center; width: 76px; height: 76px;
  background: var(--mint-soft); border-radius: 20px; font-size: 2.4rem; margin-bottom: 22px;
}
.svc-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); color: var(--forest); letter-spacing: -1px; margin-bottom: 18px; }
.svc-hero p { font-size: 1.12rem; color: var(--muted); max-width: 560px; margin-bottom: 28px; }
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.svc-hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-lg);
}
.svc-hero-card h2 { font-size: 1.25rem; color: var(--forest); margin-bottom: 16px; }
.svc-hero-card ul { display: flex; flex-direction: column; gap: 12px; }
.svc-hero-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: .98rem; }
.svc-hero-card .trust-ico { flex-shrink: 0; margin-top: 2px; }

/* Hero with photo + benefits card below it */
.svc-hero-media { display: flex; flex-direction: column; }
.svc-hero-img {
  width: 100%; height: 360px; object-fit: cover; display: block;
  border-radius: 24px; box-shadow: var(--shadow-lg);
}
.svc-hero-card--float {
  margin-top: 18px;
  box-shadow: 0 16px 40px rgba(20,65,41,.14);
}
.svc-hero-card--float h2 { font-size: 1.15rem; margin-bottom: 14px; }
.svc-hero-card--float ul { gap: 11px; }
.svc-hero-card--float li { font-size: .95rem; }

@media (max-width: 900px) {
  .svc-hero-inner--media { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .svc-hero-img { height: 300px; }
}

.svc-body { padding: 80px 0; }
.svc-block h2 { font-size: 1.7rem; color: var(--forest); margin-bottom: 14px; letter-spacing: -.4px; }
.svc-block > p { color: var(--muted); margin-bottom: 14px; }
.svc-lead { max-width: 680px; }
.svc-back { margin-top: 32px; }

/* Expandable common-problem cards */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; margin-top: 28px; }
.problem {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; cursor: default; outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.problem:hover, .problem:focus-visible {
  border-color: var(--mint); box-shadow: var(--shadow); transform: translateY(-2px);
}
.problem-head {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.02rem;
}
.problem-head .trust-ico { flex-shrink: 0; }
.problem-toggle { display: none; }
.problem-desc {
  max-height: 0; opacity: 0; overflow: hidden; padding-left: 36px;
  color: var(--muted); font-size: .96rem; line-height: 1.6;
  transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
}
.problem:hover .problem-desc, .problem:focus-within .problem-desc {
  max-height: 260px; opacity: 1; margin-top: 10px;
}
@media (hover: none) {
  .problem-desc { max-height: 260px; opacity: 1; margin-top: 10px; }
  .problem-toggle { display: none; }
}

/* ---------- Legal page (Privacy / Terms) ---------- */
.legal { padding: 56px 0 80px; }
.legal-inner { max-width: 840px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--forest); letter-spacing: -.6px; margin-bottom: 6px; }
.legal-meta { color: var(--muted); font-size: .95rem; margin-bottom: 10px; }
.legal h2 {
  font-size: 1.6rem; color: var(--forest); margin: 44px 0 14px; padding-top: 26px;
  border-top: 1px solid var(--line); letter-spacing: -.3px; scroll-margin-top: 90px;
}
.legal h3 { font-size: 1.15rem; color: var(--ink); margin: 24px 0 8px; }
.legal p { color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 8px 0 14px; display: flex; flex-direction: column; gap: 8px; }
.legal li { color: var(--muted); line-height: 1.7; }
.legal strong { color: var(--ink); }
.legal a { color: var(--sea); text-decoration: underline; }
.legal a:hover { color: var(--forest); }
.legal .svc-breadcrumb { margin-bottom: 22px; }
.legal-back { margin-top: 34px; }

/* ---------- Sticky mobile call ---------- */
.sticky-call {
  display: none; position: fixed; bottom: 18px; right: 18px; z-index: 90;
  background: var(--forest); color: #fff; padding: 14px 20px; border-radius: 999px;
  align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .commercial-top { grid-template-columns: 1fr; gap: 36px; }
  .commercial-stats { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .commercial-list { grid-template-columns: 1fr; }
  .commercial-stats { grid-template-columns: 1fr 1fr; }
  .commercial-img { min-height: 300px; max-height: 380px; }
  .trust-grid { justify-content: flex-start; gap: 14px 26px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .sticky-call { display: inline-flex; }
}

@media (max-width: 480px) {
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .commercial-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-trust { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
