:root {
  --blue-950: #071d53;
  --blue-900: #0a286d;
  --blue-800: #0b3da8;
  --blue-700: #1659e8;
  --blue-600: #2670ff;
  --blue-100: #e8f0ff;
  --blue-50: #f3f7ff;
  --mint: #00B45C;
  --mint-dark: #008F48;
  --aqua: #aeece2;
  --coral: #ff826d;
  --white: #fff;
  --ink: #0b1d44;
  --text: #334264;
  --muted: #69758f;
  --line: #dfe7f5;
  --surface: #f7f9fd;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --container: 1180px;
  --section-space: clamp(5rem, 9vw, 8.5rem);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(2.35rem, 4.4vw, 3.85rem);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 800;
}

h3 {
  margin-bottom: .75rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: .75rem 1rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-950);
  transform: translateY(-150%);
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--blue-50);
  cursor: pointer;
}

.nav-toggle-box {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
  margin: 0 auto;
}

.nav-toggle-box span {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-950);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.nav-toggle-box span:nth-child(1) { top: 0; }
.nav-toggle-box span:nth-child(2) { top: 6px; }
.nav-toggle-box span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-mobile-cta {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
}

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

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: .7rem;
  color: var(--blue-950);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  background: var(--blue-700);
  transform: rotate(-5deg);
}

.brand-mark span:first-child,
.brand-mark span:last-child {
  position: absolute;
  border-radius: 20px;
  background: var(--white);
}

.brand-mark span:first-child {
  top: 8px;
  bottom: 8px;
  left: 14px;
  width: 6px;
}

.brand-mark span:last-child {
  top: 14px;
  right: 8px;
  left: 8px;
  height: 6px;
}

.brand-name {
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

.brand-name span {
  display: block;
  color: var(--mint);
  font-size: .79rem;
  letter-spacing: -.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: var(--text);
  font-size: 1.03rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .85rem 1.4rem;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .96rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

.button svg,
.text-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 44px;
  padding: .7rem 1rem;
  font-size: .84rem;
}

.button-dark {
  color: var(--white);
  background: var(--blue-950);
}

.button-accent {
  color: var(--white);
  background: var(--mint);
}

.button-white {
  color: var(--blue-950);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 0;
  color: rgba(255, 255, 255, .8);
  background: var(--blue-700);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  width: 560px;
  height: 560px;
  top: -360px;
  left: -130px;
  background: #3278f5;
}

.hero-shape-two {
  width: 470px;
  height: 470px;
  right: -280px;
  bottom: 50px;
  background: #0d4ed4;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: 4rem;
}
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--blue-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .8);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.microcopy {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--white);
  font-size: .86rem;
  font-weight: 600;
}

.microcopy svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--blue-950);
  stroke-width: 2;
  background: var(--mint);
}

.hero-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
}

.orbit-one {
  width: 410px;
  height: 410px;
  top: 10px;
  left: 40px;
}

.orbit-two {
  width: 310px;
  height: 310px;
  top: 58px;
  left: 90px;
}

.visual-card {
  position: absolute;
  z-index: 3;
  color: var(--text);
  background: var(--white);
}

.visual-card-main {
  width: 310px;
  top: 67px;
  left: 88px;
  padding: 1.15rem;
  border-radius: 26px;
  transform: rotate(2.5deg);
}

.mini-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: .9rem;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 750;
}

.mini-logo {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--blue-700);
}

.mini-check {
  display: grid;
  width: 22px;
  height: 22px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
}

.mini-person {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem;
  border-radius: 14px;
  background: var(--blue-50);
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-950);
  font-size: .72rem;
  font-weight: 800;
}

.mini-person b,
.mini-person small {
  display: block;
}

.mini-person b {
  font-size: .76rem;
}

.mini-person small {
  color: var(--muted);
  font-size: .61rem;
}

.match-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .7rem;
}

.match-score strong {
  color: var(--blue-700);
  font-size: 1.35rem;
}

.score-line {
  display: block;
  height: 6px;
  margin: .4rem 0 1rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.score-line span {
  display: block;
  width: 94%;
  height: 100%;
  border-radius: inherit;
  background: var(--mint-dark);
}

.mini-price {
  color: var(--muted);
  font-size: .7rem;
}

.mini-price strong {
  margin-left: .4rem;
  font-size: 1.15rem;
}

.floating-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .8rem;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-size: .72rem;
  font-weight: 750;
}

.pill-left {
  top: 110px;
  left: 2px;
  transform: rotate(-5deg);
}

.pill-right {
  right: -8px;
  bottom: 97px;
  transform: rotate(4deg);
}

.pill-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--mint);
  font-weight: 800;
}

.spark {
  position: absolute;
  z-index: 2;
  color: var(--mint);
  font-size: 1.5rem;
}

.spark-one {
  top: 35px;
  right: 15px;
}

.spark-two {
  bottom: 75px;
  left: 30px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.trust-item {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .72);
  font-size: .83rem;
}

.trust-item strong {
  color: var(--white);
  font-size: 1.2rem;
}

.trust-rating {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2rem;
  background: rgba(4, 34, 104, .32);
}

.trust-rating .stars {
  color: var(--mint);
  font-size: .85rem;
  letter-spacing: .17em;
}

.trust-rating strong {
  font-size: .9rem;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-intro p,
.section-heading > p {
  color: var(--muted);
}

.centered {
  text-align: center;
}

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

.step-card {
  position: relative;
  min-height: 280px;
  padding: 2.1rem;
  border-radius: var(--radius-md);
  background: var(--blue-50);
}

.step-card:nth-child(2) {
  background: #eefbf8;
}

.step-card:nth-child(3) {
  background: #fff6ed;
}

.step-offset {
  transform: translateY(24px);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  color: #b8c6e2;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.06em;
}

.step-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 2.5rem;
  place-items: center;
  border-radius: 18px;
  color: var(--blue-700);
  background: var(--white);
}

