/* =============================================
   BEST VPS PLATFORM — MAIN STYLESHEET
   Premium affiliate-review look (NerdWallet/Forbes tier)
   Palette: deep navy authority + warm orange CTA
   Font: Inter
   ============================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --color-primary:        #0A2540;
  --color-primary-hover:  #0d2f4e;
  --color-primary-soft:   #eaf0f7;
  --color-cta:            #F16522;
  --color-cta-hover:      #d9581e;
  --color-cta-light:      #fff4ec;
  --color-link:           #0A66C2;
  --color-link-hover:     #084a8a;

  /* Neutrals — tuned for editorial polish */
  --color-ink:            #0f1620;   /* near-black for titles */
  --color-black-100:      #111827;
  --color-black-300:      #374151;
  --color-black-700:      #6b7280;
  --color-grey-300:       #e5e7eb;
  --color-grey-500:       #d1d5db;
  --color-grey-700:       #f3f4f6;
  --color-grey-800:       #fafbfc;
  --color-grey-900:       #ffffff;

  /* Semantic */
  --color-green-100:      #067647;
  --color-green-500:      #12b76a;
  --color-green-900:      #ecfdf3;
  --color-red-100:        #b42318;
  --color-red-500:        #f04438;
  --color-red-900:        #fef3f2;
  --color-yellow-100:     #f59e0b;
  --color-yellow-300:     #fcd34d;
  --color-yellow-700:     #fef3c7;

  /* Sizing */
  --size-50:   4px;
  --size-100:  8px;
  --size-150:  12px;
  --size-200:  16px;
  --size-250:  20px;
  --size-300:  24px;
  --size-400:  32px;
  --size-500:  40px;
  --size-600:  48px;
  --size-700:  56px;
  --size-800:  64px;

  /* Typography */
  --main-font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --font-display: 'Inter', 'Inter Fallback', Georgia, serif;

  /* Layout */
  --container-max: 1140px;
  --page-padding:  16px;

  /* Effects */
  --border-radius-small: 6px;
  --border-radius:       10px;
  --border-radius-large: 18px;
  --shadow-xs:           0 1px 2px rgba(16, 24, 40, .05);
  --shadow-sm:           0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-card:         0 2px 6px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .04);
  --shadow-hover:        0 16px 32px -8px rgba(16, 24, 40, .16), 0 4px 10px rgba(16, 24, 40, .06);
  --shadow-featured:     0 20px 48px -12px rgba(241, 101, 34, .28), 0 4px 12px rgba(16, 24, 40, .08);
  --shadow-dialog:       0 24px 60px -12px rgba(16, 24, 40, .35), 0 8px 20px rgba(16, 24, 40, .15);
}

html {
  scroll-behavior: smooth;
  /* Hard guard against horizontal overflow on every viewport. iOS
     Safari's "fit-to-screen" auto-zoom is triggered the moment any
     descendant pushes content beyond the viewport width — once we
     guarantee no horizontal scroll, mobile renders at the correct
     1.0 zoom. Safe with our sticky-footer because its mobile rules
     drop translateX entirely (it sits at left:0 right:0 full-width)
     so it never extends beyond the viewport horizontally. */
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--main-font-family);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-black-100);
  background: var(--color-grey-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: hidden;
  /* Reserve space at the very bottom of the page so the always-visible
     sticky-footer popup never sits over the real <footer>. The popup
     hovers over this empty padding instead, leaving every footer link
     fully visible and clickable. */
  padding-bottom: 100px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ── SHARED LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

/* ── HEADER ── */
.header__wrapper {
  background: var(--color-grey-900);
  border-bottom: 1px solid var(--color-grey-300);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: saturate(180%) blur(6px);
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--size-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  height: 64px;
}
.header__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.header__button {
  font-family: var(--main-font-family);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black-700);
  background: var(--color-grey-700);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 8px 14px;
  line-height: 1;
  border-radius: 999px;
  transition: color .15s, background .15s, border-color .15s;
}
.header__button:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-color: var(--color-primary-soft);
  text-decoration: none;
}

/* ── SHARED DIALOG BASE ── */
dialog {
  margin: auto;
  border: none;
  background: var(--color-grey-900);
  color: var(--color-black-100);
  box-shadow: var(--shadow-dialog);
  padding: 0;
}
dialog::backdrop {
  background: rgba(10, 22, 40, 0.62);
  backdrop-filter: blur(3px);
}

