/* ============================================================
   BestVPNs — Cybernews layout replica (light theme)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-black-100: #111;
  --color-black-300: #353535;
  --color-black-700: #666;
  --color-blue-500: #004cff;
  --color-yellow-100: #ffc700;
  --color-yellow-500: #ffee96;
  --color-yellow-700: #fff5be;
  --color-grey-500: #d8d8d8;
  --color-grey-700: #f2f2f2;
  --color-grey-900: #fff;
  --color-green-100: #00bf47;
  --color-indigo-100: #5d48f3;

  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 16px;
  --border-radius-max: 9999px;

  --size-50: 4px;
  --size-100: 8px;
  --size-150: 12px;
  --size-200: 16px;
  --size-300: 24px;
  --size-400: 32px;
  --size-500: 40px;
  --size-600: 48px;
  --size-700: 64px;

  --main-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  font-family: var(--main-font-family);
  color: #e0e0e6;
  background: #0a0a0f;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
img { max-width: 100%; display: block; }
dl, dt, dd { margin: 0; }

/* ---------- Disclaimer bar ---------- */
.disclaimer-bar {
  background: #12121e;
  border-bottom: 1px solid #1e1e35;
  padding: var(--size-100) var(--size-200);
  text-align: center;
  font-size: 13px;
  color: #8888aa;
}
.disclaimer-bar a { color: #4da3ff !important; }
  line-height: 1.5;
}

/* ---------- Header ---------- */
.header {
  background: #0f0f18;
  border-bottom: 1px solid #1e1e35;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--size-200);
  max-width: 1260px;
  margin: 0 auto;
}
.header__logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
}
.header__logo-text span {
  background: linear-gradient(135deg, #4da3ff, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header__disclosure-btn {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.13px;
  background-color: transparent;
  color: var(--color-black-700);
  cursor: pointer;
  padding: var(--size-50) var(--size-150);
  border-radius: var(--border-radius-medium);
  transition: background-color 0.2s ease;
}
.header__disclosure-btn {
  color: #8888aa;
}
.header__disclosure-btn:hover { background: #1e1e35; }

/* ---------- Dialog overlay ---------- */
.dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.dialog-overlay.active { display: flex; }
.dialog {
  background: var(--color-grey-900);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  max-width: 734px;
  width: calc(100% - 32px);
  padding: var(--size-300);
  max-height: 90vh;
  overflow-y: auto;
}
.dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--size-300);
}
.dialog__title {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.28px;
  margin: 0;
}
.dialog__close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: background 0.2s;
}
.dialog__close:hover { background: var(--color-grey-700); }
.dialog__body h4 { font-size: 15px; font-weight: 600; margin: 16px 0 6px; }
.dialog__body h4:first-child { margin-top: 0; }
.dialog__body p { font-size: 14px; line-height: 22px; color: var(--color-black-300); margin: 0 0 12px; }

/* ---------- Main container ---------- */
.main {
  padding-right: var(--size-200);
  padding-left: var(--size-200);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) { .main { max-width: 540px; } }
@media (min-width: 768px) { .main { max-width: 720px; } }
@media (min-width: 992px) { .main { max-width: 960px; } }
@media (min-width: 1200px) { .main { max-width: 1140px; } }
@media (min-width: 1400px) { .main { max-width: 1320px; } }

/* ---------- Hero ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--size-600);
  margin-bottom: var(--size-300);
}
@media (min-width: 992px) {
  .hero {
    justify-content: center;
    margin: 0 auto var(--size-400);
    max-width: 680px;
    padding-top: var(--size-400);
    text-align: center;
    width: 100%;
  }
  .hero__wrapper { align-items: center; flex: 1 1 auto; gap: var(--size-300); }
  .hero__title { font-size: 48px; line-height: normal; }
}
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    gap: var(--size-200);
    margin-top: var(--size-400);
    align-items: flex-start;
  }
}
@media (max-width: 767px) { .hero { margin-top: var(--size-300); } }

.hero__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--size-200);
  text-align: center;
}

.hero__date-badge {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--size-100);
  font-family: var(--main-font-family);
  color: #e0e0e6;

  /* with-badge style */
  align-items: center;
  border: 1px solid #1e1e35;
  border-radius: var(--border-radius-max);
  column-gap: var(--size-100);
  padding: var(--size-50) 20px var(--size-50) var(--size-50) !important;
}

