:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-tint: #eff5ff;
  --surface-accent: #f6f1ff;
  --text: #132238;
  --muted: #5a677d;
  --line: rgba(19, 34, 56, 0.1);
  --line-strong: rgba(19, 34, 56, 0.18);
  --primary: #1866ff;
  --primary-deep: #114cc4;
  --accent: #0fa77a;
  --cta: #ef3124;
  --cta-deep: #c81912;
  --cta-warm: #ff6a3d;
  --shadow-lg: 0 20px 60px rgba(30, 51, 88, 0.12);
  --shadow-md: 0 10px 30px rgba(30, 51, 88, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(24, 102, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 167, 122, 0.1), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
}

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

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 251, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  order: 3;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.site-nav a {
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0 0.1rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(24, 102, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(239, 245, 255, 0.76), rgba(239, 245, 255, 0));
}

.split-heading,
.final-cta-panel,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  display: grid;
  gap: 0.2rem;
  align-items: center;
  justify-items: center;
  max-width: 56rem;
  min-height: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.38rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  color: var(--primary);
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 7.5vw, 2.8rem);
  line-height: 0.98;
  max-width: 11.5ch;
}

.hero-text,
.section-support,
.info-card p,
.benefit-card p,
.use-case-card p,
.choice-item p,
.final-cta-panel p,
.footer-grid p,
.ranking-copy p,
.provider-benefits li,
.hero-note-card p,
.hero-stat-list li,
.faq-answer,
.mobile-cell::before {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 30ch;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.35rem 0 0.1rem;
}

.hero-actions .button {
  min-width: 12.5rem;
}

.hero-visual {
  width: min(56vw, 13.75rem);
  margin: 0.18rem auto 0;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

.scroll-cue {
  display: inline-grid;
  justify-items: center;
  gap: 0;
  margin-top: 0.05rem;
  color: var(--primary-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: cue-bounce 1.35s ease-in-out infinite;
}

.scroll-cue svg {
  width: 1.3rem;
  height: 1.3rem;
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.35rem);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.92rem 1.8rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.02rem;
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-warm) 100%);
  box-shadow: 0 18px 42px rgba(239, 49, 36, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-stat-card,
.hero-note-card,
.ranking-card,
.info-card,
.benefit-card,
.use-case-card,
.choice-item,
.faq-item,
.final-cta-panel,
.table-shell {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.hero-stat-card,
.hero-note-card,
.final-cta-panel,
.table-shell {
  border-radius: var(--radius-xl);
  padding: 1.35rem;
}

.hero-stat-label,
.note-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-stat-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.section {
  padding: 4.5rem 0;
}

.ranking-section {
  padding-top: 0.8rem;
}

.section-tint {
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.65), rgba(239, 245, 255, 0));
}

.section-accent {
  background: linear-gradient(180deg, rgba(246, 241, 255, 0.7), rgba(246, 241, 255, 0));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.5rem;
}

.split-heading {
  align-items: end;
}

.section-heading h2,
.final-cta-panel h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.04;
}

.section-support {
  margin-bottom: 0;
  max-width: 44rem;
}

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

.post-ranking-notes {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.ranking-card {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.ranking-card.is-featured {
  border: 2px solid rgba(24, 102, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(236, 244, 255, 0.96), rgba(255, 255, 255, 0.86)),
    var(--surface);
  box-shadow:
    0 0 0 7px rgba(24, 102, 255, 0.08),
    0 28px 84px rgba(24, 102, 255, 0.18),
    var(--shadow-lg);
}

.ranking-card.is-featured::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: calc(var(--radius-lg) + 7px);
  border: 2px solid rgba(24, 102, 255, 0.16);
  pointer-events: none;
}

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

.card-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(24, 102, 255, 0.08);
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 0.86rem;
}

.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #132238 0%, #2460d8 100%);
  box-shadow: 0 10px 24px rgba(24, 102, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
}

.score-badge strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.provider-heading {
  display: grid;
  gap: 0.8rem;
}

.provider-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.provider-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
}

.provider-logo {
  width: 10.6rem;
  height: 5.15rem;
  padding: 0.55rem 0.9rem;
  border-radius: 1.2rem;
  background: #fff;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(24, 102, 255, 0.14);
  overflow: hidden;
}

.provider-logo-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 3.7rem;
  object-fit: contain;
}

.provider-logo.logo-symbol .provider-logo-image {
  max-width: 4rem;
  max-height: 4rem;
}

.provider-logo.logo-wide .provider-logo-image {
  max-width: 9rem;
  max-height: 3.4rem;
}

.provider-logo.logo-cyberghost {
  background: #262626;
  box-shadow:
    inset 0 0 0 1px rgba(255, 204, 0, 0.28),
    0 10px 24px rgba(19, 34, 56, 0.1);
}

.provider-logo.logo-cyberghost .provider-logo-image {
  max-width: 9.6rem;
  max-height: 3.25rem;
}

.provider-logo.logo-pia .provider-logo-image {
  max-width: 8.9rem;
  max-height: 3.7rem;
}