/* ── ADVERTISER DISCLOSURE DIALOG ── */
.dialog {
  border-radius: var(--border-radius-large);
  padding: var(--size-400);
  max-width: 734px;
  width: calc(100% - var(--size-400));
  max-height: calc(100% - 38px);
  overflow: auto;
  background: var(--color-grey-900);
}
.dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-200);
  margin-bottom: var(--size-250);
  padding-bottom: var(--size-200);
  border-bottom: 1px solid var(--color-grey-300);
}
.dialog__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.25;
  letter-spacing: -0.4px;
}
.dialog__close-button {
  flex-shrink: 0;
  background: var(--color-grey-700);
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .15s, transform .15s;
  margin-top: 2px;
}
.dialog__close-button:hover { background: var(--color-grey-300); transform: rotate(90deg); }
.dialog__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black-100);
  margin: var(--size-200) 0 var(--size-100);
}
.dialog__body h4:first-child { margin-top: 0; }
.dialog__body p {
  font-size: 14.5px;
  color: var(--color-black-300);
  line-height: 1.7;
  margin-bottom: var(--size-150);
}
/* Prevent body scroll when dialog open */
body.body--popup-open { overflow: hidden; }

/* ── HERO ── */
.hero {
  padding: var(--size-500) 0 0;
  background: var(--color-grey-900);
}
.hero__wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: var(--size-500);
  border-bottom: 1px solid var(--color-grey-300);
}
.hero__date {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black-700);
  margin-bottom: var(--size-150);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--color-ink);
  margin-bottom: var(--size-250);
}
.hero__text {
  font-size: 17px;
  color: var(--color-black-300);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

/* ── PAGE LAYOUT ── */
.page {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--size-500) var(--page-padding) var(--size-800);
}

/* ── RIBBON (card banner) ── */
.ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px var(--size-250);
  background: linear-gradient(92deg, var(--color-cta) 0%, #ff8a4a 100%);
  color: var(--color-grey-900);
}
.ribbon--yellow { /* legacy class kept */
  background: linear-gradient(92deg, var(--color-cta) 0%, #ff8a4a 100%);
  color: var(--color-grey-900);
}
.ribbon__content {
  display: flex;
  align-items: center;
  gap: var(--size-100);
  flex: 1;
}
.ribbon__container {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ribbon__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.ribbon__dot {
  width: 4px;
  height: 4px;
  opacity: .7;
}
.ribbon__text {
  font-size: 13.5px;
  font-weight: 600;
}
.ribbon__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* ── LINEUP (card list) ── */
.lineup {
  display: flex;
  flex-direction: column;
  gap: var(--size-250);
  margin-bottom: var(--size-800);
}

/* ── LINEUP ITEM WRAPPER (the clickable card link) ── */
.lineup-item-wrapper {
  display: block;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--color-grey-300);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s ease, border-color .2s, transform .25s ease;
  background: var(--color-grey-900);
  position: relative;
}
.lineup-item-wrapper:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  text-decoration: none;
}
/* Featured (Hostinger) card — orange border to anchor the
   Limited-Time Offer ribbon at the top. Subtle orange-tinged shadow
   adds visual lift without overwhelming the layout. */
.lineup-item-wrapper--featured {
  border-color: var(--color-cta);
  border-width: 2px;
  box-shadow: 0 2px 8px rgba(241, 101, 34, .10), 0 1px 3px rgba(16, 24, 40, .06);
}
.lineup-item-wrapper--featured:hover {
  border-color: var(--color-cta-hover);
}

/* ── LINEUP ITEM INNER (the card grid) ── */
.lineup-item {
  display: grid;
  grid-template-columns: 200px 1px auto 1fr 230px;
  align-items: stretch;
  gap: 0 var(--size-400);
  padding: var(--size-400);
}

/* Logo column. Wrapper holds a fixed 168×168 frame; logos centre inside it.
   Each provider's mark has a wildly different aspect ratio (Hostinger H is
   tall and narrow, Wix wordmark is very wide, Kamatera is roughly square),
   so a one-size-fits-all width/height makes them feel mismatched. Per-
   provider max-width / max-height caps below give each logo the same
   apparent visual area, regardless of intrinsic aspect ratio. */
.lineup-item__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  padding: var(--size-100);
  flex-shrink: 0;
}
.lineup-item__provider-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
/* Per-provider optical-weight balancing (desktop). Targets render at the
   same apparent area: ~88×96, ~143×56, ~101×88. */
.lineup-item__provider-logo[alt="Hostinger"] { max-width: 88px;  max-height: 110px; }
.lineup-item__provider-logo[alt="Wix"]       { max-width: 152px; max-height: 56px;  }
.lineup-item__provider-logo[alt="Kamatera"]  { max-width: 110px; max-height: 88px;  }

