:root {
  --green-900: #12361d;
  --green-800: #1a4e28;
  --green-700: #1f6c33;
  --green-600: #2a8c3f;
  --green-500: #38a64a;
  --green-200: #d9efdf;
  --green-100: #edf8ef;
  --ink: #17221b;
  --muted: #5f6d64;
  --line: #d7e4da;
  --card: #ffffff;
  --bg: #f6faf6;
  --shadow: 0 22px 60px rgba(23, 34, 27, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(56, 166, 74, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 228, 218, 0.9);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  font: inherit;
}

.btn:hover { transform: translateY(-1px); }
.btn-solid {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  box-shadow: 0 16px 36px rgba(42, 140, 63, 0.2);
}
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--green-800);
}
.btn-nav { white-space: nowrap; }
.full-width { width: 100%; }

.hero-section {
  padding: 48px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.eyebrow,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 0.95;
  max-width: 13ch;
}

.hero-text,
.section-intro p,
.card p,
.step-card p,
.site-footer p,
.quote-card .card-header p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
}

.point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.point span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.card {
  background: var(--card);
  border: 1px solid rgba(215, 228, 218, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 24px;
}

.card-header h2,
.section-intro h2,
.trust-card h3,
.site-footer h3,
.site-footer h4 {
  margin: 12px 0 0;
}

.card-header h2,
.section-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.estimate-box {
  margin: 22px 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}

.estimate-label {
  display: block;
  opacity: 0.85;
  font-size: 0.9rem;
}

.estimate-box strong {
  display: block;
  margin: 6px 0;
  font-size: 2.1rem;
}

.estimate-box small {
  display: block;
  opacity: 0.88;
  line-height: 1.5;
}

.quote-form,
.field-grid {
  display: grid;
  gap: 16px;
}

.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }

label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfe0d2;
  border-radius: 16px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(56, 166, 74, 0.18);
  border-color: var(--green-600);
}

.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
}

.form-note a {
  color: var(--green-800);
  font-weight: 700;
}

.notice {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.notice.ok {
  background: #e9f7ec;
  border: 1px solid #b7ddbf;
  color: #18572a;
}

.notice.warn {
  background: #fff7e6;
  border: 1px solid #f0d897;
  color: #6a5210;
}

.section {
  padding: 38px 0;
}

.muted-band {
  background: linear-gradient(180deg, rgba(237, 248, 239, 0.9), rgba(246, 250, 246, 0.8));
  border-top: 1px solid rgba(215, 228, 218, 0.9);
  border-bottom: 1px solid rgba(215, 228, 218, 0.9);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.left-align {
  text-align: left;
  margin-left: 0;
}

.service-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card { padding: 24px; }
.service-card h3 { margin: 0 0 10px; }

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.price-list {
  display: grid;
  gap: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(23, 34, 27, 0.04);
}

.price-row span { font-weight: 600; }
.price-row strong { font-size: 1.1rem; }

.trust-card {
  padding: 24px;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-700);
  font-weight: 800;
}

.process-grid {
  display: grid;
  gap: 22px;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(23, 34, 27, 0.04);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
}

.step-card h3 { margin: 0 0 10px; }

.site-footer {
  padding: 30px 0 44px;
  border-top: 1px solid rgba(215, 228, 218, 0.9);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer a {
  text-decoration: none;
  color: var(--green-800);
}

@media (max-width: 1050px) {
  .hero-grid,
  .pricing-layout,
  .service-grid,
  .step-grid,
  .footer-grid,
  .hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .two-up,
  .three-up,
  .service-grid,
  .step-grid,
  .footer-grid,
  .hero-points,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .section,
  .hero-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .quote-card,
  .service-card,
  .trust-card,
  .step-card {
    padding: 20px;
  }.site-logo {
  height: 140px;
  width: auto;
  display: block;
}site-header {
  background: #ffffff;
  border-bottom: 2px solid #e5e5e5;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-header {
  background: #ffffff;
  border-bottom: 2px solid #e5e5e5;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
 height: 100px;
  width: auto;
}
}

.brand-text strong {
  font-size: 20px;
  color: #1a1a1a;
}

.brand-text small {
  font-size: 12px;
  color: #666;
}
}
.site-logo {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header {
  padding: 15px 0;
}
