@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@400;500;600&display=swap');

/* ---------------------------------------------------------
   DESIGN TOKENS
   --------------------------------------------------------- */
:root {
  /* Palette */
  --bg: #FBF7F0;
  --surface: #FFFFFF;
  --surface-alt: #F4EEE3;
  --text: #1B2433;
  --text-muted: #5E6776;
  --border: #E8E0D0;
  --accent: #E27148;
  --accent-strong: #BC5731;
  --accent-soft: #FBE3D6;
  --success: #3F7D58;
  --focus: rgba(226, 113, 72, 0.35);

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shape */
  --radius-card: 14px;
  --radius-image: 12px;
  --radius-input: 10px;
  --radius-pill: 999px;
  --radius-btn-secondary: 10px;

  /* Shadow */
  --shadow-card: 0 1px 2px rgba(27, 36, 51, 0.04), 0 4px 16px rgba(27, 36, 51, 0.05);
  --shadow-card-hover: 0 2px 4px rgba(27, 36, 51, 0.06), 0 12px 28px rgba(27, 36, 51, 0.08);
  --shadow-header-stuck: 0 1px 0 rgba(27, 36, 51, 0.06);
  --shadow-modal: 0 8px 32px rgba(27, 36, 51, 0.08);

  /* Layout */
  --max-content: 1280px;
  --gutter: 32px;
  --section-y: 128px;

  /* Motion */
  --ease-reveal: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 160ms ease-out;
}

a:hover {
  color: var(--accent-strong);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "opsz" auto;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.005em;
}

h1 {
  font-size: 60px;
  line-height: 1.08;
  font-weight: 400;
}

h2 {
  font-size: 40px;
  line-height: 1.18;
  font-weight: 400;
}

h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 500;
}

p {
  margin: 0 0 1em;
  max-width: 65ch;
}

.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 18px;
}

.small {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  h1 { font-size: 40px; line-height: 1.08; }
  h2 { font-size: 30px; line-height: 1.18; }
  h3 { font-size: 22px; }
  body { font-size: 16px; line-height: 1.7; }
  .lead { font-size: 18px; }
  :root { --section-y: 72px; }
}

/* ---------------------------------------------------------
   LAYOUT
   --------------------------------------------------------- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-y) 0;
}

.section--alt {
  background: var(--surface-alt);
}

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

.section-head p {
  margin: 18px auto 0;
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section-head { margin-bottom: 40px; }
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: background 160ms ease-out, color 160ms ease-out, transform 160ms ease-out, filter 160ms ease-out, border-color 160ms ease-out;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
}

.btn--primary:hover {
  background: var(--accent-strong);
  color: #fff;
  filter: brightness(1.04);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-btn-secondary);
  padding: 13px 26px;
}

.btn--secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.btn--ghost {
  color: var(--text);
  padding: 8px 0;
  position: relative;
}

.btn--ghost:hover {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.btn--block { width: 100%; }

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--reassurance {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------------------------------------------------------
   HEADER / NAV
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 220ms ease-out, box-shadow 220ms ease-out, color 220ms ease-out;
  background: transparent;
}

.site-header--solid {
  background: var(--bg);
  box-shadow: var(--shadow-header-stuck);
}

.site-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__logo img {
  height: 38px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 24px;
}

.site-header__nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 160ms ease-out;
}

.site-header--transparent .site-header__nav a,
.site-header--transparent .site-header__exit {
  color: #fff;
}

.site-header__nav a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.site-header__nav a.is-active {
  color: var(--accent);
}

.site-header__cta {
  display: inline-flex;
}

.site-header__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 220ms ease-out, opacity 220ms ease-out;
}

.site-header--transparent .site-header__hamburger span { background: #fff; }

.site-header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.site-header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__exit {
  margin-left: auto;
  font-size: 14px;
  color: var(--text-muted);
}

.site-header--funnel .site-header__inner {
  justify-content: space-between;
}

@media (max-width: 900px) {
  .site-header__hamburger {
    display: flex;
  }
  .site-header__nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 24px;
    margin: 0;
    border-top: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 280ms var(--ease-reveal);
    box-shadow: 0 8px 24px rgba(27, 36, 51, 0.08);
  }
  .site-header__nav.is-open {
    transform: translateY(0);
  }
  .site-header__nav a {
    color: var(--text);
    padding: 16px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
  }
  .site-header__cta {
    display: none;
  }
  .site-header__cta--mobile {
    display: inline-flex;
    margin: 14px 8px 0;
  }
}

/* Hero text needs space below fixed header */
main { padding-top: 0; }

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}