.step-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-tint {
  background: var(--blue-50);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: .4rem;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  align-items: start;
}

.insurance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2.1rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.featured-card {
  margin-top: -24px;
  border-color: #aebfe7;
}

.third-card {
  margin-top: 18px;
}

.card-label {
  position: absolute;
  top: 0;
  left: 1.4rem;
  padding: .48rem .8rem;
  border-radius: 0 0 10px 10px;
  color: var(--blue-950);
  background: #dfe9ff;
  font-size: .72rem;
  font-weight: 800;
}

.featured-card .card-label {
  color: var(--blue-950);
  background: var(--mint);
}

.insurer-top {
  display: flex;
  min-height: 95px;
  padding-inline: 1.4rem;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.insurer-logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--blue-950);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.insurer-logo > span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 1rem;
}

.insurer-logo img,
.provider-logo {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-vitaal > span {
  background: #7e4ed2;
  transform: rotate(7deg);
}

.logo-helder > span {
  background: var(--coral);
  border-radius: 9px;
}

.rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: .25rem;
  text-align: right;
}

.rating span {
  color: #f3b51b;
}

.rating strong {
  font-size: .88rem;
}

.rating small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .62rem;
  text-decoration: underline;
}

.benefit-list {
  display: grid;
  gap: .65rem;
  min-height: 145px;
  margin: 1.6rem 0;
  padding: 0 1.4rem;
  list-style: none;
  color: var(--text);
  font-size: .86rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.35rem;
}

.benefit-list li::before {
  position: absolute;
  top: -.08rem;
  left: 0;
  color: var(--blue-700);
  content: "+";
  font-size: 1.25rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.3rem;
  padding-inline: 1.4rem;
}

.choice-grid > div {
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.choice-grid span,
.choice-grid strong {
  display: block;
}

.choice-grid span {
  color: var(--muted);
  font-size: .65rem;
}

.choice-grid strong {
  margin: .2rem 0 .55rem;
  font-size: .82rem;
}

.meter {
  display: block;
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--line);
}

.meter::after {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: var(--mint-dark);
  content: "";
}

.meter-short::after {
  width: 28%;
}

.meter-full::after {
  width: 90%;
}

.insurance-bottom {
  display: flex;
  margin-top: auto;
  padding: 1.15rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  background: #edf2fc;
}

.price strong,
.price span {
  display: block;
}

.price strong {
  font-size: 1.22rem;
}

.price span {
  color: var(--muted);
  font-size: .62rem;
}

.button-card {
  min-width: 126px;
  min-height: 44px;
  color: var(--white);
  background: var(--blue-700);
  font-size: .82rem;
}

.affiliate-note {
  max-width: 720px;
  margin: 2.2rem auto 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

.centered-action {
  margin-top: 1.5rem;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--blue-700);
  font-weight: 750;
}

.guide-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.guide-copy .lead {
  color: var(--text);
  font-size: 1.13rem;
  font-weight: 550;
}

.guide-copy p:not(.lead) {
  color: var(--muted);
}

.guide-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.guide-circle {
  position: absolute;
  width: 390px;
  height: 390px;
  top: 20px;
  left: 40px;
  border-radius: 50%;
  background: var(--blue-100);
}

.document-card {
  position: absolute;
  width: 210px;
  height: 280px;
  padding: 2rem;
  border-radius: var(--radius-md);
}

.document-back {
  top: 62px;
  left: 58px;
  background: var(--aqua);
  transform: rotate(-10deg);
}

.document-front {
  z-index: 2;
  top: 70px;
  left: 200px;
  color: var(--ink);
  background: var(--white);
  transform: rotate(6deg);
}

.document-card > span {
  display: block;
  height: 7px;
  margin-top: .9rem;
  border-radius: 10px;
  background: rgba(10, 40, 109, .14);
}

.document-card > span:nth-of-type(2) {
  width: 75%;
}

.document-card > span:nth-of-type(3) {
  width: 48%;
}

.doc-cross {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 1.7rem;
  font-weight: 700;
}

.document-front i {
  display: grid;
  width: 35px;
  height: 35px;
  margin-top: 1.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  font-style: normal;
  font-weight: 800;
}

.guide-badge {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 76px;
  padding: .7rem 1rem;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue-950);
  font-size: .75rem;
  font-weight: 700;
  transform: rotate(-3deg);
}

.policy {
  background: var(--surface);
}

.policy-heading {
  margin-bottom: 3.5rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.policy-card {
  position: relative;
  min-height: 330px;
  padding: 2rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
}

.policy-card-dark {
  min-height: 378px;
  padding-top: 3rem;
  color: rgba(255, 255, 255, .74);
  background: var(--blue-950);
}

.policy-card-dark h3,
.policy-card-dark a {
  color: var(--white);
}

.policy-letter {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 3rem;
  place-items: center;
  border-radius: 18px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 1.4rem;
  font-weight: 800;
}

.policy-card-dark .policy-letter {
  color: var(--blue-950);
  background: var(--mint);
}

.policy-count {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  color: #c3cee3;
  font-size: 2.2rem;
  font-weight: 800;
}

.policy-card-dark .policy-count {
  color: rgba(255, 255, 255, .2);
}

.policy-card p {
  color: var(--muted);
}

.policy-card-dark p {
  color: rgba(255, 255, 255, .64);
}

.policy-card a {
  position: absolute;
  bottom: 2rem;
  color: var(--blue-700);
  font-size: .88rem;
  font-weight: 750;
}

.policy-card a span {
  padding-left: .4rem;
}

.savings {
  padding-block: 0;
  background: var(--white);
}

.savings-wrap {
  display: grid;
  min-height: 540px;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, .75);
  background: var(--blue-700);
}

.savings-copy h2 {
  color: var(--white);
}

