/* Inter: all weights */

/* ── Variables ── */
:root {
  --green:      #1a3d2b;
  --green-2:    #2d6147;
  --green-light:#e8f5ee;
  --orange:     #f97316;
  --orange-h:   #ea580c;
  --orange-dim: rgba(249,115,22,0.1);
  --white:      #ffffff;
  --bg-light:   #f8fafc;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
  --r-sm:       6px;
  --r-md:       10px;
  --r-lg:       16px;
  --r-xl:       24px;
  --nav-h:      80px;
  --container:  1160px;
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
}

/* ── Section ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 48px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  touch-action: manipulation;
  min-height: 44px;
}
.btn:active { transform: scale(0.97); }
.btn-sm  { height: 40px; padding: 0 18px; font-size: 0.85rem; }
.btn-lg  { height: 54px; padding: 0 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--green-2); box-shadow: 0 4px 20px rgba(26,61,43,0.3); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: 2px solid transparent;
}
.btn-orange:hover { background: var(--orange-h); box-shadow: 0 4px 20px rgba(249,115,22,0.35); }

.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid transparent;
}
.btn-green:hover { background: var(--green-2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-loading { display: none; }
.btn.is-loading .btn-label  { display: none; }
.btn.is-loading .btn-loading { display: inline; }

/* ── Top Bar ── */
.top-bar {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 9px 0;
  z-index: 200;
  position: relative;
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.top-bar-link:hover { color: #fff; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon-wrap { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--bg-light); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  padding: 0 16px;
  height: 42px;
  border: 2px solid var(--green);
  border-radius: var(--r-md);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
}
.header-phone:hover { background: var(--green); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-light); }
.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(16px, 5vw, 40px) 24px;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: var(--bg-light); color: var(--green); }
.mobile-nav-cta { font-size: 1rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1f13 0%, #122d1d 50%, #0c2016 100%);
  overflow: hidden;
}
.hero-video,
.hero-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-poster-img { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,31,19,0.92) 0%, rgba(10,31,19,0.78) 55%, rgba(10,31,19,0.55) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 160px; }
.hero-content { max-width: 620px; }

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta { margin-bottom: 36px; }

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ── Form Card ── */
.form-card-wrap {
  position: relative;
  z-index: 10;
  margin-top: -72px;
  padding-bottom: 0;
}
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
  padding: 28px 36px 32px;
}
.form-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.form-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}
.form-chips {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.form-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.form-chip svg { color: var(--green); flex-shrink: 0; }

/* Form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr auto;
  gap: 12px;
  align-items: end;
}
.field-wrap {
  position: relative;
}
.field-wide { grid-column: span 1; }
.field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}
.form-input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input::placeholder { color: #94a3b8; }
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,61,43,0.12);
  background: var(--white);
}

.field-submit .btn { height: 48px; white-space: nowrap; }

.form-msg {
  display: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-top: 12px;
}
.form-msg.visible { display: block; }
.form-success { background: #dcfce7; color: #15803d; }
.form-error   { background: #fee2e2; color: #dc2626; }

/* ── Trust Section ── */
.trust-section {
  background: var(--bg-light);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.trust-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.trust-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3;
}
.tbadge-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tbadge-green { background: var(--orange); }

.trust-badge-google .google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 18px;
  box-shadow: var(--shadow);
}
.google-g {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.google-stars { font-size: 1rem; color: #fbbf24; letter-spacing: 1px; }
.google-label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── About / Why Choose Us ── */
.about-section {
  padding: 96px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f13 0%, #1a3d2b 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-photo-frame:hover img { transform: scale(1.04); }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 10px;
}
.about-body {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}
.about-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ── Services ── */
.services-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sc-icon-orange { background: var(--orange-dim); color: var(--orange); }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sc-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  transition: color var(--transition);
}
.sc-link:hover { color: var(--green-2); }
.sc-link-orange { color: var(--orange); }
.sc-link-orange:hover { color: var(--orange-h); }

/* ── Service Area ── */
.service-area-section {
  padding: 96px 0;
  background: var(--white);
}
.sa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.sa-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sa-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.city-chip {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.city-chip:hover,
.city-chip.active {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green);
}
.mt-btn { margin-top: 4px; }

/* Map card */
.map-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-header {
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
}
.map-body { padding: 20px 24px; background: var(--white); }
.map-dot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.map-dot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--muted);
}
.dot-main { background: var(--orange); box-shadow: 0 0 0 3px var(--orange-dim); }
.dot-more { background: var(--border); }

