:root {
  --charcoal: #242a25;
  --charcoal-2: #303831;
  --charcoal-3: #3e483f;
  --green: #4f7e57;
  --green-dark: #3b6543;
  --green-soft: #dfe9df;
  --cream: #f3f0e7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #202520;
  --muted: #606960;
  --line: #d9ddd5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --warning: #8b6b2a;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 18px 50px rgba(31, 40, 33, 0.10);
  --shadow-soft: 0 10px 30px rgba(31, 40, 33, 0.07);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  z-index: 999;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 38px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 58px 0; }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-green { background: var(--green-soft); }
.section-cream { background: var(--cream); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: #8fbe95; }

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.25rem); font-weight: 790; }
h2 { font-size: clamp(2.1rem, 4vw, 4.25rem); font-weight: 760; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 730; letter-spacing: -0.02em; }
p { margin: 0; }
.lede { font-size: clamp(1.08rem, 2vw, 1.35rem); color: var(--muted); max-width: 760px; }
.section-dark .lede { color: #c8d0c8; }
.small { font-size: 0.9rem; color: var(--muted); }
.kicker { font-size: 0.94rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 42, 37, 0.09);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--charcoal);
  display: grid;
  place-items: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.brand-mark strong { color: #79a880; font-size: 1.18rem; letter-spacing: -.08em; }
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,.52);
  top: 10px;
  transform-origin: right center;
}
.brand-mark::before { width: 17px; left: 5px; transform: rotate(-21deg); }
.brand-mark::after { width: 17px; right: 5px; transform: rotate(21deg); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.2rem; letter-spacing: -.04em; }
.brand-copy span { margin-top: 5px; color: var(--muted); font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a { text-decoration: none; font-size: .93rem; font-weight: 680; color: #424b43; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--green-dark); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after { width: 20px; height: 2px; background: var(--charcoal); display: block; position: relative; }
.mobile-toggle span::before, .mobile-toggle span::after { content: ""; position: absolute; left: 0; }
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }
.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 14px 19px 21px; }
.mobile-nav.open { display: grid; }
.mobile-nav a { text-decoration: none; padding: 12px 0; font-weight: 700; border-bottom: 1px solid rgba(36,42,37,.08); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 760;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: #171b18; }
.btn-light { background: var(--cream); color: var(--charcoal); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--green); }
.section-dark .btn-outline { border-color: rgba(255,255,255,.28); color: var(--cream); }
.btn-link { padding: 0; min-height: auto; color: var(--green-dark); border: 0; }
.btn-link::after { content: "→"; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(29,35,30,.98) 0%, rgba(36,42,37,.97) 54%, rgba(45,55,46,.94) 100%);
  color: var(--cream);
  padding: 78px 0 72px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 50%, black);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: 54px; align-items: center; }