.savings-copy p {
  max-width: 600px;
}

.check-list {
  display: grid;
  gap: .55rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: .6rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  content: "✓";
  font-size: .7rem;
  font-weight: 800;
}

.savings-graphic {
  position: relative;
  min-height: 330px;
}

.wallet {
  position: absolute;
  z-index: 2;
  width: 245px;
  height: 190px;
  top: 76px;
  left: 20px;
  padding: 4.8rem 2rem 2rem;
  border-radius: 30px;
  color: var(--blue-950);
  background: var(--aqua);
  transform: rotate(-4deg);
}

.wallet > span {
  position: absolute;
  width: 92px;
  height: 48px;
  top: 45px;
  right: -18px;
  border-radius: 13px;
  background: var(--mint);
}

.wallet b,
.wallet small {
  display: block;
}

.wallet b {
  font-size: 2rem;
}

.coin {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  font-weight: 800;
}

.coin-one {
  width: 65px;
  height: 65px;
  top: 25px;
  left: 150px;
}

.coin-two {
  width: 44px;
  height: 44px;
  top: 46px;
  left: 70px;
  background: var(--white);
}

.coin-three {
  width: 38px;
  height: 38px;
  right: 4px;
  bottom: 40px;
}

.knowledge .section-heading {
  align-items: center;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.article-raised {
  transform: none;
}

.article-visual {
  position: relative;
  display: grid;
  flex: 0 0 210px;
  height: 210px;
  place-items: center;
  overflow: hidden;
}

.visual-calendar {
  background: #fff1e8;
}

.visual-family {
  background: var(--blue-100);
}

.visual-glasses {
  background: #e7f8f4;
}

.calendar {
  position: relative;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border-radius: 18px;
  color: var(--blue-950);
  background: var(--white);
  transform: rotate(-5deg);
}

.calendar::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 32px;
  border-radius: 18px 18px 0 0;
  background: var(--coral);
  content: "";
}

.calendar i {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 22px;
  top: -8px;
  border-radius: 6px;
  background: var(--blue-950);
}

.calendar i:first-child {
  left: 28px;
}

.calendar i:nth-child(2) {
  right: 28px;
}

.calendar b {
  padding-top: 24px;
  font-size: 2rem;
}

.person {
  position: absolute;
  bottom: 38px;
  width: 82px;
  height: 88px;
  border-radius: 45px 45px 20px 20px;
  background: var(--blue-700);
}

.person::before {
  position: absolute;
  width: 42px;
  height: 42px;
  top: -35px;
  left: 20px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.person-one {
  left: 90px;
}

.person-two {
  right: 80px;
  background: var(--aqua);
  transform: scale(.83);
}

.heart {
  position: absolute;
  top: 42px;
  right: 55px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
}

.glasses {
  display: flex;
  gap: 12px;
  transform: rotate(-5deg);
}

.glasses i {
  display: block;
  width: 72px;
  height: 58px;
  border: 8px solid var(--blue-950);
  border-radius: 24px;
}

.glasses::before {
  position: absolute;
  width: 20px;
  height: 7px;
  top: 25px;
  left: 65px;
  background: var(--blue-950);
  content: "";
}

.plus-sign {
  position: absolute;
  top: 36px;
  right: 58px;
  color: var(--blue-700);
  font-size: 2.5rem;
  font-weight: 800;
}

.article-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 1.35rem 1.5rem 1.5rem;
}

.article-tag {
  display: block;
  min-height: 1.05em;
  margin-bottom: .7rem;
  overflow: hidden;
  color: var(--blue-700);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.article-content h3 {
  display: -webkit-box;
  min-height: calc(1.22em * 3);
  margin-bottom: .9rem;
  overflow: hidden;
  font-size: 1.15rem;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-content h3 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.article-content h3 a:hover {
  color: var(--blue-700);
}

.article-content .article-read {
  margin-top: auto;
  color: var(--blue-700);
  font-size: .85rem;
  font-weight: 750;
}

.article-content .article-read span {
  padding-left: .35rem;
}

.checklist {
  padding-top: 0;
}

.checklist-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  min-height: 250px;
  align-items: center;
  gap: 3rem;
  padding: 2rem 3.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #eefbf8;
}

.checklist-art {
  position: relative;
  height: 190px;
}

.sheet {
  position: absolute;
  display: block;
  width: 120px;
  height: 160px;
  top: 15px;
  left: 35px;
  border-radius: 13px;
}

.sheet-back {
  background: var(--aqua);
  transform: rotate(-9deg);
}

.sheet-front {
  z-index: 2;
  padding: 1.4rem;
  color: var(--ink);
  background: var(--white);
  transform: rotate(5deg);
}

.sheet-front b {
  display: block;
  margin-bottom: 1rem;
  font-size: .7rem;
}

.sheet-front i {
  display: block;
  margin-top: .55rem;
  color: var(--blue-700);
  font-size: .75rem;
  font-style: normal;
}

.checklist-copy h2 {
  margin-bottom: .65rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.checklist-copy p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(4rem, 10vw, 9rem);
}

.faq-intro {
  align-self: start;
}

.faq-intro > p {
  color: var(--muted);
}

.help-card {
  display: flex;
  margin-top: 2.5rem;
  align-items: center;
  gap: .85rem;
  padding: 1.1rem;
  border-radius: 16px;
  background: var(--blue-100);
}

.help-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 800;
}

.help-card strong,
.help-card small {
  display: block;
}

.help-card small {
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.45rem 3rem 1.45rem 0;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.2rem;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
  content: "+";
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 670px;
  margin: -.25rem 3rem 1.5rem 0;
  color: var(--muted);
}

.final-cta {
  color: var(--white);
  background: var(--blue-700);
}

.final-cta-inner {
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.final-cta h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, .58);
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-name span {
  color: var(--mint);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 1.4rem;
  font-size: .9rem;
}

