/* CHECKSEG_LEGAL_PAGES_V40 */
:root {
  --navy: #071a3d;
  --navy-2: #0b2f63;
  --ink: #10203d;
  --muted: #66758f;
  --orange: #ff5a1f;
  --orange-dark: #e74610;
  --orange-soft: #fff3ed;
  --blue: #1478ff;
  --teal: #0d827b;
  --green: #12a66a;
  --canvas: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --line: #dce4ef;
  --line-strong: #cbd6e4;
  --shadow-sm: 0 1px 2px rgba(7, 26, 61, 0.04), 0 10px 26px rgba(7, 26, 61, 0.06);
  --shadow-lg: 0 28px 80px rgba(7, 26, 61, 0.16);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 90, 31, 0.08), transparent 27rem),
    radial-gradient(circle at 90% 10%, rgba(20, 120, 255, 0.07), transparent 34rem),
    var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #fff;
  background: var(--orange);
}

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

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

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

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.landing-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 13px clamp(22px, 4.5vw, 76px);
  border-bottom: 1px solid rgba(220, 228, 239, 0.82);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
}

.landing-brand img {
  width: clamp(155px, 13vw, 205px);
  display: block;
}

.landing-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px);
  color: #53627a;
  font-size: 13px;
  font-weight: 720;
}

.landing-nav nav a,
.nav-login,
.nav-primary,
.cta-primary,
.cta-secondary,
.text-link,
.final-actions > a {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, transform 160ms ease;
}

.landing-nav nav a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login,
.nav-primary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-login {
  border: 1px solid var(--line-strong);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
}

.nav-login span {
  margin-left: 6px;
  color: var(--orange);
}

.nav-login:hover {
  border-color: #ffb08e;
  background: var(--orange-soft);
}

.nav-primary {
  border: 1px solid var(--navy);
  color: #fff;
  background: var(--navy);
}

.nav-primary:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.hero {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(22px, 4.5vw, 76px) clamp(76px, 8vw, 116px);
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(680px, 1.38fr);
  align-items: center;
  gap: clamp(46px, 5vw, 82px);
}

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

.eyebrow,
.eyebrow-pill {
  color: #42617f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #cfdaea;
  border-radius: 999px;
  background: rgba(247, 250, 255, 0.88);
  box-shadow: 0 6px 18px rgba(7, 26, 61, 0.04);
  letter-spacing: 0.06em;
}

.eyebrow-pill > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.13);
}

.hero h1 {
  max-width: 690px;
  margin: 24px 0 22px;
  color: var(--navy);
  font-size: clamp(54px, 5.2vw, 82px);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.062em;
}

.hero h1 em {
  display: block;
  margin-top: 9px;
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 22px;
}

.cta-primary {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(105deg, #ff642c, #ff4f1a);
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.24);
  font-size: 15px;
  font-weight: 850;
}

.cta-primary span {
  font-size: 21px;
}

.cta-primary:hover {
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.3);
  transform: translateY(-2px);
}

