:root {
  --bg: #eef4ff;
  --bg-strong: #dde8ff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-alt: #f7faff;
  --text: #112345;
  --muted: #5e6d8f;
  --line: #d5e1fb;
  --navy: #0c1c3f;
  --blue: #1f67f0;
  --blue-deep: #164fc3;
  --teal: #1aa7a3;
  --lime: #e1f56b;
  --shadow: 0 30px 80px rgba(12, 28, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.scene {
  display: none;
}

.topbar,
.hero,
.site-footer {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-logo {
  display: block;
  width: clamp(190px, 22vw, 290px);
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0.24rem;
}

.brand-label,
.eyebrow,
.section__eyebrow,
.field__label,
.footer-title {
  margin: 0;
  color: var(--blue-deep);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-subcopy {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-shell {
  min-height: 100vh;
}

.vehicle-page {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.2rem 0 3rem;
}

.vehicle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 2rem;
  align-items: start;
}

.vehicle-copy {
  animation: hero-arrive 820ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms both;
}

.vehicle-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.vehicle-points {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.vehicle-points li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.vehicle-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.vehicle-form {
  animation: hero-arrive 820ms cubic-bezier(0.2, 0.9, 0.2, 1) 220ms both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
  gap: 2rem;
  align-items: start;
  padding: 3.4rem 0 2.8rem;
}

.hero__content {
  animation: hero-arrive 820ms cubic-bezier(0.2, 0.9, 0.2, 1) 120ms both;
}

.hero h1,
.lead-card h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero__copy,
.hero__note,
.lead-card__header p,
.form-response,
.consent {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero__copy {
  max-width: 34rem;
  margin: 1rem 0 0;
}

.hero__actions {
  margin-top: 1.7rem;
}

.lead-card__fineprint {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 1rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: none;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 20px 42px rgba(22, 79, 195, 0.28);
}

.button--secondary {
  color: var(--blue-deep);
  background: rgba(31, 103, 240, 0.08);
}

.button--full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.9rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  opacity: 0;
  animation: hero-arrive 650ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-points li:nth-child(1) {
  animation-delay: 240ms;
}

.hero-points li:nth-child(2) {
  animation-delay: 320ms;
}

.hero-points li:nth-child(3) {
  animation-delay: 400ms;
}

.hero__note {
  max-width: 38rem;
  margin: 1.1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.lead-card {
  position: sticky;
  top: 1rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  animation:
    hero-arrive 820ms cubic-bezier(0.2, 0.9, 0.2, 1) 220ms both,
    lead-card-float 7s ease-in-out 1.2s infinite;
}

.thank-you-page {
  display: grid;
  place-items: center;
  padding: 4rem 0 5rem;
}

.finding-offers-page {
  display: grid;
  place-items: center;
  padding: 4rem 0 5rem;
}

.finding-offers-card {
  width: min(760px, calc(100% - 2rem));
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
  animation: hero-arrive 820ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.finding-offers-card h1,
.offer-popup h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.05em;
}

.finding-offers-card h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.finding-offers-copy,
.offer-popup__copy {
  margin: 1rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.loading-orb {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.1rem;
}

.loading-orb__ring {
  position: absolute;
  inset: 0;
  border: 4px solid rgba(31, 103, 240, 0.12);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin-ring 1.25s linear infinite;
}

.loading-orb__ring--delay {
  inset: 12px;
  border-top-color: var(--teal);
  animation-duration: 1.6s;
  animation-direction: reverse;
}

.loading-bar {
  width: min(420px, 100%);
  height: 12px;
  margin: 1.5rem auto 0;
  border-radius: 999px;
  background: rgba(213, 225, 251, 0.9);
  overflow: hidden;
}

.loading-bar__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  animation: loading-fill 2.2s ease forwards;
}

.offer-popup {
  margin-top: 1.7rem;
  padding: 1.35rem;
  border: 1px solid rgba(31, 103, 240, 0.16);
  border-radius: 24px;
  background: rgba(239, 245, 255, 0.95);
  box-shadow: 0 16px 40px rgba(12, 28, 63, 0.08);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 320ms ease, transform 320ms ease;
}

.offer-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.offer-popup__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-popup h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.02;
}

.finding-offers-button {
  margin-top: 1rem;
}

.thank-you-card {
  width: min(760px, 100%);
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
  animation: hero-arrive 820ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.thank-you-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 103, 240, 0.14), rgba(26, 167, 163, 0.18));
  box-shadow: inset 0 0 0 1px rgba(31, 103, 240, 0.12);
}

.thank-you-badge__check {
  color: var(--blue-deep);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.thank-you-card h1 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.thank-you-copy {
  margin: 1rem auto 0;
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
  text-align: left;
}

.thank-you-step {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(247, 250, 255, 0.85);
}

.thank-you-step__title {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  font-size: 0.98rem;
}

.thank-you-step__copy {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.partner-options-card {
  max-width: 860px;
}

.partner-home-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.partner-home-link__logo {
  width: min(240px, 52vw);
  height: auto;
}

.partner-home-link__text {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-home-link:hover .partner-home-link__text,
.partner-home-link:focus-visible .partner-home-link__text {
  color: var(--blue-deep);
}

.partner-options-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.partner-options-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 96px;
  padding: 1.05rem 1.15rem 1.05rem 1.2rem;
  border: 1px solid rgba(31, 103, 240, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
  box-shadow: 0 16px 40px rgba(12, 28, 63, 0.08);
  text-decoration: none;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.partner-options-button:hover,
.partner-options-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 103, 240, 0.28);
  box-shadow: 0 22px 48px rgba(12, 28, 63, 0.12);
}

.partner-options-button__content {
  display: grid;
  gap: 0.28rem;
}

.partner-options-button__title {
  color: var(--navy);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.partner-options-button__meta {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-options-button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(22, 79, 195, 0.22);
}

.partner-options-disclaimer {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.leads-card {
  width: min(1200px, calc(100% - 2rem));
}

.leads-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 248, 255, 0.95);
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.admin-tab:hover,
.admin-tab:focus-visible {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
}

.admin-tab--active {
  background: linear-gradient(135deg, #2f68df, #2254c9);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(34, 84, 201, 0.18);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  margin-top: 0.75rem;
  color: var(--navy);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.leads-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
}

.leads-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
}

.leads-table th,
.leads-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(213, 225, 251, 0.8);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.leads-table th {
  position: sticky;
  top: 0;
  background: #edf3ff;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.leads-table td {
  color: var(--muted);
  line-height: 1.55;
}

.leads-table tbody tr:nth-child(even) {
  background: rgba(247, 250, 255, 0.8);
}

.stats-table {
  min-width: 520px;
}

.lead-card__header {
  margin-bottom: 1rem;
}

.lead-card__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.lead-card__header p {
  margin: 1rem 0 0;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field-group-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field__label {
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #ccdaf7;
  border-radius: 18px;
  background: var(--surface-alt);
  color: var(--text);
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8493b2;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(31, 103, 240, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 103, 240, 0.12);
  transform: translateY(-1px);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1rem 0 1.1rem;
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent input {
  margin-top: 0.25rem;
}

.form-response {
  margin: 0.95rem 0 0;
}

.submit-fineprint {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  margin: 1rem auto 2rem;
}

.resources-section {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
}

.resources-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.resources-card h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.resources-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.resources-button {
  min-height: 72px;
  justify-content: flex-start;
  padding: 1rem 1.2rem;
  text-align: left;
  line-height: 1.4;
  white-space: normal;
  border: 1px solid rgba(31, 103, 240, 0.14);
  background: rgba(31, 103, 240, 0.06);
}

.site-footer__inner {
  display: grid;
  gap: 0.7rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.footer-block {
  display: grid;
  gap: 0.2rem;
}

.footer-title {
  font-size: 0.64rem;
}

.footer-block p,
.site-footer__fineprint {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-links a,
.inline-link {
  color: var(--blue-deep);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.site-footer__fineprint {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(213, 225, 251, 0.8);
}

.footer-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.1rem;
}

.footer-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  opacity: 0.88;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  cursor: pointer;
}

.footer-text-button:hover,
.footer-text-button:focus-visible {
  color: var(--blue-deep);
}

.modal-open {
  overflow: hidden;
}

.mini-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.mini-modal[hidden] {
  display: none;
}

.mini-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 50, 0.44);
}

.mini-modal__card {
  position: relative;
  width: min(460px, 100%);
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(12, 28, 63, 0.22);
}

.mini-modal__eyebrow {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-modal__title {
  margin: 0.5rem 0 0;
  color: var(--navy);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1;
}

.mini-modal__copy {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.mini-modal__form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.field--compact input {
  padding-block: 0.85rem;
}

.mini-modal__response {
  margin: 0;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.mini-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mini-modal__button {
  min-width: 180px;
}

.policy-page {
  padding: 2.5rem 0 4rem;
}

.policy-card {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.policy-card h1,
.policy-card h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  letter-spacing: -0.05em;
}

.policy-card h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.policy-card h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.1;
}

.policy-lead,
.policy-section p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.policy-section + .policy-section {
  margin-top: 1.4rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: min(420px, calc(100% - 1rem));
}

.cookie-banner__inner {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(12, 28, 63, 0.18);
}

.cookie-banner__title {
  margin: 0;
  color: var(--navy);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.cookie-banner__copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner__button {
  min-width: 132px;
}

@keyframes hero-arrive {
  0% {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes lead-card-float {
  0% {
    box-shadow: 0 30px 80px rgba(12, 28, 63, 0.12);
  }
  50% {
    box-shadow: 0 36px 90px rgba(12, 28, 63, 0.16);
  }
  100% {
    box-shadow: 0 30px 80px rgba(12, 28, 63, 0.12);
  }
}

@keyframes spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-fill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

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

  .lead-card {
    position: relative;
    top: auto;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

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

  .thank-you-steps {
    grid-template-columns: 1fr;
  }

  .partner-options-list {
    grid-template-columns: 1fr;
  }

  .partner-options-button {
    min-height: 88px;
    padding: 1rem;
    border-radius: 22px;
  }

  .partner-options-button__title {
    font-size: 1rem;
  }

  .partner-options-button__arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 720px) {
  .topbar,
  .hero,
  .vehicle-page,
  .resources-section,
  .site-footer {
    width: calc(100% - 1rem);
  }

  .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: min(230px, 60vw);
  }

  .topbar__actions {
    width: 100%;
  }

  .button--secondary {
    width: 100%;
  }

  .admin-tabs {
    width: 100%;
    justify-content: space-between;
  }

  .admin-tab {
    flex: 1 1 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .lead-card,
  .finding-offers-card,
  .resources-card,
  .site-footer__inner,
  .hero-points li,
  .thank-you-card,
  .policy-card,
  .leads-table-wrap {
    border-radius: 22px;
  }

  .offer-popup {
    border-radius: 20px;
  }

  .cookie-banner {
    right: 0.65rem;
    bottom: 0.65rem;
    width: calc(100% - 1rem);
  }

  .cookie-banner__inner {
    gap: 0.55rem;
    padding: 0.78rem;
    border-radius: 18px;
  }

  .cookie-banner__title {
    font-size: 0.9rem;
  }

  .cookie-banner__copy {
    font-size: 0.76rem;
    line-height: 1.42;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .cookie-banner__button {
    width: 100%;
    min-height: 42px;
    padding: 0.7rem 0.85rem;
    font-size: 0.82rem;
  }

  .mini-modal__actions {
    flex-direction: column;
  }

  .mini-modal__button {
    width: 100%;
  }
}

.lp-page {
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 12%, rgba(26, 167, 163, 0.16), transparent 32rem),
    linear-gradient(145deg, #f7fff9 0%, #edf5ff 52%, #ffffff 100%);
}

.get-started-page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background:
    radial-gradient(circle at 84% 12%, rgba(26, 167, 163, 0.16), transparent 32rem),
    linear-gradient(145deg, #f7fff9 0%, #edf5ff 52%, #ffffff 100%);
}

.get-started-page .lp-page {
  background: transparent;
  min-height: auto;
  overflow: visible;
  overflow-x: clip;
}

.get-started-page .cookie-banner {
  position: static;
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto 1rem;
}

.lp-page::before,
.lp-page::after {
  position: absolute;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  content: "";
  filter: blur(6px);
  opacity: 0.58;
}

.lp-page::before {
  top: -9rem;
  right: -7rem;
  background: rgba(26, 167, 163, 0.25);
}

.lp-page::after {
  bottom: -12rem;
  left: -9rem;
  background: rgba(31, 103, 240, 0.16);
}

.lp-shell {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 0.15rem 0 1rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(0.2rem, 1.2vh, 0.55rem);
}

.lp-brand-logo {
  display: block;
  width: min(170px, 46vw);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(19, 42, 82, 0.08));
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  gap: clamp(0.6rem, 1.8vw, 1.1rem);
  align-items: start;
}

.lp-hero-card,
.lp-test-form {
  width: 100%;
  border: 1px solid rgba(23, 55, 110, 0.14);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(19, 42, 82, 0.12);
  backdrop-filter: blur(18px);
}

.lp-hero-card {
  padding: clamp(0.78rem, 2vw, 1.15rem);
}

.lp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lp-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lp-headline-graphic-wrap {
  position: relative;
  display: grid;
  min-height: clamp(9.2rem, 18vw, 13.2rem);
  place-items: center;
  overflow: hidden;
  margin: -0.55rem 0 0;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 50% 44%, rgba(26, 167, 163, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(244, 251, 249, 0.66));
}

.lp-headline-graphic-wrap::after {
  position: absolute;
  inset: auto 12% 8%;
  height: 2rem;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(19, 42, 82, 0.13), transparent 70%);
  content: "";
  filter: blur(10px);
}

.lp-headline-graphic {
  position: relative;
  z-index: 1;
  width: min(104%, 34rem);
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(19, 42, 82, 0.16));
}

.lp-subheadline {
  max-width: 36rem;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
}

.lp-trust-grid li {
  display: grid;
  min-height: 6.1rem;
  align-content: start;
  gap: 0.32rem;
  padding: 0.68rem;
  border: 1px solid rgba(23, 55, 110, 0.14);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  color: #17284d;
  font-weight: 800;
  line-height: 1.35;
}

.lp-trust-grid strong,
.lp-trust-grid small {
  display: block;
}

.lp-trust-grid strong {
  font-size: 1rem;
  line-height: 1.22;
}

.lp-trust-grid small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.lp-hero-disclaimer {
  margin: 0.62rem 0 0;
  color: #667391;
  font-size: 0.66rem;
  line-height: 1.45;
}

.lp-icon {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 0.85rem;
  background: rgba(31, 103, 240, 0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.lp-test-form {
  display: grid;
  gap: 0.36rem;
  margin-top: -0.65rem;
  padding: clamp(0.54rem, 1.2vw, 0.72rem);
  border-radius: 1.8rem;
}

.lp-form-heading {
  display: grid;
  gap: 0.78rem;
  margin-bottom: 1rem;
}

.lp-form-topline {
  display: flex;
  align-items: flex-start;
  gap: 0.68rem;
  margin-bottom: 0.12rem;
}

.lp-form-badge {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(26, 167, 163, 0.14);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.94), transparent 40%),
    linear-gradient(135deg, rgba(26, 167, 163, 0.16), rgba(31, 103, 240, 0.08));
  box-shadow: 0 14px 30px rgba(26, 167, 163, 0.12);
}

.lp-form-badge svg {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  fill: var(--teal);
}

.lp-form-mini-disclaimer {
  margin: 0;
  max-width: 16.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.28;
}

.lp-form-heading h2 {
  margin: 0;
  flex: 1;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.26rem, 2.45vw, 1.72rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lp-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

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

.lp-test-field {
  display: grid;
  gap: 0.18rem;
}

.lp-test-field--wide {
  grid-column: 1 / -1;
}

.lp-test-field--short {
  min-width: 0;
}

.lp-test-field span {
  color: #25365f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lp-test-field input,
.lp-test-field select {
  width: 100%;
  min-height: 2.06rem;
  border: 1px solid rgba(31, 103, 240, 0.16);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  font-size: 0.84rem;
  outline: none;
  padding: 0.4rem 0.56rem;
  box-shadow: 0 10px 22px rgba(19, 42, 82, 0.05);
}

.lp-test-field input:focus,
.lp-test-field select:focus {
  border-color: rgba(31, 103, 240, 0.52);
  box-shadow: 0 0 0 3px rgba(31, 103, 240, 0.1);
}

.lp-test-consents {
  display: grid;
  gap: 0.34rem;
}

.lp-test-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.36rem;
  align-items: start;
  padding: 0.38rem 0.48rem;
  border: 1px solid rgba(31, 103, 240, 0.12);
  border-radius: 0.78rem;
  background: rgba(247, 250, 255, 0.82);
  color: #5f6d8e;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.24;
}

.lp-test-consent input {
  width: 0.86rem;
  height: 0.86rem;
  margin: 0.08rem 0 0;
  accent-color: var(--blue);
}

.lp-primary-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(31, 103, 240, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.lp-primary-cta:hover,
.lp-primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(31, 103, 240, 0.34);
}

.lp-form-submit {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.58rem 1rem;
}

.lp-disclaimer,
.lp-form-response {
  max-width: none;
  margin: 0;
  color: #667391;
  font-size: 0.66rem;
  line-height: 1.45;
}

.lp-form-response {
  margin-top: 0.35rem;
}

.lp-legal-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.85rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.65rem;
  padding: 0.52rem 0.65rem;
  border: 1px solid rgba(23, 55, 110, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(19, 42, 82, 0.06);
  backdrop-filter: blur(14px);
  color: #5f6d8e;
  font-size: 0.68rem;
  line-height: 1.25;
}

.lp-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
}

.lp-legal-links a {
  color: var(--blue-deep);
  font-size: 0.66rem;
  font-weight: 800;
}

.lp-legal-links a:hover,
.lp-legal-links a:focus-visible,
.lp-remove-data-button:hover,
.lp-remove-data-button:focus-visible {
  text-decoration: underline;
}

.lp-remove-data-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7c879f;
  font-size: 0.56rem;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

@media (max-width: 820px) {
  .lp-shell {
    width: min(100% - 1rem, 640px);
    padding: 0.45rem 0 1.2rem;
  }

  .lp-eyebrow {
    text-align: center;
  }

  .lp-brand {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.45rem;
  }

  .lp-hero {
    grid-template-columns: 1fr;
  }

  .lp-hero-card,
  .lp-test-form {
    border-radius: 1.45rem;
  }

  .lp-trust-grid {
    grid-template-columns: 1fr;
  }

  .lp-trust-grid li {
    min-height: auto;
    grid-template-columns: 2.35rem 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: start;
    gap: 0.12rem 0.72rem;
    padding: 0.74rem 0.82rem;
  }

  .lp-trust-grid .lp-icon {
    grid-area: icon;
    align-self: start;
  }

  .lp-trust-grid strong {
    grid-area: title;
    align-self: center;
    font-size: 0.94rem;
    line-height: 1.16;
  }

  .lp-trust-grid small {
    grid-area: text;
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .lp-test-form {
    order: -1;
    gap: 0.36rem;
    margin-top: 0;
    padding: 0.52rem;
  }

  .lp-hero-card {
    padding: 0.58rem;
  }

  .lp-headline-graphic-wrap {
    min-height: 8.2rem;
    border-radius: 1.25rem;
  }

  .lp-subheadline {
    margin-top: 0.35rem;
    font-size: 0.88rem;
  }

  .lp-trust-grid {
    gap: 0.38rem;
    margin-top: 0.45rem;
  }

  .lp-trust-grid li {
    gap: 0.1rem 0.66rem;
    padding: 0.66rem 0.72rem;
  }

  .lp-hero-disclaimer {
    margin-top: 0.45rem;
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .lp-form-badge {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.82rem;
  }

  .lp-form-badge svg {
    width: 1.55rem;
    height: 1.55rem;
  }

  .lp-form-topline {
    gap: 0.56rem;
    margin-bottom: 0.08rem;
  }

  .lp-form-mini-disclaimer {
    max-width: none;
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .lp-form-heading h2 {
    font-size: clamp(1.12rem, 5.3vw, 1.5rem);
  }

  .lp-form-heading {
    margin-bottom: 1.1rem;
  }

  .lp-form-heading p {
    font-size: 0.78rem;
  }

  .lp-compact-form-grid {
    gap: 0.32rem;
  }

  .lp-test-field span {
    font-size: 0.62rem;
  }

  .lp-test-field input,
  .lp-test-field select {
    min-height: 2.08rem;
    border-radius: 0.78rem;
    font-size: 0.88rem;
    padding: 0.42rem 0.54rem;
  }

  .lp-form-submit {
    min-height: 2.58rem;
  }

  .lp-disclaimer,
  .lp-form-response {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .lp-test-consents {
    gap: 0.26rem;
  }

  .lp-test-consent {
    gap: 0.34rem;
    padding: 0.4rem 0.46rem;
    border-radius: 0.68rem;
    font-size: 0.57rem;
    line-height: 1.28;
  }

  .lp-test-consent input {
    width: 0.78rem;
    height: 0.78rem;
  }

  .lp-legal-strip {
    justify-content: flex-start;
    gap: 0.36rem 0.65rem;
    margin-top: 0.48rem;
    padding: 0.45rem 0.55rem;
    border-radius: 0.75rem;
  }

  .lp-legal-links {
    gap: 0.35rem 0.62rem;
  }

  .lp-legal-links a {
    font-size: 0.58rem;
  }

  .lp-remove-data-button {
    font-size: 0.5rem;
  }

  .get-started-page .cookie-banner {
    position: static;
    width: min(100% - 1rem, 640px);
    margin: 0 auto 0.9rem;
  }

  .get-started-page .cookie-banner__inner {
    box-shadow: 0 12px 34px rgba(12, 28, 63, 0.1);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }
}

.financial-tips-page {
  background:
    radial-gradient(circle at top left, rgba(31, 103, 240, 0.06), transparent 28%),
    radial-gradient(circle at top right, rgba(26, 167, 163, 0.08), transparent 26%),
    #ffffff;
}

.edu-shell {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.edu-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 1.15rem;
}

.edu-brand {
  padding: 0;
}

.edu-brand-logo {
  width: clamp(190px, 20vw, 265px);
}

.edu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 1.3rem;
  align-items: start;
  padding: 1rem 0 1.2rem;
}

.edu-hero h1,
.edu-panel h2,
.edu-faq-section h2,
.edu-hero-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.edu-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
}

.edu-hero-text,
.edu-hero-panel p,
.edu-panel p,
.edu-panel li,
.edu-faq-item p,
.edu-footer-disclaimer {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.edu-hero-text {
  max-width: 38rem;
  margin: 1rem 0 0;
}

.edu-hero-cta,
.edu-inline-cta {
  min-width: 220px;
}

.edu-hero-panel,
.edu-panel,
.edu-faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.98) 100%);
  border: 1px solid rgba(23, 55, 110, 0.1);
  border-radius: 1.8rem;
  box-shadow: 0 24px 60px rgba(17, 35, 69, 0.08);
}

.edu-hero-panel,
.edu-panel {
  padding: 1.45rem;
}

.edu-hero-panel h2,
.edu-panel h2,
.edu-faq-section h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.45rem);
}

.edu-hero-panel p {
  margin: 0.85rem 0 0;
}

.edu-key-points,
.edu-list,
.edu-numbered-list,
.edu-footer-links {
  margin: 1rem 0 0;
}

.edu-key-points,
.edu-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.edu-key-points li,
.edu-list li {
  position: relative;
  padding-left: 1.2rem;
}

.edu-key-points li::before,
.edu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.edu-numbered-list {
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.62rem;
}

.edu-intro {
  margin-top: 0.35rem;
}

.edu-intro p + p,
.edu-panel p + p {
  margin-top: 0.9rem;
}

.edu-intro a,
.edu-panel a,
.edu-footer-links a {
  color: var(--blue-deep);
  font-weight: 800;
}

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

.edu-panel h3,
.edu-faq-item h3 {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.35;
}

.edu-cta-panel {
  margin-top: 1rem;
  text-align: left;
}

.edu-cta-panel p {
  max-width: 54rem;
}

.edu-faq-section {
  margin-top: 1rem;
}

.edu-faq-intro {
  margin: 0.85rem 0 0;
  max-width: 56rem;
}

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

.edu-faq-item {
  padding: 1.2rem 1.15rem;
}

.edu-faq-item h3 {
  margin: 0;
  font-size: 1rem;
}

.edu-faq-item p {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
}

.edu-footer {
  padding: 1rem 0 0.5rem;
}

.edu-footer-note {
  margin: 0 0 0.4rem;
  color: #63779a;
  font-size: 0.78rem;
  line-height: 1.6;
}

.edu-footer-disclaimer {
  margin: 0;
  font-size: 0.82rem;
}

.edu-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.edu-footer-links a {
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .edu-hero,
  .edu-section-grid,
  .edu-faq-grid {
    grid-template-columns: 1fr;
  }

  .edu-hero {
    gap: 1rem;
  }
}

@media (max-width: 720px) {
  .edu-shell {
    width: min(100% - 1rem, 700px);
    padding-top: 0.9rem;
    padding-bottom: 2rem;
  }

  .edu-header {
    padding-bottom: 0.85rem;
  }

  .edu-brand-logo {
    width: clamp(160px, 44vw, 220px);
  }

  .edu-hero {
    padding-top: 0.45rem;
  }

  .edu-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .edu-hero-panel,
  .edu-panel,
  .edu-faq-item {
    border-radius: 1.35rem;
  }

  .edu-hero-panel,
  .edu-panel {
    padding: 1.05rem;
  }

  .edu-hero-panel h2,
  .edu-panel h2,
  .edu-faq-section h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .edu-hero-text,
  .edu-hero-panel p,
  .edu-panel p,
  .edu-panel li,
  .edu-faq-item p {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .edu-hero-cta,
  .edu-inline-cta {
    width: 100%;
  }

  .edu-footer-links a {
    font-size: 0.84rem;
  }

  .edu-footer-note,
  .edu-footer-disclaimer {
    font-size: 0.76rem;
    line-height: 1.55;
  }
}
