:root {
  --bg: #f4f1ea;
  --bg-2: #ebe6db;
  --ink: #0e1612;
  --ink-2: #2a3530;
  --muted: #6a7470;
  --line: #d8d2c4;
  --green: #143d2c;
  --green-2: #1f5a3f;
  --green-soft: #cfe0d3;
  --yellow: #f4c233;
  --yellow-2: #e8a90f;
  --paper: #fbf9f3;
  --black: #0a0f0d;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }
@media (min-width: 961px) {
  html, body { overflow-x: clip; }
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
.display { font-family: 'Archivo', sans-serif; font-weight: 800; letter-spacing: -0.025em; line-height: 0.92; }
.mono { font-family: 'JetBrains Mono', monospace; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  background: var(--black);
  color: #d4ded6;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 24px;
}
.topbar .marquee {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  flex: 1;
}
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
.topbar .right { display: flex; gap: 18px; align-items: center; }
.topbar .right span:first-child { color: var(--yellow); font-weight: 600; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 78px;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo .mark {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-4deg);
}
.logo .mark span { transform: rotate(4deg); display: block; line-height: 1; }
.logo .name { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.logo .name b { font-size: 18px; }
.logo .name em { font-size: 10px; font-style: normal; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; gap: 32px; justify-content: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--yellow);
}
.nav-cta { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--black); }
.btn-dark { background: var(--green); color: var(--bg); }
.btn-dark:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--yellow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn .arrow { width: 18px; height: 18px; display: inline-grid; place-items: center; }
.btn .arrow svg { width: 14px; height: 14px; }

.hero { padding: 32px 0 24px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 56px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  padding: 8px 14px;
  background: var(--green-soft);
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow .live {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(20,61,44,0.18);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(20,61,44,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(20,61,44,0.05); }
}
h1.headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: var(--ink);
}
h1.headline .accent {
  font-style: italic;
  font-weight: 800;
  color: var(--green);
  position: relative;
  display: inline-block;
}
h1.headline .accent::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: 6%;
  height: 18%;
  background: var(--yellow);
  z-index: -1;
  transform: skew(-8deg);
}
h1.headline .strike { text-decoration: line-through; text-decoration-thickness: 0.06em; text-decoration-color: var(--yellow-2); color: var(--muted); }
.hero-sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.hero-actions .ph { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }

.hero-trust {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.trust-item .num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-item .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 380px;
  max-height: 460px;
  margin-left: auto;
  width: 100%;
  background: var(--green);
  border-radius: 12px;
  overflow: hidden;
  color: var(--bg);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual .stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(244,194,51,0.06) 22px 24px);
}
.hero-stripes { mix-blend-mode: multiply; opacity: 0.25; }
.hero-visual .label {
  position: absolute; top: 18px; left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}
.hero-label { color: rgba(255,255,255,0.7); text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.hero-visual .corner-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}
.hero-corner { color: rgba(255,255,255,0.85); text-shadow: 0 1px 2px rgba(0,0,0,0.4); }

.sticker {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 168px; height: 168px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--black);
  transform: rotate(-12deg);
  font-family: 'Archivo', sans-serif;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.sticker .row1 { font-size: 10px; letter-spacing: 0.2em; font-weight: 700; }
.sticker .row2 { font-size: 44px; font-weight: 900; line-height: 1; margin: 4px 0; letter-spacing: -0.03em; }
.sticker .row3 { font-size: 10px; letter-spacing: 0.16em; font-weight: 700; }

.ticker {
  background: var(--black);
  color: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: scroll 40s linear infinite;
  width: max-content;
  align-items: center;
}
.ticker-track span {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.ticker-track span::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow);
  transform: rotate(45deg);
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section { padding: 96px 0; }
.section-header { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 2px solid var(--ink);
  width: 80px;
}
.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 900px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 16px;
}