.hero--compact { min-height: 58vh; }
.hero--funnel { min-height: 46vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 36, 51, 0.18) 0%, rgba(27, 36, 51, 0.55) 100%);
  z-index: -1;
}

.hero__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 160px var(--gutter) 120px;
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeIn 800ms var(--ease-reveal) 120ms forwards;
}

.hero h1 {
  color: #fff;
  max-width: 18ch;
}

.hero .eyebrow {
  color: #fff;
  opacity: 0.92;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 22px 0 36px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__ctas .btn--secondary {
  color: #fff;
  border-color: #fff;
}

.hero__ctas .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  transform-origin: center;
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) rotate(45deg) translateY(8px); opacity: 1; }
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Compact tinted page hero (no AI image) */
.page-hero {
  background: var(--surface-alt);
  padding: 160px 0 96px;
  text-align: center;
}

.page-hero h1 {
  margin: 12px auto 18px;
  max-width: 18ch;
}

.page-hero p {
  margin: 0 auto;
  color: var(--text-muted);
  max-width: 56ch;
}

@media (max-width: 768px) {
  .hero { min-height: 78vh; }
  .hero--compact { min-height: 52vh; }
  .hero--funnel { min-height: 40vh; }
  .hero__bg { background-attachment: scroll; }
  .hero__inner { padding: 130px 16px 80px; }
  .page-hero { padding: 120px 0 72px; }
  .hero__scroll-cue { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { background-attachment: scroll; }
  .hero__inner { animation: none; opacity: 1; transform: none; }
  .hero__scroll-cue { animation: none; }
  *, *::before, *::after {
    transition-duration: 80ms !important;
    animation-duration: 80ms !important;
  }
}

/* ---------------------------------------------------------
   TRUST STRIP
   --------------------------------------------------------- */
.trust-strip {
  background: var(--bg);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.trust-strip__row {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
}

.trust-strip__item {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
}

.trust-strip__item:not(:last-child)::after {
  content: '·';
  display: inline-block;
  margin-left: 28px;
  color: var(--border);
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 768px) {
  .trust-strip__item:not(:last-child)::after { display: none; }
}

/* ---------------------------------------------------------
   SERVICE GRID
   --------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
  box-shadow: var(--shadow-card);
  position: relative;
}

.service-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-soft);
  color: var(--text);
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.service-tile__chev {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
  transition: transform 220ms ease-out;
}

.service-tile:hover .service-tile__chev {
  transform: rotate(-45deg) translateX(2px) translateY(-2px);
}

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-tile { padding: 22px; min-height: 140px; }
  .service-tile h3 { font-size: 22px; }
}

/* ---------------------------------------------------------
   HOW IT WORKS / NUMBERED STEPS
   --------------------------------------------------------- */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.how-step__numeral {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 76px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 14px;
}

.how-step p {
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .how-it-works { grid-template-columns: 1fr; gap: 44px; }
  .how-step__numeral { font-size: 60px; }
}

/* ---------------------------------------------------------
   WHY ROWS / EDITORIAL TWO-COL
   --------------------------------------------------------- */
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 56px 0;
}

.why-row + .why-row {
  border-top: 1px solid var(--border);
}

.why-row--reverse .why-row__text { order: 2; }

.why-row__text h2 {
  margin-bottom: 18px;
}

.why-row__text ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.why-row__text li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
}

.why-row__text li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 12px;
  flex-shrink: 0;
}

.why-row__stats {
  background: var(--surface-alt);
  border-radius: var(--radius-card);
  padding: 56px 48px;
  display: grid;
  gap: 36px;
}

.why-stat {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.why-stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}