.provider-logo.logo-express .provider-logo-image {
  max-width: 8.6rem;
  max-height: 3.2rem;
}

.provider-logo.logo-surfshark .provider-logo-image {
  max-width: 4.2rem;
  max-height: 4.2rem;
}

.provider-logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
}

.provider-logo-fallback.is-visible {
  display: inline-flex;
}

.provider-brand h3 {
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}

.provider-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 167, 122, 0.1);
  color: #117257;
  font-weight: 700;
  font-size: 0.84rem;
}

.deal-tag,
.price-save-chip,
.table-deal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(239, 49, 36, 0.12);
  color: var(--cta-deep);
  font-weight: 800;
}

.deal-tag {
  padding: 0.45rem 0.72rem;
  font-size: 0.82rem;
}

.provider-benefits {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.15rem;
  margin-bottom: 0;
}

.platform-strip {
  display: grid;
  gap: 0.55rem;
}

.platform-strip-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.75rem;
  padding: 0.52rem 0.76rem;
  border-radius: 999px;
  color: #173255;
  background: rgba(24, 102, 255, 0.07);
  border: 1px solid rgba(24, 102, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 800;
}

.platform-pill svg {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--primary-deep);
  flex: 0 0 auto;
}

.ranking-side {
  display: grid;
  gap: 0.9rem;
}