/* Separator */
.lineup-item__separator {
  width: 1px;
  background: var(--color-grey-300);
  align-self: stretch;
  margin: 0;
}

/* Nudge (rank + labels) */
.lineup-item__nudge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-100);
  min-width: 80px;
}
.number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, #1f4f7f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.label {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.label--black {
  background: var(--color-primary);
  color: var(--color-grey-900);
}
.label--yellow {
  background: var(--color-cta);
  color: var(--color-grey-900);
  box-shadow: 0 2px 6px rgba(241, 101, 34, .3);
}
.label--gray {
  background: var(--color-grey-700);
  color: var(--color-black-300);
  border: 1px solid var(--color-grey-300);
}

/* Text column */
.lineup-item__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--size-200);
}
.lineup-item__description {
  font-size: 15px;
  color: var(--color-black-300);
  line-height: 1.65;
}
.lineup-item__description b { color: var(--color-ink); font-weight: 700; }

/* Feature list — mixed pros/cons grid (2-col desktop, 1-col mobile). */
.lineup-item__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px var(--size-250);
  margin-top: var(--size-150);
}
.lineup-item__list-item {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-black-300);
  display: flex;
  /* align-items: flex-start so the check/cross icon stays anchored to
     the first line when a longer benefit phrase wraps to two lines. */
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
  /* Full-readability rules: never truncate, never ellipsise. Long
     benefit phrases (e.g. "Customisable server power") wrap cleanly to
     a second line instead of being clipped. `min-width: 0` lets a flex
     grid child shrink past its content width without forcing horizontal
     overflow on its parent. */
  white-space: normal;
  overflow: visible;
  overflow-wrap: break-word;
  word-break: normal;
  min-width: 0;
}
.lineup-item__list-item::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Nudge icon down so it visually centres with the first line of text
     at the current 1.45 line-height. */
  margin-top: 3px;
}
.lineup-item__list-item--pro::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%2312b76a'/%3E%3Cpath d='M5.5 9.3l2.3 2.3 4.7-4.8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.lineup-item__list-item--con::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23f04438'/%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Rating column */
.lineup-item__rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: var(--size-150);
}
.lineup-item__labels-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rating__number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--color-ink);
}
.rating__stars-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stars {
  display: flex;
  gap: 1px;
}
.stars span {
  font-size: 18px;
  color: var(--color-yellow-100);
  line-height: 1;
  text-shadow: 0 1px 1px rgba(245, 158, 11, .25);
}
.stars span.empty {
  color: var(--color-grey-300);
  text-shadow: none;
}
.rating__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Button — flat solid orange to match the original design. */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-100);
  font-family: var(--main-font-family);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.1px;
  color: var(--color-grey-900);
  background: var(--color-cta);
  border: none;
  border-radius: var(--border-radius-small);
  padding: var(--size-150) var(--size-200);
  min-height: 54px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .2s;
  width: 100%;
  box-shadow: 0 1px 2px rgba(241, 101, 34, .25);
}
.button:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(241, 101, 34, .3);
}
.button:active { transform: translateY(0); }
.button__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq {
  background: var(--color-grey-900);
  border: 1px solid var(--color-grey-300);
  border-radius: var(--border-radius-large);
  padding: var(--size-500);
  margin-bottom: var(--size-800);
  box-shadow: var(--shadow-sm);
}
.faq__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--size-300);
  letter-spacing: -0.6px;
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--color-grey-300);
  transition: background .2s;
}
.faq__item:last-child { border-bottom: none; }
.faq__item.open { background: transparent; }
.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--size-250) var(--size-150);
  text-align: left;
  font-family: var(--main-font-family);
}
.faq__toggle:hover .faq__question { color: var(--color-primary); }
.faq__question {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.4;
  transition: color .15s;
}
.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .25s ease;
  filter: brightness(0);
  opacity: .55;
}
.faq__item.open .faq__icon { transform: rotate(180deg); opacity: 1; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15.5px;
  color: var(--color-black-300);
  line-height: 1.7;
  padding: 0 var(--size-150);
}
.faq__item.open .faq__answer {
  max-height: 500px;
  padding-bottom: var(--size-250);
}