.footer-grid h3 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: .92rem;
  letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-bottom: .65rem;
  font-size: .84rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  justify-content: space-between;
  gap: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .75rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .admin-bar .site-header {
    top: 32px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
  }

  .header-inner {
    gap: 1rem;
  }

  .header-inner > .button {
    display: none;
  }

  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .35rem 20px 1.35rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(7, 29, 83, .12);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav .zvv-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .main-nav .zvv-nav-list a,
  .main-nav > a {
    display: block;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-mobile-cta {
    display: block;
    padding-top: 1rem;
  }

  .nav-mobile-cta .button {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
    gap: 1rem;
  }

  .visual-card-main {
    left: 35px;
  }

  .orbit-one {
    left: -10px;
  }

  .orbit-two {
    left: 40px;
  }

  .pill-left {
    left: -30px;
  }

  .pill-right {
    right: -18px;
  }

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

  .third-card {
    margin-top: 0;
  }

  .guide-grid {
    gap: 3rem;
  }

  .guide-circle {
    left: 0;
  }

  .document-back {
    left: 15px;
  }

  .document-front {
    left: 130px;
  }

  .policy-grid {
    gap: .8rem;
  }

  .savings-wrap {
    padding: 4rem 3rem;
  }

  .checklist-inner {
    grid-template-columns: 160px 1fr;
  }

  .checklist-inner > .button {
    grid-column: 2;
    justify-self: start;
    margin-top: -2rem;
  }
}

@media (max-width: 800px) {
  :root {
    --section-space: 5rem;
  }

  .container,
  .narrow-container,
  .content-container {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 4rem;
    border-radius: 0 0 32px 32px;
  }

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

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

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

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
  }

  .trust-item {
    min-height: 74px;
  }

  .trust-rating {
    align-items: center;
    padding-left: 0;
  }

  .steps-grid,
  .insurance-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    gap: 1rem;
  }

  .step-card,
  .step-offset {
    min-height: auto;
    transform: none;
  }

  .step-icon {
    margin-bottom: 1.7rem;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .featured-card,
  .third-card {
    margin-top: 0;
  }

  .insurance-grid {
    max-width: 520px;
    margin-inline: auto;
  }

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

  .guide-visual {
    order: -1;
    width: min(100%, 480px);
    min-height: 400px;
    margin-inline: auto;
  }

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

  .policy-card,
  .policy-card-dark {
    min-height: 310px;
  }

  .savings {
    background: var(--white);
  }

  .savings-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .savings-graphic {
    width: 310px;
    min-height: 300px;
    margin-inline: auto;
  }

  .article-grid {
    max-width: 520px;
    margin-inline: auto;
  }

  .article-raised {
    transform: none;
  }

  .checklist-inner {
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 2rem;
  }

  .checklist-inner > .button {
    grid-column: 1 / -1;
    margin: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .final-cta-inner {
    min-height: 360px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

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

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

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.55rem);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7.8vw, 2.4rem);
  }

  h2 {
    font-size: 2.1rem;
  }

  .header-inner {
    min-height: 70px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 340px;
    overflow: hidden;
    transform: none;
  }

  .visual-card-main {
    left: 50%;
    transform: translateX(-50%) rotate(2.5deg);
  }

  .orbit-one {
    left: 50%;
    transform: translateX(-50%);
  }

  .orbit-two {
    left: 50%;
    transform: translateX(-50%);
  }

  .pill-left {
    left: 0;
  }

  .pill-right {
    right: 0;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-item {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .trust-rating {
    justify-content: center;
  }

  .guide-visual {
    min-height: 350px;
    overflow: hidden;
    transform: none;
  }

  .guide-circle {
    width: 350px;
    height: 350px;
  }

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

  .savings-wrap {
    width: 100%;
    border-radius: 0;
  }

  .savings-graphic {
    overflow: hidden;
    transform: none;
  }

  .checklist-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .checklist-art {
    width: 190px;
    margin-inline: auto;
  }

  .checklist-inner > .button {
    justify-self: stretch;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: .4rem;
  }
}

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

/* Countdown */
.switch-countdown {
  padding-top: 0;
}

.countdown-shell {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 290px;
  grid-template-columns: .9fr 1.2fr .9fr;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 3.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, .72);
  background: var(--blue-950);
}

.countdown-shell::before {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -150px;
  bottom: -150px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  content: "";
}

.countdown-copy,
.countdown-timer,
.countdown-action {
  position: relative;
  z-index: 1;
}

.countdown-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}

.countdown-timer > div {
  display: grid;
  min-width: 75px;
  min-height: 90px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 15px;
  background: rgba(255, 255, 255, .07);
}

.countdown-timer strong {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.countdown-timer span {
  margin-top: .55rem;
  color: rgba(255, 255, 255, .58);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.countdown-timer i {
  color: rgba(255, 255, 255, .35);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 800;
}

.countdown-action p {
  margin-bottom: 1rem;
  font-size: .86rem;
}

.countdown-action .button {
  min-height: 46px;
}

/* Shared subpage foundations */
.content-container {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 20px;
}

.narrow-container {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 20px;
}

.nav-active {
  color: var(--blue-700);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  color: rgba(255, 255, 255, .76);
  background: var(--blue-950);
}

.subpage-hero::after {
  position: absolute;
  width: 430px;
  height: 430px;
  top: -270px;
  right: -70px;
  border-radius: 50%;
  background: var(--blue-800);
  content: "";
}

.subpage-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5rem;
}

.subpage-hero h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  font-size: clamp(2.35rem, 5.4vw, 4.4rem);
}

.subpage-hero p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.7rem;
  color: rgba(255, 255, 255, .55);
  font-size: .74rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .84);
}

.subpage-stat {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  transform: rotate(5deg);
}

.subpage-stat span,
.subpage-stat small {
  font-size: .72rem;
}

