/* ============================================================
   Deeck Mechanical — shared site styles
   Ported from the approved homepage design language.
   ============================================================ */

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

:root {
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* ── Brand palette from logo ── */
  --green:       #1db800;
  --green-dark:  #158a00;
  --green-glow:  rgba(29,184,0,0.18);
  --green-dim:   rgba(29,184,0,0.08);
  --red:         #e02a10;
  --red-dim:     rgba(224,42,16,0.15);
  --ice:         #6ed8f5;
  --ice-dim:     rgba(110,216,245,0.12);

  /* ── Neutrals ── */
  --bg:          #0e0f0d;
  --bg2:         #141612;
  --bg3:         #1b1e18;
  --surface:     #1f2219;
  --card-bg:     #1a1d17;
  --border:      rgba(255,255,255,0.07);
  --border-g:    rgba(29,184,0,0.2);

  --text:        #edf0e8;
  --text-muted:  #7e8a74;
  --text-dim:    #404840;
}

html { scroll-padding-top: 76px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; }

/* ============================================================
   NAV  (with dropdown menus)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 56px);
  height: 68px;
  background: rgba(14,15,13,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-g);
  gap: 20px;
}
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.nav-links > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  padding: 0 12px;
  height: 100%;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li:hover > a { color: var(--green); }
.nav-links > li.current > a { color: var(--text); }
.nav-links > li.current > a::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 18px;
  height: 2px;
  background: var(--green);
}
.has-caret svg { width: 9px; height: 9px; opacity: 0.7; transition: transform 0.15s; }
.nav-links > li:hover .has-caret svg { transform: rotate(180deg); }

/* dropdown panel */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 264px;
  background: rgba(18,20,16,0.98);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-g);
  border-radius: 8px;
  padding: 8px;
  list-style: none;
  box-shadow: 0 18px 48px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.nav-links > li:hover .submenu,
.nav-links > li:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
}
.submenu li a:hover { background: var(--green-dim); color: var(--green); }
.submenu li.current a { color: var(--green); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-phone:hover { color: #fff; }
.nav-phone svg { width: 17px; height: 17px; flex-shrink: 0; }

/* mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-g);
  border-radius: 6px;
  width: 40px; height: 38px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone .num { display: none; }

  /* mobile drawer */
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
    gap: 0;
    padding: 10px clamp(16px, 4vw, 56px) 20px;
    background: rgba(14,15,13,0.99);
    border-bottom: 1px solid var(--border-g);
    box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  }
  .nav.open .nav-links > li { height: auto; flex-direction: column; align-items: stretch; }
  .nav.open .nav-links > li > a { height: auto; padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav.open .nav-links > li.current > a::after { display: none; }
  .nav.open .submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: none; border: none; box-shadow: none;
    padding: 0 0 8px 14px;
    min-width: 0;
  }
  .nav.open .has-caret svg { display: none; }
}

/* ============================================================
   PAGE BANNER  (inner-page hero)
   ============================================================ */
.banner {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  padding: clamp(48px, 8vw, 92px) clamp(20px, 6vw, 72px) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--border-g);
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,16,0.72) 0%, rgba(11,13,16,0.84) 60%, rgba(11,13,16,0.96) 100%),
    radial-gradient(ellipse 60% 80% at 18% 30%, rgba(29,184,0,0.16) 0%, transparent 60%);
}
.banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.banner-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .here { color: var(--green); }

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.banner-eyebrow::before { content: ''; display: block; width: 22px; height: 2px; background: var(--green); }

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  max-width: 16ch;
}
.banner-title .green { color: var(--green); }
.banner-title .hot { color: var(--red); }
.banner-title .cold { color: var(--ice); }
.banner-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.6;
}
.banner-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 24px rgba(29,184,0,0.35); }
.btn-primary svg { width: 15px; height: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.15s, color 0.15s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-ghost svg { width: 15px; height: 15px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(16px, 4vw, 56px);
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  gap: 12px 32px; align-items: center; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-muted);
}
.trust-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* ============================================================
   SECTION + GENERIC CONTENT
   ============================================================ */
.section { padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 56px); }
.section.tight { padding-top: clamp(40px, 5vw, 64px); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section.bg2 { background: var(--bg2); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 18px; height: 2px; background: var(--green); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 900; letter-spacing: -0.01em;
  text-transform: uppercase; line-height: 1.0;
  color: var(--text); margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 40px; line-height: 1.65; }

/* prose */
.prose { max-width: 720px; }
.prose p { font-size: 16.5px; color: #c4ccba; line-height: 1.75; margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 700; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--text); margin: 32px 0 12px;
}
.lead { font-size: 19px !important; color: var(--text) !important; line-height: 1.65 !important; }

/* ============================================================
   TWO-COLUMN  (content + media / sidebar)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.split.media-left { grid-template-columns: 1fr 1.5fr; }
@media (max-width: 860px) { .split, .split.media-left { grid-template-columns: 1fr; gap: 36px; } }

.media-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-g);
  box-shadow: 0 0 60px rgba(29,184,0,0.06);
  background: var(--card-bg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.media-frame.tall img { aspect-ratio: 3 / 4; }

/* striped image placeholder */
.img-ph {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border-g);
  background:
    repeating-linear-gradient(135deg, rgba(29,184,0,0.05) 0 14px, transparent 14px 28px),
    var(--bg2);
  display: flex; align-items: center; justify-content: center;
  min-height: 240px;
  aspect-ratio: 4 / 3;
}
.img-ph span {
  font-family: 'Barlow', monospace;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px dashed var(--border-g);
  padding: 8px 14px; border-radius: 6px;
  background: rgba(14,15,13,0.6);
}