/* ── EDITORS PICKS ── */
.editors-pick {
  padding: var(--size-800) 0;
}
.editors-pick__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--size-400);
  letter-spacing: -0.8px;
}
.editors-pick__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-250);
}
.editors-pick-card {
  background: var(--color-grey-900);
  border: 1px solid var(--color-grey-300);
  border-radius: var(--border-radius-large);
  padding: var(--size-400);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .25s, transform .25s, border-color .2s;
  cursor: pointer;
}
.editors-pick-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}
.editors-pick-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--size-250);
}
.editors-pick-card__labels {
  display: flex;
  flex-direction: column;
  gap: var(--size-50);
  align-items: flex-end;
}
.editors-pick-card__rating-wrapper {
  display: flex;
  align-items: center;
  gap: var(--size-200);
  margin-bottom: var(--size-200);
  height: 100px;
}
/* Editors pick card logo. The rating-wrapper is a flex row
   [logo][separator][rating], so we KEEP the slot width consistent across
   all three cards (120×100) — otherwise the vertical separator drifts.
   Per-provider padding shrinks the effective render area so each logo
   ends up at the same optical weight inside its identical slot. Targets:
   ~64×70, ~112×44, ~76×64. */
.editors-pick-card__logo {
  flex: 0 0 120px;
  width: 120px;
  height: 100px;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
  padding: var(--size-100);
}
.editors-pick-card__logo[alt="Hostinger"] { padding: 8px  28px; }
.editors-pick-card__logo[alt="Wix"]       { padding: 28px 4px;  }
.editors-pick-card__logo[alt="Kamatera"]  { padding: 18px 22px; }
.editors-pick-card__separator {
  width: 1px;
  background: var(--color-grey-300);
  align-self: stretch;
}
.editors-pick-card__separator--horizontal {
  width: auto;
  height: 1px;
  margin: var(--size-200) 0;
}
.editors-pick-card__rating .rating__number { font-size: 38px; }
.editors-pick-card__description {
  font-size: 14.5px;
  color: var(--color-black-300);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--size-250);
}
.editors-pick-card__description b { color: var(--color-ink); font-weight: 700; }

/* Description list (specs) */
.description-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--size-250);
  border-top: 1px solid var(--color-grey-300);
}
.description-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-100);
  font-size: 13.5px;
  padding: var(--size-150) 0;
  border-bottom: 1px solid var(--color-grey-300);
}
.description-list__item:last-child { border-bottom: none; }
.description-list__item dt {
  color: var(--color-black-700);
  font-weight: 500;
}
.description-list__item dd {
  font-weight: 700;
  color: var(--color-ink);
  text-align: right;
}

/* Pick card button */
.editors-pick-card .button {
  font-size: 15px;
  min-height: 46px;
}

/* ── FOOTER ── */
.footer {
  background: var(--color-grey-900);
  border-top: 1px solid var(--color-grey-300);
  padding: var(--size-500) 0;
  margin-top: var(--size-400);
}
.footer__content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  padding-bottom: var(--size-250);
  margin-bottom: var(--size-250);
  border-bottom: 1px solid var(--color-grey-300);
}
.footer__logo {
  height: 22px;
  object-fit: contain;
}
.footer__navigation {
  display: flex;
  gap: var(--size-300);
  flex-wrap: wrap;
}
.footer__link {
  color: var(--color-black-300);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s;
}
.footer__link:hover { color: var(--color-primary); text-decoration: underline; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-150);
  font-size: 13px;
  color: var(--color-black-700);
}
.footer__copyright { text-align: center; }

/* ── STICKY FOOTER ──
   Scroll-triggered Hostinger CTA pinned to the bottom of the viewport.

   Hidden state (default): translated 120% off-screen, opacity 0,
   pointer-events disabled so it can't intercept clicks before it
   appears. The hard guarantees — `position: fixed`, `bottom: 0`,
   `z-index: 99999`, `display: flex` — are marked !important so no
   later rule can accidentally hide the element; the show/hide
   animation runs on transform + opacity (which are NOT !important so
   the .is-visible class can toggle them).

   Visible state: JS adds .is-visible once the first lineup card has
   scrolled out of view. CSS animates the slide-up + fade-in over
   ~350ms. The mobile.css override drops translateX(-50%) since the
   mobile popup is full-width edge-to-edge. */
