/* ====================================================================
   BASE
   ==================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0F2A43;
  /* dark navy — text & small key elements only */
  --text: #33475B;
  --muted: #64748B;
  --faint: #94A3B8;
  --accent: #2563EB;
  /* the one accent colour */
  --accent-dark: #1D4ED8;
  --accent-soft: #EFF4FE;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --line: #E5EAF1;
  --error: #D92D20;
  --success: #12855F;
  --wa: #1FAF57;
  --radius: 12px;
  --shadow-card: 0 1px 2px rgba(15, 42, 67, .05), 0 10px 30px rgba(15, 42, 67, .07);
  --shadow-soft: 0 1px 2px rgba(15, 42, 67, .04), 0 6px 18px rgba(15, 42, 67, .05);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 76px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-bottom: 74px;
  /* room for the sticky mobile bar */
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

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

.section-title {
  font-size: 1.7rem;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: 1.02rem;
}

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 16px rgba(15, 42, 67, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.01em;
}

.brand svg {
  width: 30px;
  height: 30px;
  flex: none;
}

.brand-logo {
  height: 120px;
  width: auto;
  display: block;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}

.main-nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.site-header .header-cta {
  display: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 42px;
  font-size: .92rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--accent);
  background: #fff;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}

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

/* --- mobile menu --- */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: min(320px, 85vw);
  background: #fff;
  box-shadow: -12px 0 40px rgba(15, 42, 67, .14);
  padding: 22px 24px;
  transform: translateX(105%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 22px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15, 42, 67, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ====================================================================
   HERO — light and airy
   ==================================================================== */
.hero {
  position: relative;
  background-color: #0A192C;
  background-image:
    linear-gradient(94deg, rgba(9, 25, 46, .84) 0%, rgba(11, 30, 55, .66) 45%, rgba(14, 38, 70, .32) 100%),
    url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-copy {
  position: relative;
  text-shadow: 0 1px 14px rgba(6, 16, 30, .45);
}

/* decorative blob + pattern — desktop only */
.hero-decor {
  display: none;
  position: absolute;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}

.hero-eyebrow svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.hero-copy h1 {
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.hero-copy h1 .accent {
  color: #7FB0FF;
}

.hero-copy .subhead {
  margin-top: 16px;
  font-size: 1.07rem;
  color: #B9C7DA;
  max-width: 34em;
}

.hero-benefits {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #DCE6F3;
}

.hero-benefit .hb-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-benefit .hb-icon svg {
  width: 18px;
  height: 18px;
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
}

.avatar-stack .av+.av {
  margin-left: -10px;
}

.av-1 {
  background: #3B82F6;
}

.av-2 {
  background: #6366F1;
}

.av-3 {
  background: #0EA5E9;
}

.av-4 {
  background: #14B8A6;
}

.hero-trust-text {
  font-size: .9rem;
  color: #A9BBD1;
}

.hero-trust-text strong {
  color: #fff;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

.hero-rating .stars {
  display: flex;
  gap: 1px;
}

.hero-rating .stars svg {
  width: 15px;
  height: 15px;
}

.hero-rating span {
  font-weight: 400;
  color: #A9BBD1;
}

/* floating mock quote card — desktop only */
.quote-float {
  display: none;
  position: absolute;
  text-shadow: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
  width: 230px;
}

.quote-float .qf-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--faint);
  margin-bottom: 10px;
}

.quote-float .qf-insurer {
  height: 10px;
  width: 110px;
  border-radius: 999px;
  background: linear-gradient(90deg, #DBE3EE, #EDF1F7);
  margin-bottom: 12px;
}

.quote-float .qf-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.quote-float .qf-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
}

.quote-float .qf-per {
  font-size: .78rem;
  color: var(--muted);
}

.quote-float .qf-check {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--success);
}

.quote-float .qf-check svg {
  width: 15px;
  height: 15px;
  flex: none;
}

/* ====================================================================
   LEAD FORM CARD
   ==================================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 32px 28px 28px;
}

.form-card h2 {
  font-size: 2.15rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: center;
  padding-bottom: 1.4rem;
}

.form-card .form-sub {
  font-size: .85rem;
  color: var(--muted);
  margin: 4px 0 16px;
}

.form-step[hidden] {
  display: none !important;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10px;
  margin-top: 8px;
}

.form-actions .btn {
  margin-top: 0;
}

.btn.btn-back {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  font-weight: 600;
}

.btn.btn-back:hover {
  background: var(--bg-soft);
  border-color: #c9d3e2;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.field label .req {
  color: var(--error);
}

.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 16px;
  /* prevents iOS zoom */
  font-family: inherit;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}

