:root {
  --brand-teal: #2E74B8;
  --brand-teal-dark: #1F4E79;
  --brand-teal-deep: #16395C;
  --brand-teal-mid: #235C8C;
  --brand-green: #56B947;
  --brand-green-dark: #479C3A;
  --brand-yellow: #F6C443;
  --sky-100: #F4F9FD;
  --sky-200: #DEEDF9;
  --sky-300: #BFE0F7;
  --sky-400: #6FAEDC;
  --ink: #1F4E79;
  --ink-body: #5C6B7A;
  --ink-mute: #93A0AC;
  --border: #DCE7F2;
  --border-soft: #EAF0F6;
  --white: #ffffff;
  --radius-sm: 11px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --shadow-card: 0 10px 36px -20px rgba(31, 78, 121, 0.2);
  --shadow-lift: 0 30px 70px -28px rgba(13, 40, 70, 0.45);
  --container: 1280px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
main { overflow-x: hidden; width: 100%; position: relative; }
body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--brand-yellow); color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ---------- Reusable atoms ---------- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sky-400);
}
.eyebrow--yellow { color: var(--brand-yellow); }

.section-heading {
  margin: 0; font-weight: 700; font-size: 50px; line-height: 1.02;
  letter-spacing: -0.025em; color: var(--brand-teal);
}
.section-lede { margin: 0; font-size: 18px; line-height: 1.6; color: var(--ink-body); max-width: 680px; }
.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin-bottom: 40px; }
.section-head--center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