.sticky-footer {
  position: fixed !important;
  bottom: 0 !important;
  left: 50%;
  z-index: 99999 !important;
  display: flex !important;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .3s ease, box-shadow .2s;
  width: calc(100% - var(--size-400) * 2);
  max-width: calc(var(--container-max) - var(--size-400));
  margin-bottom: var(--size-200);
  background: var(--color-grey-900);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius);
  padding: var(--size-200) var(--size-300);
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  box-shadow: 0 10px 40px rgba(10, 37, 64, .25);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.sticky-footer.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-footer:hover { box-shadow: 0 16px 48px rgba(10, 37, 64, .32); }
.sticky-footer__left-side-wrapper {
  display: flex;
  align-items: center;
  gap: var(--size-200);
  min-width: 0;
  flex: 1;
}
.sticky-footer__logo { flex-shrink: 0; }
.sticky-footer__logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.sticky-footer__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sticky-footer__text-badges-wrapper {
  display: flex;
  align-items: center;
  gap: var(--size-100);
}
.sticky-footer__text-badge .label {
  font-size: 10.5px;
  padding: 2px 8px;
}
.sticky-footer__text-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-footer__text-title b { font-weight: 800; color: var(--color-cta); }
.sticky-footer__button-wrapper { flex-shrink: 0; }
.sticky-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-100);
  background: linear-gradient(180deg, #f57335 0%, var(--color-cta) 100%);
  color: var(--color-grey-900);
  font-family: var(--main-font-family);
  font-size: 15px;
  font-weight: 700;
  padding: var(--size-100) var(--size-250);
  min-height: 46px;
  border-radius: var(--border-radius-small);
  white-space: nowrap;
  transition: background .15s, box-shadow .2s;
  box-shadow: 0 2px 6px rgba(241, 101, 34, .35);
}
.sticky-footer__button:hover {
  background: linear-gradient(180deg, var(--color-cta) 0%, var(--color-cta-hover) 100%);
  box-shadow: 0 6px 14px rgba(241, 101, 34, .45);
}
.sticky-footer__button svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Mini rating (in sticky footer) */
.mini-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-ink);
}
.mini-rating img {
  width: 16px;
  height: 16px;
  filter: invert(75%) sepia(100%) saturate(400%) hue-rotate(5deg);
}

/* ── SPACER for sticky footer ──
   Now a no-op: body padding-bottom (above) handles popup clearance
   so the real footer is always visible above the popup. Kept as a
   zero-height element so the existing HTML markup stays valid. */
.sticky-footer-spacer { height: 0; }

/* ── UTILITIES ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── EXIT-INTENT POPUP ── */
.popup { display: none; }
.popup[open] {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--border-radius-large);
  padding: 0;
  max-width: 620px;
  width: calc(100% - var(--size-400));
  overflow: hidden;
  background: var(--color-grey-900);
}
.popup__ad-badge {
  position: absolute;
  top: var(--size-150);
  left: var(--size-150);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-black-700);
  background: rgba(255,255,255,.9);
  padding: 3px 8px;
  border-radius: var(--border-radius-small);
  line-height: 1.4;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.popup__close-button {
  position: absolute;
  top: var(--size-150);
  right: var(--size-150);
  background: white;
  border: 1px solid var(--color-grey-300);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .15s, transform .15s;
  z-index: 2;
}
.popup__close-button:hover { background: var(--color-grey-700); transform: rotate(90deg); }
.popup__logo-panel {
  flex-shrink: 0;
  width: 240px;
  background: linear-gradient(160deg, #0A2540 0%, #1a4a7a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-300);
  padding: var(--size-400) var(--size-300);
  position: relative;
  overflow: hidden;
}
.popup__logo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(241,101,34,.25), transparent 55%);
  pointer-events: none;
}
.popup__logo-panel-img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}
.popup__logo-panel-badge {
  background: var(--color-cta);
  color: white;
  font-family: var(--main-font-family);
  font-size: 20px;
  font-weight: 800;
  padding: var(--size-100) var(--size-200);
  border-radius: var(--border-radius);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(241,101,34,.4);
}
.popup__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--size-400) var(--size-400) var(--size-400) var(--size-400);
  gap: var(--size-150);
}
.popup__bald-claim {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.7px;
  color: var(--color-ink);
}
.popup__additional-text {
  font-size: 15px;
  color: var(--color-black-300);
}
.popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-100);
  font-family: var(--main-font-family);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-grey-900);
  background: var(--color-primary);
  border: none;
  border-radius: var(--border-radius-small);
  padding: var(--size-150) var(--size-200);
  min-height: 54px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, box-shadow .2s;
  width: 100%;
  margin-top: var(--size-100);
  text-align: center;
  box-shadow: 0 4px 12px rgba(10, 37, 64, .2);
  white-space: nowrap;
}
.popup__button-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup__button-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.popup__button:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 18px rgba(10, 37, 64, .3);
}
.popup__no-thanks {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--main-font-family);
  font-size: 13.5px;
  color: var(--color-black-700);
  text-decoration: underline;
  padding: var(--size-50) 0;
  transition: color .15s;
  width: 100%;
  text-align: center;
}
.popup__no-thanks:hover { color: var(--color-black-100); }