.about { background: var(--paper); border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-copy p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.about-copy p:first-child::first-letter {
  font-family: 'Archivo', sans-serif;
  font-size: 72px;
  font-weight: 900;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--green);
}
.counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.counties .c {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.counties .c:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.counties .c:nth-child(even) { padding-left: 24px; }
.counties .c .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

.about-feature {
  background: var(--green);
  color: var(--bg);
  padding: 40px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.about-feature .bg-num {
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 280px;
  line-height: 1;
  color: rgba(244,194,51,0.08);
  pointer-events: none;
}
.about-feature-kicker { color: var(--yellow); position: relative; margin: 0; }
.about-feature .ftitle {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  position: relative;
}
.about-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
  position: relative;
}
.feat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.feat-mini { background: var(--paper); padding: 24px; border: 1px solid var(--line); }
.feat-mini .ttl { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.feat-mini p { font-size: 13px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.feat-mini .icn {
  width: 40px; height: 40px;
  background: var(--green-soft);
  border-radius: 4px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feat-mini .icn svg { width: 20px; height: 20px; color: var(--green); }

.services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.svc {
  grid-column: span 6;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 320px;
}
.svc:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.svc:hover .svc-num { color: var(--yellow); }
.svc:hover .svc-meta { color: rgba(255,255,255,0.5); }
.svc:hover .svc-list li { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.12); }
.svc:hover .svc-cta { color: var(--yellow); }
.svc.featured {
  grid-column: span 12;
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
  flex-direction: row;
  align-items: stretch;
  min-height: 280px;
}
.svc.featured .svc-num { color: var(--yellow); }
.svc.featured .svc-meta { color: rgba(255,255,255,0.5); }
.svc.featured .svc-list li { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.12); }
.svc.featured > div { flex: 1; }
.svc.featured .feat-side {
  background: var(--yellow);
  color: var(--black);
  padding: 36px;
  margin: -36px -36px -36px 0;
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc.featured .feat-side .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.svc.featured .feat-side .price {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.feat-side-price { font-size: 44px !important; line-height: 1 !important; }
.feat-side-foot { font-size: 11px; letter-spacing: 0.1em; opacity: 0.7; }
.svc.featured .feat-side .price small { font-size: 16px; font-weight: 600; }
.svc.featured .feat-side .desc { font-size: 14px; line-height: 1.5; margin-top: 12px; }
.svc-top { display: flex; justify-content: space-between; align-items: start; }
.svc-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
.svc-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.svc h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.svc p { font-size: 15px; line-height: 1.55; margin: 0; color: var(--ink-2); }
.svc:hover p { color: rgba(255,255,255,0.7); }
.svc.featured p { color: rgba(255,255,255,0.78); }
.svc-list { list-style: none; padding: 0; margin: 0; }
.svc-list li {
  padding: 10px 0;
  font-size: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--ink-2);
}
.svc-list li::before { content: '— '; color: var(--green); font-weight: 700; }
.svc.featured .svc-list li::before { color: var(--yellow); }
.svc-cta {
  margin-top: auto;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.process { background: var(--ink); color: var(--bg); }
.process .section-num { color: var(--yellow); border-color: var(--yellow); }
.process .section-title { color: var(--bg); }
.process .section-title em { color: var(--yellow); font-style: italic; }
.process .section-kicker { color: var(--yellow); }
.process-num { color: var(--yellow); border-color: var(--yellow); }
.process-kicker { color: var(--yellow); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 32px;
}
.step { padding: 40px 32px 40px 0; border-right: 1px solid rgba(255,255,255,0.12); position: relative; }
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 32px; }
.step .num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 96px;
  line-height: 0.85;
  color: var(--yellow);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step .ttl {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.step p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0 0 20px; }
.step .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
}

.buyback { background: var(--yellow); color: var(--black); }
.buyback .section-num { border-color: var(--black); color: var(--black); }
.buyback .section-kicker { color: var(--black); }
.buyback-num { color: var(--black); border-color: var(--black); }
.buyback-kicker { color: var(--black); }
.buyback-em { color: var(--black); text-decoration: underline; text-decoration-thickness: 6px; text-underline-offset: 8px; }
.bb-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.bb-copy { padding-top: 8px; }
.bb-copy p { font-size: 18px; line-height: 1.6; margin: 0 0 24px; }
.bb-cta {
  display: inline-flex;
  background: var(--black);
  color: var(--yellow);
  padding: 14px 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
}
.bb-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--black); }
.bb-item {
  padding: 28px 24px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: var(--yellow);
  transition: background 0.15s;
}
.bb-item:nth-child(2n) { border-right: none; }
.bb-item:nth-last-child(-n+2) { border-bottom: none; }
.bb-item:hover { background: var(--black); color: var(--yellow); }
.bb-item .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; margin-bottom: 8px; opacity: 0.6; }
.bb-item .ttl {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.bb-item .desc { font-size: 13px; line-height: 1.45; opacity: 0.72; }

.area { background: var(--bg); border-top: 1px solid var(--line); }
.area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.area .map-card {
  aspect-ratio: 1.1;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.area .map-card .map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.55) saturate(0.7) contrast(0.95) brightness(1.02);
  pointer-events: none;
  z-index: 0;
}
.area .map-card .blob {
  position: absolute;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.area .map-card .blob.b1 { width: 56%; height: 50%; left: 14%; top: 18%; }
.area .map-card .blob.b2 { width: 38%; height: 36%; left: 42%; top: 38%; opacity: 0.32; }
.area .map-card .blob.b3 { width: 22%; height: 22%; left: 52%; top: 52%; opacity: 0.42; }
.area .map-card .pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  z-index: 2;
}
.area .map-card .pin.active { background: var(--yellow); border-color: var(--green); }
.area .map-card .pin .lbl {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--bg);
  padding: 4px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.area .map-card .compass {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 6px 10px;
  background: var(--paper);
  z-index: 3;
}
.area .map-card .scale {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.area .map-card .scale .bar { width: 60px; height: 4px; background: var(--ink); border-right: 6px solid var(--ink); border-left: 6px solid var(--ink); position: relative; }
.area-lede { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 480px; margin: 0; }
.area-link { color: var(--green); text-decoration: underline; font-weight: 600; }
.city-list { columns: 2; column-gap: 32px; margin: 32px 0 0; padding: 0; list-style: none; }
.city-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  break-inside: avoid;
}
.city-list li .zip { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.06em; }

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: var(--ink);
  color: var(--yellow);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  z-index: 100;
}
.skip-link:focus {
  position: absolute;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 12px 18px;
  top: 8px;
  left: 8px;
  outline: 2px solid var(--yellow);
}