/* ============================================================
   NUMBERED FEATURE LIST  (why choose us)
   ============================================================ */
.feature-list { display: grid; gap: 18px; }
.feature-list.cols2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .feature-list.cols2 { grid-template-columns: 1fr; } }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 22px;
  transition: border-color 0.18s, transform 0.18s;
}
.feature-item:hover { border-color: var(--border-g); transform: translateY(-2px); }
.feature-num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 900; line-height: 1;
  color: var(--green); opacity: 0.3; min-width: 38px;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.03em; margin-bottom: 5px; color: var(--text);
}
.feature-item p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* checklist */
.checklist { display: grid; gap: 12px; margin: 4px 0; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  list-style: none; font-size: 16px; color: #c4ccba; line-height: 1.55;
}
.checklist li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.checklist li strong { color: var(--text); }

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 14px; }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.service-card:hover { transform: translateY(-2px); border-color: var(--border-g); box-shadow: 0 8px 32px rgba(29,184,0,0.08); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--green-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--green);
}
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 7px; color: var(--text);
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--green);
}
.service-card .more svg { width: 13px; height: 13px; }
.service-card.hot .service-icon { background: var(--red-dim); color: var(--red); }
.service-card.hot::after { background: var(--red); }
.service-card.hot:hover { box-shadow: 0 8px 32px rgba(224,42,16,0.08); }
.service-card.hot .more { color: var(--red); }
.service-card.cold .service-icon { background: var(--ice-dim); color: var(--ice); }
.service-card.cold::after { background: var(--ice); }
.service-card.cold:hover { box-shadow: 0 8px 32px rgba(110,216,245,0.08); }
.service-card.cold .more { color: var(--ice); }

/* ============================================================
   SIDEBAR (quote card + related links)
   ============================================================ */
.sidebar { display: grid; gap: 18px; position: sticky; top: 88px; }
@media (max-width: 860px) { .sidebar { position: static; } }

.quote-card {
  background: var(--card-bg);
  border: 1px solid var(--border-g);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 0 48px rgba(29,184,0,0.06);
}
.quote-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px;
}
.quote-card p.small { font-size: 13.5px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.55; }

.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.field label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--text-muted);
}
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
  padding: 11px 13px; font-family: var(--font-body); font-size: 15px;
  color: var(--text); outline: none; transition: border-color 0.15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
.field select option { background: var(--bg2); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 10px; }
.form-note a { color: var(--green); }
.btn-primary.full { width: 100%; justify-content: center; margin-top: 4px; padding: 15px; }

/* captcha + honeypot */
.captcha-field { margin-bottom: 12px; }
.captcha-field .cf-turnstile { min-height: 65px; }
.form-error {
  display: none;
  font-size: 13px; font-weight: 600; color: #ff6b55;
  margin: 2px 0 10px; padding: 8px 12px;
  background: rgba(224,42,16,0.1); border: 1px solid rgba(224,42,16,0.28); border-radius: 6px;
}
/* honeypot — visually & assistively hidden, still in the DOM for bots to trip on */
.hp-wrap {
  position: absolute !important;
  left: -9999px !important; top: auto; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

.side-links {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px;
}
.side-links h4 {
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px;
}
.side-links ul { list-style: none; display: grid; gap: 2px; }
.side-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 0; font-size: 14px; font-weight: 600; color: #c4ccba;
  text-decoration: none; border-bottom: 1px solid var(--border); transition: color 0.13s, padding 0.13s;
}
.side-links li:last-child a { border-bottom: none; }
.side-links a:hover { color: var(--green); padding-left: 4px; }
.side-links a svg { width: 13px; height: 13px; opacity: 0.6; }
.side-links li.current a { color: var(--green); }

/* contact mini card in sidebar */
.callout {
  background: linear-gradient(180deg, var(--green-dim), transparent), var(--card-bg);
  border: 1px solid var(--border-g);
  border-radius: 12px; padding: 24px;
}
.callout .small { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.callout .tel {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--green);
  text-decoration: none;
}
.callout .tel svg { width: 22px; height: 22px; }
.callout p { font-size: 13.5px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr 1fr; } }
.stat {
  background: var(--card-bg); border: 1px solid var(--border-g); border-radius: 12px;
  padding: 28px 24px; text-align: left;
}
.stat .num {
  font-family: var(--font-display); font-size: 48px; font-weight: 900; line-height: 1;
  color: var(--green); letter-spacing: -0.02em;
}
.stat .label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ============================================================
   CERT CARDS
   ============================================================ */