/* =============================================
   COMPONENT UPGRADES
   Lineup block, pros/cons, compare table,
   expert analysis, provider dialog
   ============================================= */

/* ── LINEUP BLOCK (wraps card + details trigger) ──
   NOTE: must remain `display: block` — an earlier flex-column version
   collapsed the card to min-content width in some browsers. The details
   link is centered via `margin: 0 auto` + `width: fit-content`.
   position: relative anchors the Editor's Choice badge (see above). */
.lineup-item-block {
  display: block;
  width: 100%;
  position: relative;
}
.lineup-item-block > .lineup-item-wrapper {
  width: 100%;
}
.lineup-item-details-link {
  display: block;
  width: fit-content;
  margin: var(--size-150) auto 0;
  background: none;
  border: none;
  color: var(--color-link);
  cursor: pointer;
  font-family: var(--main-font-family);
  font-size: 14px;
  font-weight: 600;
  padding: var(--size-100) var(--size-200);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.lineup-item-details-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.lineup-item-details-link:focus-visible {
  outline: 2px solid var(--color-link);
  outline-offset: 2px;
  border-radius: var(--border-radius-small);
}

/* ── TEXT-ONLY PROVIDER LOGO (fallback) ── */
.lineup-item__provider-logo--text,
.editors-pick-card__logo--text,
.provider-dialog__logo--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font-family);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--color-grey-700) 0%, var(--color-primary-soft) 100%);
  border: 1px solid var(--color-grey-300);
  border-radius: var(--border-radius);
  padding: var(--size-150) var(--size-200);
  text-align: center;
}
.lineup-item__provider-logo--text { font-size: 22px; min-height: 72px; width: 100%; }
.editors-pick-card__logo--text { font-size: 20px; min-height: 64px; width: 100%; }
.provider-dialog__logo--text { font-size: 14px; min-height: 48px; min-width: 96px; padding: var(--size-100) var(--size-150); }

/* ── DESKTOP COMPARISON TABLE ── */
.compare-table-section {
  margin: var(--size-800) 0;
}
.compare-table-section__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--size-100);
  letter-spacing: -0.7px;
}
.compare-table-section__subtitle {
  font-size: 16px;
  color: var(--color-black-700);
  margin-bottom: var(--size-400);
}
.compare-table-wrapper {
  /* overflow must stay visible so the "BEST MANAGED" pill (absolutely
     positioned at top:-14px on the highlight <th>) isn't clipped. Per
     CSS spec, setting overflow-x:auto coerces overflow-y to auto too —
     which is what was chopping the top of the pill. Table is hidden on
     mobile via mobile.css so no horizontal scroll is needed on desktop. */
  overflow: visible;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-card);
  background: var(--color-grey-900);
  border: 1px solid var(--color-grey-300);
  margin-top: var(--size-400);  /* 32px — enough room for the pill
                                   (~22px tall at top:-14px = 36px total
                                   above the thead) without dead space. */
}
/* Uniform row heights and column widths — the Wix column was drifting
   because zebra + inset box-shadow + absolutely-positioned header pill
   were all fighting for the same cell. Clean slate below. */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 800px;
  table-layout: fixed;
}
.compare-table thead th {
  background: linear-gradient(180deg, #0d2f4e 0%, var(--color-primary) 100%);
  color: var(--color-grey-900);
  font-weight: 700;
  text-align: center;
  padding: var(--size-250) var(--size-200);
  font-size: 15px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  height: 60px;
}
.compare-table thead th.compare-table__feature-col {
  text-align: left;
}
/* Round first/last thead corners to match the wrapper radius now that
   the wrapper is overflow: visible (prevents a tiny navy notch at the
   rounded corners of the wrapper). */
.compare-table thead th:first-child {
  border-top-left-radius: var(--border-radius-large);
}
.compare-table thead th:last-child {
  border-top-right-radius: var(--border-radius-large);
}
.compare-table tbody tr:last-child th:first-child,
.compare-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius-large);
}
.compare-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius-large);
}
.compare-table thead th.compare-table__highlight-col {
  background: linear-gradient(180deg, #e65f1f 0%, var(--color-cta) 100%);
  color: var(--color-grey-900);
  position: relative;
}
.compare-table thead th.compare-table__highlight-col::after {
  content: "BEST OVERALL";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-ink);
  color: var(--color-grey-900);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--color-grey-300);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--color-black-300);
  padding: var(--size-200) var(--size-250);
  background: var(--color-grey-900);
  vertical-align: middle;
  line-height: 1.4;
}
.compare-table td {
  padding: var(--size-200) var(--size-200);
  color: var(--color-ink);
  vertical-align: middle;
  text-align: center;
  font-weight: 500;
  line-height: 1.45;
  height: 56px;  /* uniform row height keeps columns visually aligned */
}
.compare-table td.compare-table__highlight-col {
  background: var(--color-cta-light);
  font-weight: 600;
  color: var(--color-ink);
  border-left: 2px solid rgba(241, 101, 34, .35);
  border-right: 2px solid rgba(241, 101, 34, .35);
}
.compare-table thead th.compare-table__highlight-col {
  border-left: 2px solid var(--color-cta-hover);
  border-right: 2px solid var(--color-cta-hover);
}
.compare-table__feature-col { width: 200px; }
.compare-table__rating {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1f4f7f 100%);
  color: var(--color-grey-900);
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(10, 37, 64, .2);
}
.compare-table__button {
  font-family: var(--main-font-family);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-grey-900);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--border-radius-small);
  padding: var(--size-100) var(--size-200);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.compare-table__button:hover {
  background: var(--color-primary);
  color: var(--color-grey-900);
}

