:root {
  --ink-950: #071826;
  --ink-900: #0b2033;
  --ink-850: #102a40;
  --ink-800: #15344d;
  --ink-700: #294960;
  --ink-600: #456177;
  --ink-500: #62798c;
  --ink-300: #aab9c5;
  --ink-200: #cad5dd;
  --ink-100: #e7edf1;
  --paper: #ffffff;
  --mist: #f3f8f8;
  --mist-2: #e8f3f1;
  --teal-700: #087f77;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-300: #5ee1d2;
  --teal-100: #ccfbf1;
  --amber-700: #a76003;
  --amber-500: #f2ad2e;
  --amber-300: #ffd071;
  --amber-100: #fff4d5;
  --red-700: #a12828;
  --red-100: #fff0f0;
  --green-700: #176b4d;
  --green-100: #e7f8ef;
  --shadow-sm: 0 8px 24px rgba(7, 24, 38, 0.08);
  --shadow-md: 0 20px 60px rgba(7, 24, 38, 0.14);
  --radius-sm: 0.55rem;
  --radius-md: 1rem;
  --radius-lg: 1.45rem;
  --radius-pill: 999px;
  --max-width: 1180px;
  --focus: 0 0 0 4px rgba(20, 184, 166, 0.26);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink-950);
  background: var(--teal-300);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--teal-700);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink-900);
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--paper);
  background: var(--ink-950);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.115em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  content: "";
  background: currentColor;
}

.owner-setup {
  border-bottom: 1px solid var(--amber-300);
  color: #5d3900;
  background: var(--amber-100);
}

.owner-setup .container {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-block: 0.75rem;
  font-size: 0.92rem;
}

.owner-setup svg {
  width: 1.25rem;
  min-width: 1.25rem;
  margin-top: 0.12rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(202, 213, 221, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-link {
  display: inline-flex;
  width: min(300px, 66vw);
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.primary-nav a {
  color: var(--ink-800);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--teal-700);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-200);
  border-radius: 0.75rem;
  color: var(--ink-900);
  background: var(--paper);
}

.nav-toggle svg {
  width: 1.5rem;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: 0.78rem;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.button {
  color: var(--ink-950);
  background: var(--amber-500);
  box-shadow: 0 8px 18px rgba(242, 173, 46, 0.24);
}

.button:hover {
  color: var(--ink-950);
  background: var(--amber-300);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--paper);
  background: var(--teal-700);
}

.button-secondary:hover {
  color: var(--paper);
  background: #066a64;
  transform: translateY(-1px);
}

.button-ghost {
  border-color: var(--ink-200);
  color: var(--ink-800);
  background: var(--paper);
}

.button-ghost:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.button-small {
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 92% 8%, rgba(20, 184, 166, 0.22), transparent 28rem),
    radial-gradient(circle at 8% 92%, rgba(242, 173, 46, 0.14), transparent 24rem),
    var(--ink-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero-copy {
  position: sticky;
  top: 8rem;
  padding-top: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(94, 225, 210, 0.38);
  border-radius: var(--radius-pill);
  padding: 0.48rem 0.8rem;
  color: var(--teal-300);
  background: rgba(20, 184, 166, 0.1);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  content: "";
  background: var(--teal-300);
  box-shadow: 0 0 0 5px rgba(94, 225, 210, 0.12);
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.7rem, 5.3vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--amber-300);
}

.hero-lead {
  max-width: 600px;
  margin: 1.6rem 0 0;
  color: #d9e6ed;
  font-size: clamp(1.06rem, 2vw, 1.23rem);
  line-height: 1.65;
}

.promise-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #eff7fa;
  font-weight: 650;
}

.promise-list svg {
  width: 1.35rem;
  min-width: 1.35rem;
  margin-top: 0.1rem;
  color: var(--teal-300);
}

.hero-mini-disclosure {
  max-width: 600px;
  margin: 1.25rem 0 0;
  color: #aebfca;
  font-size: 0.83rem;
  line-height: 1.6;
}

.quote-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  color: var(--ink-900);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.quote-card-header {
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2rem) 0;
}

.quote-card-header h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.quote-card-header p {
  margin: 0.65rem 0 0;
  color: var(--ink-600);
}

.required-key {
  color: var(--red-700);
  font-weight: 850;
}

.quote-form {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-section {
  margin: 0;
  border: 0;
  padding: 0;
}

.form-section + .form-section {
  margin-top: 2rem;
  border-top: 1px solid var(--ink-100);
  padding-top: 2rem;
}

.form-section > legend,
.form-section-title {
  width: 100%;
  margin: 0 0 0.35rem;
  padding: 0;
  color: var(--ink-900);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.form-section-intro {
  margin: 0 0 1.15rem;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.optional {
  color: var(--ink-500);
  font-size: 0.8em;
  font-weight: 600;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-grid-three {
  grid-template-columns: minmax(0, 1.3fr) minmax(150px, 0.8fr) minmax(130px, 0.65fr);
}

.field-grid-four {
  grid-template-columns: 0.55fr 1fr 1fr 1.25fr;
}

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

.field {
  min-width: 0;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--ink-800);
  font-size: 0.88rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--ink-200);
  border-radius: 0.7rem;
  padding: 0.7rem 0.8rem;
  color: var(--ink-950);
  background: var(--paper);
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8496a4;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink-300);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: var(--focus);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red-700);
  background: #fffafa;
}