.faq { background: var(--bg); border-top: 1px solid var(--line); }
.faq-list {
  border-top: 2px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq-item summary::after {
  content: '+';
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--green);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--green); }
.faq-answer {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 820px;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin: 0; }

.testimonials { background: var(--paper); border-top: 1px solid var(--line); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.quote .stars { display: flex; gap: 4px; color: var(--yellow-2); font-size: 16px; }
.quote .body {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.quote .body::before {
  content: '\201C';
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 60px;
  color: var(--green);
  line-height: 0.6;
  display: block;
  margin-bottom: 8px;
}
.quote .by {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.quote .by .name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 15px; }
.quote .by .meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.1em; }

.final-cta {
  background: var(--green);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta .stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 28px, rgba(244,194,51,0.04) 28px 30px);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
}
.final-cta h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
}
.final-cta h2 em { font-style: italic; color: var(--yellow); }
.final-cta .right { text-align: right; max-width: 320px; }
.final-cta .right p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.55; margin: 0 0 20px; }

footer { background: var(--black); color: var(--bg); padding: 56px 0 24px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-grid h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { padding: 4px 0; }
.foot-grid a { font-size: 13px; color: rgba(255,255,255,0.7); }
.foot-grid a:hover { color: var(--yellow); }
.foot-brand .tagline {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 16px 0;
  color: var(--bg);
}
.foot-brand .ph { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; color: var(--yellow); }
.foot-brand-name { color: var(--bg); }
.foot-brand-est { color: rgba(255,255,255,0.5); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.foot-credit a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.foot-credit a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.foot-mega {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  margin: 0 0 20px;
  text-align: center;
  user-select: none;
}

.back-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.back-link:hover { color: var(--green); }

.btn-block { width: 100%; justify-content: space-between; padding: 20px 24px; font-size: 15px; }

.quote-page { padding: 48px 0 96px; }
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--ink); }