.hero__verified-badge {
  display: flex;
  align-items: center;
  background: #1e1e35;
  color: #4da3ff;
  border-radius: var(--border-radius-max);
  column-gap: var(--size-100);
  padding: var(--size-100) var(--size-150);
  font-size: 13px;
  gap: 6px;
}
.hero__verified-badge img { width: 16px; height: 16px; filter: invert(1); }

.hero__title {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0;
}
@media (max-width: 991px) { .hero__title { font-size: 32px; line-height: 42px; } }

.hero__text {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #9999b0;
  margin: 0;
}

/* ---------- Number badge ---------- */
.number-badge {
  align-items: center;
  border-radius: var(--border-radius-large);
  background-color: #1a1a2e;
  color: #4da3ff;
  display: flex;
  padding: var(--size-150);
  place-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  font-weight: 700;
  font-size: 16px;
}

/* ---------- Label badges ---------- */
.label {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.13px;
  display: inline-flex;
  padding: var(--size-50) var(--size-150);
  justify-content: center;
  align-items: center;
  gap: var(--size-100);
  border-radius: var(--border-radius-small);
  white-space: nowrap;
}
.label--black { background-color: var(--color-black-100); color: var(--color-grey-900); }
.label--yellow { background-color: var(--color-yellow-500); color: var(--color-black-100); }
.label--gray { background-color: var(--color-grey-700); }

/* ---------- LINEUP ITEM (Card) ---------- */
.lineup-item-wrapper {
  display: block;
  color: inherit;
  text-decoration: none;
  margin-top: var(--size-200);
}
.lineup-item-wrapper:last-of-type { margin-bottom: var(--size-400); }
@media (min-width: 768px) { .lineup-item-wrapper:last-of-type { margin-bottom: var(--size-700); } }
.lineup-item-wrapper:hover .lineup-item__button {
  background-color: var(--color-black-300);
}

.lineup-item {
  display: grid;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--color-grey-500);
  background-color: var(--color-grey-900);
  position: relative;
  /* mobile: stacked */
  grid-template:
    "nudges nudges"
    "logo logo"
    "rating rating"
    "text text"
    / 40px auto;
  gap: var(--size-200);
  padding: var(--size-200);
}

@media (min-width: 768px) {
  .lineup-item {
    grid-template:
      "nudges nudges"
      "logo   rating"
      "sep    sep"
      "text   text"
      / 1fr 1fr;
    gap: var(--size-200);
    padding: var(--size-200);
  }
  .lineup-item__separator { display: block; }
}

@media (min-width: 992px) {
  .lineup-item {
    grid-template:
      "logo sep nudges rating"
      "logo sep text   rating"
      / 200px 2px auto 230px;
    gap: var(--size-200) 32px;
    padding: var(--size-400);
  }
  .lineup-item--no-label {
    grid-template:
      "logo sep text rating"
      / 200px 2px auto 230px;
  }
}

/* Separator (vertical line on desktop) */
.lineup-item__separator {
  display: none;
  grid-area: sep;
  border-right: 1px solid var(--color-grey-700);
}
@media (min-width: 768px) {
  .lineup-item__separator {
    display: block;
    grid-area: sep;
    border-right: none;
    border-top: 1px solid var(--color-grey-700);
    /* at 768px show as horizontal below logo/rating */
  }
}
@media (min-width: 992px) {
  .lineup-item__separator {
    border-top: none;
    border-right: 1px solid var(--color-grey-700);
  }
}

/* Logo wrapper */
.lineup-item__logo-wrapper {
  grid-area: logo;
  align-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup-item__logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  margin: auto;
}
@media (max-width: 991px) {
  .lineup-item__logo { height: 120px; width: auto; max-width: 168px; }
}

/* Nudge wrapper (rank + labels) */
.lineup-item__nudge-wrapper {
  grid-area: nudges;
  display: flex;
  align-items: center;
  align-content: center;
  gap: var(--size-100);
  align-self: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .lineup-item--no-label .lineup-item__nudge-wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 992px) {
  .lineup-item__number {
    position: absolute;
    left: 8px;
    top: 8px;
  }
}

/* Text wrapper (description + features) */
.lineup-item__text-wrapper {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--size-200);
  align-self: flex-start;
}
.lineup-item--no-label .lineup-item__text-wrapper { align-self: center; }