.field-help {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.45;
}

.field-error {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.22rem;
  color: var(--red-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.option-panel {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--mist);
}

.phone-permissions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.check-option,
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-800);
  cursor: pointer;
}

.check-option input,
.consent-label input {
  width: 1.12rem;
  height: 1.12rem;
  min-width: 1.12rem;
  margin: 0.2rem 0 0;
  accent-color: var(--teal-700);
}

.check-option span {
  font-size: 0.86rem;
  line-height: 1.45;
}

.check-option input:disabled + span {
  color: var(--ink-500);
}

.permission-note {
  margin: 0.65rem 0 0;
  color: var(--ink-600);
  font-size: 0.78rem;
}

.optional-details {
  margin-top: 1.6rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: #fbfdfd;
}

.optional-details summary {
  display: flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--ink-900);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.optional-details summary::after {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--teal-700);
  border-bottom: 2px solid var(--teal-700);
  content: "";
  transform: rotate(45deg) translateY(-0.2rem);
  transition: transform 160ms ease;
}

.optional-details[open] summary::after {
  transform: rotate(225deg) translate(-0.05rem, -0.05rem);
}

.optional-details-body {
  border-top: 1px solid var(--ink-100);
  padding: 1rem;
}

.vehicle-row {
  position: relative;
  margin: 0 0 0.85rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--paper);
}

.vehicle-row legend {
  padding-right: 4.3rem;
  color: var(--ink-800);
  font-size: 0.92rem;
  font-weight: 850;
}

.vehicle-remove {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  padding: 0.28rem 0.35rem;
  color: var(--red-700);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.vehicle-remove:hover {
  text-decoration: underline;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 0.9rem;
}

.safety-warning {
  margin: 0.65rem 0 0;
  border-left: 3px solid var(--amber-500);
  padding: 0.65rem 0.8rem;
  color: #654100;
  background: var(--amber-100);
  font-size: 0.82rem;
}

.consent-panel {
  margin-top: 2rem;
  border: 1px solid #b8ddd7;
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #f3fbf9;
}

.consent-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  color: var(--ink-900);
  font-weight: 850;
}

.consent-heading svg {
  width: 1.25rem;
  color: var(--teal-700);
}

.consent-text {
  max-height: 13rem;
  overflow: auto;
  margin: 0 0 0.9rem;
  border: 1px solid var(--ink-100);
  border-radius: 0.7rem;
  padding: 0.85rem;
  color: var(--ink-700);
  background: var(--paper);
  font-size: 0.78rem;
  line-height: 1.6;
}

.consent-label {
  color: var(--ink-900);
  font-size: 0.9rem;
  font-weight: 760;
}

.legal-inline {
  margin: 0.8rem 0 0;
  color: var(--ink-600);
  font-size: 0.76rem;
}

.form-submit {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.form-submit .button {
  width: 100%;
  min-height: 3.65rem;
  border: 0;
  font-size: 1rem;
}

.submit-note {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--ink-500);
  font-size: 0.76rem;
  text-align: center;
}

.submit-note svg {
  width: 1rem;
  min-width: 1rem;
  margin-top: 0.08rem;
}

.form-error-summary {
  margin: 1rem 0;
  border: 1px solid #f1baba;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  color: #7c2020;
  background: var(--red-100);
  font-size: 0.86rem;
}

.form-error-summary:focus {
  outline: none;
  box-shadow: var(--focus);
}

.form-error-summary ul {
  margin: 0.55rem 0 0;
  padding-left: 1.25rem;
}

.form-error-summary a {
  color: inherit;
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.button-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(7, 24, 38, 0.25);
  border-top-color: var(--ink-950);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

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

.quote-success {
  margin: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid #a7ddc5;
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--green-700);
  background: var(--green-100);
  text-align: center;
}

.quote-success:focus {
  outline: none;
  box-shadow: var(--focus);
}

.success-icon {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--paper);
  background: var(--green-700);
}

.success-icon svg {
  width: 2rem;
}

.quote-success h2 {
  margin: 0;
  color: var(--ink-900);
  font-size: 1.75rem;
}

.quote-success p {
  margin: 0.75rem 0 0;
}

.reference-box {
  display: inline-flex;
  margin-top: 1rem;
  border: 1px solid #96cfb4;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.8rem;
  color: var(--ink-800);
  background: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 750;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  color: var(--paper);
  background: var(--ink-950);
}