.hero h1 { max-width: 800px; }
.hero h1 em { color: #84b58a; font-style: normal; }
.hero-copy > p { margin-top: 25px; max-width: 695px; color: #cdd5cd; font-size: 1.14rem; }
.hero .btn-row { margin-top: 31px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 21px 31px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.proof-item { display: flex; gap: 11px; align-items: flex-start; color: #dce2dc; font-size: .88rem; font-weight: 670; }
.proof-icon { width: 22px; height: 22px; border: 1px solid rgba(132,181,138,.7); border-radius: 50%; display: grid; place-items: center; color: #91c298; flex: none; font-size: .72rem; }

.hero-plan {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 30px 75px rgba(0,0,0,.2);
  overflow: hidden;
}
.plan-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.065) 1px, transparent 1px);
  background-size: 32px 32px;
}
.plan-property { position: absolute; inset: 54px 46px 48px; border: 2px solid rgba(244,241,232,.56); border-radius: 6px; transform: rotate(-2deg); }
.plan-house { position: absolute; width: 41%; height: 31%; left: 31%; top: 33%; background: rgba(244,241,232,.13); border: 2px solid rgba(244,241,232,.55); }
.plan-walk { position: absolute; width: 8%; height: 32%; left: 47%; bottom: 0; background: rgba(244,241,232,.10); border-left: 1px solid rgba(244,241,232,.4); border-right: 1px solid rgba(244,241,232,.4); }
.zone { position: absolute; border: 1.5px dashed rgba(126,183,135,.72); border-radius: 50%; }
.zone::after { content: ""; width: 7px; height: 7px; background: #8fbe95; border: 2px solid var(--charcoal); border-radius: 50%; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.zone-1 { width: 116px; height: 116px; top: 62px; left: 40px; }
.zone-2 { width: 132px; height: 132px; top: 51px; right: 35px; }
.zone-3 { width: 105px; height: 105px; bottom: 48px; left: 38px; }
.zone-4 { width: 128px; height: 128px; bottom: 34px; right: 27px; }
.plan-pipe { position: absolute; left: 83px; right: 73px; top: 245px; height: 2px; background: #7baa82; transform: rotate(4deg); box-shadow: 0 0 0 1px rgba(123,170,130,.1); }
.plan-pipe::before, .plan-pipe::after { content:""; position:absolute; height:2px; background:#7baa82; transform-origin:left center; }
.plan-pipe::before { width:96px; left: 6px; transform: rotate(-63deg); }
.plan-pipe::after { width:115px; right: -52px; transform: rotate(66deg); }
.calc-card {
  position: absolute;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(24,29,25,.84);
  backdrop-filter: blur(8px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .72rem;
  color: #d8e1d8;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.calc-card strong { color: #91c298; }
.plan-header {
  position:absolute;
  left:24px;
  top:22px;
  z-index:2;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(18,24,20,.86);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(8px);
}
.plan-header span, .plan-summary span, .plan-caption {
  display:block;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#9db39f;
}
.plan-header strong {
  display:block;
  margin-top:4px;
  font-size:1rem;
  color:#eef3ef;
}
.plan-summary {
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
}
.plan-summary > div {
  padding:16px 16px 17px;
  background:rgba(18,24,20,.88);
}
.plan-summary strong {
  display:block;
  margin-top:6px;
  color:#eef3ef;
  font-size:1.2rem;
}
.plan-caption {
  position:absolute;
  right:24px;
  top:24px;
  max-width:180px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(18,24,20,.82);
  border:1px solid rgba(255,255,255,.12);
  color:#dce5dd;
  line-height:1.5;
  text-transform:none;
  letter-spacing:0;
}
.calc-card { display:none; }
.calc-a { top: 21px; left: 21px; }
.calc-b { right: 19px; top: 180px; }
.calc-c { left: 89px; bottom: 18px; }

.trust-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-cell { padding: 24px 28px; border-right: 1px solid var(--line); }
.trust-cell:last-child { border-right: 0; }
.trust-cell strong { display: block; font-size: .97rem; }
.trust-cell span { display: block; color: var(--muted); margin-top: 4px; font-size: .82rem; }

.split-heading { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.split-heading .lede { justify-self: end; }

.service-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-choice {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius-lg);
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-choice.dark { background: var(--charcoal); color: var(--cream); border-color: transparent; }
.service-choice::after { content: ""; position: absolute; inset: auto -30px -80px auto; width: 240px; height: 240px; border: 1px solid rgba(79,126,87,.27); border-radius: 50%; box-shadow: 0 0 0 42px rgba(79,126,87,.07), 0 0 0 84px rgba(79,126,87,.04); }
.service-choice .choice-number { color: var(--green); font-size: .85rem; font-weight: 850; letter-spacing: .12em; }
.service-choice.dark .choice-number { color: #8fbe95; }
.service-choice h3 { font-size: clamp(2rem,4vw,3.25rem); margin-top: 14px; }
.service-choice p { color: var(--muted); max-width: 530px; margin-top: 16px; font-size: 1.02rem; }
.service-choice.dark p { color: #c7d0c8; }
.service-choice .btn-link { margin-top: 28px; align-self: flex-start; position: relative; z-index: 1; }
.service-choice.dark .btn-link { color: #9ac8a0; }

.math-section { position: relative; overflow: hidden; }
.math-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.math-copy h2 { max-width: 690px; }
.math-copy .lede { margin-top: 24px; }
.math-points { display: grid; gap: 15px; margin-top: 32px; }
.math-point { display: grid; grid-template-columns: 35px 1fr; gap: 13px; align-items: start; }
.math-point span:first-child { width: 32px; height: 32px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; font-size: .82rem; font-weight: 850; }
.math-point strong { display:block; }
.math-point p { color:var(--muted); margin-top:3px; font-size:.93rem; }
.calc-panel { background: var(--charcoal); color: var(--cream); border-radius: 28px; padding: 34px; min-height: 500px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.calc-panel::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size:30px 30px; }
.calc-panel > * { position:relative; z-index:1; }
.calc-panel-head { display:flex; align-items:center; justify-content:space-between; padding-bottom:20px; border-bottom:1px solid var(--line-dark); }
.calc-panel-head strong { font-size:.86rem; letter-spacing:.12em; text-transform:uppercase; }
.status-pill { display:inline-flex; gap:7px; align-items:center; font-size:.74rem; color:#b6d1ba; }
.status-pill::before { content:""; width:7px; height:7px; border-radius:50%; background:#86bd8d; box-shadow:0 0 0 5px rgba(134,189,141,.13); }
.calc-rows { display:grid; gap:12px; margin-top:25px; }
.calc-row { display:grid; grid-template-columns:1fr auto; gap:22px; padding:13px 0; border-bottom:1px solid rgba(255,255,255,.09); }
.calc-row span { color:#aeb8af; font-size:.87rem; }
.calc-row code { color:#e6ede6; font-size:.86rem; }
.calc-result { margin-top:27px; padding:22px; border:1px solid rgba(143,190,149,.34); background:rgba(79,126,87,.15); border-radius:16px; }
.calc-result span { display:block; color:#a7b6a9; font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; }
.calc-result strong { display:block; font-size:1.35rem; margin-top:5px; color:#a5d0aa; }
.calc-note { margin-top:20px; color:#aeb8af; font-size:.78rem; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.process-step { background: var(--white); padding: 30px 26px 34px; min-height: 290px; }
.process-step .num { color: var(--green-dark); font-family: ui-monospace,monospace; font-weight: 800; font-size: .83rem; }
.process-step h3 { margin-top: 42px; }
.process-step p { margin-top: 13px; color: var(--muted); font-size: .92rem; }

.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-card { padding:28px; background:var(--white); border:1px solid var(--line); border-radius:18px; }
.feature-icon { width:42px; height:42px; border-radius:12px; background:var(--green-soft); display:grid; place-items:center; color:var(--green-dark); font-weight:850; }
.feature-card h3 { margin-top:26px; }
.feature-card p { margin-top:11px; color:var(--muted); font-size:.93rem; }

.route-section { background: var(--charcoal); color: var(--cream); }
.route-layout { display:grid; grid-template-columns:.88fr 1.12fr; gap:65px; align-items:center; }
.route-copy .lede { margin-top:22px; }
.route-copy .btn-row { margin-top:29px; }
.route-board { min-height:430px; border-radius:25px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.045); position:relative; overflow:hidden; }
.route-board::before { content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:34px 34px; }
.route-line { position:absolute; height:3px; background:#77a97e; transform-origin:left center; border-radius:10px; box-shadow:0 0 16px rgba(119,169,126,.22); }
.route-line.a { width:155px; left:90px; top:220px; transform:rotate(-28deg); }
.route-line.b { width:150px; left:224px; top:148px; transform:rotate(19deg); }
.route-line.c { width:132px; left:355px; top:198px; transform:rotate(50deg); }
.route-line.d { width:180px; left:175px; top:296px; transform:rotate(-10deg); }
.map-pin { position:absolute; width:31px; height:31px; border-radius:50% 50% 50% 0; background:var(--cream); transform:rotate(-45deg); box-shadow:0 7px 18px rgba(0,0,0,.22); }
.map-pin::after { content:""; width:10px;height:10px;border-radius:50%;background:var(--green);position:absolute;left:10px;top:10px; }
.map-pin.one { left:77px;top:205px; }
.map-pin.two { left:225px;top:127px; }
.map-pin.three { left:370px;top:175px; }
.map-pin.four { left:434px;top:302px; }
.map-pin.five { left:167px;top:278px; }
.map-card { position:absolute; right:20px; top:20px; width:190px; padding:17px; border-radius:14px; background:rgba(25,31,26,.86); border:1px solid rgba(255,255,255,.13); backdrop-filter:blur(8px); }
.map-card span { color:#98a69a; font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; }
.map-card strong { display:block; margin-top:5px; font-size:1.05rem; }
.map-card small { display:block; margin-top:8px; color:#9fbea4; }

.cta-band { padding: 74px 0; background: var(--green-soft); }
.cta-inner { display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; }
.cta-inner h2 { max-width:790px; font-size:clamp(2rem,4vw,3.6rem); }
.cta-inner p { color:var(--muted); margin-top:15px; max-width:700px; }

.page-hero { padding: 82px 0 64px; background: var(--charcoal); color: var(--cream); position:relative; overflow:hidden; }
.page-hero::after { content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:40px 40px;opacity:.5;mask-image:linear-gradient(90deg,transparent,black); }
.page-hero .container { position:relative;z-index:1; }
.page-hero h1 { font-size:clamp(3rem,6vw,5.6rem); max-width:930px; }
.page-hero .lede { margin-top:24px; max-width:800px; }
.page-hero .btn-row { margin-top:31px; }

.content-grid { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:55px; align-items:start; }
.content-main { min-width:0; }
.sidebar { position:sticky; top:112px; display:grid; gap:17px; }
.sidebar-card { padding:25px; border:1px solid var(--line); border-radius:18px; background:var(--white); box-shadow:var(--shadow-soft); }
.sidebar-card h3 { font-size:1.22rem; }
.sidebar-card p { color:var(--muted); font-size:.9rem; margin-top:10px; }
.sidebar-card .btn { margin-top:20px; width:100%; }

.service-list { display:grid; grid-template-columns:repeat(2,1fr); gap:15px; margin-top:30px; }
.service-item { display:flex; gap:13px; align-items:flex-start; padding:20px; background:var(--white); border:1px solid var(--line); border-radius:14px; }
.service-item::before { content:"✓"; width:24px;height:24px;display:grid;place-items:center;border-radius:50%;background:var(--green-soft);color:var(--green-dark);font-weight:850;flex:none;font-size:.77rem; }
.service-item strong { display:block; }
.service-item span { display:block;color:var(--muted);font-size:.86rem;margin-top:3px; }

.notice { padding:20px 22px; border-left:4px solid var(--green); background:var(--green-soft); border-radius:0 12px 12px 0; }
.notice strong { display:block; }
.notice p { margin-top:5px;color:#4f5b50;font-size:.91rem; }

.form-shell { background:var(--white); border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow-soft); overflow:hidden; }
.form-head { padding:31px 34px; background:var(--charcoal); color:var(--cream); }
.form-head p { color:#bec8bf; margin-top:10px; }
.form-body { padding:34px; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label, fieldset legend { font-size:.84rem; font-weight:760; color:#3e473f; }
.field .hint { color:var(--muted);font-size:.78rem;margin-top:-3px; }
input, select, textarea {
  width:100%;
  border:1px solid #cfd5cd;
  background:#fff;
  color:var(--ink);
  border-radius:10px;
  padding:12px 13px;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease;
}
input:focus, select:focus, textarea:focus { border-color:var(--green);box-shadow:0 0 0 4px rgba(79,126,87,.12); }
textarea { min-height:130px; resize:vertical; }
input[type="file"] { padding:10px; background:#fafbf9; }
fieldset { border:0; padding:0; margin:0; }
.check-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px 14px; margin-top:9px; }
.check, .radio { display:flex; gap:9px; align-items:flex-start; font-size:.88rem; color:#444d45; }
.check input, .radio input { width:auto; margin-top:4px; accent-color:var(--green); }
.form-actions { display:flex; align-items:center; justify-content:space-between; gap:20px; border-top:1px solid var(--line); margin-top:28px; padding-top:25px; }
.form-actions p { color:var(--muted);font-size:.78rem;max-width:510px; }
.form-status { display:none; padding:12px 14px; margin-bottom:20px; border-radius:10px; font-size:.88rem; }
.form-status.show { display:block; }
.form-status.error { background:#f8e4e1;color:#7e3128; }
.form-status.info { background:var(--green-soft);color:#33583a; }

.request-choice { display:grid;grid-template-columns:repeat(2,1fr);gap:22px; }
.request-card { padding:37px;min-height:350px;border-radius:24px;border:1px solid var(--line);background:var(--white);display:flex;flex-direction:column;box-shadow:var(--shadow-soft); }
.request-card.dark { background:var(--charcoal);color:var(--cream);border-color:transparent; }
.request-card h2 { font-size:2.5rem; }
.request-card p { color:var(--muted);margin-top:17px; }
.request-card.dark p { color:#bfcbc0; }
.request-card ul { padding-left:19px;color:var(--muted);font-size:.9rem; }
.request-card.dark ul { color:#bfcbc0; }
.request-card .btn { margin-top:auto;align-self:flex-start; }

.service-checker { background:var(--white);border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow);overflow:hidden; }
.checker-grid { display:grid;grid-template-columns:.8fr 1.2fr; }
.checker-copy { padding:36px;background:var(--charcoal);color:var(--cream); }
.checker-copy p { color:#c0c9c1;margin-top:14px; }
.checker-form { padding:36px; }
.checker-result { display:none;margin-top:19px;padding:18px;border-radius:14px;border:1px solid var(--line); }
.checker-result.show { display:block; }
.checker-result.core { background:#e6efe6;border-color:#bfd3c0; }
.checker-result.extended { background:#f4eddc;border-color:#ddcda8; }
.checker-result.review { background:#eceeee;border-color:#d2d8d3; }
.checker-result.error { background:#f7e5e2;border-color:#e5c2bc; }
.checker-result strong { display:block;font-size:1.05rem; }
.checker-result p { margin-top:6px;color:#555f56;font-size:.89rem; }
.loading-dot { display:inline-block;width:12px;height:12px;border-radius:50%;border:2px solid rgba(79,126,87,.28);border-top-color:var(--green);animation:spin .8s linear infinite;vertical-align:-2px;margin-right:7px; }
@keyframes spin { to { transform:rotate(360deg); } }

.area-map-shell {
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 24px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}
.area-map-shell img {
  display:block;
  width:100%;
  height:auto;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
}
.metric-band { display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:18px;overflow:hidden;margin-top:35px; }
.metric { background:var(--white);padding:25px; }
.metric strong { display:block;font-size:1.7rem;color:var(--green-dark); }
.metric span { display:block;color:var(--muted);font-size:.84rem;margin-top:5px; }

.footer { background:#1b201c;color:#dce2dc;padding:64px 0 27px; }
.footer-grid { display:grid;grid-template-columns:1.3fr .7fr .7fr 1fr;gap:50px; }
.footer-brand p { color:#aeb8af;max-width:390px;margin-top:18px;font-size:.91rem; }
.footer h3 { font-size:.82rem;text-transform:uppercase;letter-spacing:.12em;color:#8fbe95; }
.footer-links { display:grid;gap:10px;margin-top:17px; }
.footer-links a { color:#c7cec8;text-decoration:none;font-size:.9rem; }
.footer-links a:hover { color:#fff; }
.license-block { padding:18px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.035); }
.license-block strong { display:block;font-size:1rem; }
.license-block span { display:block;color:#aeb8af;font-size:.8rem;margin-top:4px; }
.footer-bottom { display:flex;justify-content:space-between;gap:30px;align-items:center;border-top:1px solid rgba(255,255,255,.12);margin-top:47px;padding-top:23px;color:#8f988f;font-size:.78rem; }
.footer-bottom a { color:inherit; }

.hidden { display:none !important; }

@media (max-width: 1020px) {
  .desktop-nav, .header-actions .btn-outline { display:none; }
  .mobile-toggle { display:flex; }
  .hero-grid, .math-layout, .route-layout { grid-template-columns:1fr; }
  .hero-plan { min-height:430px; max-width:680px; width:100%; }
  .plan-caption { position:static; margin: 20px 24px 0; max-width:none; }
  .plan-summary { grid-template-columns:1fr; position:static; margin: 18px 24px 24px; left:auto; right:auto; bottom:auto; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-cell:nth-child(2) { border-right:0; }
  .trust-cell:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .split-heading { grid-template-columns:1fr;gap:20px; }
  .split-heading .lede { justify-self:start; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .content-grid { grid-template-columns:1fr; }
  .sidebar { position:static;grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.2fr .8fr .8fr; }
  .footer-grid > :last-child { grid-column:1/-1; }
}

@media (max-width: 760px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .section { padding:68px 0; }
  .section-sm { padding:45px 0; }
  .site-header .header-actions .btn-primary { display:none; }
  .header-inner { min-height:69px; }
  .brand-copy span { display:none; }
  .hero { padding:60px 0 54px; }
  h1 { font-size:clamp(2.8rem,14vw,4.4rem); }
  .hero-grid { gap:38px; }
  .hero-plan { min-height:360px; }
  .plan-property { inset:49px 30px 36px; }
  .calc-b { display:none; }
  .calc-c { left:45px; }
  .plan-header { position:static; margin: 24px 24px 0; }
  .service-choice-grid, .feature-grid, .request-choice, .checker-grid, .sidebar { grid-template-columns:1fr; }
  .service-choice { min-height:340px;padding:29px; }
  .process-grid { grid-template-columns:1fr; }
  .process-step { min-height:auto; }
  .process-step h3 { margin-top:25px; }
  .route-board { min-height:380px; }
  .route-line, .map-pin { transform:scale(.85); }
  .map-card { width:170px; }
  .cta-inner { grid-template-columns:1fr; }
  .form-grid, .check-grid, .service-list, .metric-band { grid-template-columns:1fr; }
  .form-body, .form-head { padding:25px 21px; }
  .form-actions { align-items:stretch;flex-direction:column; }
  .form-actions .btn { width:100%; }
  .footer-grid { grid-template-columns:1fr;gap:34px; }
  .footer-grid > :last-child { grid-column:auto; }
  .footer-bottom { align-items:flex-start;flex-direction:column;gap:10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition:none !important; animation:none !important; }
}


/* ---- V2.2 branding refresh ---- */
.brand-logo { gap: 14px; }
.brand-logo-img { width: 235px; height: auto; display: block; }
.brand-tagline {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-logo-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  text-decoration: none;
  max-width: 340px;
}
.footer-logo-img { width: 100%; max-width: 300px; height: auto; }
.license-block-seal {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}
.seal-img {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
}
.license-copy { min-width: 0; }
.seal-side-card { text-align: center; }
.seal-side-card .seal-img { max-width: 180px; margin-inline: auto; }

.install-visual-section { background: linear-gradient(180deg, rgba(79,126,87,.06), transparent 65%); }
.install-board {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.install-board-copy .lede { margin-top: 18px; }
.install-board-steps {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.install-board-steps span {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 0 14px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-dark); font-weight: 780; font-size: .85rem;
}
.install-board-graphic {
  position: relative; min-height: 360px; border-radius: 22px;
  background: linear-gradient(135deg, #142019, #1b2720 60%, #101713);
  border: 1px solid rgba(255,255,255,.1); overflow: hidden;
}
.ib-grid { position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 34px 34px; }
.ib-site {
  position:absolute; inset: 46px 58px 42px; border: 1.5px solid rgba(235,243,236,.4); border-radius: 12px;
}
.ib-house {
  position:absolute; width: 36%; height: 30%; left: 31%; top: 28%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.38);
  clip-path: polygon(0 28%, 50% 0, 100% 28%, 100% 100%, 0 100%);
}
.ib-walk {
  position:absolute; width: 8%; height: 28%; left: 46%; top: 57%;
  background: rgba(255,255,255,.08); border-left: 1px solid rgba(255,255,255,.25); border-right: 1px solid rgba(255,255,255,.25);
}
.ib-arc { position:absolute; border: 2px dashed rgba(142, 214, 118, .58); border-radius: 50%; }
.arc-a { width: 150px; height: 150px; left: 60px; top: 44px; }
.arc-b { width: 180px; height: 180px; right: 48px; top: 36px; }
.arc-c { width: 168px; height: 168px; left: 56px; bottom: 36px; }
.ib-line { position:absolute; height: 2px; background: #7fd1ff; border-radius: 99px; box-shadow: 0 0 12px rgba(127,209,255,.38); }
.ib-line.main { left: 104px; right: 88px; top: 234px; }
.ib-line.branch-a { width: 88px; left: 135px; top: 204px; transform: rotate(-40deg); transform-origin: left center; }
.ib-line.branch-b { width: 102px; right: 118px; top: 198px; transform: rotate(53deg); transform-origin: right center; }
.ib-node { position:absolute; width: 14px; height: 14px; background: #8ad76d; border: 2px solid #122018; border-radius: 50%; }
.n1 { left: 94px; top: 228px; }
.n2 { left: 212px; top: 229px; }
.n3 { left: 338px; top: 229px; }
.n4 { right: 118px; top: 229px; }
.n5 { right: 74px; top: 180px; }
.ib-note {
  position:absolute; padding: 10px 12px; border-radius: 12px; background: rgba(12,18,14,.78);
  border: 1px solid rgba(255,255,255,.12); color: #e9efea; font-size: .8rem; font-weight: 700;
}
.ib-note.top { left: 20px; top: 18px; }
.ib-note.right { right: 18px; top: 18px; }
.ib-note.bottom { left: 18px; bottom: 18px; }

@media (max-width: 1020px) {
  .brand-tagline { display: none; }
  .brand-logo-img { width: 200px; }
  .install-board { grid-template-columns: 1fr; }
  .license-block-seal { grid-template-columns: 100px 1fr; }
}
@media (max-width: 760px) {
  .brand-logo-img { width: 170px; }
  .footer-logo-panel { max-width: 270px; }
  .license-block-seal { grid-template-columns: 1fr; text-align: left; }
  .seal-img { max-width: 96px; }
  .install-board { padding: 18px; }
  .install-board-graphic { min-height: 290px; }
  .ib-site { inset: 36px 24px 34px; }
  .arc-a { width: 110px; height: 110px; left: 24px; top: 44px; }
  .arc-b { width: 132px; height: 132px; right: 16px; top: 30px; }
  .arc-c { width: 122px; height: 122px; left: 26px; bottom: 34px; }
  .ib-line.main { left: 60px; right: 52px; top: 188px; }
  .ib-line.branch-a { width: 66px; left: 81px; top: 166px; }
  .ib-line.branch-b { width: 78px; right: 73px; top: 160px; }
  .n1 { left: 52px; top: 181px; }
  .n2 { left: 137px; top: 181px; }
  .n3 { left: 224px; top: 181px; }
  .n4 { right: 68px; top: 181px; }
  .n5 { right: 35px; top: 146px; }
}


/* ---- V2.2.2 soften robotic feel + improve seal visibility ---- */
.hero-plan {
  background: linear-gradient(180deg, rgba(228,232,221,.14), rgba(210,218,205,.09));
}
.hero-plan::after {
  content:"";
  position:absolute;
  inset: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250,247,240,.09), rgba(250,247,240,.03));
  border: 1px solid rgba(245,240,229,.16);
  pointer-events:none;
}
.hero-plan > * { position: relative; z-index: 1; }
.plan-header,
.plan-caption {
  background: rgba(245,241,231,.96);
  border: 1px solid rgba(36,42,37,.08);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(10,14,12,.16);
}
.plan-header span,
.plan-caption { color: #465348; }
.plan-header strong { color: #1d251f; }
.plan-summary {
  background: rgba(36,42,37,.10);
  border: 1px solid rgba(245,241,231,.16);
  box-shadow: 0 16px 28px rgba(0,0,0,.12);
}
.plan-summary > div {
  background: rgba(247,244,236,.94);
}
.plan-summary span { color: #536053; }
.plan-summary strong { color: #1c241e; }
.plan-property { border-color: rgba(244,241,232,.34); }
.plan-house, .plan-walk { background: rgba(244,241,232,.10); }
.plan-pipe, .plan-pipe::before, .plan-pipe::after { background:#8bc18f; }

.install-board {
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
}
.install-board-graphic {
  background: linear-gradient(180deg, #4a514a 0%, #434b43 55%, #3b443b 100%);
  border-color: rgba(255,255,255,.14);
}
.install-board-graphic::after {
  content:"";
  position:absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(248,244,236,.18);
  pointer-events:none;
}
.ib-note {
  background: rgba(247,244,236,.96);
  border: 1px solid rgba(36,42,37,.10);
  color: #1f2821;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}
.ib-site { border-color: rgba(248,244,236,.34); }
.ib-house { background: rgba(248,244,236,.14); border-color: rgba(248,244,236,.34); }
.ib-walk { background: rgba(248,244,236,.10); border-left-color: rgba(248,244,236,.22); border-right-color: rgba(248,244,236,.22); }
.ib-line { background: #8fd7ff; }
.ib-arc { border-color: rgba(147, 218, 122, .62); }

.license-block-seal {
  grid-template-columns: 156px 1fr;
  gap: 20px;
  align-items: center;
}
.license-block-seal .seal-img {
  max-width: 138px;
  background: #f7f4ec;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  justify-self: center;
}
.license-copy strong { color: #f4f7f4; font-size: 1.02rem; }
.license-copy span { color: #c8d1c9; line-height: 1.45; }
.seal-side-card {
  background: #f7f4ec;
  border-color: rgba(36,42,37,.08);
  color: var(--ink);
}
.seal-side-card .seal-img {
  max-width: 220px;
  background: transparent;
  box-shadow: none;
}
.seal-side-card .small { color: #586458; }

@media (max-width: 760px) {
  .plan-header { max-width: 82%; }
  .plan-caption {
    right: auto;
    left: 24px;
    top: auto;
    bottom: 106px;
    max-width: 70%;
  }
  .license-block-seal { grid-template-columns: 1fr; gap: 14px; }
  .license-block-seal .seal-img { max-width: 124px; }
}


/* ---- V2.3 old-fashioned / youthful revival ---- */
body {
  background: #f6f1e6;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}
.brand-tagline,
.desktop-nav a,
.btn,
.eyebrow,
.kicker,
.plan-header span,
.plan-summary span,
.status-pill,
.calc-panel-head strong,
.feature-icon,
.choice-number,
.footer h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.site-header {
  background: rgba(246,241,230,.98);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(36,42,37,0.12);
}
.btn {
  border-radius: 9px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.btn-primary { background: #4c7853; }
.btn-primary:hover { background: #3d6142; }
.hero {
  background: linear-gradient(180deg, #242c25 0%, #1c231d 100%);
}
.hero::after {
  opacity: .12;
}
.hero h1 em { color: #a7cf93; }
.hero-plan {
  min-height: 470px;
  background: #eee6d7;
  border: 1px solid rgba(245,240,229,.18);
  border-radius: 24px;
  box-shadow: 0 26px 50px rgba(0,0,0,.18);
}
.hero-plan::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(46,63,48,.26);
  border-radius: 18px;
}
.plan-grid {
  inset: 18px;
  background-image:
    linear-gradient(rgba(46,63,48,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,63,48,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.plan-property {
  inset: 94px 54px 118px;
  border: 2px solid rgba(79,120,83,.36);
  border-radius: 0;
  transform: none;
}
.plan-house {
  width: 40%;
  height: 30%;
  left: 30%;
  top: 28%;
  background: rgba(92,104,90,.18);
  border: 1px solid rgba(92,104,90,.42);
  clip-path: polygon(0 26%, 50% 0, 100% 26%, 100% 100%, 0 100%);
}
.plan-walk {
  width: 7%;
  left: 46.5%;
  background: rgba(92,104,90,.12);
  border-left: 1px solid rgba(92,104,90,.32);
  border-right: 1px solid rgba(92,104,90,.32);
}
.zone { border: 1.5px dashed rgba(120,169,110,.68); }
.zone::after {
  width: 8px; height: 8px;
  background: #8cb684;
  border: 2px solid #2b342c;
}
.plan-pipe,
.plan-pipe::before,
.plan-pipe::after {
  background: #7faa82;
  height: 2px;
}
.plan-header {
  left: 26px;
  top: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.plan-header span {
  color: #5b6658;
  font-size: .78rem;
  letter-spacing: .12em;
}
.plan-header strong {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: #2a352c;
}
.plan-summary {
  left: 26px;
  right: 26px;
  bottom: 24px;
  gap: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}
.plan-summary > div {
  background: rgba(248,244,236,.98);
  border: 1px solid rgba(44,60,46,.18);
  min-height: 78px;
}
.plan-summary > div + div { border-left: 0; }
.plan-summary span {
  color: #566156;
  font-size: .72rem;
  letter-spacing: .08em;
}
.plan-summary strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  color: #243026;
}
.plan-caption {
  right: 26px;
  top: 26px;
  max-width: 190px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #4f5c51;
  line-height: 1.6;
  text-transform: none;
  font-size: .88rem;
}

.install-board {
  background: #fbf7ee;
  border: 1px solid #d9d3c4;
  box-shadow: 0 12px 26px rgba(41,48,41,.08);
}
.install-board-copy h2 { max-width: 520px; }
.install-board-graphic {
  min-height: 340px;
  background: #efe7d7;
  border: 1px solid #d4ccb8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.install-board-graphic::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(56,70,54,.20);
  border-radius: 14px;
}
.install-board-graphic::after {
  inset: auto;
  content: none;
}
.ib-grid {
  inset: 16px;
  background-image: linear-gradient(rgba(60,72,58,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(60,72,58,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ib-site {
  inset: 72px 42px 54px;
  border: 1px solid rgba(76,102,76,.30);
  border-radius: 0;
}
.ib-house {
  background: rgba(98,107,94,.18);
  border-color: rgba(98,107,94,.38);
}
.ib-walk {
  background: rgba(98,107,94,.10);
  border-left-color: rgba(98,107,94,.28);
  border-right-color: rgba(98,107,94,.28);
}
.ib-line { background: #7faa82; box-shadow: none; }
.ib-arc { border-color: rgba(122,175,111,.6); }
.ib-note {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #4e5b4f;
  font-size: .82rem;
  padding: 0;
}
.ib-note.bottom {
  left: auto;
  right: 18px;
  bottom: 18px;
}
.metric, .feature-card, .service-choice, .process-step, .sidebar-card, .form-shell, .service-checker {
  border-radius: 16px;
}
.license-block-seal {
  grid-template-columns: 150px 1fr;
  background: rgba(255,255,255,.05);
}
.license-block-seal .seal-img {
  max-width: 132px;
  background: #f6f1e6;
  padding: 10px;
  border-radius: 50%;
}

@media (max-width: 760px) {
  .hero-plan {
    min-height: 410px;
  }
  .plan-property {
    inset: 86px 22px 104px;
  }
  .plan-header {
    left: 22px;
    top: 18px;
    max-width: 60%;
  }
  .plan-header strong {
    font-size: 1.08rem;
  }
  .plan-caption {
    left: 22px;
    right: 22px;
    top: auto;
    bottom: 108px;
    max-width: none;
    font-size: .82rem;
  }
  .plan-summary {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
  .plan-summary > div {
    min-height: 62px;
    padding: 10px 10px 12px;
  }
  .plan-summary span {
    font-size: .60rem;
  }
  .plan-summary strong {
    font-size: 1.05rem;
  }
  .install-board-graphic {
    min-height: 280px;
  }
  .ib-site {
    inset: 58px 18px 44px;
  }
  .license-block-seal {
    grid-template-columns: 1fr;
  }
}