.quote-shell { max-width: 880px; }
.quote-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
}
.quote-header .eyebrow {
  display: block;
  background: none;
  padding: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 16px;
}
.quote-header h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.quote-header h1 em { font-style: italic; color: var(--green); }
.quote-header p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0;
}

.stepper {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.step-pill {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  font-family: inherit;
  color: inherit;
  text-align: left;
}
.step-pill:last-child { border-right: none; }
.step-pill:hover { background: var(--bg-2); }
.step-pill.active { background: var(--ink); color: var(--bg); }
.step-pill.done { background: var(--green); color: var(--bg); }
.step-pill .num {
  width: 32px; height: 32px;
  background: var(--green-soft);
  color: var(--green);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.step-pill.active .num { background: var(--yellow); color: var(--black); }
.step-pill.done .num { background: var(--yellow); color: var(--black); }
.step-pill .info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.step-pill .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.step-pill .ttl {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-section { display: none; }
.form-section.active { display: block; }
.form-section h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
}
.form-section .desc { font-size: 15px; color: var(--muted); margin: 0 0 32px; }
.form-section h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; margin: 32px 0 16px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.field label .req { color: var(--yellow-2); }
.field label .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1.5px solid var(--line);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
.field textarea { resize: vertical; min-height: 100px; }
.field .hint { font-size: 12px; color: var(--muted); }

.radio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.radio-grid.three { grid-template-columns: repeat(3, 1fr); }
.radio-card {
  border: 1.5px solid var(--line);
  background: var(--paper);
  padding: 20px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:hover { border-color: var(--ink); }
.radio-card.selected { border-color: var(--green); background: var(--green-soft); }
.radio-card.selected .check { background: var(--green); color: var(--paper); }
.radio-card .top { display: flex; justify-content: space-between; align-items: start; }
.radio-card .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.radio-card.selected .check::after { content: '\2713'; font-size: 13px; font-weight: 800; }
.radio-card .ttl {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.radio-card .desc-mini { font-size: 13px; color: var(--ink-2); line-height: 1.4; margin: 0; }
.radio-card .price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox-card {
  border: 1.5px solid var(--line);
  background: var(--paper);
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.checkbox-card input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-card:hover { border-color: var(--ink); }
.checkbox-card.selected { border-color: var(--green); background: var(--green-soft); }
.checkbox-card .box {
  width: 20px; height: 20px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.checkbox-card.selected .box { background: var(--green); color: var(--paper); border-color: var(--green); }
.checkbox-card.selected .box::after { content: '\2713'; font-size: 12px; font-weight: 800; }
.checkbox-card .lab { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 14px; }

.slider-wrap { padding: 24px 0; }
.slider-row { display: flex; justify-content: space-between; align-items: end; margin-bottom: 16px; gap: 16px; }
.slider-row .val {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.slider-row .val small {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 6px;
}
.slider-row .est {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.slider-row .est b {
  display: block;
  color: var(--green);
  font-size: 14px;
  margin-top: 4px;
  font-family: 'Archivo', sans-serif;
  letter-spacing: -0.01em;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 0;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--ink);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--ink);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  cursor: pointer;
}
.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-drop {
  display: block;
  border: 2px dashed var(--line);
  background: var(--paper);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}
.photo-drop:hover, .photo-drop.dragover { border-color: var(--green); background: var(--green-soft); }
.photo-drop.processing { border-color: var(--green); background: var(--green-soft); cursor: progress; }
.photo-drop.processing .ttl::after { content: ' · compressing…'; color: var(--green); font-weight: 600; }
.photo-drop .icon {
  width: 56px; height: 56px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.photo-drop .icon svg { width: 24px; height: 24px; color: var(--green); }
.photo-drop .ttl { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.photo-drop .desc { font-size: 13px; color: var(--muted); }
.photo-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.photo-thumb {
  aspect-ratio: 1;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb .ph-stripe {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, var(--green) 0 12px, var(--green-2) 12px 14px);
}
.photo-thumb .ph-label {
  position: absolute;
  bottom: 6px;
  left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.photo-thumb .x {
  position: absolute;
  top: 6px; right: 6px;
  width: 22px; height: 22px;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  cursor: pointer;
  border: none;
}

.consent-card { margin-top: 24px; }
.consent-card .lab { font-size: 13px; line-height: 1.4; }

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.form-nav .filler { flex: 1; }
.form-nav .btn:disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.form-error {
  display: none;
  margin-top: 24px;
  padding: 14px 18px;
  background: #fff4cc;
  border-left: 4px solid var(--yellow-2);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
}

.success { display: none; padding: 80px 40px; text-align: center; background: var(--paper); border: 1px solid var(--line); }
.success.active { display: block; }
.success .check-big {
  width: 96px; height: 96px;
  background: var(--green);
  color: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  font-size: 48px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
}
.success h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.success p { font-size: 17px; color: var(--ink-2); max-width: 540px; margin: 0 auto 32px; }
.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.success-grid .item .num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--green);
  letter-spacing: -0.02em;
}
.success-grid .item .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.success .ref { color: var(--green); font-weight: 600; }

.minimal-footer { background: var(--black); color: var(--bg); padding: 32px 0; }
.minimal-footer .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  border: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.minimal-footer .foot-bottom .ph {
  color: var(--yellow);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
}

@media (max-width: 960px) {
  .hero-grid, .about-grid, .bb-grid, .area-grid, .final-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav { position: static; }
  .nav-links { display: none; }
  .svc, .svc.featured { grid-column: span 12; }
  .svc.featured { flex-direction: column; }
  .svc.featured .feat-side { margin: 0; flex: 1; }
  .quote-grid, .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 32px 0 !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .city-list { columns: 1; }
  .counties { grid-template-columns: 1fr; }
  .counties .c { border-right: none !important; padding-right: 0 !important; padding-left: 0 !important; }
  .final-cta .right { text-align: left; }
  .section-header { grid-template-columns: 1fr; gap: 16px; }
  section { padding: 64px 0; }
  .hero-trust { flex-wrap: wrap; gap: 24px; }
  .trust-item { flex: 1 1 calc(50% - 12px); }

  .stepper { flex-direction: column; }
  .step-pill { border-right: none; border-bottom: 1px solid var(--line); }
  .step-pill:last-child { border-bottom: none; }
  .field-row, .radio-grid, .radio-grid.three, .checkbox-grid, .photo-thumbs { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .quote-page { padding: 32px 0 56px; }
  .quote-header { margin-bottom: 32px; padding-bottom: 24px; }
  .quote-header h1 { font-size: clamp(36px, 9vw, 56px); }
  .quote-header p { font-size: 15px; }
  .stepper { margin-bottom: 32px; }
  .step-pill { padding: 14px 18px; }
  .step-pill .ttl { font-size: 13px; }
  .form-section h2 { font-size: 24px; }
  .photo-drop { padding: 28px 20px; }
  .photo-thumbs { grid-template-columns: repeat(2, 1fr); }
  .slider-row .val { font-size: 40px; }
  .slider-row .est { font-size: 10px; }
  .form-nav { margin-top: 24px; padding-top: 20px; }
  .form-nav .btn { padding: 12px 16px; font-size: 13px; }
  .success { padding: 48px 20px; }
  .success .check-big { width: 72px; height: 72px; font-size: 36px; margin-bottom: 24px; }
  .success h2 { font-size: 36px; }
  .success p { font-size: 15px; }
  .success-grid { grid-template-columns: 1fr; padding-top: 24px; gap: 12px; }
  .minimal-footer .foot-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .topbar { font-size: 11px; }
  .topbar .row { height: auto; padding: 8px 0; gap: 12px; flex-wrap: wrap; }
  .topbar .marquee { display: none; }
  .topbar .right { width: 100%; justify-content: center; gap: 10px; }

  .nav .row { height: 64px; gap: 16px; grid-template-columns: auto 1fr auto; }
  .nav-cta { justify-self: end; margin-left: auto; }
  .logo { font-size: 16px; gap: 8px; }
  .logo .mark { width: 32px; height: 32px; font-size: 18px; }
  .logo .name b { font-size: 14px; }
  .logo .name em { font-size: 9px; letter-spacing: 0.1em; }
  .nav-cta .btn { padding: 10px 14px; font-size: 12px; }
  .nav-cta .btn .arrow { display: none; }

  .hero { padding: 32px 0 24px; }
  .hero-grid { gap: 32px; }
  h1.headline { font-size: clamp(44px, 12vw, 64px); margin-bottom: 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-actions { gap: 10px; margin-bottom: 32px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; padding-top: 20px; }
  .trust-item .num { font-size: 24px; }
  .trust-item .lab { font-size: 10px; }
  .hero-visual { aspect-ratio: 1/1; }
  .hero-visual .placeholder-text .big { font-size: 48px; }
  .sticker { width: 120px; height: 120px; bottom: -20px; right: -20px; }
  .sticker .row2 { font-size: 32px; }
  .sticker .row1, .sticker .row3 { font-size: 9px; }

  .ticker { padding: 14px 0; }
  .ticker-track { gap: 36px; }
  .ticker-track span { font-size: 16px; gap: 36px; }

  section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-num { width: auto; padding-top: 8px; }
  .section-title { font-size: clamp(32px, 8vw, 48px); }

  .about-grid, .bb-grid, .area-grid, .final-cta-grid, .hero-grid { gap: 32px; }
  .about-copy p { font-size: 16px; }
  .about-copy p:first-child::first-letter { font-size: 52px; margin: 6px 8px 0 0; }
  .about-feature { padding: 28px; }
  .about-feature .bg-num { font-size: 180px; top: -28px; right: -12px; }
  .about-feature .ftitle { font-size: 22px; }
  .feat-block { grid-template-columns: 1fr; gap: 12px; }

  .svc { padding: 28px; min-height: auto; gap: 20px; }
  .svc h3 { font-size: 26px; }
  .svc.featured .feat-side { padding: 28px; }
  .feat-side-price { font-size: 36px !important; }

  .step .num { font-size: 72px; }
  .step .ttl { font-size: 22px; }

  .bb-items { grid-template-columns: 1fr; }
  .bb-item { border-right: none !important; border-bottom: 2px solid var(--black) !important; }
  .bb-item:last-child { border-bottom: none !important; }
  .bb-copy p { font-size: 16px; }

  .area-lede { font-size: 16px; }
  .city-list li { font-size: 15px; padding: 12px 0; }

  .quote { padding: 28px 24px; }
  .quote .body { font-size: 17px; }

  .final-cta { padding: 72px 0; }
  .final-cta-grid { gap: 32px; }
  .final-cta h2 { font-size: clamp(44px, 12vw, 72px); }
  .final-cta .right .btn { width: 100%; justify-content: center; }

  footer { padding: 40px 0 20px; }
  .foot-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "brand brand brand"
      "svc area company";
    gap: 24px 16px;
    margin-bottom: 28px;
  }
  .foot-brand { grid-area: brand; }
  .foot-grid > div:nth-child(2) { grid-area: svc; }
  .foot-grid > div:nth-child(3) { grid-area: area; }
  .foot-grid > div:nth-child(4) { grid-area: company; }
  .foot-grid h4 { font-size: 10px; margin: 0 0 10px; }
  .foot-grid li { padding: 3px 0; }
  .foot-grid a { font-size: 12px; }
  .foot-brand .tagline { font-size: 17px; margin: 12px 0; }
  .foot-brand .ph { font-size: 19px; }
  .foot-mega { font-size: 56px; margin-bottom: 16px; }
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; padding-top: 20px; font-size: 10px; }
}

@media (max-width: 380px) {
  h1.headline { font-size: 40px; }
  .section-title { font-size: 30px; }
  .hero-trust { gap: 12px; }
  .trust-item { flex: 1 1 100%; }
  .nav-cta .btn { padding: 9px 12px; font-size: 11px; letter-spacing: 0.02em; }
}
