/* zipBuilder marketplace ... shared stylesheet (v2, 2026-07-03) */

:root {
  --navy: #0b3b7a;
  --deep: #072a58;
  --red: #c8102e;
  --red-dark: #a30d26;
  --bg: #f3f7fb;
  --line: #dde7f2;
  --ink: #1c2b3a;
  --muted: #5c6c7e;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(11, 59, 122, 0.06), 0 2px 8px rgba(11, 59, 122, 0.06);
  --shadow-md: 0 4px 14px rgba(11, 59, 122, 0.10), 0 10px 32px rgba(11, 59, 122, 0.08);
  --shadow-lg: 0 12px 40px rgba(7, 42, 88, 0.18);
  --font-head: "Rubik", "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

p { margin: 0 0 1em; }

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-head { max-width: 640px; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.28);
}
.btn-red:hover { background: var(--red-dark); color: #fff; }

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { color: var(--deep); }

.btn-lg { padding: 0.9rem 1.9rem; font-size: 1.05rem; }

/* ---------- Header ---------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(11, 59, 122, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand img { height: 36px; width: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.site-nav > a,
.dropdown > .drop-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav > a:hover,
.dropdown > .drop-link:hover {
  color: var(--navy);
  background: var(--bg);
  text-decoration: none;
}

.site-nav .btn { margin-left: 0.35rem; }

.dropdown { position: relative; }
.dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }

.dropdown .caret {
  border: solid var(--muted);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
  display: none;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.15rem;
  width: 430px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.dropdown-menu a:hover { background: var(--bg); color: var(--navy); text-decoration: none; }
.dropdown-menu .see-all { grid-column: 1 / -1; color: var(--red); font-weight: 600; }

/* ---------- Hero (home) ---------- */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 70%);
  background-color: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1.6px);
  background-size: 26px 26px;
  pointer-events: none;
}

.hero .container { position: relative; }

.hero-inner {
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  max-width: 780px;
}

.hero h1 { color: #fff; margin-bottom: 0.6rem; }
.hero h1 .accent { color: #ff5a72; }

.hero .sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 620px;
  margin-bottom: 2rem;
}

/* ZIP entry bar */

.zipbar {
  display: flex;
  gap: 0.6rem;
  background: #fff;
  padding: 0.6rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
}

.zipbar input,
.zipbar select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  min-width: 0;
}

.zipbar input:focus,
.zipbar select:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.zipbar .zip-input { width: 120px; flex: 0 0 auto; letter-spacing: 0.08em; }
.zipbar select { flex: 1 1 auto; }
.zipbar .btn { flex: 0 0 auto; border-radius: 10px; }

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Trust row */

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
}

.trust-item .dot {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11, 59, 122, 0.08);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.band-white { background: #fff; border-bottom: 1px solid var(--line); }

/* ---------- Cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

a.card { display: block; color: inherit; }
a.card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card h3 { margin-bottom: 0.35rem; }
.card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 59, 122, 0.08);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-family: var(--font-head);
  font-weight: 700;
}

.card .go {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--red);
}

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1rem;
}

.step.alt .num { background: var(--red); }

.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Chips ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }

.chip {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 75%);
  background-color: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero-inner { padding: clamp(2.75rem, 7vw, 5rem) 0; max-width: 760px; }

.page-hero h1 { color: #fff; margin-bottom: 0.4rem; }

.page-hero .sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin: 0;
}

.crumbs {
  font-family: var(--font-head);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.1rem;
}
.crumbs a { color: rgba(255, 255, 255, 0.85); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--deep));
  background-color: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: clamp(2rem, 5vw, 3.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
  background-size: 22px 22px;
  pointer-events: none;
}

.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 0.3rem; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin: 0; }

/* ---------- Dashboard promo ---------- */

.promo {
  background: linear-gradient(135deg, var(--deep), var(--navy));
  background-color: var(--deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1.6px);
  background-size: 28px 28px;
  pointer-events: none;
}

.promo .container { position: relative; }

.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.promo h2 { color: #fff; }
.promo .lead { color: rgba(255, 255, 255, 0.82); }

.promo-list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: 0.9rem; }

.promo-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.97rem;
}

.promo-list .tick {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  font-family: var(--font-head);
  font-weight: 700;
}

.promo-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}

.promo-panel .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}
.promo-panel .row:last-child { border-bottom: none; }
.promo-panel .row .label { color: rgba(255, 255, 255, 0.65); }
.promo-panel .row .value { font-family: var(--font-head); font-weight: 600; color: #fff; text-align: right; }

/* ---------- Lead form ---------- */

.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  background: var(--bg);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  background: #fff;
}

.field textarea { resize: vertical; min-height: 120px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note { font-size: 0.82rem; color: var(--muted); margin: 0.9rem 0 0; }

.form-success {
  display: none;
  margin-top: 1.1rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: #eefaf1;
  border: 1px solid #bfe8cc;
  color: #17603a;
  font-size: 0.93rem;
}
.form-success.show { display: block; }

.lead-summary {
  display: none;
  margin-bottom: 1.1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: rgba(11, 59, 122, 0.07);
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}
.lead-summary.show { display: block; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; }

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--red);
  flex: 0 0 auto;
}

.faq-list details[open] summary::after { content: "\2212"; }