/* ── Process / How It Works ── */
.process-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.process-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.process-section .section-header .btn {
  margin-top: 4px;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: center;
  margin-top: 52px;
}
.process-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.ps-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.ps-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.process-arrow {
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Marquee ── */
.marquee-section {
  background: var(--green);
  padding: 16px 0;
  overflow: hidden;
  border-top: 3px solid var(--green-2);
}
.marquee-track-wrap { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.marquee-track .mx {
  color: var(--orange);
  font-size: 0.9rem;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Reviews ── */
.reviews-section {
  padding: 96px 0;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.review-stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.google-g-sm {
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-cta { text-align: center; }
.reviews-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 2px;
  transition: border-color var(--transition), color var(--transition);
}
.reviews-link:hover { color: var(--green-2); border-color: var(--green); }

/* ── FAQ ── */
.faq-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  border-color: var(--green);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.faq-trigger:hover { background: var(--bg-light); }
.faq-trigger[aria-expanded="true"] { color: var(--green); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease;
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-body.is-open { max-height: 300px; }
.faq-body p {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* FAQ sidebar */
.faq-sidebar {
  background: var(--green);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.faq-sidebar .eyebrow { color: rgba(255,255,255,0.6); }
.faq-sidebar h3 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}
.faq-sidebar p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--green);
  padding: 80px 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-band-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-band-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
}
.cta-band-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ── Footer ── */
.site-footer {
  background: #0e2418;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social:hover { background: var(--green-2); color: var(--white); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-list svg { margin-top: 3px; color: var(--green-2); flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── Mobile Sticky Call Bar ── */
.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(10,31,19,0.92) 0%, rgba(10,31,19,0.98) 60%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(249,115,22,0.35);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.mobile-sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  touch-action: manipulation;
}
.mobile-sticky-call {
  background: var(--orange);
  color: var(--white);
  flex: 1.6;
  box-shadow: 0 6px 18px rgba(249,115,22,0.4);
}
.mobile-sticky-call:active { background: var(--orange-h); transform: scale(0.98); }
.mobile-sticky-quote {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.mobile-sticky-quote:active { background: rgba(255,255,255,0.1); }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 90;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top:hover { background: var(--green-2); transform: translateY(-2px); }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── Utility ── */
.br-md { display: none; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* 1100px — keep form row, compress process */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-arrow { transform: rotate(90deg); }
  .trust-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-badges { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* 980px — stack two-col layouts */
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-right .btn { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .sa-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .br-md { display: block; }
}

/* 768px — form card stacks */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .form-card { padding: 24px 20px 28px; }
  .form-card-top { flex-direction: column; align-items: flex-start; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .field-wide { grid-column: span 1; }
  .form-input { font-size: 16px; }
  .top-bar-left { display: none; }
  .hero .container { padding-bottom: 120px; }
  .form-card-wrap { margin-top: -56px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }

  /* Mobile sticky call bar */
  .mobile-sticky { display: flex; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .back-to-top { bottom: calc(86px + env(safe-area-inset-bottom)); }

  /* Mobile: swap video for static <img> — smoother scroll, less data */
  .hero-video { display: none; }
  .hero-poster-img { display: block; }
  .hero { min-height: 92svh; }
}

/* 640px */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(2.1rem, 9vw, 3rem); }
  .form-card-wrap { margin-top: -40px; }
  .trust-badges { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
  .cta-band-btns { flex-direction: row; flex-wrap: wrap; }
}

/* 480px */
@media (max-width: 480px) {
  .hero-trust-row { gap: 12px 16px; }
  .hero-trust-item { font-size: 0.8rem; }
  .form-chips { display: none; }
  .city-chips { gap: 8px; }
  .map-dot-grid { grid-template-columns: 1fr; }
  .cta-band-btns { flex-direction: column; width: 100%; }
  .cta-band-btns .btn { width: 100%; justify-content: center; }
}

/* 400px */
@media (max-width: 400px) {
  .top-bar { display: none; }
  .hero-location-badge { font-size: 0.75rem; }
}