.input::placeholder {
  color: var(--faint);
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
}

.input.invalid {
  border-color: var(--error);
}

.input:disabled {
  background: var(--bg-soft);
  color: var(--faint);
}

.input-group {
  display: flex;
  align-items: stretch;
}

.input-prefix {
  display: flex;
  align-items: center;
  padding: 0 13px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.input-group .input {
  border-radius: 0 10px 10px 0;
}

.hint {
  font-size: .79rem;
  color: var(--muted);
  margin-top: 5px;
}

.err-msg {
  display: none;
  font-size: .81rem;
  color: var(--error);
  margin-top: 5px;
  font-weight: 500;
}

.err-msg.show {
  display: block;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.check-row input[type="checkbox"] {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}

.check-row label {
  font-size: .83rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
}

.check-row.consent label {
  font-size: .79rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  font-size: 1.02rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, transform .1s, opacity .15s;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn:active {
  transform: scale(.985);
}

.btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.btn.btn-wa {
  background: #25D366;
}

.btn.btn-wa:hover {
  background: #1ebe57;
}

.btn .spinner {
  width: 20px;
  height: 20px;
  flex: none;
  border: 3px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}

.btn.loading .spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-error-box {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: #FEF3F2;
  border: 1px solid #F4C7C3;
  border-radius: 10px;
  font-size: .86rem;
  color: #912018;
}

.form-error-box.show {
  display: block;
}

.form-error-box a {
  font-weight: 700;
  color: #087443;
}

.form-card .btn {
  min-height: 52px;
  padding: 14px 18px;
  font-size: 1rem;
  margin-top: 8px;
}

.fine-print {
  margin-top: 12px;
  font-size: .71rem;
  line-height: 1.55;
  color: var(--faint);
}

/* thank-you state */
.thanks {
  text-align: center;
  padding: 4px 2px 0;
}

.thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  animation: thanksPop .45s cubic-bezier(.2, .9, .3, 1.15) both;
}

.thanks-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.thanks-icon-warn {
  width: 56px;
  height: 56px;
}

.thanks h3 {
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.thanks-lead {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
  margin: 0 auto 18px;
  max-width: 30rem;
}

.thanks-lead strong {
  color: var(--ink);
}

.thanks .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  margin: 0 0 16px;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.thanks .btn-wa:hover {
  background: #1ebe57;
}

.thanks .btn-wa svg {
  flex: none;
  width: 22px;
  height: 22px;
}

.thanks-summary {
  text-align: left;
  background: #F7FAFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 0 0 14px;
}

.thanks-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  font-size: .88rem;
}

.thanks-meta-row:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.thanks-meta-row span {
  color: var(--muted);
}

.thanks-meta-row strong {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

.thanks .small {
  font-size: .78rem;
  color: var(--faint);
  margin: 0 0 10px;
  line-height: 1.45;
}

.thanks-home {
  display: inline-block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.thanks-home:hover {
  text-decoration: underline;
}

.thanks-empty p {
  color: var(--muted);
  margin-bottom: 16px;
}

@keyframes thanksPop {
  from {
    opacity: 0;
    transform: scale(.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.thanks-page {
  background:
    radial-gradient(ellipse 70% 40% at 50% -8%, rgba(37, 99, 235, .1), transparent 58%),
    var(--bg-soft);
  min-height: 100vh;
}

body.thanks-page .legal-wrap {
  max-width: 480px;
  padding: 28px 16px 40px;
}

body.thanks-page .legal-card {
  border-radius: 18px;
  padding: 28px 22px 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .07);
  border-color: rgba(15, 23, 42, .06);
}

body.thanks-page .legal-footer {
  padding: 18px 16px;
}

@media (max-width: 480px) {
  body.thanks-page .legal-wrap {
    padding: 18px 12px 32px;
  }

  body.thanks-page .legal-card {
    padding: 22px 16px 18px;
  }

  .thanks h3 {
    font-size: 1.35rem;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-actions .btn-back {
    order: 2;
  }
}

/* trust strip under form */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  color: #C7D5E8;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* ====================================================================
   VALUE PROPS
   ==================================================================== */
.props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.prop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.prop-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-icon svg {
  width: 24px;
  height: 24px;
}

.prop-card h3 {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 5px;
}

.prop-card p {
  font-size: .89rem;
  color: var(--muted);
}

/* ====================================================================
   SOCIAL PROOF
   ==================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 20px;
}

.testi-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-name {
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}

.testi-city {
  font-size: .8rem;
  color: var(--muted);
}

.testi-saved {
  display: inline-block;
  margin-bottom: 10px;
  background: #E7F6F0;
  color: var(--success);
  font-weight: 700;
  font-size: .82rem;
  border-radius: 999px;
  padding: 4px 12px;
}

.testi-card blockquote {
  font-size: .91rem;
  color: var(--text);
}

.counters {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 14px;
  text-align: center;
}

.counter-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.01em;
}

.counter-label {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 3px;
}

/* ====================================================================
   HOW IT WORKS
   ==================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 0 0 30px 60px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.step h3 {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 4px;
  padding-top: 8px;
}

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

.cap {
  display: inline-block;
}

.cap::first-letter {
  text-transform: uppercase;
}

/* ====================================================================
   FAQ
   ==================================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  min-height: 56px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-q svg {
  flex: none;
  width: 18px;
  height: 18px;
  transition: transform .2s;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-a p {
  padding: 0 18px 18px;
  font-size: .9rem;
  color: var(--muted);
}

/* ====================================================================
   STICKY MOBILE BAR
   ==================================================================== */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(15, 42, 67, .08);
}

.sticky-bar .btn {
  min-height: 48px;
  font-size: 1rem;
}

/* ====================================================================
   FOOTER — light
   ==================================================================== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
  font-size: .89rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 44px;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.footer-brand svg {
  width: 26px;
  height: 26px;
  flex: none;
}

.footer-logo {
  height: 100px;
  width: auto;
  display: block;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
}

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

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color .15s, border-color .15s;
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

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

.footer-col address {
  font-style: normal;
  line-height: 1.7;
}

.footer-col address strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0 26px;
  font-size: .78rem;
  color: var(--faint);
  line-height: 1.7;
}

.footer-bottom p {
  margin-bottom: 6px;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* ====================================================================
   LEGAL PAGES (privacy / terms / disclaimer)
   ==================================================================== */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 20px 72px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 30px 22px;
}

.legal-card h1 {
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.legal-card .updated {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-card h2 {
  color: var(--ink);
  font-size: 1.1rem;
  margin: 28px 0 9px;
}

.legal-card p,
.legal-card li {
  font-size: .93rem;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-card ul {
  padding-left: 22px;
  margin-bottom: 10px;
}

.legal-card li {
  margin-bottom: 6px;
}

.legal-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 14px;
  font-size: .88rem;
}

.legal-card th,
.legal-card td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.legal-card th {
  background: var(--bg-soft);
  color: var(--ink);
}

.legal-card .note {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  font-size: .89rem;
  margin: 14px 0;
}

.legal-card .solicitation {
  margin-top: 24px;
  padding: 14px 16px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}

.back-link {
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}

body.legal-page {
  background: var(--bg-soft);
  padding-bottom: 0;
}

body.legal-page .site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 26px 20px;
  text-align: center;
  font-size: .8rem;
  color: var(--faint);
  line-height: 1.8;
}

.legal-footer a {
  color: var(--muted);
}

/* ====================================================================
   TABLET & DESKTOP
   ==================================================================== */
@media (min-width: 768px) {
  body {
    font-size: 17px;
    padding-bottom: 0;
  }

  .sticky-bar {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 2px;
  }

  .site-header .header-cta {
    display: inline-flex;
  }

  .section {
    padding: 88px 0;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .hero {
    padding: 72px 0 88px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

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

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

  .counters {
    grid-template-columns: repeat(4, 1fr);
    padding: 36px 24px;
  }

  .counter-num {
    font-size: 1.9rem;
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .step {
    padding: 60px 8px 0 0;
  }

  .step::before {
    top: 0;
  }

  .step:not(:last-child)::after {
    left: 52px;
    right: -16px;
    top: 20px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .step h3 {
    padding-top: 0;
  }

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

@media (min-width: 992px) {
  .hero-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }

  /* bottom padding reserves clear space for the floating quote card */
  .hero-copy {
    flex: 1 1 58%;
    padding-top: 8px;
    padding-bottom: 190px;
  }

  .hero-form {
    flex: 1 1 42%;
    max-width: 400px;
  }

  .props-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .prop-card {
    flex-direction: column;
    gap: 16px;
  }

  /* decorative blob behind the hero copy */
  .hero-decor {
    display: block;
  }

  .hero-decor.blob {
    top: -110px;
    left: -170px;
    width: 560px;
    height: 560px;
    opacity: .55;
  }

  .hero-decor.dots {
    bottom: 30px;
    left: 30px;
    width: 190px;
    height: 150px;
    opacity: .5;
  }

  .quote-float {
    display: block;
    left: 130px;
    bottom: 0;
  }
}