.why-stat__label {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .why-row { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .why-row--reverse .why-row__text { order: 1; }
  .why-row__stats { padding: 36px 28px; gap: 24px; }
  .why-stat__num { font-size: 50px; }
}

/* ---------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 14px;
}

.testimonial p {
  font-size: 17px;
  margin: 0 0 22px;
  color: var(--text);
}

.testimonial__attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }
  .testimonial { scroll-snap-align: start; }
}

/* ---------------------------------------------------------
   CTA BAND
   --------------------------------------------------------- */
.cta-band {
  text-align: center;
  background: var(--surface-alt);
  padding: 96px 0;
}

.cta-band h2 {
  max-width: 22ch;
  margin: 0 auto 18px;
}

.cta-band p {
  margin: 0 auto 36px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .cta-band { padding: 64px 0; }
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

.site-footer__cols {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.site-footer__brand img {
  height: 38px;
  margin-bottom: 14px;
}

.site-footer__brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 36ch;
}

.site-footer__col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col li { margin-bottom: 10px; }

.site-footer__col a {
  color: var(--text-muted);
  font-size: 15px;
  transition: color 160ms ease-out;
}

.site-footer__col a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  max-width: var(--max-content);
  margin: 56px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__copyright {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-signature {
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-muted);
  opacity: 0.6;
  margin: 0;
}

.footer-signature a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-signature a:hover {
  color: var(--accent);
}

.site-footer--compact {
  padding: 36px 0 24px;
}

.site-footer--compact .site-footer__cols {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer--compact .site-footer__cols a {
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer--compact .site-footer__cols a:hover {
  color: var(--accent);
}

@media (max-width: 800px) {
  .site-footer__cols { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ---------------------------------------------------------
   ABOUT — VALUES + COVERAGE
   --------------------------------------------------------- */
.mission-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 0;
}

.mission-quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.35;
  color: var(--text);
  margin: 0 auto;
  max-width: 720px;
}

@media (max-width: 768px) {
  .mission-quote p { font-size: 22px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.value-card__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 14px;
}

.value-card p {
  color: var(--text-muted);
  margin: 0;
}

.team-approach {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.team-approach h2 { margin-bottom: 24px; }

.team-approach p {
  margin: 0 auto 18px;
  color: var(--text);
}

.coverage-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.coverage-stat {
  padding: 32px 16px;
  position: relative;
}

.coverage-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}

.coverage-stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.coverage-stat__label {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .coverage-strip { grid-template-columns: 1fr; }
  .coverage-stat:not(:last-child)::after {
    top: auto; bottom: 0; right: 20%; left: 20%; width: auto; height: 1px;
  }
}

/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-card h2 { margin-bottom: 18px; font-size: 30px; }
.form-card > p { margin-bottom: 28px; color: var(--text-muted); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text);
  transition: border-color 160ms ease-out, background 160ms ease-out;
  min-height: 56px;
}

.form-field textarea {
  resize: vertical;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--focus);
  outline-offset: 0;
  border-color: var(--accent);
}

.form-helper {
  font-size: 13px;
  color: var(--text-muted);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-consent input {
  min-height: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  accent-color: var(--accent);
}

.form-message {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-card);
  font-size: 15px;
  line-height: 1.55;
  display: none;
}

.form-message.is-visible { display: block; }

.form-message--success {
  background: rgba(63, 125, 88, 0.08);
  border: 1px solid rgba(63, 125, 88, 0.3);
  color: var(--success);
}

.form-message--error {
  background: rgba(226, 113, 72, 0.08);
  border: 1px solid var(--accent);
  color: var(--accent-strong);
}

.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-info h2 { font-size: 26px; margin-bottom: 22px; }

.contact-info ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.contact-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info li:last-child { border-bottom: 0; }

.contact-info__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 17px;
  color: var(--text);
}

.contact-info a { color: var(--text); }
.contact-info a:hover { color: var(--accent); }

.map-block {
  background: var(--surface-alt);
  border-radius: var(--radius-card);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 28px, rgba(94, 103, 118, 0.06) 28px, rgba(94, 103, 118, 0.06) 29px),
    repeating-linear-gradient(90deg, transparent 0, transparent 28px, rgba(94, 103, 118, 0.06) 28px, rgba(94, 103, 118, 0.06) 29px);
}

.map-block::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(226, 113, 72, 0.18);
  top: calc(50% - 28px);
  left: 50%;
  transform: translateX(-50%);
}