.section-heading {
  max-width: 730px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-dark .section-heading h2 {
  color: var(--paper);
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--ink-600);
  font-size: 1.05rem;
}

.section-dark .section-heading p {
  color: #b8c8d2;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--ink-950);
  background: var(--amber-300);
  font-size: 0.9rem;
  font-weight: 900;
}

.step-card h3,
.promise-card h3,
.faq-card h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.step-card p,
.promise-card p,
.faq-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-600);
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.promise-statement {
  position: sticky;
  top: 8rem;
}

.promise-statement .big-quote {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.promise-statement .big-quote span {
  color: var(--teal-300);
}

.promise-statement p {
  color: #b8c8d2;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.promise-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
}

.promise-card-icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(94, 225, 210, 0.34);
  border-radius: 0.8rem;
  color: var(--teal-300);
  background: rgba(20, 184, 166, 0.09);
}

.promise-card-icon svg {
  width: 1.35rem;
}

.promise-card h3 {
  color: var(--paper);
}

.promise-card p {
  color: #b8c8d2;
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  background: var(--paper);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 4.3rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 20%, rgba(94, 225, 210, 0.22), transparent 18rem),
    var(--ink-950);
  text-align: center;
}

.final-cta h2 {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(2rem, 4.3vw, 3.65rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.final-cta p {
  max-width: 650px;
  margin: 1rem auto 1.5rem;
  color: #c4d2da;
}

.site-footer {
  color: #b7c7d0;
  background: #04111d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  gap: 2rem;
  padding-block: 3.5rem 2.5rem;
}

.footer-brand img {
  width: min(320px, 100%);
}

.footer-brand p {
  max-width: 600px;
  margin: 1rem 0 0;
  font-size: 0.87rem;
}

.footer-column h2 {
  margin: 0 0 0.75rem;
  color: var(--paper);
  font-size: 0.95rem;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0.42rem 0;
  color: #b7c7d0;
  font-size: 0.85rem;
}

.footer-column a:hover {
  color: var(--teal-300);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem 2rem;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-legal p {
  margin: 0.35rem 0;
}

.legal-hero {
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 10%, rgba(20, 184, 166, 0.2), transparent 24rem),
    var(--ink-950);
}

.legal-hero .narrow {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.legal-hero p {
  margin: 1rem 0 0;
  color: #c3d2da;
}

.legal-content {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.legal-content h2 {
  margin: 2.5rem 0 0.65rem;
  color: var(--ink-950);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 1.75rem 0 0.4rem;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-700);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-notice {
  margin-bottom: 2rem;
  border: 1px solid var(--amber-300);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: #654100;
  background: var(--amber-100);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: 1rem;
  color: #afc1cc;
  font-size: 0.83rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--ink-200);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--mist);
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 3rem 1rem;
  color: var(--paper);
  background: var(--ink-950);
  text-align: center;
}

.not-found-content {
  max-width: 620px;
}

.not-found-code {
  margin: 0;
  color: var(--teal-300);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.not-found h1 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.not-found p {
  color: #b8c8d2;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .promise-statement {
    position: static;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .quote-card {
    max-width: 760px;
  }

  .promise-layout {
    grid-template-columns: 1fr;
  }
}

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

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    background: var(--paper);
    box-shadow: var(--shadow-md);
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .legal-primary-nav {
    position: static;
    display: flex;
    width: auto;
    align-items: center;
    flex-direction: row;
    gap: 0.35rem;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-primary-nav a:not(.button) {
    display: none;
  }

  .primary-nav a {
    border-radius: 0.6rem;
    padding: 0.75rem;
  }

  .primary-nav .button {
    margin-top: 0.3rem;
  }

  .steps-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 1.4rem;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .header-inner {
    min-height: 4.35rem;
  }

  .brand-link {
    width: min(250px, 69vw);
  }

  .hero-inner {
    padding-block: 3.2rem 4rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .quote-card {
    margin-inline: -0.15rem;
  }

  .field-grid,
  .field-grid-three,
  .field-grid-four,
  .phone-permissions,
  .check-grid,
  .promise-cards,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .field-span-full {
    grid-column: auto;
  }

  .quote-form,
  .quote-card-header {
    padding-inline: 1rem;
  }

  .consent-text {
    max-height: 16rem;
  }

  .section {
    padding-block: 3.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .owner-setup,
  .button,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .legal-hero {
    color: #000;
    background: #fff;
  }

  .legal-hero p,
  .legal-meta {
    color: #333;
  }
}

/* Clear one-contact promise added for NoChase launch. */
.one-contact-rule {
  margin: 1rem 0 1.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-limit-box {
  display: grid;
  gap: 0.2rem;
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border: 2px solid var(--accent, #19b8a5);
  border-radius: 0.85rem;
  background: #f0fffc;
  color: #10243b;
  text-align: center;
}

.contact-limit-box strong {
  font-size: 1.05rem;
}

.contact-limit-box span {
  font-size: 0.9rem;
}