.certs-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.cert-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; height: 76px; padding: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}
.cert-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.45), 0 0 0 1px var(--border-g); }
.cert-card img { height: 100%; width: auto; display: block; object-fit: contain; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border-g);
  border-bottom: 1px solid var(--border-g);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 6vw, 56px);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 120% at 80% 50%, rgba(29,184,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative; max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 46px); font-weight: 900;
  text-transform: uppercase; line-height: 1.0; color: #fff; max-width: 18ch;
}
.cta-inner h2 .green { color: var(--green); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-tel {
  display: flex; align-items: center; gap: 10px; color: #fff;
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 34px); font-weight: 900;
  text-decoration: none; transition: color 0.15s;
}
.cta-tel:hover { color: var(--green); }
.cta-tel svg { width: 24px; height: 24px; color: var(--green); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.review-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 26px; position: relative;
}
.review-stars { display: flex; gap: 3px; color: #f4c430; margin-bottom: 12px; font-size: 13px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green); }
.review-quote {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-size: 60px; font-weight: 900; line-height: 1;
  color: var(--green); opacity: 0.08; pointer-events: none;
}

/* ============================================================
   CONTACT DETAILS
   ============================================================ */
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon {
  width: 38px; height: 38px; background: var(--green-dim); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green);
}
.contact-icon svg { width: 17px; height: 17px; }
.contact-detail-text strong {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px;
}
.contact-detail-text span { font-size: 15px; color: var(--text); }
.contact-detail-text a { color: var(--green); text-decoration: none; font-weight: 600; }
.hours-box {
  margin-top: 4px; padding: 18px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; display: flex; flex-direction: column; gap: 8px;
}
.hour-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); }
.hour-row .day { font-weight: 600; color: var(--text); }
.contact-split { grid-template-columns: 1fr 1fr; align-items: stretch; }
@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; align-items: start; }
  .contact-split .map-embed { flex: 0 0 auto; }
}
.contact-info-col { display: flex; flex-direction: column; }
.contact-info-col .section-title { margin-bottom: 28px; }
.map-embed {
  margin-top: 18px; flex: 1; min-height: 240px;
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border-g);
  box-shadow: 0 0 48px rgba(29,184,0,0.06);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 240px; border: 0; display: block; filter: grayscale(0.35) invert(0.9) hue-rotate(150deg); }
@media (max-width: 860px) { .map-embed { min-height: 260px; } }
.map-ph {
  margin-top: 18px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-g);
  min-height: 220px; background: var(--bg2);
}
.map-ph iframe {
  display: block; width: 100%; height: 100%; min-height: 220px; border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
/* Contact page: stretch columns so the map fills remaining height and bottoms align */
.contact-split { align-items: stretch; }
.contact-split > div:first-child { display: flex; flex-direction: column; }
.contact-split .map-ph { flex: 1 1 auto; }
.contact-split > div:last-child { display: flex; }
.contact-split .quote-card { display: flex; flex-direction: column; flex: 1; }
.contact-split .quote-form { display: flex; flex-direction: column; flex: 1; }
.contact-split .quote-form .field:has(textarea) { flex: 1 1 auto; display: flex; flex-direction: column; }
.contact-split .quote-form .field textarea { flex: 1 1 auto; min-height: 90px; resize: vertical; }
@media (max-width: 860px) {
  .contact-split .map-ph { flex: 0 0 auto; }
  .contact-split .quote-form .field:has(textarea) { flex: 0 0 auto; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--border-g); padding: clamp(40px,5vw,56px) clamp(16px,4vw,56px) 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
@media (max-width: 820px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid var(--border-g); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: color 0.15s, border-color 0.15s;
}
.footer-social a:hover { color: var(--green); border-color: var(--green); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--font-display); font-size: 14px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { font-size: 13.5px; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--green); }
.footer-contact-line { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.footer-contact-line svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-line a { color: var(--green); text-decoration: none; font-weight: 600; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: var(--green); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  padding: 10px 14px; gap: 10px;
  background: rgba(14,15,13,0.96); border-top: 1px solid var(--border-g); backdrop-filter: blur(14px);
}
@media (max-width: 640px) { .mobile-cta { display: flex; } body { padding-bottom: 64px; } }
.mobile-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; padding: 13px 10px; border-radius: 6px;
}
.mobile-cta .call { background: var(--green); color: #fff; }
.mobile-cta .schedule { background: transparent; border: 1px solid rgba(29,184,0,0.3); color: var(--green); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
  .banner-inner > * { animation: fadeUp 0.5s ease both; }
  .banner-inner > *:nth-child(1) { animation-delay: 0.00s; }
  .banner-inner > *:nth-child(2) { animation-delay: 0.06s; }
  .banner-inner > *:nth-child(3) { animation-delay: 0.12s; }
  .banner-inner > *:nth-child(4) { animation-delay: 0.18s; }
  .banner-inner > *:nth-child(5) { animation-delay: 0.24s; }
}
