:root {
  --primary: #0a4d2e;
  --primary-dark: #073822;
  --accent: #d4a017;
  --bg: #ffffff;
  --bg-soft: #f5f8f6;
  --bg-strip: #ecf2ee;
  --text: #1a1a1a;
  --text-muted: #5a6660;
  --border: #d8e0db;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(10, 77, 46, 0.08);
  --shadow-lg: 0 18px 48px rgba(10, 77, 46, 0.14);
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { color: var(--primary-dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); letter-spacing: -0.01em; margin-bottom: 12px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}
.btn-block { display: flex; width: 100%; }

/* Topbar */
.topbar {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
}
.brand-mark {
  background: var(--primary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.brand-text { font-size: 1.05rem; }
.topbar-phone {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
  padding: 72px 0 64px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  color: #8a6300;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.hero-trust li { display: flex; align-items: center; gap: 6px; }
.hero-trust li::before { content: "✓"; color: var(--primary); font-weight: 700; }

/* Quote form card */
.hero-card { display: flex; justify-content: center; }
.quote-form {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
}
.quote-form h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.quote-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.quote-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.quote-form input,
.quote-form select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  color: var(--text);
}
.quote-form input:focus,
.quote-form select:focus {
  outline: 2px solid var(--primary);
  outline-offset: -1px;
  border-color: var(--primary);
}
.quote-fine {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Trust bar */
.trustbar {
  background: var(--primary-dark);
  color: white;
  padding: 28px 0;
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
}
.trust-item span {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

/* Sections */
section { padding: 80px 0; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-muted); margin: 8px 0; font-size: 0.95rem; }
.service-price {
  margin-top: 14px !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

/* How it works */
.how { background: var(--bg-soft); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 24px;
}
.how-step {
  text-align: center;
}
.how-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.how-step p {
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* Areas */
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  list-style: none;
  margin-top: 24px;
}
.area-list li {
  background: var(--bg-soft);
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary-dark);
  position: relative;
}
.area-list li::before {
  content: "📍";
  margin-right: 8px;
}

/* Reviews */
.reviews { background: var(--bg-soft); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.review-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-card p { color: var(--text); }
.review-name {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted) !important;
  font-weight: 600;
}

/* CTA strip */
.cta-strip {
  background: var(--primary);
  color: white;
  text-align: center;
}
.cta-strip h2 { color: white; }
.cta-strip p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.9;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cta-inner .hero-cta { justify-content: center; }
.cta-strip .btn-ghost { color: white; border-color: white; }
.cta-strip .btn-ghost:hover { background: white; color: var(--primary); }

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .brand-text { color: white; font-size: 1.1rem; margin-bottom: 6px; }
.footer-fine { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 440px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a { color: white; }
.footer-copy {
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-copy p { color: rgba(255,255,255,0.7); }

/* Mobile */
@media (max-width: 880px) {
  .hero { padding: 48px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { max-width: none; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .trustbar { padding: 24px 0; }
  section { padding: 56px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar-phone { font-size: 0.85rem; }
  .brand-text { display: none; }
}

@media (max-width: 480px) {
  .trustbar-inner { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; }
  .quote-form { padding: 24px 20px; }
}