.map-block__city {
  position: relative;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-top: 36px;
}

.reassurance-strip {
  background: var(--bg);
  text-align: center;
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

.reassurance-strip span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reassurance-strip span + span {
  margin-left: 28px;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .reassurance-strip span + span { margin-left: 0; padding-left: 0; border-left: 0; display: block; margin-top: 6px; }
}

/* ---------------------------------------------------------
   FUNNEL
   --------------------------------------------------------- */
.funnel-shell {
  padding: 48px 0 96px;
}

.funnel-card {
  max-width: 720px;
  margin: -120px auto 0;
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-modal);
  padding: 48px;
  position: relative;
  z-index: 2;
}

.funnel-progress {
  margin-bottom: 28px;
}

.funnel-progress__counter {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.funnel-progress__bar {
  display: flex;
  gap: 6px;
}

.funnel-progress__seg {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  transition: background 280ms ease-out;
}

.funnel-progress__seg.is-done { background: var(--accent-soft); }
.funnel-progress__seg.is-active { background: var(--accent); }

/* Multi-step container — REQUIRED display rules */
.funnel-page { display: none; }
.funnel-page.active { display: block; }

.funnel-page h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.funnel-page__sub {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.radio-cards--single { grid-template-columns: 1fr; }

.radio-card {
  position: relative;
  display: block;
  padding: 18px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--bg);
  cursor: pointer;
  font-size: 17px;
  color: var(--text);
  min-height: 56px;
  display: flex;
  align-items: center;
  transition: border-color 160ms ease-out, background 160ms ease-out, transform 160ms ease-out;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.radio-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.radio-card:has(input:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.funnel-nav .btn--secondary[hidden] { display: none; }

.funnel-trust {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.funnel-trust span + span {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

@media (max-width: 768px) {
  .funnel-card { padding: 28px 22px; margin-top: -80px; }
  .radio-cards { grid-template-columns: 1fr; }
  .funnel-trust span + span { margin-left: 0; padding-left: 0; border-left: 0; display: block; margin-top: 6px; }
  .funnel-nav { flex-wrap: wrap; }
  .funnel-nav .btn { flex: 1; }
}

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.faq-group { margin-bottom: 64px; }
.faq-group:last-child { margin-bottom: 0; }

.faq-group h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  gap: 18px;
  transition: background 160ms ease-out;
  min-height: 64px;
}

.faq-item__btn:hover { background: var(--accent-soft); }

.faq-item__chev {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 280ms ease-out;
  flex-shrink: 0;
  margin-right: 4px;
}

.faq-item.is-open .faq-item__chev {
  transform: rotate(-135deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-reveal);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__panel p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: none;
}

@media (max-width: 768px) {
  .faq-item__btn { font-size: 19px; padding: 18px 22px; }
  .faq-item__panel p { padding: 0 22px 22px; }
}

/* ---------------------------------------------------------
   PRIVACY
   --------------------------------------------------------- */
.privacy-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  margin-bottom: 64px;
  box-shadow: var(--shadow-card);
}

.privacy-toc h2 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.privacy-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: 8px;
}

.privacy-toc li {
  counter-increment: toc;
  font-size: 16px;
}

.privacy-toc li::before {
  content: counter(toc, decimal-leading-zero) ". ";
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 400;
  margin-right: 8px;
}

.privacy-toc a {
  color: var(--text);
  text-decoration: none;
}

.privacy-toc a:hover { color: var(--accent); }

.privacy-section {
  margin-bottom: 56px;
  scroll-margin-top: 96px;
}

.privacy-section h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.privacy-section ul { padding-left: 22px; margin-bottom: 18px; }
.privacy-section li { margin-bottom: 8px; }

/* ---------------------------------------------------------
   SCROLL REVEAL
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease-reveal), transform 620ms var(--ease-reveal);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: 200ms; transform: none; }
}

/* ---------------------------------------------------------
   UTILITIES
   --------------------------------------------------------- */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