.cta-secondary {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.cta-secondary:hover {
  color: var(--orange);
}

.play {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border: 1px solid #cbd6e4;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.8);
  font-size: 9px;
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 11px;
  color: #718097;
  font-size: 12px;
}

.trust-row > span {
  color: var(--teal);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 28px 18px 32px;
}

.visual-grid {
  position: absolute;
  inset: -8% -8% -10%;
  border-radius: 44px;
  background:
    linear-gradient(rgba(20, 120, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 120, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 72% 22%, rgba(20, 120, 255, 0.18), transparent 42%),
    radial-gradient(circle at 24% 74%, rgba(255, 90, 31, 0.16), transparent 38%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  filter: blur(0.2px);
  opacity: 0.9;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(202, 214, 228, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.product-window::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.window-top {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid #e5ebf3;
  color: #8290a4;
  background: linear-gradient(180deg, #fbfcfe, #f4f7fb);
  font-size: 10px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8d6b;
}

.dots i:nth-child(2) {
  background: #f0c35f;
}

.dots i:nth-child(3) {
  background: #6bc6a4;
}

.window-url {
  font-weight: 700;
}

.window-security {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #5f7289;
  font-weight: 750;
}

.window-security i,
.system-state i,
.product-connections i,
.lead-status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 166, 106, 0.1);
}

.product-shell {
  min-height: 612px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  background: #f3f6fb;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 10px 12px;
  border-right: 1px solid #e0e7f0;
  background: rgba(255, 255, 255, 0.96);
}

.product-brand {
  min-height: 52px;
  display: grid;
  place-items: center;
  margin: 0 5px 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6ebf2;
}

.product-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product-nav {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: 10px;
  color: #5d6c83;
  font-size: 8px;
}

.product-nav span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e8f1;
  border-radius: 7px;
  background: #f8faff;
  font-size: 11px;
}

.product-nav strong {
  font-size: 8px;
  font-weight: 800;
}

.product-nav.active {
  color: #d94a18;
  background: linear-gradient(105deg, rgba(255, 90, 31, 0.12), #fff);
  box-shadow: inset 3px 0 0 var(--orange);
}

.product-nav.active span {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(145deg, #ff6c32, #ff4b16);
}

.product-sidebar-spacer {
  flex: 1;
}

.product-connections {
  display: grid;
  gap: 7px;
  padding: 9px;
  border: 1px solid #e3e9f1;
  border-radius: 11px;
  background: #f8faff;
}

.product-connections span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #53637a;
  font-size: 7px;
  font-weight: 750;
}

.product-connections i {
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.product-workspace {
  min-width: 0;
  padding: 13px;
}

.product-titlebar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-titlebar > div {
  display: grid;
  gap: 2px;
}

.product-titlebar small {
  color: #718097;
  font-size: 7px;
}

.product-titlebar strong {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.system-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid #ccefe7;
  border-radius: 999px;
  color: #087467;
  background: #f0fbf8;
  font-size: 7px;
  font-weight: 800;
}

.queue-strip,
.lead-card,
.quotes-card,
.message-preview {
  border: 1px solid #dce4ef;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 2px rgba(7, 26, 61, 0.03), 0 8px 20px rgba(7, 26, 61, 0.045);
}

.queue-strip {
  min-height: 88px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.queue-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-right: 10px;
  border-right: 1px solid #e4eaf2;
}

.queue-copy small,
.lead-card-head small,
.quotes-head small,
.message-preview-head small {
  color: #6f7d91;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.queue-copy strong {
  color: var(--navy);
  font-size: 10px;
}

.queue-copy strong span {
  min-width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  margin-left: 3px;
  border-radius: 999px;
  color: #176dcc;
  background: #edf4ff;
  font-size: 7px;
}

.queue-cards {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.queue-card {
  min-width: 0;
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 7px 8px;
  border: 1px solid #dce4ef;
  border-radius: 9px;
  background: #fbfcfe;
}

.queue-card strong,
.queue-card span,
.queue-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-card strong {
  color: var(--navy);
  font-size: 7px;
}

.queue-card span {
  color: #63738a;
  font-size: 6px;
}

.queue-card small {
  color: #315171;
  font-size: 6px;
  font-weight: 800;
}

.queue-card.active {
  border-color: #ff9b76;
  background: #fff7f3;
  box-shadow: inset 3px 0 0 var(--orange);
}

.product-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: start;
  gap: 10px;
}

.product-main-column {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.lead-card {
  padding: 11px;
}

.lead-card-head,
.quotes-head,
.message-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lead-card-head h2 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -0.025em;
}

.lead-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid #ccefe7;
  border-radius: 999px;
  color: #087467;
  background: #f0fbf8;
  font-size: 7px;
  font-weight: 850;
}

.lead-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.lead-data-grid > span {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 7px;
  border: 1px solid #e0e7f0;
  border-radius: 8px;
  background: #fbfcfe;
}

.lead-data-grid small {
  color: #76849a;
  font-size: 6px;
  font-weight: 750;
}

.lead-data-grid strong {
  overflow: hidden;
  color: #263a59;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quotes-card {
  min-width: 0;
  overflow: hidden;
  padding: 11px;
}

.quotes-head h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.quote-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.quote-actions > span {
  color: #6d7b90;
  font-size: 6px;
  font-weight: 750;
}

.quote-actions button,
.message-preview > button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(105deg, #0e8981, #08736e);
  font-size: 7px;
  font-weight: 850;
}

.quote-actions button {
  min-height: 27px;
  padding: 0 9px;
}

.best-rule {
  min-height: 33px;
  display: grid;
  grid-template-columns: 18px auto 1fr;
  align-items: center;
  gap: 5px;
  margin: 9px 0 7px;
  padding: 6px 8px;
  border: 1px solid #f3d5c7;
  border-radius: 8px;
  background: #fff8f4;
}

.best-rule > span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 7px;
  font-weight: 900;
}

.best-rule strong {
  color: #8f3c1d;
  font-size: 7px;
}

.best-rule small {
  color: #8b6d60;
  font-size: 6px;
}

.quote-table {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e7f0;
  border-radius: 10px;
}

.quote-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(112px, 1.42fr) repeat(4, minmax(69px, 1fr));
  align-items: stretch;
  border-top: 1px solid #e8edf4;
}

.quote-row:first-child {
  border-top: 0;
}

.quote-table-head {
  min-height: 28px;
  align-items: center;
  color: #fff;
  background: linear-gradient(100deg, #ff642c, #ff4f1a);
}

.quote-table-head > span {
  padding: 0 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 6px;
  font-weight: 850;
  text-align: center;
}

.quote-table-head > span:first-child {
  border-left: 0;
  text-align: left;
}

.quote-company {
  min-width: 0;
  min-height: 61px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 4px;
  padding: 7px 8px;
  border-right: 1px solid #e8edf4;
  background: #fff;
}

.quote-company img {
  width: 55px;
  height: 20px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.plan-label {
  min-width: 38px;
  display: inline-flex;
  justify-content: center;
  padding: 2px 5px;
  border-radius: 999px;
  color: #fff;
  font-size: 5px;
  font-weight: 900;
}

.plan-label.full {
  background: #f4a100;
}

.plan-label.premium {
  background: #0aa050;
}

.quote-price {
  position: relative;
  min-width: 0;
  min-height: 61px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 6px 4px;
  border-left: 1px solid #e8edf4;
  text-align: center;
}

.quote-price strong {
  color: var(--navy);
  font-size: 7px;
  font-weight: 900;
}

.quote-price small {
  color: #5e6e85;
  font-size: 5px;
  font-weight: 750;
}

.quote-price em {
  color: #8190a4;
  font-size: 5px;
  font-style: normal;
}

.quote-price.selected {
  background: #effbf9;
  box-shadow: inset 0 0 0 2px #0b8178;
}

.quote-price.selected strong {
  color: #08746c;
  font-size: 8px;
}

.best-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  padding: 2px 3px;
  border-radius: 4px;
  color: #fff;
  background: var(--teal);
  font-size: 4px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.message-preview {
  min-width: 0;
  padding: 11px;
}

.message-preview-head strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: 10px;
}

.message-preview-head > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #22a46f;
  font-size: 9px;
  font-weight: 900;
}

.chat-bubble {
  margin: 12px 0 8px;
  padding: 9px;
  border-radius: 9px 9px 3px 9px;
  color: #33435c;
  background: #e8f7f0;
  font-size: 7px;
  line-height: 1.45;
}

.offer-summary {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 8px;
  padding: 9px;
  border: 1px solid #e1e7ef;
  border-radius: 9px;
  background: #fbfcfe;
}

.offer-logo {
  grid-row: span 3;
  display: grid;
  place-items: center;
}

.offer-logo img {
  width: 34px;
  height: 20px;
  object-fit: contain;
}

.offer-summary strong {
  color: var(--navy);
  font-size: 7px;
}

.offer-summary small,
.offer-summary em {
  color: #6c7c91;
  font-size: 6px;
  font-style: normal;
}

.attachment {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 7px;
  margin: 8px 0;
  padding: 8px;
  border: 1px solid #e1e7ef;
  border-radius: 9px;
}

.attachment > span {
  width: 28px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #e64834;
  font-size: 6px;
  font-weight: 900;
}

.attachment > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.attachment strong,
.attachment small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment strong {
  color: #31425e;
  font-size: 6px;
}

.attachment small {
  color: #7a899c;
  font-size: 5px;
}

.message-preview > button {
  width: 100%;
  min-height: 31px;
}

.human-note {
  display: block;
  margin-top: 7px;
  color: #7b899c;
  font-size: 5px;
  text-align: center;
}

.product-proof {
  position: absolute;
  z-index: 5;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(210, 220, 233, 0.96);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px rgba(7, 26, 61, 0.13);
  backdrop-filter: blur(14px);
}

.product-proof > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.product-proof > div {
  display: grid;
  gap: 2px;
}

.product-proof strong {
  color: var(--navy);
  font-size: 9px;
}

.product-proof small {
  color: #6c7b90;
  font-size: 7px;
}

.proof-one {
  right: -10px;
  bottom: 3px;
}

.proof-two {
  top: 5px;
  left: -24px;
}

.proof-two > span {
  color: var(--orange);
  background: var(--orange-soft);
}

.insurer-strip {
  width: min(calc(100% - 44px), 1220px);
  margin: 0 auto;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.insurer-strip > p {
  margin: 0 0 20px;
  color: #7a899c;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.insurer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 46px);
}

.insurer-logos img {
  width: auto;
  height: clamp(23px, 2.2vw, 34px);
  max-width: 108px;
  object-fit: contain;
  filter: saturate(0.82);
  opacity: 0.86;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.insurer-logos img:hover {
  filter: saturate(1);
  opacity: 1;
  transform: translateY(-2px);
}

.benefits-section,
.workflow-section,
.operation-section,
.control-section {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(96px, 10vw, 144px) 24px;
}

.section-heading {
  max-width: 690px;
}

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

.section-heading h2,
.workflow-copy h2,
.control-copy h2 {
  margin: 16px 0;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-heading p,
.workflow-copy p,
.control-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.bento-card::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 120, 255, 0.08), transparent 68%);
  content: "";
  pointer-events: none;
}

.bento-lead {
  grid-column: span 7;
}

.bento-rule {
  grid-column: span 5;
  background: linear-gradient(145deg, #071a3d, #0b2f63);
}

.bento-whatsapp {
  grid-column: span 5;
  background: linear-gradient(145deg, #eefaf6, #f8fcfb);
}

.bento-trace {
  grid-column: span 7;
}

.bento-lead::after,
.bento-trace::after {
  top: -80px;
  right: -65px;
}

.bento-whatsapp::after {
  right: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(13, 130, 123, 0.12), transparent 68%);
}

.card-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.feature-number {
  min-width: 38px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d8e2ef;
  border-radius: 999px;
  color: var(--orange);
  background: #fff8f4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card-copy h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.bento-rule .feature-number {
  border-color: rgba(255, 255, 255, 0.15);
  color: #ff9b70;
  background: rgba(255, 255, 255, 0.08);
}

.bento-rule .card-copy h3 {
  color: #fff;
}

.bento-rule .card-copy p {
  color: #c4d1e4;
}

.lead-mini-ui {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  gap: 9px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  background: #f8faff;
}

.mini-search {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  color: #8390a3;
  background: #fff;
  font-size: 10px;
}

.mini-search span {
  color: var(--blue);
  font-size: 17px;
}

.mini-record {
  min-height: 67px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  background: #fff;
}

.mini-record > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #ff6d35, #ff4f1a);
  font-size: 11px;
  font-weight: 900;
}

.mini-record > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.mini-record strong,
.mini-record small,
.mini-record em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-record strong {
  color: var(--navy);
  font-size: 11px;
}

.mini-record small,
.mini-record em {
  color: #65758b;
  font-size: 9px;
  font-style: normal;
}

.mini-record em {
  color: #3b587a;
  font-weight: 750;
}

.mini-record b {
  padding: 5px 7px;
  border-radius: 999px;
  color: #087467;
  background: #edf9f6;
  font-size: 8px;
}

.mini-record:not(.active) > span {
  color: #50617b;
  background: #edf2f8;
}

.mini-record:not(.active) b {
  color: #4b627c;
  background: #eef3f8;
}

.mini-record.active {
  border-color: #ff9e7c;
  box-shadow: inset 3px 0 0 var(--orange);
}

.rule-visual {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  gap: 9px;
  margin-top: 30px;
}

.rule-visual > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
}

.rule-visual span {
  color: #8fadd1;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.rule-visual strong {
  grid-row: span 2;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.rule-visual small {
  color: #c4d1e4;
  font-size: 10px;
}

.rule-visual i {
  width: 1px;
  height: 12px;
  margin-left: 20px;
  background: linear-gradient(#3b648e, #ff7a45);
}

.phone-card {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100%, 350px);
  margin: 30px auto -42px;
  padding: 12px 12px 54px;
  border: 1px solid #cfe5dd;
  border-radius: 30px 30px 0 0;
  background: #eef4f1;
  box-shadow: 0 20px 40px rgba(21, 78, 66, 0.13);
}

.phone-card::before {
  width: 92px;
  height: 19px;
  display: block;
  margin: -4px auto 10px;
  border-radius: 999px;
  background: #d7e1dd;
  content: "";
}

.phone-top {
  min-height: 48px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 5px 8px;
}

.phone-top > span {
  color: #3b5e55;
  font-size: 20px;
}

.phone-top > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  gap: 0 8px;
}

.phone-top i {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1e8a69;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.phone-top strong {
  color: #24423a;
  font-size: 11px;
}

.phone-top small {
  color: #69857d;
  font-size: 8px;
}

.phone-top b {
  color: #5f776f;
  letter-spacing: 0.14em;
}

.phone-chat,
.phone-document {
  margin-left: 34px;
  border-radius: 13px 13px 3px 13px;
  background: #d9f5e7;
  box-shadow: 0 1px 2px rgba(15, 80, 61, 0.06);
}

.phone-chat {
  padding: 12px;
  color: #2f5047;
  font-size: 10px;
  line-height: 1.5;
}

.phone-document {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 7px;
  padding: 9px;
}

.phone-document > span {
  width: 32px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: #e94a36;
  font-size: 7px;
  font-weight: 900;
}

.phone-document > div {
  display: grid;
  gap: 2px;
}

.phone-document strong {
  color: #29483f;
  font-size: 9px;
}

.phone-document small {
  color: #66847a;
  font-size: 8px;
}

.phone-document i {
  color: #13845f;
  font-style: normal;
  font-weight: 900;
}

.timeline-ui {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  gap: 0;
  margin-top: 32px;
  padding: 8px 14px;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  background: #f8faff;
}

.timeline-ui > div {
  position: relative;
  min-height: 62px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e3e9f1;
}

.timeline-ui > div:last-child {
  border-bottom: 0;
}

.timeline-ui i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #d3dce8;
  border-radius: 9px;
  color: #718096;
  background: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.timeline-ui > div.done i {
  border-color: #ccefe7;
  color: #087467;
  background: #edf9f6;
}

.timeline-ui > div.active i {
  border-color: #ffc0a8;
  color: #fff;
  background: var(--orange);
}

.timeline-ui span {
  display: grid;
  gap: 3px;
}

.timeline-ui strong {
  color: var(--navy);
  font-size: 11px;
}

.timeline-ui small,
.timeline-ui time {
  color: #718096;
  font-size: 9px;
}

.timeline-ui time {
  font-style: normal;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(56px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.workflow-copy {
  position: sticky;
  top: 120px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 850;
}

.text-link:hover {
  gap: 14px;
}

.workflow-steps {
  display: grid;
}

.workflow-steps article {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 24px;
  padding: 8px 0 42px;
}

.workflow-steps article::before {
  position: absolute;
  top: 55px;
  bottom: -3px;
  left: 28px;
  width: 1px;
  background: linear-gradient(#b9c8d9, #e4eaf2);
  content: "";
}

.workflow-steps article:last-child::before {
  display: none;
}

.workflow-steps article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #d3deeb;
  border-radius: 18px;
  color: var(--orange);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.workflow-steps article > div {
  padding: 6px 0 0;
}

.workflow-steps small {
  color: #4e6a89;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.workflow-steps h3 {
  margin: 10px 0 9px;
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.workflow-steps p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.operation-section {
  padding-top: 60px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.audience-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.audience-grid article.featured {
  border-color: #12366e;
  color: #fff;
  background: linear-gradient(145deg, #071a3d, #0b2f63);
  transform: translateY(-12px);
}

.audience-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 22px;
  font-weight: 900;
}

.featured .audience-icon {
  color: #fff;
  background: linear-gradient(145deg, #ff6c32, #ff4b16);
}

.audience-grid h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.audience-grid .featured h3 {
  color: #fff;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.audience-grid .featured p {
  color: #c5d2e4;
}

.audience-grid small {
  margin-top: auto;
  padding-top: 24px;
  color: #5f7897;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.audience-grid .featured small {
  color: #8fb0d7;
}

.control-section {
  padding-top: 52px;
}

.control-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 84px);
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid #cfd9e7;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 100%, rgba(255, 90, 31, 0.12), transparent 30rem),
    linear-gradient(145deg, #f7faff, #edf3fb);
}

.control-card::after {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(20, 120, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(20, 120, 255, 0.025), 0 0 0 96px rgba(20, 120, 255, 0.018);
  content: "";
}

.control-copy,
.control-list {
  position: relative;
  z-index: 2;
}

.control-list {
  display: grid;
  gap: 10px;
}

.control-list > div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(207, 217, 231, 0.94);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(7, 26, 61, 0.04);
}

.control-list > div > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 10px;
  font-weight: 900;
}

.control-list p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.control-list strong {
  color: var(--navy);
  font-size: 13px;
}

.control-list small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.final-cta {
  width: min(calc(100% - 44px), 1192px);
  margin: 30px auto 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(40px, 6vw, 68px);
  border-radius: 25px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0, rgba(20, 120, 255, 0.3), transparent 22rem),
    linear-gradient(135deg, #071a3d, #0a2c5d);
  box-shadow: 0 28px 70px rgba(7, 26, 61, 0.2);
}

.final-cta .eyebrow {
  color: #ff9b70;
}

.final-cta h2 {
  max-width: 760px;
  margin: 14px 0 10px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.final-cta p {
  margin: 0;
  color: #c7d4e6;
  font-size: 16px;
  line-height: 1.6;
}

.final-actions {
  min-width: 220px;
  display: grid;
  justify-items: stretch;
  gap: 13px;
}

.cta-primary.light {
  color: var(--orange);
  background: #fff;
  box-shadow: none;
  white-space: nowrap;
}

.cta-primary.light:hover {
  background: #fff7f3;
}

.final-actions > a:last-child {
  color: #c8d5e7;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.final-actions > a:last-child:hover {
  color: #fff;
}

.landing-legal-footer {
  width: min(100%, 1192px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 50px;
  padding: 34px 24px 26px;
  border-top: 1px solid var(--line);
  color: #65758b;
}

.footer-brand img {
  width: 164px;
  display: block;
}

.footer-brand p {
  margin: 14px 0 0;
  font-size: 12px;
}

.footer-product,
.footer-legal {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
  font-size: 12px;
}

.footer-product strong,
.footer-legal strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
}

.footer-product a:hover,
.footer-legal a:hover {
  color: var(--orange);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8491a3;
  font-size: 11px;
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(360px, 0.72fr) minmax(610px, 1.28fr);
    gap: 42px;
  }

  .product-shell {
    min-height: 570px;
  }

  .product-columns {
    grid-template-columns: minmax(0, 1fr) 172px;
  }

  .quote-row {
    grid-template-columns: minmax(100px, 1.35fr) repeat(4, minmax(61px, 1fr));
  }
}

@media (max-width: 1100px) {
  .landing-nav {
    grid-template-columns: auto 1fr;
  }

  .landing-nav nav {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
    padding-top: 76px;
  }

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

  .hero h1 {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 940px);
    margin: 0 auto;
  }

  .product-shell {
    min-height: 620px;
  }

  .quote-row {
    grid-template-columns: minmax(126px, 1.42fr) repeat(4, minmax(78px, 1fr));
  }

  .workflow-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .workflow-copy {
    position: static;
    max-width: 760px;
  }

  .workflow-steps {
    max-width: 860px;
  }
}

@media (max-width: 860px) {
  .nav-primary {
    display: none;
  }

  .product-proof {
    display: none;
  }

  .product-shell {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .product-sidebar {
    padding-inline: 8px;
  }

  .product-nav {
    justify-content: center;
  }

  .product-nav strong {
    display: none;
  }

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

  .message-preview {
    display: none;
  }

  .queue-strip {
    grid-template-columns: 100px minmax(0, 1fr);
  }

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

  .bento-lead,
  .bento-rule,
  .bento-whatsapp,
  .bento-trace {
    grid-column: span 12;
  }

  .bento-card {
    min-height: 390px;
  }

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

  .audience-grid article,
  .audience-grid article.featured {
    min-height: 260px;
    transform: none;
  }

  .control-card {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    width: 100%;
  }

  .landing-legal-footer {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .landing-nav {
    min-height: 68px;
    padding: 10px 16px;
  }

  .landing-brand img {
    width: 142px;
  }

  .nav-login {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    padding: 48px 17px 72px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(46px, 14vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .cta-secondary {
    justify-content: center;
  }

  .trust-row {
    max-width: 340px;
  }

  .hero-visual {
    padding: 12px 0 0;
  }

  .visual-grid {
    inset: -5% -12% -6%;
  }

  .product-window {
    border-radius: 16px;
  }

  .window-top {
    min-height: 38px;
    padding-inline: 12px;
  }

  .window-security {
    display: none;
  }

  .product-shell {
    min-height: 510px;
    grid-template-columns: minmax(0, 1fr);
  }

  .product-sidebar {
    display: none;
  }

  .product-workspace {
    padding: 9px;
  }

  .product-titlebar {
    min-height: 38px;
  }

  .queue-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .queue-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 7px;
    border-right: 0;
    border-bottom: 1px solid #e4eaf2;
  }

  .queue-card:nth-child(3) {
    display: none;
  }

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

  .lead-data-grid > span:nth-child(2) {
    display: none;
  }

  .lead-data-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .deductible-secondary {
    display: none !important;
  }

  .quote-row {
    grid-template-columns: minmax(105px, 1.35fr) repeat(2, minmax(72px, 1fr));
  }

  .quote-price strong {
    font-size: 7px;
  }

  .quote-company img {
    width: 48px;
  }

  .best-rule {
    grid-template-columns: 18px 1fr;
  }

  .best-rule small {
    display: none;
  }

  .insurer-strip {
    width: calc(100% - 30px);
    padding: 22px 18px;
  }

  .insurer-logos {
    gap: 18px 24px;
  }

  .insurer-logos img {
    height: 24px;
    max-width: 82px;
  }

  .benefits-section,
  .workflow-section,
  .operation-section,
  .control-section {
    padding: 82px 17px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .control-copy h2 {
    font-size: 40px;
  }

  .section-heading p,
  .workflow-copy p,
  .control-copy p {
    font-size: 15px;
  }

  .bento-grid {
    margin-top: 38px;
  }

  .bento-card {
    min-height: 360px;
    padding: 23px;
    border-radius: 18px;
  }

  .mini-record {
    grid-template-columns: 34px 1fr;
  }

  .mini-record b {
    display: none;
  }

  .rule-visual strong {
    font-size: 15px;
  }

  .phone-card {
    margin-bottom: -28px;
  }

  .workflow-steps article {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .workflow-steps article > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .workflow-steps article::before {
    top: 46px;
    left: 23px;
  }

  .workflow-steps h3 {
    font-size: 22px;
  }

  .audience-grid article {
    padding: 24px;
  }

  .control-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .final-cta {
    width: calc(100% - 30px);
    margin-bottom: 68px;
    padding: 34px 24px;
    border-radius: 20px;
  }

  .final-cta h2 {
    font-size: 39px;
  }

  .landing-legal-footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
    padding-inline: 17px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nav-login span {
    display: none;
  }

  .eyebrow-pill {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 44px;
  }

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

  .lead-data-grid > span:nth-child(1) {
    display: none;
  }

  .quote-row {
    grid-template-columns: minmax(92px, 1.24fr) repeat(2, minmax(64px, 1fr));
  }

  .quote-price em {
    display: none;
  }

  .landing-legal-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