.subpage-stat strong {
  margin: .15rem 0;
  color: var(--blue-950);
  font-size: 2.45rem;
  line-height: 1;
}

.ranking-intro {
  margin-bottom: 3rem;
}

.ranking-list {
  display: grid;
  gap: 1rem;
}

.ranking-card {
  position: relative;
  display: grid;
  min-height: 125px;
  grid-template-columns: 46px 1.3fr 1fr .8fr .9fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.ranking-winner {
  border-color: #aec2ee;
  background: var(--blue-50);
}

.rank-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: .85rem;
  font-weight: 800;
}

.ranking-winner .rank-number {
  color: var(--blue-950);
  background: var(--mint);
}

.ranking-provider {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.ranking-provider strong,
.ranking-provider small {
  display: block;
}

.ranking-provider small,
.ranking-price small {
  color: var(--muted);
  font-size: .68rem;
}

.provider-mark {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 800;
}

.mark-coral {
  background: var(--coral);
  transform: rotate(-4deg);
}

.mark-aqua {
  color: var(--blue-950);
  background: var(--aqua);
}

.ranking-choice span,
.ranking-choice strong {
  display: block;
}

.ranking-choice span {
  color: var(--muted);
  font-size: .65rem;
}

.ranking-choice strong {
  font-size: .8rem;
}

.ranking-choice i {
  display: block;
  height: 5px;
  margin-top: .45rem;
  overflow: hidden;
  border-radius: 10px;
  background: var(--line);
}

.ranking-choice b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--mint-dark);
}

.ranking-rating span,
.ranking-rating small {
  display: block;
}

.ranking-rating span {
  color: #f3b51b;
  font-size: .7rem;
  letter-spacing: .04em;
}

.ranking-rating small {
  color: var(--muted);
  font-size: .65rem;
}

.ranking-price {
  white-space: nowrap;
}

.ranking-price strong {
  margin-left: .3rem;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.ranking-price span {
  color: var(--muted);
  font-size: .65rem;
}

.article-layout-section {
  scroll-margin-top: 2rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  align-items: start;
  justify-content: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.article-layout > *,
.prose-card,
.blog-content,
.table-wrap {
  min-width: 0;
  max-width: 100%;
}

.article-toc {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: .15rem;
  padding: 1.4rem;
  border-radius: 16px;
  background: var(--white);
}

.article-toc strong {
  margin-bottom: .7rem;
  font-size: .82rem;
}

.article-toc a {
  padding: .5rem 0;
  color: var(--muted);
  font-size: .78rem;
}

.prose-card {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.prose-card > section {
  scroll-margin-top: 2rem;
}

.prose-card > section + section {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

.prose-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.prose-card p {
  color: var(--text);
}

.prose-checks {
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.prose-checks li::before {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: .65rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  content: "✓";
  font-size: .7rem;
  font-weight: 800;
}

.info-note,
.warning-note,
.editor-note {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border-radius: 14px;
}

.info-note {
  background: #eaf9f6;
}

.warning-note {
  background: #fff0ec;
}

.editor-note {
  margin: 0 0 4rem;
  background: var(--blue-50);
}

.info-note strong,
.warning-note strong,
.editor-note strong {
  display: block;
  margin-bottom: .25rem;
  font-size: .85rem;
}

.info-note p,
.warning-note p,
.editor-note p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.numbered-tips {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}

.numbered-tips > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: 14px;
  background: var(--blue-50);
}

.numbered-tips span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--white);
  font-size: .72rem;
  font-weight: 800;
}

.numbered-tips p {
  margin: 0;
  font-size: .9rem;
}

.numbered-tips strong {
  display: block;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mini-feature-grid > div {
  padding: 1.3rem;
  border-radius: 14px;
  background: var(--blue-50);
}

.mini-feature-grid > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--mint);
  font-weight: 800;
}

.mini-feature-grid strong {
  display: block;
  margin-bottom: .25rem;
}

.mini-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.inline-cta {
  color: var(--white);
  background: var(--blue-700);
}

.inline-cta-inner {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.inline-cta h2 {
  margin: 0;
  color: var(--white);
}

.compact-footer {
  padding-top: 4rem;
}

/* Allowance page */
.allowance-hero {
  background: var(--blue-700);
}

.allowance-visual {
  position: relative;
  width: 300px;
  height: 250px;
}

.euro-orb {
  position: absolute;
  display: grid;
  width: 190px;
  height: 190px;
  top: 8px;
  right: 10px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  font-size: 5.5rem;
  font-weight: 800;
}

.allowance-ticket {
  position: absolute;
  display: block;
  width: 180px;
  left: 0;
  bottom: 12px;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  transform: rotate(-5deg);
}

.allowance-ticket small,
.allowance-ticket strong {
  display: block;
}

.allowance-ticket small {
  color: var(--muted);
  font-size: .68rem;
}

.allowance-ticket i {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  font-size: .7rem;
  font-style: normal;
}

.keyfacts {
  background: var(--blue-50);
}

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

.keyfacts-grid > div {
  position: relative;
  min-height: 125px;
  padding: 2rem 2rem 2rem 4.5rem;
  border-right: 1px solid var(--line);
}

.keyfacts-grid > div:last-child {
  border-right: 0;
}

.keyfacts-grid span {
  position: absolute;
  top: 2rem;
  left: 1.2rem;
  color: var(--blue-700);
  font-size: .72rem;
  font-weight: 800;
}

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

.keyfacts-grid small {
  color: var(--muted);
  font-size: .75rem;
}

.allowance-prose blockquote {
  margin: 2rem 0 0;
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--blue-700);
  color: var(--ink);
  background: var(--blue-50);
  font-size: 1.05rem;
  font-weight: 650;
}

.condition-list {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}

.condition-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.condition-list span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-950);
  background: var(--mint);
  font-size: .75rem;
  font-weight: 800;
}

