/* ===== SDG site — Cloverdale-style green brand ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }

:root {
  --green: #1a5c2e;
  --green-dark: #134a25;
  --green-deep: #0a2e15;
  --green-mid: #14532d;
  --green-accent: #2d8842;
  --white: #ffffff;
  --light-bg: #F7F7F7;
  --off-white: #FAF9F5;
  --text-dark: #1a1a1a;
  --text-mid: #424242;
  --text-light: #666;
  --border: #EDEDED;
  --nav-text: #25352C;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 56px; width: auto; max-width: 280px; display: block; }
.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--nav-text);
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--green-deep); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-lg svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); color: #fff; }
.btn-outline { background: #fff; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--green-deep); }
.btn-ghost-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost-green:hover { background: var(--green); color: #fff; }
.btn-pill { border-radius: 999px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.hero.hero-tall { min-height: 720px; }
.hero-bg, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
}
.hero-dots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: 42px;
  margin-bottom: 22px;
}
.hero-dots span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 .highlight, .hero h1 .green, .hero h1 .yellow { color: #fff; opacity: .85; }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.94);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-mini-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-mini-stats .mini { color: rgba(255,255,255,0.8); font-size: 14px; }
.hero-mini-stats .mini strong {
  display: block;
  color: #ffd84d;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

/* ===== TRUST BAR ===== */
.trust { background: var(--green-deep); padding: 22px 24px; border-bottom: none; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
}
.trust-item svg { width: 18px; height: 18px; color: #fff; flex-shrink: 0; }

/* ===== SECTION ===== */
section.block { padding: 80px 0; background: #fff; }
section.block.alt { background: var(--off-white); }
section.block.dark { background: var(--green-deep); color: #fff; }
section.block.dark .section-title { color: #fff; }
section.block.dark .section-subtitle { color: rgba(255,255,255,0.75); }
section.block.green { background: var(--green); color: #fff; }
section.block.green .section-title { color: #fff; }
section.block.green .section-subtitle { color: rgba(255,255,255,0.85); }

.container, .wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-label, .section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
/* All text WHITE on dark + green sections — green-on-green is unreadable */
section.block.dark .section-label, section.block.dark .section-eyebrow,
section.block.green .section-label, section.block.green .section-eyebrow,
.cta-strip .section-label, .cta-strip .section-eyebrow { color: #fff; opacity: 0.85; }
section.block.dark, section.block.dark p, section.block.dark li,
section.block.green, section.block.green p, section.block.green li,
.cta-strip, .cta-strip p { color: rgba(255,255,255,0.92); }
section.block.dark h1, section.block.dark h2, section.block.dark h3, section.block.dark h4,
section.block.green h1, section.block.green h2, section.block.green h3, section.block.green h4,
.cta-strip h1, .cta-strip h2, .cta-strip h3 { color: #fff; }
section.block.dark a:not(.btn), section.block.green a:not(.btn), .cta-strip a:not(.btn) { color: #fff; }
section.block.dark .meta, section.block.green .meta, .cta-strip .meta { color: #fff; opacity: 0.85; }
section.block.dark .card, section.block.green .card, .cta-strip .card { color: var(--text-dark); }
section.block.dark .card h3, section.block.green .card h3, .cta-strip .card h3 { color: var(--text-dark); }
section.block.dark .card p, section.block.green .card p, .cta-strip .card p { color: var(--text-mid); }
.section-title, .section-head h2 {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-subtitle, .section-head p {
  text-align: center;
  font-size: 17px;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }

/* ===== CARD GRID ===== */
.card-grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-align: left;
  align-items: flex-start;
}
.card.image-card { padding: 0; align-items: stretch; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card.text-card { padding: 28px; text-align: left; }
.card.image-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card .card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card .card-body .meta { font-size: 12px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.card .card-body h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.card .card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26,92,46,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  flex-shrink: 0;
}
.icon-circle svg { width: 26px; height: 26px; color: var(--green); }
.text-card .icon-circle, .service-list .icon-circle { margin: 0 0 14px; }
.card.text-card .icon-circle, .service-list .card .icon-circle { margin: 0 0 16px; }
.card .icon-circle { align-self: flex-start; }
.card.text-card { display: flex; flex-direction: column; align-items: flex-start; }

.card .btn-shop, .card .card-link {
  display: inline-block;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--green);
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: auto;
}
.card .btn-shop:hover, .card .card-link:hover { background: var(--green); color: #fff; }

/* ===== STEPS / PROCESS (dark green) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 16px;
}
.step .step-num {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 18px;
  letter-spacing: -0.02em;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ===== AREA TILES ===== */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.area-tile {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  text-align: left;
  transition: all 0.2s;
}
.area-tile:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(26,187,0,0.12); transform: translateY(-2px); }
.area-tile h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.area-tile p { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin: 0; }
.area-tile .arrow { color: var(--green); font-weight: 700; margin-top: 8px; display: inline-block; font-size: 14px; }

/* ===== SPLIT (two-col image+text) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-image { border-radius: 16px; overflow: hidden; }
.split-image img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; }
.split-text .tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.split-text h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 22px; letter-spacing: -0.02em; }
.split-text p { font-size: 15px; color: var(--text-mid); margin-bottom: 18px; line-height: 1.7; }
.feature-list { list-style: none; margin: 0 0 28px; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.feature-list li .check {
  width: 22px; height: 22px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.feature-list li .check::after { content: '✓'; color: #fff; font-size: 13px; font-weight: 700; }

/* ===== DARK SPLIT VARIANT ===== */
section.block.dark .split-text .tag,
section.block.green .split-text .tag,
.cta-strip .tag { color: #fff; opacity: 0.85; }
section.block.dark .split-text h2 { color: #fff; }
section.block.dark .split-text p { color: rgba(255,255,255,0.8); }
section.block.dark .feature-list li { color: rgba(255,255,255,0.85); }
section.block.dark .feature-list li strong { color: #fff; display: block; margin-bottom: 4px; }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-size: 3rem; font-weight: 900; color: var(--green); line-height: 1; margin: 0 0 8px; letter-spacing: -0.03em; }
.stat .label { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; }

/* ===== FORM ===== */
.form-section { background: var(--off-white); padding: 80px 0; border-top: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: stretch; }
.form-card { background: #fff; padding: 36px; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-card form { display: flex; flex-direction: column; gap: 16px; }
.form-card label { font-weight: 600; color: var(--text-dark); font-size: 14px; margin-bottom: 4px; display: block; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: inherit; background: #fff; transition: all 0.15s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,187,0,0.15);
}
.form-card textarea { resize: vertical; min-height: 110px; }
.form-card .field-group { display: flex; flex-direction: column; gap: 4px; }
.form-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card button[type="submit"] {
  background: var(--green); color: #fff; border: none; padding: 14px 24px;
  border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all 0.15s;
}
.form-card button[type="submit"]:hover { background: var(--green-dark); transform: translateY(-1px); }
.map-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; }
.map-card iframe { width: 100%; flex: 1; min-height: 280px; border: 0; display: block; }
.map-card .map-info { padding: 22px 24px; background: var(--green-deep); color: #fff; }
.map-card .map-info h4 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.map-card .map-info h4 svg { width: 18px; height: 18px; color: var(--green); }
.map-card .map-info p { margin: 4px 0 0; color: rgba(255,255,255,0.75); font-size: 13px; }

/* ===== GALLERY ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-item h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.faq-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-wrap details {
  background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s;
}
.faq-wrap details[open] { border-color: var(--green); }
.faq-wrap summary { cursor: pointer; padding: 20px 56px 20px 24px; font-weight: 700; font-size: 1rem; color: var(--text-dark); list-style: none; position: relative; }
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--green); line-height: 1; }
.faq-wrap details[open] summary::after { content: '−'; }
.faq-wrap details > p { padding: 0 24px 22px; margin: 0; color: var(--text-mid); line-height: 1.7; }

/* ===== CTA STRIP / BAND ===== */
.cta-strip {
  background: var(--green);
  padding: 70px 40px;
  text-align: center;
  color: #fff;
}
.cta-strip h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin: 0 0 14px; letter-spacing: -0.02em; }
.cta-strip p { color: rgba(255,255,255,0.9); margin: 0 0 28px; font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-group { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.cta-strip .btn-primary { background: var(--green-deep); }
.cta-strip .btn-primary:hover { background: #1a3a00; }

/* ===== IMAGE CTA (excavator background) ===== */
.cta-image {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 110px 24px;
}
.cta-image__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-image__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}
.cta-image__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.cta-image__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-image h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.cta-image h2 span {
  color: #ffd84d;
}
.cta-image p {
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.65;
}
.cta-image__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-image { min-height: 380px; padding: 80px 20px; }
}

/* ===== RATES TABLE ===== */
.rates-table { width: 100%; border-collapse: collapse; margin: 0 auto; max-width: 980px; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.rates-table th { background: var(--green-deep); color: #fff; padding: 16px 20px; text-align: left; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; }
.rates-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.rates-table tr:last-child td { border-bottom: none; }
.rates-table .price { color: var(--green); font-weight: 800; font-size: 1.1rem; }
.rates-table .machine { font-weight: 700; color: var(--text-dark); }
.rates-disclaimer { text-align: center; max-width: 780px; margin: 24px auto 0; font-size: 13px; color: var(--text-light); }

/* ===== FOOTER ===== */
.site-footer { background: #1a1a19; color: rgba(255,255,255,0.7); padding: 60px 0 28px; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-cols h4 { color: rgba(255,255,255,0.95); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 16px; }
.footer-cols ul { list-style: none; padding: 0; }
.footer-cols ul li { margin-bottom: 9px; }
.footer-cols a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.15s; }
.footer-cols a:hover { color: var(--green); }
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 14px; margin-top: 18px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.65); }
.footer-contact a.phone { color: var(--green); font-weight: 700; }
.footer-contact a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== HERO RATING BADGE ===== */
.review-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.95); border-radius: 999px;
  padding: 8px 18px 8px 8px; color: var(--text-dark); font-size: 14px;
  margin-top: 16px;
}
.review-badge .g { width: 32px; height: 32px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; color: #4285F4; }
.review-badge .stars { color: #FBBC05; font-size: 15px; }
.review-badge .reviews { color: var(--text-light); font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 12px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; }
  .header-cta .btn { padding: 10px 16px; font-size: 0.85rem; }
  .header-cta .btn-text { display: none; }
  .header-inner { padding: 12px 20px; gap: 12px; }
  .logo img { height: 44px; max-width: 180px; }
  .container, .wrap { padding: 0 20px; }
  .hero { min-height: 540px; }
  .hero-inner { padding: 60px 20px; }
  .hero h1 { font-size: 30px; }
  .hero p.lead { font-size: 16px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-mini-stats { gap: 20px; }
  .hero-mini-stats .mini strong { font-size: 22px; }
  .trust-row { gap: 14px; }
  .trust-item { font-size: 12px; }
  section.block { padding: 56px 0; }
  .section-title, .section-head h2, .cta-strip h2 { font-size: 26px; }
  .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat .num { font-size: 2rem; }
  .gallery { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .rates-table th, .rates-table td { padding: 12px 14px; font-size: 0.88rem; }
}


/* ===== FORM STATUS BANNER ===== */
.form-status { padding: 16px 20px; border-radius: 8px; margin-bottom: 22px; font-size: 15px; line-height: 1.5; }
.form-status.success { background: #e8f4ec; color: #134a25; border-left: 4px solid #1a5c2e; }
.form-status.error { background: #fcebea; color: #7c1d12; border-left: 4px solid #c0392b; }


/* ===== STICKY MOBILE CALL + TEXT + QUOTE BAR ===== */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #0a2e15; box-shadow: 0 -2px 12px rgba(0,0,0,.25); }
.mobile-cta-bar__btn { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 12px 8px; color: #fff; text-decoration: none; font: 600 12px/1 system-ui, -apple-system, sans-serif; letter-spacing: .04em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.15); transition: background .15s; }
.mobile-cta-bar__btn:last-child { border-right: none; }
.mobile-cta-bar__btn:hover, .mobile-cta-bar__btn:active { background: rgba(255,255,255,.08); color: #fff; }
.mobile-cta-bar__btn svg { width: 20px; height: 20px; }
.mobile-cta-bar__btn--call { background: #1a5c2e; }
.mobile-cta-bar__btn--call:hover, .mobile-cta-bar__btn--call:active { background: #248040; }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; } /* lift content above the fixed bar */
}