.lineup-item__description {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-black-100);
  margin: 0;
}

/* Feature list — 2-column grid on wide desktop */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 1;
  column-gap: var(--size-150);
  width: 100%;
}
@media (min-width: 1200px) { .feature-list { column-count: 2; } }

.feature-list__item {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-black-100);
  display: flex;
  align-items: flex-start;
  gap: var(--size-50);
  break-inside: avoid;
}
.feature-list__item:not(:first-child) { margin-top: var(--size-100); }
.feature-list__item::before {
  content: " ";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 50%;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.42638 19.4445C8.54166 19.9257 9.73333 20.1663 11.0014 20.1663C12.2694 20.1663 13.4611 19.9257 14.5764 19.4445C15.6917 18.9632 16.6618 18.3101 17.4868 17.4851C18.3118 16.6601 18.9649 15.69 19.4462 14.5747C19.9274 13.4594 20.1681 12.2677 20.1681 10.9997C20.1681 9.73162 19.9274 8.53995 19.4462 7.42467C18.9649 6.3094 18.3118 5.33926 17.4868 4.51426C16.6618 3.68926 15.6917 3.03613 14.5764 2.55488C13.4611 2.07363 12.2694 1.83301 11.0014 1.83301C9.73333 1.83301 8.54166 2.07363 7.42638 2.55488C6.31111 3.03613 5.34097 3.68926 4.51597 4.51426C3.69097 5.33926 3.03784 6.3094 2.55659 7.42467C2.07534 8.53995 1.83472 9.73162 1.83472 10.9997C1.83472 12.2677 2.07534 13.4594 2.55659 14.5747C3.03784 15.69 3.69097 16.6601 4.51597 17.4851C5.34097 18.3101 6.31111 18.9632 7.42638 19.4445ZM9.71805 15.2163L16.1806 8.75384L14.8972 7.47051L9.71805 12.6497L7.10555 10.0372L5.82222 11.3205L9.71805 15.2163Z" fill="%234da3ff"/></svg>');
}

/* Rating wrapper */
.lineup-item__rating-wrapper {
  display: flex;
  gap: var(--size-100);
  flex-direction: column;
  grid-area: rating;
}

/* Rating block */
.rating-block {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: var(--size-200) var(--size-150);
  text-align: center;
}
.rating-block--highlighted {
  border-radius: var(--border-radius-small);
  background-color: var(--color-grey-700);
  padding: var(--size-200) var(--size-300);
}
@media (max-width: 991px) {
  .rating-block--highlighted {
    flex-direction: row;
    gap: var(--size-200);
  }
}

.rating-block__number {
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: var(--size-100);
  color: var(--color-black-100);
}
@media (max-width: 991px) { .rating-block__number { margin-bottom: 0; } }

.stars {
  align-items: center;
  color: var(--color-yellow-100);
  column-gap: var(--size-50);
  display: flex;
  font-size: 18px;
  line-height: 1;
  margin-bottom: var(--size-50);
  justify-content: center;
}

.rating-block__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-black-100);
}

/* Visit Site button */
.btn-visit {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  display: flex;
  min-height: 56px;
  padding: var(--size-150) var(--size-200);
  justify-content: center;
  align-items: center;
  gap: var(--size-100);
  align-self: stretch;
  border-radius: var(--border-radius-small);
  background-color: var(--color-black-100);
  color: var(--color-grey-900);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
  border: none;
}
.lineup-item__button { margin-top: auto; }
.btn-visit:hover { background-color: var(--color-black-300); }

/* Price subtext in button area */
.btn-price {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-black-700);
  text-align: center;
}
.btn-price s {
  margin-right: 4px;
  color: var(--color-black-700);
}
.btn-price strong {
  color: var(--color-black-100);
  font-weight: 600;
}

/* ---------- FAQ Section ---------- */
.faq {
  margin-bottom: var(--size-400);
  border-radius: var(--border-radius-large);
  background: #12121e;
  padding: var(--size-500);
}
@media (max-width: 991px) { .faq { padding: var(--size-400); } }
@media (max-width: 575px) { .faq { padding: var(--size-200); } }
@media (min-width: 768px) { .faq { margin-bottom: var(--size-700); } }

.faq__title {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 var(--size-300);
}
@media (min-width: 768px) { .faq__title { margin-bottom: var(--size-600); } }