.rating-panel {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.rating-was {
  color: var(--muted);
  font-size: 0.82rem;
}

.rating-was s {
  color: #8c96a7;
  text-decoration-thickness: 2px;
}

.rating-current-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.rating-value {
  font-size: clamp(1.35rem, 4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price-save-chip {
  padding: 0.36rem 0.64rem;
  font-size: 0.8rem;
}

.rating-caption {
  font-size: 0.84rem;
  color: var(--muted);
}

.price-source {
  width: fit-content;
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.visit-link {
  width: 100%;
}

.table-shell {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.45rem;
  background:
    linear-gradient(135deg, rgba(24, 102, 255, 0.12), rgba(15, 167, 122, 0.1)),
    var(--surface);
  border-color: rgba(24, 102, 255, 0.16);
}

.comparison-table {
  width: 100%;
  min-width: 960px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.96rem;
  border-radius: calc(var(--radius-xl) - 0.45rem);
  background: rgba(255, 255, 255, 0.9);
}

.comparison-table strong {
  font-weight: 800;
}

.comparison-table thead {
  display: table-header-group;
}

.comparison-table tbody {
  display: table-row-group;
}

.comparison-table tr {
  display: table-row;
}

.comparison-table th,
.comparison-table td {
  display: table-cell;
  padding: 1rem 0.95rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.mobile-cell::before {
  display: none;
}

.table-note {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.table-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.16rem;
  width: fit-content;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #132238 0%, #1866ff 100%);
  box-shadow: 0 10px 22px rgba(24, 102, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
}

.table-score strong {
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.comparison-table tbody tr {
  background: transparent;
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(239, 245, 255, 0.45);
}

.comparison-table tbody tr.is-table-featured td {
  background: linear-gradient(90deg, rgba(24, 102, 255, 0.12), rgba(15, 167, 122, 0.08));
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #37506e;
  background: rgba(24, 102, 255, 0.08);
}

.price-cell strong {
  color: var(--primary-deep);
  font-size: 1.04rem;
}

.table-price-was {
  color: #8c96a7;
  font-size: 0.82rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.table-deal {
  margin-top: 0.15rem;
  padding: 0.32rem 0.58rem;
  font-size: 0.76rem;
}

.benefit-cell {
  border-left: 3px solid rgba(15, 167, 122, 0.34);
  padding-left: 0.85rem;
  background-image: linear-gradient(90deg, rgba(15, 167, 122, 0.08), transparent);
}

.inline-cta {
  display: inline-flex;
  width: auto;
  min-width: 0;
  max-width: 100%;
  min-height: 3.55rem;
  padding: 0.88rem 1.25rem;
  font-size: 1rem;
  font-weight: 900;
  margin-inline: auto;
  box-shadow: 0 12px 28px rgba(239, 49, 36, 0.24);
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  text-align: center;
}

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

.exit-offer-modal[hidden] {
  display: none !important;
}

.exit-offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 43, 0.5);
  backdrop-filter: blur(6px);
}

.exit-offer-dialog {
  position: relative;
  width: min(100%, 34rem);
  padding: 1.45rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
    #fff;
  border: 1px solid rgba(24, 102, 255, 0.16);
  box-shadow: 0 28px 88px rgba(16, 32, 62, 0.28);
}

.exit-offer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.exit-offer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.exit-offer-logo {
  width: 7.4rem;
  height: 3rem;
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(24, 102, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exit-offer-logo img {
  max-width: 100%;
  max-height: 1.9rem;
  object-fit: contain;
}

.exit-offer-logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  font-weight: 900;
}

.exit-offer-brand-copy {
  display: grid;
  gap: 0.25rem;
}

.exit-offer-brand-copy .eyebrow {
  margin-bottom: 0;
}

.exit-offer-status {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 167, 122, 0.1);
  color: #117257;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.exit-offer-close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 102, 255, 0.08);
  color: var(--primary-deep);
  font-size: 1.4rem;
  cursor: pointer;
}

.exit-offer-dialog h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  line-height: 1.02;
}

.exit-offer-copy {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.exit-offer-highlight {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: rgba(24, 102, 255, 0.06);
  border: 1px solid rgba(24, 102, 255, 0.12);
}

.exit-offer-highlight-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--primary-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exit-offer-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.exit-price-old {
  color: #8c96a7;
  font-size: 0.98rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.exit-price-new {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  letter-spacing: -0.05em;
}

.exit-price-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(239, 49, 36, 0.12);
  color: var(--cta-deep);
  font-weight: 800;
}

.exit-offer-actions {
  display: grid;
  gap: 0.7rem;
}

.exit-offer-cta {
  width: 100%;
}

.exit-offer-secondary {
  width: 100%;
  border-color: rgba(24, 102, 255, 0.14);
}

.exit-offer-link {
  display: block;
  margin: 0.7rem auto 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.criteria-grid,
.benefit-grid,
.use-case-grid,
.choice-list,
.faq-list {
  display: grid;
  gap: 1rem;
}

.info-card,
.benefit-card,
.use-case-card,
.choice-item,
.faq-item {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.info-card h3,
.benefit-card h3,
.use-case-card h3,
.choice-item h3,
.faq-question {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.icon-badge {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  color: var(--primary);
  background: rgba(24, 102, 255, 0.08);
  display: inline-grid;
  place-items: center;
}

.use-case-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.choice-list {
  counter-reset: item;
}

.choice-item {
  position: relative;
  padding-top: 3.7rem;
}

.choice-item::before {
  counter-increment: item;
  content: "0" counter(item);
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  margin: 0.9rem 0 0;
}

.final-cta-panel {
  align-items: center;
}

.site-footer {
  padding: 1rem 0 3rem;
}

.legal-main {
  padding: 3rem 0 4rem;
}

.legal-shell {
  display: grid;
  gap: 1.2rem;
  max-width: 920px;
}

.legal-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.legal-card h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1;
}

.legal-card h2 {
  margin: 1.6rem 0 0.55rem;
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 1.15rem;
}

.legal-meta {
  margin-bottom: 1.2rem;
  color: var(--primary-deep);
  font-weight: 800;
}

.footer-grid {
  align-items: start;
}

.footer-brand strong {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-links a {
  width: fit-content;
  color: var(--primary-deep);
  font-weight: 700;
}

.footer-copy {
  margin-bottom: 0;
  font-size: 0.92rem;
}

@media (max-width: 540px) {
  .provider-brand {
    grid-template-columns: 1fr;
  }

  .provider-logo {
    width: min(100%, 11rem);
  }

  .inline-cta {
    width: min(100%, 9.5rem);
    padding-inline: 1rem;
  }

  .exit-offer-logo {
    width: 6.5rem;
    height: 2.75rem;
  }
}

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

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .criteria-grid,
  .benefit-grid,
  .use-case-grid,
  .choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-ranking-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-cta-panel,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 900px) {
  .header-inner {
    flex-wrap: nowrap;
    min-height: 4.8rem;
    padding: 0;
  }

  .site-nav {
    width: auto;
    order: 0;
    gap: 1.2rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero {
    padding: 1.85rem 0 0.7rem;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    width: 21rem;
  }

  .legal-card {
    padding: 2.25rem;
  }

  .ranking-card {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
  }

  .provider-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .comparison-table thead {
    display: table-header-group;
  }

  .comparison-table tbody {
    display: table-row-group;
  }

  .comparison-table tr {
    display: table-row;
    padding: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.95rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
  }

  .comparison-table {
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
  }

  .comparison-table td {
    display: table-cell;
  }

  .comparison-table tbody tr {
    background: transparent;
  }

  .comparison-table tbody tr:nth-child(even) td {
    background: rgba(239, 245, 255, 0.45);
  }

  .comparison-table tbody tr.is-table-featured td {
    background: linear-gradient(90deg, rgba(24, 102, 255, 0.12), rgba(15, 167, 122, 0.08));
  }

  .comparison-table th:nth-child(1),
  .comparison-table td:nth-child(1) {
    width: 13%;
  }

  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) {
    width: 8%;
  }

  .comparison-table th:nth-child(3),
  .comparison-table td:nth-child(3) {
    width: 10%;
  }

  .comparison-table th:nth-child(4),
  .comparison-table td:nth-child(4) {
    width: 15%;
  }

  .comparison-table th:nth-child(5),
  .comparison-table td:nth-child(5) {
    width: 18%;
  }

  .comparison-table th:nth-child(6),
  .comparison-table td:nth-child(6) {
    width: 21%;
  }

  .comparison-table th:nth-child(7),
  .comparison-table td:nth-child(7) {
    width: 15%;
  }

  .comparison-table tr:last-child td {
    border-bottom: 0;
  }

  .comparison-table th {
    font-size: 0.82rem;
  }

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

@media (min-width: 1120px) {
  .criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