/* ── BEST VPS FOR 2026 — EXPERT ANALYSIS ── */
.best-vps-2026 {
  background: var(--color-grey-900);
  border: 1px solid var(--color-grey-300);
  border-radius: var(--border-radius-large);
  padding: var(--size-600) var(--size-700);
  margin-bottom: var(--size-800);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.best-vps-2026::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-cta) 100%);
  border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}
.best-vps-2026__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: var(--size-300);
  letter-spacing: -0.8px;
}
.best-vps-2026__lede {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--color-black-300);
  margin-bottom: var(--size-300);
  padding-bottom: var(--size-400);
  border-bottom: 1px solid var(--color-grey-300);
  font-weight: 400;
}

/* ── EXPERT ANALYSIS TABLE OF CONTENTS (CRO upgrade) ──
   Forbes Advisor / NYT Wirecutter pattern. Two-column anchor list that
   lets readers jump to the section they care about. Signals depth and
   improves time-on-page (a known ranking + conversion signal). */
.expert-toc {
  background: var(--color-grey-900);
  border: 1px solid var(--color-grey-300);
  border-left: 3px solid var(--color-cta);
  border-radius: var(--border-radius);
  padding: var(--size-250) var(--size-300);
  margin-bottom: var(--size-500);
}
.expert-toc__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-cta);
  margin-bottom: var(--size-150);
}
.expert-toc__list {
  margin: 0;
  padding: 0 0 0 var(--size-250);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px var(--size-400);
  font-size: 14.5px;
  color: var(--color-black-300);
}
.expert-toc__list li { line-height: 1.5; }
.expert-toc__list a {
  color: var(--color-link);
  text-decoration: none;
  transition: color .15s;
  border-bottom: 1px solid transparent;
}
.expert-toc__list a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.best-vps-2026__content {
  display: flex;
  flex-direction: column;
  gap: var(--size-500);
}
.best-vps-2026__block {
  position: relative;
  padding-left: var(--size-300);
  border-left: 3px solid var(--color-grey-300);
  scroll-margin-top: 80px;  /* clear the sticky header on anchor jumps */
}
.best-vps-2026__block:hover { border-left-color: var(--color-cta); }
.best-vps-2026__subtitle {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--size-150);
  letter-spacing: -0.4px;
}
.best-vps-2026__block p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-black-300);
}

/* ── LEGAL PAGES (privacy / terms / cookies) ──
   Single-column long-form reading layout. Reuses header / footer /
   sticky-footer from styles already defined above so legal pages share
   the exact same chrome as index.html. */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--size-500) var(--page-padding) var(--size-800);
}
.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-ink);
  margin-bottom: var(--size-100);
  line-height: 1.15;
}
.legal-page__updated {
  display: block;
  font-size: 14px;
  color: var(--color-black-700);
  margin-bottom: var(--size-400);
  padding-bottom: var(--size-300);
  border-bottom: 1px solid var(--color-grey-300);
}
.legal-page__intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-black-300);
  margin-bottom: var(--size-500);
}
.legal-page__section { margin-bottom: var(--size-500); }
.legal-page__section:last-child { margin-bottom: 0; }
.legal-page__section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--size-200);
  letter-spacing: -0.4px;
  scroll-margin-top: 80px;
}
.legal-page__section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-black-300);
  margin-bottom: var(--size-200);
}
.legal-page__section p:last-child { margin-bottom: 0; }
.legal-page__section ul {
  list-style: disc;
  padding-left: var(--size-300);
  margin: var(--size-150) 0 var(--size-200);
}
.legal-page__section li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black-300);
  margin-bottom: var(--size-100);
}
.legal-page__section a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page__section a:hover { color: var(--color-primary); }
.legal-page__section strong { color: var(--color-ink); font-weight: 700; }