.faq__items {
  display: flex;
  flex-direction: column;
  gap: var(--size-100);
}

.faq__item {
  background-color: #1a1a2e;
  border-radius: var(--border-radius-medium);
  width: 100%;
}

.faq__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--size-300);
  cursor: pointer;
  border-radius: var(--border-radius-medium);
  gap: var(--size-100);
  font-family: var(--main-font-family);
  background: none;
  border: none;
}

.faq__question {
  color: #e0e0e6;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
}

.faq__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--size-300);
  min-height: var(--size-300);
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq__arrow { filter: invert(1); }
.faq__arrow.open { transform: rotate(180deg); }

.faq__answer-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}
.faq__answer-wrapper.open { max-height: 500px; }

.faq__answer {
  padding: 0 var(--size-300) var(--size-300);
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #9999b0;
}

/* ---------- Editor's Picks ---------- */
.editors-pick {
  padding: var(--size-700) 0;
  position: relative;
}
.editors-pick::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #0f0f18;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  left: 50%;
}
@media (max-width: 767px) { .editors-pick { padding: var(--size-400) 0; } }

.editors-pick__title {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: #fff;
  margin: 0 0 var(--size-50);
}

.editors-pick__content {
  display: grid;
  column-gap: var(--size-300);
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--size-400);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-left: auto;
  margin-right: auto;
}
.editors-pick__content::-webkit-scrollbar { display: none; }
@media (max-width: 767px) { .editors-pick__content { margin-top: var(--size-200); } }

/* Pick card */
.pick-card {
  background-color: var(--color-grey-900);
  border-radius: var(--border-radius-medium);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: var(--size-300);
  row-gap: var(--size-300);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 767px) { .pick-card { padding: var(--size-200); row-gap: var(--size-200); min-width: 312px; } }
.pick-card:hover .pick-card__btn--black { background-color: var(--color-black-300); }

.pick-card__header {
  align-items: center;
  display: flex;
  gap: var(--size-100);
}
@media (max-width: 767px) { .pick-card__header { align-items: flex-start; flex-direction: column; } }

.pick-card__labels { display: flex; gap: var(--size-100); flex-wrap: wrap; }

.pick-card__rating-wrapper {
  align-items: center;
  display: grid;
  gap: var(--size-200);
  grid-template-columns: 1fr 1px 1fr;
}

.pick-card__separator {
  background-color: var(--color-grey-500);
  height: 100%;
  width: 1px;
}
.pick-card__separator--h { width: 100%; height: 1px; }

.pick-card__logo {
  padding: var(--size-100) var(--size-300);
  object-fit: contain;
  max-width: 162px;
  height: 128px;
}
@media (max-width: 767px) {
  .pick-card__logo { box-sizing: content-box; height: auto; padding: var(--size-100); width: 112px; }
}

.pick-card__rating { padding: var(--size-200) var(--size-150); }
@media (max-width: 767px) { .pick-card__rating { padding: 0; } }

.pick-card__description {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-black-300);
  flex-grow: 1;
}