.condition-list p {
  margin: 0;
  font-size: .88rem;
}

.condition-list strong {
  display: block;
}

.table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.table-wrap .table-wrap {
  margin-top: 0;
  border: 0;
  border-radius: 0;
}

.second-table {
  margin-top: 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: .86rem;
}

caption {
  padding: 1.2rem 1.3rem;
  color: var(--ink);
  background: var(--blue-50);
  font-size: .95rem;
  font-weight: 800;
  text-align: left;
}

th,
td {
  padding: .8rem 1.2rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:nth-child(n+2) {
  color: var(--ink);
  font-weight: 650;
}

.timeline-list,
.article-steps {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0;
}

.timeline-list > div,
.article-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
}

.timeline-list span,
.article-steps li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 800;
}

.timeline-list p,
.article-steps p {
  margin: 0;
}

.timeline-list strong,
.article-steps strong {
  display: block;
}

.inline-faq details {
  border-bottom: 1px solid var(--line);
}

.inline-faq summary {
  position: relative;
  padding: 1.2rem 2.5rem 1.2rem 0;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.inline-faq summary::after {
  position: absolute;
  right: 0;
  color: var(--blue-700);
  content: "+";
  font-size: 1.2rem;
}

.inline-faq details[open] summary::after {
  content: "−";
}

.inline-faq p {
  padding-right: 2rem;
  color: var(--muted);
}

/* Blog article */
.blog-header {
  padding: clamp(2.4rem, 4vw, 3.75rem) 0 5.5rem;
  background: var(--blue-50);
  text-align: center;
}

.blog-header h1 {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.4vw, 3.2rem);
}

.breadcrumbs-dark {
  justify-content: center;
  margin-bottom: 1.35rem;
  color: var(--muted);
}

.breadcrumbs-dark a {
  color: var(--blue-700);
}

.article-category {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: .45rem .8rem;
  border-radius: 99px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-deck {
  max-width: 640px;
  margin: 0 auto 1.35rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.byline {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-align: left;
}

.author-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-size: .75rem;
  font-weight: 800;
}

.byline strong,
.byline small {
  display: block;
}

.byline strong {
  font-size: .82rem;
}

.byline small {
  color: var(--muted);
  font-size: .7rem;
}

.blog-visual {
  position: relative;
  display: flex;
  width: calc(100% - 32px);
  max-width: 920px;
  min-height: 240px;
  margin: -3.75rem auto 3.25rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-700);
}

.blog-visual::before,
.blog-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  content: "";
}

.blog-visual::before {
  width: 400px;
  height: 400px;
  left: -170px;
}

.blog-visual::after {
  width: 280px;
  height: 280px;
  right: -100px;
}

.date-card {
  position: relative;
  z-index: 3;
  display: grid;
  width: 160px;
  height: 180px;
  place-items: center;
  align-content: center;
  border-radius: 22px;
  color: var(--ink);
  background: var(--white);
  transform: rotate(-5deg);
}

.date-card span,
.date-card small {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.date-card strong {
  color: var(--blue-700);
  font-size: 4rem;
  line-height: 1;
}

.route-line {
  position: absolute;
  z-index: 1;
  width: 480px;
  height: 1px;
  border-top: 2px dashed rgba(255, 255, 255, .35);
}

.route-line i {
  position: absolute;
  width: 12px;
  height: 12px;
  top: -7px;
  border-radius: 50%;
  background: var(--mint);
}

.route-line i:first-child {
  left: 0;
}

.route-line i:nth-child(2) {
  left: 50%;
}

.route-line i:last-child {
  right: 0;
}

.switch-card {
  position: absolute;
  z-index: 3;
  right: 80px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  border-radius: 13px;
  color: var(--ink);
  background: var(--mint);
  font-size: .68rem;
  font-weight: 700;
  transform: rotate(3deg);
}

.blog-body-layout {
  display: grid;
  grid-template-columns: 70px minmax(0, 720px) 200px;
  align-items: start;
  justify-content: center;
  gap: 3rem;
  padding-bottom: var(--section-space);
}

.blog-body-layout > * {
  min-width: 0;
}

.share-rail,
.related-rail {
  position: sticky;
  top: 2rem;
}

.share-rail {
  display: grid;
  gap: .6rem;
  justify-items: center;
}

.share-rail > span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.share-rail a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-50);
  font-weight: 800;
}

.related-rail {
  display: grid;
  gap: .8rem;
}

.related-rail > strong {
  margin-bottom: .2rem;
  font-size: .8rem;
}

.related-rail a {
  padding: 1rem;
  border-radius: 13px;
  color: var(--ink);
  background: var(--blue-50);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
}

.related-rail a span {
  display: block;
  margin-bottom: .3rem;
  color: var(--blue-700);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-content {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.78;
}

.blog-content .intro {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 520;
}

.blog-content h2 {
  margin-top: 4rem;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.blog-content h3 {
  margin-top: 2.8rem;
  font-size: 1.55rem;
}

.blog-content ul:not(.summary-box ul) {
  padding-left: 1.4rem;
}

.blog-content li {
  margin-bottom: .45rem;
}

.summary-box {
  margin: 2.5rem 0 3.5rem;
  padding: 1.6rem 1.8rem;
  border-radius: 18px;
  background: #eaf9f6;
}

.summary-box > strong {
  display: block;
  margin-bottom: .6rem;
}

.summary-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.article-figure {
  margin: 3rem 0;
}

.deadline-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 2rem;
  border-radius: 20px;
  background: var(--blue-50);
}

.deadline-timeline > div {
  position: relative;
  text-align: center;
}

.deadline-timeline > div::after {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 52px;
  left: 50%;
  background: var(--line);
  content: "";
}

.deadline-timeline > div:last-child::after {
  display: none;
}

.deadline-timeline span {
  color: var(--blue-700);
  font-size: .8rem;
  font-weight: 800;
}

.deadline-timeline i {
  position: relative;
  z-index: 2;
  display: block;
  width: 15px;
  height: 15px;
  margin: 1rem auto;
  border: 4px solid var(--blue-50);
  border-radius: 50%;
  background: var(--blue-700);
}

.deadline-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.5;
}