.faq-list details p { color: var(--muted); margin: 0.8rem 0 0.2rem; font-size: 0.95rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: #fff; }

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.9rem; }

.footer-about { font-size: 0.9rem; max-width: 300px; }
.footer-about .brand-mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.footer-about .brand-mark .zip { color: #ff5a72; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Hub intro figure ---------- */

.hub-intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.hub-figure { margin: 0; }

.hub-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.hub-copy { color: var(--muted); font-size: 1rem; }

/* ---------- Cost band ---------- */

.cost-band {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--red);
}

.cost-figures { display: grid; gap: 1rem; }

.cost-cell {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}

.cost-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.cost-value {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
}

.cost-copy h2 { margin-bottom: 0.4rem; }
.cost-copy p { color: var(--muted); font-size: 0.97rem; }

.cost-note {
  font-size: 0.82rem !important;
  padding: 0.6rem 0.9rem;
  background: rgba(11, 59, 122, 0.05);
  border-radius: 10px;
  margin-bottom: 0;
}

/* ---------- Provider cards (sample listings) ---------- */

.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.provider-card {
  background: #fff;
  border: 1px dashed #b9cde5;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.provider-card .p-head {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.provider-card .p-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 59, 122, 0.08);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}

.provider-card .p-id { flex: 1; min-width: 0; }
.provider-card h3 { font-size: 1rem; margin-bottom: 0.1rem; }
.provider-card .p-loc { font-size: 0.85rem; color: var(--muted); }

.badge-sample {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber, #b06e00);
  background: #fdf3e0;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.provider-card .p-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.badge-license {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(11, 59, 122, 0.08);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

.stars {
  font-size: 0.9rem;
  color: #e0a52c;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.stars .rating-num {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}

.sample-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Services catalog ---------- */

.svc-group { border-top: 1px solid var(--line); }
.svc-group:first-of-type { border-top: none; }

.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.mchip {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(11, 59, 122, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .lead-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hub-intro-grid { grid-template-columns: 1fr; }
  .hub-figure { max-width: 420px; }
  .cost-band { grid-template-columns: 1fr; }
  .cost-figures { grid-template-columns: 1fr 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 4%;
    gap: 0.25rem;
  }

  .site-header.nav-open .site-nav { display: flex; }

  .site-nav .btn { margin: 0.35rem 0 0; }

  .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0 0 0 0.75rem;
    grid-template-columns: 1fr;
  }

  .zipbar { flex-direction: column; }
  .zipbar .zip-input { width: 100%; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cost-figures { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* ---------- Wired images (added 2026-07-08) ---------- */

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-figure { margin: clamp(2rem, 5vw, 3rem) 0; }

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.step-figure { margin: -1.75rem -1.5rem 1.25rem; }

.step-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius) var(--radius) 0 0;
}

.promo-figure { margin: 0; }

.promo-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.promo-media .promo-panel {
  width: min(88%, 430px);
  margin: -3.25rem 1.25rem 0 auto;
  position: relative;
  background: rgba(7, 42, 88, 0.92);
}

.lead-figure { margin: 1.75rem 0 0; }

.lead-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-hero-figure { margin: clamp(1.75rem, 4vw, 2.75rem) 0; }

.page-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.group-banner { margin: 0 0 1.75rem; }

.group-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { margin: 0 0 2.5rem; max-width: 560px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-figure { margin: 0 0 2rem; max-width: 560px; }
  .promo-media .promo-panel { width: 100%; margin: 1rem 0 0; }
}

/* ---------- Full-bleed photo hero (option B preview, landscaping.html) ---------- */

.page-hero-photo { position: relative; }

.page-hero-photo .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.page-hero-photo::before {
  background: linear-gradient(90deg, rgba(7, 42, 88, 0.92) 0%, rgba(7, 42, 88, 0.62) 55%, rgba(7, 42, 88, 0.22) 100%);
  z-index: 1;
}

.page-hero-photo .container { position: relative; z-index: 2; }

.page-hero-photo .page-hero-inner { padding: clamp(4rem, 9vw, 6.5rem) 0; }

.page-hero-photo h1, .page-hero-photo .sub { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35); }

/* ---------- Lead-form consent (added 2026-07-08) ---------- */

.consent-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.consent-row input { margin-top: 0.25rem; flex-shrink: 0; }

/* ---------- Homepage full-bleed hero (added 2026-07-09) ---------- */

.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
}

.hero-photo::before {
  background: linear-gradient(90deg, rgba(7, 42, 88, 0.92) 0%, rgba(7, 42, 88, 0.62) 55%, rgba(7, 42, 88, 0.22) 100%);
  z-index: 1;
}

.hero-photo .container { position: relative; z-index: 2; }

.hero-photo h1,
.hero-photo .sub,
.hero-photo .hero-note { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35); }

/* ---------- Nav: Log in link (added 2026-07-10) ---------- */

.site-nav .nav-login { color: var(--muted); }
.site-nav .nav-login:hover { color: var(--ink); }

/* ---------- Step icon medallions (added 2026-07-10) ---------- */

.step .step-ic {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #e8f0f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1rem;
}

.step .step-ic svg { stroke: var(--navy); }

.step .step-ic .num {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 26px;
  height: 26px;
  font-size: 0.85rem;
  margin: 0;
}