/* Description list (key features in picks) */
.desc-list {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.desc-list__item {
  align-items: center;
  column-gap: var(--size-100);
  display: flex;
  justify-content: space-between;
}
.desc-list__item:not(:first-child) {
  border-top: 1px solid var(--color-grey-500);
  margin-top: var(--size-100);
  padding-top: var(--size-100);
}
.desc-list__label { font-weight: 400; color: #444; }
.desc-list__value { font-weight: 600; text-align: right; color: #111; }

.pick-card__btn--black {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  min-height: 56px;
  padding: var(--size-150) var(--size-200);
  justify-content: center;
  align-items: center;
  gap: var(--size-100);
  border-radius: var(--border-radius-small);
  background-color: var(--color-black-100);
  color: var(--color-grey-900);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}
.pick-card__btn--black:hover { background-color: var(--color-black-300); }

/* Editor's pick dots (mobile) */
.editors-pick__dots {
  column-gap: var(--size-100);
  display: flex;
  justify-content: center;
  margin-top: var(--size-200);
}
@media (min-width: 768px) { .editors-pick__dots { display: none; } }
.editors-pick__dot {
  background-color: var(--color-grey-500);
  height: 3px;
  width: 16px;
}
.editors-pick__dot--active { background-color: #4da3ff; }

/* ---------- Sticky footer bar ---------- */
.sticky-footer {
  width: 100%;
  border: 2px solid var(--color-black-100);
  border-radius: var(--border-radius-medium);
  background-color: var(--color-grey-900);
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  position: fixed;
  bottom: -520px;
  transition: bottom 0.3s ease-in-out;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: var(--size-200) var(--size-300);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--size-200) * 2);
  text-decoration: none;
  color: inherit;
  z-index: 100;
}
@media (min-width: 576px) { .sticky-footer { max-width: 508px; } }
@media (min-width: 768px) { .sticky-footer { max-width: 688px; } }
@media (min-width: 992px) { .sticky-footer { max-width: 928px; } }
@media (min-width: 1200px) { .sticky-footer { max-width: 1108px; } }
@media (min-width: 1400px) { .sticky-footer { max-width: 1288px; } }
@media (max-width: 767px) { .sticky-footer { padding: var(--size-150) var(--size-200); } }

.sticky-footer:hover .sticky-footer__button { background-color: var(--color-black-300); }
.sticky-footer.visible { bottom: 20px; }

.sticky-footer__left {
  display: flex;
  align-items: center;
}
.sticky-footer__logo {
  padding-right: var(--size-200);
  display: flex;
  flex-direction: column;
}
.sticky-footer__logo img {
  max-height: 64px;
  max-width: 180px;
  height: 100%;
  width: 100%;
  min-width: 64px;
}
@media (max-width: 767px) { .sticky-footer__logo img { max-width: 64px; } }

.sticky-footer__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--size-100);
  border-left: 1px solid var(--color-grey-700);
  padding: 0 var(--size-200);
  color: var(--color-black-100);
  min-height: 64px;
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.sticky-footer__badges {
  display: flex;
  flex-direction: row;
  gap: var(--size-100);
  align-items: center;
}
.sticky-footer__title { font-size: 14px; }
.sticky-footer__mini-rating {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.13px;
  display: inline-flex;
  flex-direction: row;
  padding: var(--size-50) var(--size-100);
  justify-content: center;
  align-items: center;
  gap: var(--size-50);
  border-radius: var(--border-radius-small);
  border: 1px solid var(--color-grey-500);
  background-color: var(--color-grey-900);
  font-family: var(--main-font-family);
  color: var(--color-black-100);
}
.sticky-footer__button-wrapper { flex-grow: 0; }
@media (max-width: 991px) { .sticky-footer__button-wrapper { display: none; } }

.sticky-footer__button {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-grey-900);
  min-height: unset;
  padding: var(--size-150) var(--size-300);
  display: flex;
  align-items: center;
  gap: var(--size-100);
  background: var(--color-black-100);
  border-radius: var(--border-radius-small);
  transition: background 0.2s;
}

/* ---------- Footer ---------- */
.footer {
  padding: var(--size-400) var(--size-200) var(--size-700);
  border-top: 1px solid #1e1e35;
  background: #0a0a0f;
}
.footer__inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--size-200);
}
.footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-150);
}
.footer__link {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-black-700);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.footer__link {
  color: #8888aa;
}
.footer__link:hover { color: #fff; text-decoration: underline; }
.footer__copy {
  font-size: 13px;
  color: #555570;
}

/* ========== Legal Pages ========== */
.site-header {
  background: #0f0f18;
  border-bottom: 1px solid #1e1e35;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.header-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.header-logo span {
  background: linear-gradient(135deg, #4da3ff, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-badges { display: flex; gap: 8px; }
.badge {
  background: #1a1a2e;
  color: #8888aa;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #252540;
}
.header-nav { display: flex; gap: 16px; margin-left: auto; }
.header-nav a { color: #8888aa; text-decoration: none; font-size: 14px; }
.header-nav a:hover { color: #4da3ff; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  color: #e0e0e6;
}
.legal-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e0e0e6;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #9999b0;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  color: #9999b0;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: #4da3ff; }
.legal-content a:hover { text-decoration: underline; }
.legal-date {
  font-size: 14px;
  color: #555570;
  margin-bottom: 32px;
}
.legal-content strong { color: #e0e0e6; }

.site-footer {
  background: #0a0a0f;
  border-top: 1px solid #1e1e35;
  padding: 24px;
  text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; }
.footer-links a { color: #8888aa; font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.site-footer p { color: #555570; font-size: 12px; }