/* ── PROVIDER DEEP-DIVE DIALOG ──
   Perfectly centered in the viewport. The browser's default
   `margin: auto` on top-layer <dialog> was pinning to top here
   because our wrapper is a flex column with max-height — explicit
   fixed positioning + translate(-50%, -50%) is the reliable fix. */
.provider-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  background: var(--color-grey-900);
  border: none;
  border-radius: var(--border-radius-large);
  padding: 0;
  width: calc(100% - var(--size-400));
  max-width: 720px;
  max-height: calc(100vh - var(--size-500));
  overflow: hidden;
  box-shadow: var(--shadow-dialog);
  z-index: 9999;
  color: var(--color-black-100);
}
.provider-dialog[open] {
  display: flex;
  flex-direction: column;
  background: var(--color-grey-900);
}
.provider-dialog::backdrop {
  background: rgba(10, 22, 40, 0.62);
  backdrop-filter: blur(3px);
}
.provider-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-200);
  padding: var(--size-300) var(--size-400);
  background: linear-gradient(180deg, var(--color-primary-soft) 0%, var(--color-grey-900) 100%);
  border-bottom: 1px solid var(--color-grey-300);
  position: relative;
}
.provider-dialog__brand {
  display: flex;
  align-items: center;
  gap: var(--size-250);
}
.provider-dialog__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.provider-dialog__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: var(--size-50);
}
.provider-dialog__rating {
  display: flex;
  align-items: center;
  gap: var(--size-100);
  font-size: 13px;
  color: var(--color-black-700);
}
.provider-dialog__rating .rating__number {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
.provider-dialog__rating .stars {
  font-size: 14px;
  color: var(--color-yellow-100);
}
.provider-dialog__rating .stars .empty { color: var(--color-grey-300); }
.provider-dialog__rating .rating__text {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-black-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.provider-dialog__body {
  padding: var(--size-400);
  overflow-y: auto;
  flex: 1;
  background: var(--color-grey-900);
}
.provider-dialog__section {
  margin-bottom: var(--size-400);
}
.provider-dialog__section:last-child { margin-bottom: 0; }
.provider-dialog__section-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-cta);
  margin-bottom: var(--size-200);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: var(--size-100);
  border-bottom: 2px solid var(--color-grey-300);
}
.provider-dialog__section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--color-cta);
}
.provider-dialog__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--size-150);
}
.provider-dialog__list li {
  position: relative;
  padding-left: var(--size-400);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-black-300);
}
.provider-dialog__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%2312b76a'/%3E%3Cpath d='M6 10.3l2.5 2.5 5.5-5.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.provider-dialog__section p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-black-300);
}

/* ── HOSTINGER BOOST BANNER ── */
.hostinger-banner {
  display: block;
  text-decoration: none;
  background: linear-gradient(92deg, var(--color-cta) 0%, #ff8a4a 100%);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: var(--size-200);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hostinger-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 101, 34, 0.35);
}
.hostinger-banner__card {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  padding: 20px clamp(16px, 2.5vw, 32px);
}
.hostinger-banner__logo {
  flex-shrink: 0;
  height: 24px;
  width: auto;
}
.hostinger-banner__divider {
  width: 1px;
  height: 44px;
  background: var(--color-grey-300);
  flex-shrink: 0;
}
.hostinger-banner__stats {
  display: flex;
  justify-content: space-evenly;
  gap: clamp(8px, 2vw, 20px);
  flex: 1;
  min-width: 0;
}
.hostinger-banner__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  min-width: 0;
}
.hostinger-banner__stat-label {
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  color: var(--color-black-700);
  white-space: nowrap;
}
.hostinger-banner__stat-value {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.1;
  white-space: nowrap;
}
.hostinger-banner__star {
  color: #f59e0b;
}
.hostinger-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font-family);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.1px;
  color: var(--color-grey-900);
  background: var(--color-primary);
  border: none;
  border-radius: var(--border-radius-small);
  padding: var(--size-150) clamp(12px, 1.8vw, var(--size-200));
  min-height: 50px;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .2s;
  box-shadow: 0 1px 2px rgba(10, 37, 64, .25);
}
.hostinger-banner:hover .hostinger-banner__cta {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(10, 37, 64, .3);
}