.deadline-timeline strong {
  display: block;
  font-size: .78rem;
}

.article-figure figcaption {
  margin-top: .7rem;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.article-quote {
  margin: 3rem 0;
  padding: .5rem 0 .5rem 1.8rem;
  border-left: 4px solid var(--mint-dark);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
}

.article-cta {
  margin: 4rem 0;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, .72);
  background: var(--blue-950);
}

.article-cta h2 {
  margin: .2rem 0 .7rem;
  color: var(--white);
  font-size: 2.2rem;
}

.article-cta .button {
  margin-top: 1rem;
}

.article-steps {
  margin: 2rem 0 4rem;
  padding: 0;
  list-style: none;
}

.article-steps li {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.article-updated {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: .8rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--surface);
}

.article-updated > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--mint);
  font-size: .7rem;
  font-weight: 800;
}

.article-updated p {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
}

.article-updated strong {
  display: block;
}

.simple-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.simple-article-grid > a {
  display: grid;
  min-height: 290px;
  padding: 1.2rem;
  align-content: end;
  border-radius: var(--radius-md);
  background: var(--white);
}

.simple-art {
  display: grid;
  height: 145px;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-950);
  font-size: 2.2rem;
  font-weight: 800;
}

.art-mint {
  background: #e7f8f4;
}

.art-blue {
  background: var(--blue-100);
}

.art-peach {
  background: #fff1e8;
}