.hl { position: relative; white-space: nowrap; display: inline-block; }
.hl--yellow::before {
  content: ""; position: absolute; left: -6px; right: -6px; top: 2px; bottom: 2px;
  background: var(--brand-yellow); opacity: 0.92;
  transform: rotate(-1.4deg); border-radius: 3px; z-index: -1;
}
.hl--yellow > * , .hl--yellow { position: relative; }
.hl--yellow { z-index: 1; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 999px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn--sm { font-size: 14px; padding: 11px 22px; }
.btn--md { font-size: 16px; padding: 15px 28px; }
.btn--green { background: var(--brand-green); color: var(--white); }
.btn--green:hover { background: var(--brand-green-dark); }
.btn--outline { background: transparent; color: var(--brand-teal-dark); border: 1.5px solid var(--brand-teal-dark); }
.btn--outline:hover { background: var(--brand-teal-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-plan{border-radius: 12px !important;}
.check {
  display: inline-flex; width: 20px; height: 20px; border-radius: 50%;
   color: var(--brand-green-dark);
  align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
  flex-shrink: 0; margin-top: 2px;
}
.check--plus { background: rgba(86,185,71,0.18); color: var(--brand-green-dark); }

.callout {
  display: flex; gap: 14px; align-items: center; padding: 16px 20px;
  border-radius: 14px; margin-top: 8px;
}
.callout--green { background: #EAF6E8; border: 1px solid #CDE8C7; }
.callout p { margin: 0; font-size: 16px; color: #2F4A2B; }
.callout__check {
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand-green);
  color: var(--white); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(31, 78, 121, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding:10px 0;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding-top: 15px; padding-bottom: 15px;
}
.site-header__logo img { height: 44px; display: block; }
.site-nav { display: flex; gap: 30px; font-size: 14px; font-weight: 500; color: #DCEAF8; }
.site-nav a:hover { color: var(--sky-400); }
.site-header__menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.08);
  align-items: center; justify-content: center; padding: 0; flex-direction: column; gap: 4px;
}
.site-header__menu-btn span {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: visible;
  background: var(--brand-teal); color: #fff;
}
.hero__decor { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero__decor--ring-lg { top: -120px; left: -120px; width: 420px; height: 420px; border: 1.5px dashed rgba(255,255,255,0.18); }
.hero__decor--dot-yellow { top: 77px; left: 295px; width: 16px; height: 16px; background: var(--brand-yellow); }
.hero__decor--dot-green { bottom: 100px; left: 90px; width: 11px; height: 11px; background: var(--brand-green); }

.hero__inner {
  position: relative; z-index: 1;
  padding-top: 52px; padding-bottom: 104px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 20px; }
.hero__headline {
  margin: 0; font-weight: 700; font-size: 60px; line-height: 1;
  letter-spacing: -0.03em; color: #fff;
}
.hero__subhead {
  margin: 0; font-size: 19px; line-height: 1.6; color: #DCEAF8;
  max-width: 500px; font-weight: 300;
}
.hero__subhead em { font-style: normal; font-weight: 600; color: #fff; }
.hero__subhead strong { color: #fff; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 4px; }
.hero__proof {
  list-style: none; margin: 0; padding-top: 14px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-size: 14px; color: #B4CCE6;
}
.hero__proof strong { color: #fff; font-weight: 600; }

.hero__media { position: relative; }
.hero__media-ring {
  position: absolute; top: -34px; right: -34px; width: 240px; height: 240px;
  border-radius: 50%; border: 1.5px dashed rgba(255,255,255,0.22); z-index: 0;
}
.hero__photo {
  position: relative; z-index: 1; width: 100%; height: 430px;
  object-fit: cover; background: #2766A4; object-position: 22% 33%;
  border-radius: 26px; box-shadow: 0 40px 80px -30px rgba(13,40,70,0.6);
}
.hero__badge {
  position: absolute; z-index: 2; border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(13,40,70,0.5);
}
.hero__badge--pocket {
  left: -26px; bottom: 44px; background: #fff; color: var(--brand-teal-dark);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.hero__badge-icon {
  width: 40px; height: 40px; border-radius: 50%; background: #E8F3E8;
  color: var(--brand-green); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.hero__badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero__badge-text small { font-size: 12.5px; color: #6E7F90; }
.hero__badge--live {
  right: 18px; top: 26px; background: var(--brand-yellow); color: var(--brand-teal-dark);
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  padding: 9px 15px; border-radius: 999px;
}

.hero__quote-wrap {
  position: absolute; z-index: 30;
  left: 0; right: 0; bottom: 0;
  /* Fixed 80px overlap into hero image; widget grows downward only */
  transform: translateY(calc(100% - 80px));
}
.hero__quote-mobile { display: none; }


/* ---------- What is CAP ---------- */
.what-is { position: relative; overflow: hidden; background: var(--sky-100); padding: 96px 0; }
.what-is__decor {
  position: absolute; top: -40px; right: -40px; width: 200px; height: 200px;
  border-radius: 50%; border: 1.5px dashed #BFD9F0; z-index: 0;
}
.what-is__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 0.92fr; gap: 64px; align-items: center;
}
.what-is__copy { display: flex; flex-direction: column; gap: 22px; max-width: 520px; }
.what-is__copy .section-heading { font-size: 58px; }
.what-is__media img {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: 24px; box-shadow: 0 36px 70px -34px rgba(31,78,121,0.45);
}

.compare-mini {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px;
}
.compare-mini__card {
  border-radius: var(--radius-md); padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.compare-mini__card--insurance { background: #fff; border: 1px solid var(--border); }
.compare-mini__card--cap {
  background: var(--brand-teal); color: #fff;
  box-shadow: 0 20px 40px -22px rgba(31,78,121,0.6);
}
.compare-mini__card > div { display: flex; flex-direction: column; gap: 2px; }
.compare-mini__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute); min-height: 30px; display: flex; align-items: center;
}
.compare-mini__logo { height: 30px; align-self: flex-start; }
.compare-mini__k {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #A6B2BE;
}
.compare-mini__card--cap .compare-mini__k { color: var(--sky-300); }
.compare-mini__v { font-size: 15px; font-weight: 500; color: var(--ink-body); }
.compare-mini__card--cap .compare-mini__v { color: #fff; font-weight: 600; }
.compare-mini__vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 6px 16px -6px rgba(31,78,121,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--brand-teal);
}

/* ---------- Press (As Featured In) ---------- */
.press { padding: 48px 0; background: #fff; overflow: hidden; border-top: 1px solid #EAF0F7; border-bottom: 1px solid #EAF0F7; }
.press__eyebrow { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky-400); margin-bottom: 32px; }
.press__slider { position: relative; width: 100%; display: flex; overflow: hidden; }
.press__track { display: flex; flex-wrap: nowrap; width: max-content; animation: 40s linear infinite pressScroll; }
.press__group { display: flex; flex: 0 0 auto; flex-wrap: nowrap; gap: 52px; padding-right: 52px; align-items: center; }
.press__group img { flex: 0 0 auto; max-width: none; width: auto; object-fit: contain; filter: grayscale(100%) opacity(40%); transition: filter 0.3s, opacity 0.3s; }
.press__group img:hover { filter: grayscale(0%); opacity: 1; }

@keyframes pressScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- How it works ---------- */
.how { background: #fff; padding: 100px 0; overflow: hidden; }
.how__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.how__phone { display: flex; justify-content: center; }
.how__phone-wrapper { position: relative; display: inline-block; z-index: 1; }
.how__phone-decor { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: -1; }
.how__phone-ring {
  position: absolute; border: 1px dashed var(--sky-300); border-radius: 50%;
}
.how__phone-ring--top {
  width: 200px; height: 200px; top: -40px; right: -50px;
}
.how__phone-ring--bottom {
  width: 140px; height: 140px; bottom: 20px; left: -40px;
}
.how__phone-dot {
  position: absolute; border-radius: 50%;
}
.how__phone-dot--yellow {
  background: var(--brand-yellow); width: 14px; height: 14px; top: -36px; right: 10px;
}
.how__phone-dot--blue {
  background: var(--sky-400); width: 10px; height: 10px; top: 70px; right: -40px;
}
.how__phone-dot--green {
  background: var(--brand-green); width: 14px; height: 14px; bottom: 60px; left: -20px;
}
.how__phone-frame {
  position: relative;
  width: 280px; background: var(--brand-teal-dark); border-radius: 42px; padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(31,78,121,0.55);
}
.how__phone-frame img {
  width: 100%; height: 540px; object-fit: cover;
  border-radius: 32px; background: #0B2440;
}
.how__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.how__step {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid #E4EDF6; border-radius: 20px;
  padding: 24px 28px; box-shadow: 0 2px 14px -7px rgba(31,78,121,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how__step:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -22px rgba(46,116,184,0.45); }
.how__step--assist { background: #F3FAF1; border-color: #D6EBD0; }
.how__step-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: #E8F2FB; color: var(--brand-teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px; flex-shrink: 0; position: relative;
}
.how__step-badge {
  position: absolute; right: -8px; bottom: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand-teal-dark); color: #fff;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.how__step--assist .how__step-icon { background: #EAF6E8; color: var(--brand-green-dark); }
.how__step--assist .how__step-badge { background: var(--brand-green-dark); }
.how__step h3 { margin: 0; font-weight: 600; font-size: 20px; color: var(--ink); }
.how__step p { margin: 0; font-size: 15px; color: var(--ink-body); }
.how__step-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sky-400);
}
.how__step--assist .how__step-eyebrow { color: var(--brand-green); }
.how__step-assist { color: var(--brand-green-dark); }

.how__cta { align-self: flex-start; margin-top: 8px; }

/* ---------- Plans (Section 3.3.4) ---------- */
.plans { position: relative; overflow: hidden; background: var(--sky-100); padding: 96px 0; }
.plans__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: stretch; }
.plan-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 30px -18px rgba(31,78,121,0.2);
}
.plan-card__hero { position: relative; height: 168px; border-radius: 23px 23px 0 0; overflow: hidden; }
.plan-card__hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.plan-card__body { padding: 34px; display: flex; flex-direction: column; gap: 20px; }
.plan-card__head h3 { margin: 0; font-weight: 700; font-size: 24px; color: var(--ink); }
.plan-card__head p { margin: 4px 0 0; font-size: 13.5px; color: #6E7F90; }
.plan-card__price {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--sky-100); border: 1px solid #E4EDF6; border-radius: 14px;
  padding: 16px 20px;
}
.plan-card__price span { font-size: 15px; font-weight: 600; color: var(--ink); }
.plan-card__price strong { font-weight: 700; font-size: 32px; color: var(--ink); letter-spacing: -0.02em; }
.plan-card__price-note { margin: 0; font-size: 12.5px; color: var(--ink-mute); }
.plan-card__cta { align-self: stretch; }
.plan-card__divider { height: 1px; background: var(--border-soft); }
.plan-card__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}
.plan-card__features { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px 20px; grid-template-columns: 1fr 1fr; }
.plan-card__features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.35; color: #3D5468; }
.plan-card__more-wrap.is-open .plan-card__toggle-more { display: none; }
.plan-card__more-wrap.is-open .plan-card__more-content { display: block !important; }

.tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  color: var(--sky-400);
  cursor: pointer;
  vertical-align: middle;
}
.tooltip-wrap:hover, .tooltip-wrap:focus {
  color: var(--brand-teal);
  outline: none;
}
.plan-card--complete .tooltip-wrap {
  color: #8bbce0;
}
.plan-card--complete .tooltip-wrap:hover, .plan-card--complete .tooltip-wrap:focus {
  color: #fff;
}
.tooltip-content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 280px;
  background: var(--brand-teal-dark);
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
  pointer-events: none;
  font-weight: 400;
  white-space: normal;
  text-align: left;
}
.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--brand-teal-dark) transparent transparent transparent;
}
.tooltip-wrap:hover .tooltip-content,
.tooltip-wrap:focus .tooltip-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.plan-card--complete {
  background: linear-gradient(160deg, var(--brand-teal-mid), var(--brand-teal-deep));
  border: 2px solid var(--brand-green); color: #fff;
  box-shadow: 0 36px 70px -30px rgba(31,78,121,0.75);
  transform: scale(1.02);
}
.plan-card--complete .plan-card__head h3 { color: #fff; }
.plan-card--complete .plan-card__head p { color: #BFD3E8; }
.plan-card--complete .plan-card__price { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.plan-card--complete .plan-card__price span { color: #EAF2FB; }
.plan-card--complete .plan-card__price strong { color: #fff; }
.plan-card--complete .plan-card__price-note { color: #BFD3E8; }
.plan-card--complete .plan-card__divider { background: rgba(255,255,255,0.16); }
.plan-card__eyebrow--light { color: #DCE8F5; font-weight: 600; font-size: 15px; letter-spacing: 0; text-transform: none; }
.plan-card--complete .plan-card__features li { color: #EAF2FB; }
.plan-card__badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--brand-green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(13,40,70,0.5);
}
.plans__upgrade-note {
  margin: 32px auto 0; max-width: 720px; text-align: center;
  font-size: 15px; color: var(--ink-body);
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 24px;
}
.plans__upgrade-note strong { color: var(--ink); }

/* ---------- What's covered (Section 3.3.5) ---------- */
.covered { padding: 96px 0; background: #fff; }
.covered__pills { display: none; gap: 8px; margin-bottom: 24px; }
.covered__pill {
  flex: 1; padding: 12px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff; color: var(--ink);
  font-weight: 600; font-size: 14px;
}
.covered__pill.is-active { background: var(--brand-teal); color: #fff; border-color: var(--brand-teal); }
.covered__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.covered__col {
  background: var(--sky-100); border: 1px solid var(--border);
  border-radius: 22px; padding: 32px;
}
.covered__col--complete { background: linear-gradient(160deg, var(--brand-teal-mid), var(--brand-teal-deep)); color: #fff; border-color: var(--brand-green); }
.covered__col--complete h3 { color: #fff; }
.covered__col h3 { margin: 0 0 20px; font-size: 24px; color: var(--ink); }
.covered__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.covered__row { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #3D5468; }
.covered__col--complete .covered__row { color: #EAF2FB; }
.covered__row--upgrade { color: var(--ink-mute); }
.covered__row--upgrade em { font-style: normal; font-weight: 600; color: var(--brand-green-dark); margin-left: 4px; }
.covered__row--added { color: #fff; }

/* ---------- Scenarios ---------- */
.scenarios { padding: 96px 0; background: #fff; }
.scenarios__top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 10px; }
.scenarios__top .section-head { margin-bottom: 0; }
.scenarios__badge-out-of-pocket {
  display: inline-flex; align-items: center; gap: 8px;
  background: #E8F3E8; color: var(--brand-green-dark);
  padding: 8px 16px 8px 8px; border-radius: 999px;
  font-weight: 700; font-size: 20px; border: 1px solid rgba(83, 172, 85, 0.2);
}
.scenarios__badge-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--brand-green); color: #fff;
  border-radius: 50%;
}
.scenarios__filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-pill {
  border: none; font: inherit; font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 999px;
  background: var(--sky-100); color: var(--ink);
}
.filter-pill.is-active { background: var(--brand-teal); color: #fff; }
.scenarios__carousel-wrap {
  position: relative;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(31,78,121,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.carousel-arrow:hover {
  background: var(--brand-teal);
  color: #fff;
}
.carousel-arrow--prev {
  left: -22px;
}
.carousel-arrow--next {
  right: -22px;
}
.carousel-arrow svg {
  width: 20px;
  height: 20px;
}
.scenarios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 991px) {
  .scenarios__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .scenarios__grid { grid-template-columns: 1fr !important; }
}
.scenario {
  scroll-snap-align: start;
  background: var(--sky-100); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 6px 24px -14px rgba(31,78,121,0.16);
  transition: all 0.3s ease;
}
.scenario:hover { background: #fff; transform: translateY(-6px); box-shadow: 0 26px 54px -24px rgba(31,78,121,0.4); }
.scenario__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.scenario__tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.tag--medical { background: #DEEDF9; color: var(--brand-teal); }
.tag--security { background: #FFE8CC; color: #B4691E; }
.tag--disaster { background: #E1F2DC; color: var(--brand-green-dark); }
.scenario__country { font-size: 13px; color: #6E7F90; }
.scenario__title { margin: 0; font-weight: 700; font-size: 21px; line-height: 1.2; color: var(--ink); }
.scenario__summary { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-body); flex: 1; }
.scenario__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--border-soft);
}
.scenario__foot > div { display: flex; flex-direction: column; }
.scenario__foot > div > span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.scenario__foot > div > strong { font-weight: 700; font-size: 22px; color: var(--ink); }
.scenario__pill {
  background: rgba(86,185,71,0.18); border: 1px solid rgba(86,185,71,0.45);
  border-radius: 999px; padding: 7px 13px;
  font-size: 12.5px; font-weight: 600; color: #2F6E2A;
}

/* ---------- Compare teasers (Section 3.3.7) ---------- */
.compare-teaser { padding: 96px 0; background: #fff; }
.compare-teaser__head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 40px;
}
.compare-teaser__head-text { max-width: 700px; }
.compare-teaser__head-text .section-heading { margin: 12px 0; }
.compare-teaser__head-action { flex-shrink: 0; }

.compare-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
}
.compare-icon--check { background: #EAF6E8; color: var(--brand-green); }
.compare-icon--dash { background: #F1F4F7; color: #D1D8DF; }

.compare-table {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(31,78,121,0.08);
}
.compare-table__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.1fr; }
.compare-table--5cols .compare-table__row { grid-template-columns: 2.8fr 1fr 1fr 1fr 1fr; }
.compare-table__row > div {
  padding: 20px 24px; border-bottom: 1px solid var(--border-soft);
  font-size: 15px; color: var(--ink-body); display: flex; align-items: center;
}
.compare-table__row > div:not(:first-child) { justify-content: center; }
.compare-table__row:last-child > div { border-bottom: none; }
.compare-table__row--head > div {
  background: var(--brand-teal-dark); font-weight: 600; color: #fff;
  font-size: 15px; letter-spacing: 0; text-transform: none; border-bottom: none;
}
.compare-table__row .is-emphasized { background: #E8F2FB; color: var(--ink-body); }
.compare-table__row--head .is-emphasized { background: var(--brand-teal); color: #fff; }

/* Mobile stacked cards — hidden on desktop */
.compare-mobile { display: none; }

/* ---------- Pricing strip (Section 3.3.8) ---------- */
.pricing-strip { padding: 96px 0; background: var(--sky-100); }
.pricing-strip__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-card); position: relative;
}
.price-card h3 { margin: 0; font-size: 24px; color: var(--ink); }
.price-card p { margin: 0; color: var(--ink-body); font-size: 15px; }
.price-card__price { display: flex; align-items: baseline; gap: 8px; }
.price-card__price strong { font-size: 42px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.price-card__price span { color: var(--ink-mute); font-size: 14px; }
.price-card--complete {
  background: linear-gradient(160deg, var(--brand-teal-mid), var(--brand-teal-deep));
  border: 2px solid var(--brand-green); color: #fff;
  transform: scale(1.02);
  box-shadow: 0 36px 70px -30px rgba(31,78,121,0.75);
}
.price-card--complete h3, .price-card--complete .price-card__price strong { color: #fff; }
.price-card--complete p { color: #BFD3E8; }
.price-card--complete .price-card__price span { color: #BFD3E8; }
.price-card__badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--brand-green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(13,40,70,0.5);
}

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; background: #fff; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--sky-100); border: 1px solid var(--border); border-radius: 16px;
  padding: 4px 4px;
  overflow: hidden;
}
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px;
  font-weight: 600; font-size: 17px; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__toggle {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  position: relative; flex-shrink: 0;
  transition: transform 0.2s;
}
.faq__toggle::before, .faq__toggle::after {
  content: ""; position: absolute; background: var(--brand-teal);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq__toggle::before { width: 10px; height: 2px; }
.faq__toggle::after { width: 2px; height: 10px; transition: transform 0.2s; }
.faq__item[open] .faq__toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.6; color: var(--ink-body); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(to right, rgba(22, 57, 92, 0.92) 0%, rgba(31, 78, 121, 0.88) 50%, rgb(46 116 184 / 17%) 100%), url('../images/finalcta.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
@supports (background-image: url('../images/final-cta.webp')) {
  .final-cta {
    background: linear-gradient(to right, rgba(22, 57, 92, 0.92) 0%, rgba(31, 78, 121, 0.88) 50%, rgb(46 116 184 / 17%) 100%), url('../images/final-cta.webp') center/cover no-repeat;
  }
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.final-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.final-cta__copy h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  color: #fff;
}

.final-cta__copy p {
  font-size: 17px;
  color: #DCEAF8;
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  align-items: center;
}

.final-cta__proof {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
  color: #DCEAF8;
  flex-wrap: wrap;
}

.final-cta__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta .quote-widget { width: 100%; max-width: 960px; display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-teal-dark); color: #DCEAF8; padding: 60px 0 30px; }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; }
.site-footer__logo { height: 40px; margin-bottom: 18px; }
.site-footer__blurb { font-size: 14px; line-height: 1.6; color: #B4CCE6; max-width: 380px; }
.site-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer__cols h4 { margin: 0 0 14px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
.site-footer__cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.site-footer__cols a:hover { color: var(--sky-400); }
.site-footer__meta {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 12.5px; color: #B4CCE6;
}
/* ---------- The Gap (Medical vs Security response) ---------- */
.gap { padding: 10px 0 90px; background: var(--white); }
.gap__head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 40px; }
.gap__title { margin: 0; font-size: 42px; line-height: 1.1; letter-spacing: -0.02em; }
.gap__lede { margin: 6px 0 0 auto; justify-self: end; color: var(--ink-body); font-size: 17px; line-height: 1.55; max-width: 460px; }
.gap__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.gap-card { border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.gap-card--medical { background: var(--sky-100); color: var(--ink); }
.gap-card--security { background: var(--brand-teal); color: #fff; }
.gap-card__head { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); margin-bottom: 20px; }
.gap-card--security .gap-card__head { border-bottom-color: rgba(255,255,255,0.18); }
.gap-card__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sky-200); color: var(--brand-teal);
}
.gap-card--security .gap-card__icon { background: rgba(255,255,255,0.15); color: #fff; }
.gap-card__head h3 { margin: 0 0 4px; font-size: 22px; font-weight: 700; }
.gap-card__head p { margin: 0; font-size: 14.5px; line-height: 1.4; opacity: 0.85; }
.gap-card__list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; }
.gap-card__list li { display: flex; gap: 12px; align-items: flex-start; }
.gap-card--medical .gap-card__list .check { color: var(--brand-teal); }
.gap-card--security .gap-card__list .check { color: var(--brand-yellow); }
.gap-card__foot { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--brand-teal); }
.gap-card--security .gap-card__foot { color: var(--brand-yellow); }

.gap-strip {
  margin-top: 32px; padding: 40px 48px; border-radius: var(--radius-lg);
  background: linear-gradient(to right, rgba(13, 40, 70, 0.6) 0%, rgba(13, 40, 70, 0.8) 60%, rgba(13, 40, 70, 0) 100%), url('../images/benefits.jpg') no-repeat center center;
  background-size: cover;
  color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.gap-strip__copy .eyebrow--yellow { color: var(--brand-yellow); }
.gap-strip__copy h3 { margin: 6px 0 8px; font-size: 40px; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.gap-strip__copy p { margin: 0; color: #E4EEF8; font-size: 15px; }


/* ---------- Backed By ---------- */
.backed-by {
  position: relative; overflow: hidden; background: var(--brand-teal); padding: 96px 0;
}
.backed-by__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.backed-by__content { display: flex; flex-direction: column; gap: 24px; }
.backed-by__hl {
  background: var(--brand-yellow); color: #fff; padding: 0 8px; border-radius: 4px;
}
.backed-by__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 16px; margin-bottom: 24px;
}
.backed-by__stat {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.22); padding-top: 16px;
}
.backed-by__stat strong {
  font-size: 32px; font-weight: 700; color: #fff; line-height: 1;
}
.backed-by__stat span {
  font-size: 13.5px; color: #B4CCE6; line-height: 1.5;
}
.backed-by__ctas {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px;
}
.backed-by__lloyds {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px; color: #fff;
}
.backed-by__lloyds span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: #B4CCE6;
}
.backed-by__lloyds strong { font-size: 15px; font-weight: 600; }
.backed-by__media { position: relative; }
.backed-by__media-box {
  width: 100%; height: 480px;
  background: #235C8C; border-radius: 24px;
  box-shadow: var(--shadow-lift);
  position: relative; z-index: 2;
}
.backed-by__decor-ring {
  top: -60px; right: -60px; left: auto; z-index: 1;
}

/* ---------- Reviews ---------- */
.reviews {
  padding: 96px 0; background: #EFF5F2; overflow: hidden;
}
.reviews__top {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 24px;
}
.reviews__head { max-width: 500px; }
.eyebrow--green { color: var(--brand-green); }
.reviews__trustpilot {
  background: #fff; padding: 20px 24px; border-radius: 16px; box-shadow: var(--shadow-card);
}
.reviews__tp-title {
  display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--ink);
}
.reviews__tp-star { color: #00B67A; font-size: 18px; }
.reviews__tp-stars {
  display: flex; gap: 4px; margin-bottom: 8px;
}
.reviews__tp-stars > div {
  background: #00B67A; color: #fff; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.reviews__tp-score {
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.reviews__tp-score span { color: var(--ink-mute); font-weight: 400; }

/* Avatar system */
.reviews__avatar {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 700; text-transform: uppercase; flex-shrink: 0;
}
.reviews__avatar--lg {
  width: 72px; height: 72px; font-size: 30px;
  background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.reviews__avatar--sm {
  width: 40px; height: 40px; font-size: 16px;
  background: var(--sky-200); color: var(--brand-teal); border: 1px solid var(--border);
}

/* Featured review */
.reviews__featured {
  background: linear-gradient(135deg, var(--brand-teal-mid), var(--brand-teal-deep));
  border-radius: 24px; padding: 48px; color: #fff;
  display: flex; gap: 40px; position: relative; overflow: hidden; margin-bottom: 40px; align-items: center;
}
.reviews__decor-ring { right: -80px; top: 0; left: auto; width: 300px; height: 300px; border-color: rgba(255,255,255,0.12); }
.reviews__decor-dot { right: 40px; bottom: 40px; left: auto; }

.reviews__featured-left {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 180px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15); padding-right: 40px;
  z-index: 2; position: relative;
}
.reviews__featured-name {
  font-size: 15px; font-weight: 600; margin-bottom: 8px;
}
.reviews__featured-stars {
  display: flex; gap: 2px;
}
.reviews__featured-stars span {
  color: var(--brand-yellow); font-size: 16px;
}
.reviews__featured-right {
  font-size: 22px; font-weight: 500; line-height: 1.5;
  display: flex; align-items: center; z-index: 2; position: relative; flex: 1;
}
.reviews__featured-right blockquote {
  margin: 0; font-style: italic; opacity: 0.95;
}

/* Carousel container */
.reviews__carousel {
  position: relative; overflow: hidden;
}
.reviews__track {
  display: flex; gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Review card */
.reviews__card {
  background: #fff; border-radius: 16px; padding: 24px;
  min-width: calc((100% - 40px) / 3); width: calc((100% - 40px) / 3);
  box-shadow: 0 4px 16px rgba(31,78,121,0.06);
  border: 1px solid var(--border-soft);
  flex-shrink: 0; display: flex; flex-direction: column;
}
.reviews__card-head {
  margin-bottom: 16px;
}
.reviews__card-stars-row {
  display: flex; gap: 4px;
}
.reviews__card-stars-row span {
  color: var(--brand-yellow); font-size: 16px;
}
.reviews__tp-stars-small {
  display: flex; align-items: center; gap: 3px;
}
.reviews__tp-star-box {
  background: #00B67A; color: #fff; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.reviews__card-source {
  font-size: 13px; font-weight: 700; color: #00B67A; margin-left: 6px;
}
.reviews__card-text {
  font-size: 15px; color: var(--ink-body); margin: 0 0 24px 0; line-height: 1.6; flex: 1;
}
.reviews__card-footer {
  display: flex; align-items: center; gap: 12px; margin-top: auto;
}
.reviews__avatar--default {
  background: var(--sky-400); color: #fff; border: none;
}
.reviews__avatar--tp {
  background: #53A551; color: #fff; border: none;
}
.reviews__card-name {
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.reviews__nav-row {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px;
}
.reviews__nav-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(31,78,121,0.1);
  transition: all 0.2s; flex-shrink: 0;
}
.reviews__nav-arrow:hover {
  background: var(--brand-teal); color: #fff; border-color: var(--brand-teal);
}

/* Pagination dots */
.reviews__dots {
  display: flex; align-items: center; gap: 8px;
}
.reviews__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.reviews__dot.is-active {
  background: var(--brand-teal); width: 24px; border-radius: 4px;
}
.reviews__nav .carousel-arrow { position: static; transform: none; }

/* ---------- Pricing Dynamic ---------- */
.pricing-dynamic {
  background: #EFF5F2; padding: 96px 0; border-top: 1px solid rgba(0,0,0,0.05);
}
.pricing-dynamic__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start;
}
.pricing-dynamic__copy .eyebrow--teal { color: var(--brand-teal); margin-bottom: 16px; }
.pricing-dynamic__copy .section-heading { margin-bottom: 24px; }
.pricing-dynamic__copy .section-lede { margin-bottom: 24px; }
.pricing-dynamic__link {
  font-weight: 600; color: var(--brand-teal); text-decoration: none; font-size: 15px; display: inline-block;
}
.pricing-dynamic__link:hover { color: var(--brand-teal-dark); text-decoration: underline; }

.pricing-dynamic__main-card {
  background: var(--sky-100); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-card); margin-bottom: 24px; border: 1px solid var(--border-soft);
}
.pricing-dynamic__toggle {
  display: flex; background: var(--sky-200); border-radius: 999px; padding: 6px; margin-bottom: 32px;
}
.pricing-dynamic__toggle-btn {
  flex: 1; background: transparent; border: none; border-radius: 999px; padding: 12px; font-weight: 700; font-size: 14px; color: var(--sky-400); cursor: pointer; transition: all 0.2s;
}
.pricing-dynamic__toggle-btn.is-active {
  background: #fff; color: var(--ink); box-shadow: 0 4px 12px rgba(31,78,121,0.08);
}
.pricing-dynamic__price {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px;
}
.pricing-dynamic__price-from { font-size: 18px; font-weight: 500; color: var(--ink-mute); }
.pricing-dynamic__price-amount {
  font-size: 72px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.02em;
}
.pricing-dynamic__price-amount:empty {
  min-width: 120px; min-height: 64px;
}
.pricing-dynamic__price-period {
  font-size: 18px; font-weight: 500; color: var(--ink-mute); max-width: none; line-height: 1.2;
}
.pricing-dynamic__plan-name {
  font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px;
}
.pricing-dynamic__plan-desc {
  font-size: 15px; color: var(--ink-body); margin-bottom: 32px; line-height: 1.5;
}
.pricing-dynamic__cta { width: 100%; justify-content: center; }
.pricing-dynamic__features {
  text-align: center; font-size: 13px; color: var(--ink-mute); margin-top: 24px; font-weight: 400;
}

.pricing-dynamic__sub-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px;
}
.pricing-dynamic__sub-card {
  background: #fff; border-radius: 16px; padding: 24px; border: 1px solid var(--border-soft); box-shadow: 0 4px 12px rgba(31,78,121,0.04);
}
.pricing-dynamic__sub-icon {
  font-size: 28px; font-weight: 700; color: var(--brand-green); margin-bottom: 8px; line-height: 1;
}
.pricing-dynamic__sub-title {
  font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px;
}
.pricing-dynamic__sub-desc {
  font-size: 13px; color: var(--ink-body); line-height: 1.4;
}
.pricing-dynamic__footnote {
  margin-top: 40px; font-size: 11px; color: var(--ink-mute);
}