.simple-article-grid small {
  color: var(--blue-700);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.simple-article-grid strong {
  margin-top: .4rem;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .countdown-shell {
    grid-template-columns: 1fr 1.3fr;
  }

  .countdown-action {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .countdown-action p {
    max-width: 600px;
    margin: 0;
  }

  .ranking-card {
    grid-template-columns: 40px 1.2fr 1fr .9fr auto;
  }

  .ranking-rating {
    display: none;
  }

  .blog-body-layout {
    grid-template-columns: 55px minmax(0, 720px);
  }

  .related-rail {
    display: none;
  }
}

@media (max-width: 800px) {
  .countdown-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  .countdown-action {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .subpage-stat {
    width: 155px;
    height: 155px;
  }

  .ranking-card {
    grid-template-columns: 42px 1fr auto;
  }

  .ranking-choice {
    grid-column: 2 / -1;
  }

  .ranking-price {
    grid-column: 2;
  }

  .ranking-card .button {
    grid-column: 3;
  }

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

  .article-toc {
    position: static;
  }

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

  .keyfacts-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .allowance-visual {
    display: none;
  }

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

  .inline-cta-inner {
    min-height: 280px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .blog-header {
    padding-bottom: 5rem;
  }

  .blog-visual {
    min-height: 220px;
    margin-top: -3.25rem;
  }

  .blog-visual-photo {
    height: 280px;
  }

  .switch-card {
    right: 30px;
  }

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

  .share-rail {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .simple-article-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .countdown-timer {
    gap: .28rem;
  }

  .countdown-timer > div {
    min-width: 57px;
    min-height: 74px;
  }

  .countdown-timer strong {
    font-size: 1.35rem;
  }

  .countdown-timer span {
    font-size: .48rem;
  }

  .subpage-hero {
    padding: 3.5rem 0;
  }

  .subpage-hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .subpage-stat {
    display: none;
  }

  .ranking-card {
    grid-template-columns: 36px 1fr;
    gap: .8rem;
  }

  .ranking-price,
  .ranking-choice,
  .ranking-card .button {
    grid-column: 1 / -1;
  }

  .ranking-card .button {
    width: 100%;
  }

  .ranking-price {
    padding-top: .7rem;
    border-top: 1px solid var(--line);
  }

  .prose-card {
    margin-inline: 0;
    padding-inline: 1.25rem;
    border-radius: 18px;
  }

  .mini-feature-grid {
    grid-template-columns: 1fr;
  }

  .allowance-visual {
    display: none;
  }

  .blog-header h1 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .blog-deck {
    font-size: 1.05rem;
  }

  .blog-visual {
    min-height: 240px;
    border-radius: 22px;
  }

  .blog-visual-photo {
    height: 220px;
  }

  .date-card {
    width: 130px;
    height: 150px;
  }

  .date-card strong {
    font-size: 3rem;
  }

  .switch-card {
    right: 12px;
    bottom: 20px;
    transform: scale(.78) rotate(3deg);
    transform-origin: right bottom;
  }

  .deadline-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .deadline-timeline > div {
    display: grid;
    grid-template-columns: 70px 18px 1fr;
    align-items: center;
    gap: .5rem;
    text-align: left;
  }

  .deadline-timeline > div::after {
    width: 2px;
    height: calc(100% + 1rem);
    top: 50%;
    left: 87px;
  }

  .deadline-timeline i {
    margin: 0;
  }

  .article-cta {
    padding: 1.7rem;
  }

  .article-cta h2 {
    font-size: 1.8rem;
  }
}

/* WordPress / GeneratePress child overrides */
.admin-bar .skip-link {
  top: 46px;
}

.main-nav .zvv-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .zvv-nav-list a {
  color: inherit;
}

.main-nav .nav-active,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--blue-700);
}

.hero-lead p,
.guide-copy .lead p,
.footer-tagline p,
.affiliate-note p,
.savings-copy p,
.checklist-copy p,
.faq-intro p,
.countdown-action p,
.subpage-hero p {
  margin-top: 0;
}

.hero-lead p {
  margin-bottom: 0;
  color: inherit;
  font-size: inherit;
}

.guide-copy .lead p {
  color: var(--text);
  font-size: 1.13rem;
  font-weight: 550;
}

.footer-tagline,
.footer-tagline p {
  max-width: 330px;
  margin-top: 1.4rem;
  font-size: .9rem;
}

.footer-tagline p {
  margin-top: 0;
}

.breadcrumbs .rank-math-breadcrumb,
.breadcrumbs p {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.zvv-page-content {
  max-width: 820px;
  margin: 0 auto;
}

.zvv-page-content img,
.blog-content img {
  max-width: 100%;
  height: auto;
}

.navigation.pagination {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 3rem;
}

.navigation.pagination a,
.navigation.pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--blue-50);
  font-weight: 700;
}

.navigation.pagination .current {
  color: var(--white);
  background: var(--blue-700);
}

body.zvv-theme #page,
body.zvv-theme .site.grid-container {
  max-width: none;
  margin: 0;
  padding: 0;
}

body.zvv-theme .site-content,
body.zvv-theme .content-area {
  margin: 0;
  padding: 0;
  width: 100%;
}

.article-visual.has-thumb {
  background: var(--blue-50);
}

.article-visual.has-thumb img,
.blog-visual-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-visual-photo {
  display: block;
  height: 280px;
  padding: 0;
  background: var(--blue-50);
}

.blog-visual-photo::before,
.blog-visual-photo::after {
  display: none;
}

.insurer-table .rank-number {
  border-radius: 50%;
}

.mark-mint {
  color: var(--blue-950);
  background: var(--mint);
}

.mark-orange {
  background: #ff6a00;
}

.mark-vgz {
  background: #5aae8a;
}

.insurer-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.insurer-table-head,
.insurer-table-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, 1.3fr) minmax(0, .8fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.25rem;
}

.insurer-table-head {
  background: #eef1f6;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.insurer-table-row {
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.insurer-table-row.is-winner {
  background: var(--blue-50);
}

a.insurer-table-row:hover {
  background: var(--blue-50);
}

.insurer-table .ranking-provider {
  min-width: 0;
}

.insurer-table .ranking-provider strong {
  font-size: .95rem;
}

.insurer-price {
  font-size: 1.05rem;
  color: var(--ink);
}

.button-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .95rem;
  border: 1.5px solid var(--blue-700);
  border-radius: 999px;
  color: var(--blue-700);
  background: transparent;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
}

.button-table:hover {
  color: var(--white);
  background: var(--blue-700);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.usp-card {
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.usp-card > span {
  display: block;
  margin-bottom: .85rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.usp-card strong {
  display: block;
  margin-bottom: .85rem;
  font-size: 2rem;
  letter-spacing: -.03em;
}

.usp-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.compare-split-grid {
  display: block;
  max-width: 42rem;
}

.compare-steps {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.compare-steps li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.compare-steps li span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-size: .85rem;
  font-weight: 800;
}

.compare-steps strong {
  display: block;
  margin-bottom: .25rem;
}

.compare-steps p,
.compare-after p {
  margin: 0;
  color: var(--muted);
}

.compare-after {
  margin-top: 1.5rem;
}

.help-side-card {
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.help-avatars {
  display: flex;
  margin-bottom: 1.1rem;
}

.help-avatars span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-right: -.55rem;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-size: .65rem;
  font-weight: 800;
}

.help-avatars span:nth-child(2) { background: var(--coral); }
.help-avatars span:nth-child(3) { background: #5aae8a; }
.help-avatars span:nth-child(4) { color: var(--blue-950); background: var(--mint); }

.help-side-card h3 {
  font-size: 1.2rem;
}

.help-phone {
  margin: .75rem 0 1.1rem;
  color: var(--blue-700);
  font-weight: 800;
}

.button-outline {
  width: 100%;
  color: var(--blue-700);
  background: transparent;
  border: 1.5px solid var(--blue-700);
}

@media (max-width: 980px) {
  .usp-grid,
  .compare-split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .insurer-table-head {
    display: none;
  }

  .insurer-table-row {
    grid-template-columns: 40px 1fr auto;
    gap: .65rem .8rem;
  }

  .insurer-col-product,
  .insurer-col-policy {
    grid-column: 2 / 3;
    color: var(--muted);
    font-size: .82rem;
  }

  .insurer-col-action {
    grid-column: 1 / -1;
  }

  .insurer-col-action .button-table {
    width: 100%;
  }

  .usp-grid,
  .compare-split-grid {
    grid-template-columns: 1fr;
  }
}

.mini-check,
.pill-icon,
.featured-card .card-label,
.check-list li::before,
.coin,
.heart,
.document-front i,
.policy-card-dark .policy-letter,
.ranking-winner .rank-number,
.prose-checks li::before,
.mini-feature-grid > div > span,
.euro-orb,
.allowance-ticket i,
.condition-list span,
.article-updated > span,
.mark-mint,
.subpage-stat,
.subpage-stat strong,
.help-avatars span:nth-child(4) {
  color: var(--white);
}

.microcopy svg {
  stroke: var(--white);
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.article-visual.has-thumb img,
.blog-visual-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.site-header,
.hero,
.subpage-hero,
.blog-article,
.blog-header,
main,
.site-footer,
.section,
.insurance-card,
.ranking-list,
.table-wrap {
  max-width: 100%;
}

.table-wrap {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.table-wrap table {
  min-width: 100%;
  width: max-content;
}

.blog-content .table-wrap,
.zvv-page-content .table-wrap,
.prose-card .table-wrap {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
  .ranking-price {
    white-space: normal;
  }

  .table-wrap th,
  .table-wrap td,
  th,
  td {
    white-space: nowrap;
  }

  .trust-strip,
  .keyfacts-grid,
  .usp-grid,
  .compare-split-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .savings-wrap,
  .checklist-inner {
    padding-inline: 1.25rem;
  }
}
