:root {
  --navy-950: #071832;
  --navy-900: #0a2144;
  --navy-800: #0f2d57;
  --navy-700: #17406f;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --gray-950: #121826;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --amber: #f59e0b;
  --danger: #dc2626;
  --shadow: 0 18px 48px rgba(7, 24, 50, 0.12);
  --radius: 8px;
  --font-body: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-950);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--emerald-500);
  color: var(--navy-950);
  border-radius: var(--radius);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.age-bar {
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.9rem;
}

.age-bar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 28px;
  padding-inline: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.age-bar__icon {
  width: 20px;
  height: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(203, 213, 225, 0.68);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-stuck {
  box-shadow: 0 12px 36px rgba(7, 24, 50, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy-950);
  background: var(--gray-100);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-950);
  border-radius: 999px;
}

.breadcrumbs {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumbs span {
  margin-inline: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 24, 50, 0.98), rgba(15, 45, 87, 0.96)),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.18), transparent 30%);
  color: var(--white);
}

.hero--home {
  min-height: clamp(640px, 78vh, 760px);
  display: flex;
  align-items: center;
}

.hero--inner {
  margin-top: 18px;
  padding: 78px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 48px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--emerald-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.14;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  max-width: 900px;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  margin-top: 20px;
  max-width: 710px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero__actions,
.card-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--emerald-500);
  color: var(--navy-950);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.22);
}

.button--secondary {
  background: var(--navy-900);
  color: var(--white);
}

.button--ghost {
  background: var(--white);
  color: var(--navy-950);
  border-color: var(--gray-200);
}

.hero .button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 750;
}

.trust-strip img,
.check-list img,
.hero-panel__top img,
.feature-list img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.responsible-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.hero-panel,
.review-score-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.hero-panel__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 850;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.mini-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.mini-score strong {
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  border: 10px solid var(--emerald-500);
  border-radius: 50%;
  font-size: 2.7rem;
  margin: 0;
}

.text-link {
  color: var(--emerald-600);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.section {
  padding: 82px 0;
}

.section--soft {
  background: var(--gray-50);
}

.section--band {
  background: var(--navy-900);
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--gray-600);
}

.section--band .section-heading p,
.section--band p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.section-heading--split > p {
  max-width: 520px;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.operator-card {
  position: relative;
  display: flex;
  min-width: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 24, 50, 0.06);
}

.operator-card__rank {
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 950;
}

.operator-card__body {
  width: 100%;
  padding: 22px;
  padding-top: 66px;
}

.operator-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.operator-card h3 {
  font-size: 1.35rem;
}

.trust-meter {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border: 7px solid var(--emerald-500);
  border-radius: 50%;
  text-align: center;
  color: var(--navy-950);
}

.trust-meter strong {
  line-height: 1;
  font-size: 1.25rem;
}

.trust-meter span {
  font-size: 0.62rem;
  line-height: 1.05;
  font-weight: 900;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
}

.score-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
}

.score-pill {
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.score-pill__value {
  color: var(--navy-950);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.score-pill__label {
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.check-list--small {
  font-size: 0.92rem;
}

.offer-box {
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--emerald-100);
  color: var(--navy-950);
}

.offer-box span,
.offer-box small {
  display: block;
  color: var(--gray-700);
}

.offer-box strong {
  display: block;
  margin: 3px 0;
}

.two-column,
.editorial-grid,
.contact-grid,
.pros-cons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 42px;
}

.two-column--center {
  align-items: center;
}

.editorial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-block {
  max-width: 880px;
}

.editorial-block p,
.editorial-grid p,
.two-column p,
.legal-grid p {
  color: var(--gray-700);
}

.section--band .editorial-grid p,
.section--band .two-column p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-list article,
.info-card,
.profile-card,
.contact-form,
.pros-cons article,
.legal-grid article {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(7, 24, 50, 0.05);
}

.section--band .info-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-steps article {
  padding: 22px;
  border-left: 4px solid var(--emerald-500);
  background: var(--gray-50);
  border-radius: var(--radius);
}

.method-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--emerald-600);
  font-weight: 950;
}

.profile-list {
  display: grid;
  gap: 18px;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.62fr) minmax(260px, 0.78fr);
  gap: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag-row span {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--navy-950);
  font-size: 0.85rem;
}

.profile-card__metrics {
  display: grid;
  gap: 12px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.comparison-table caption {
  padding: 14px 18px;
  text-align: left;
  color: var(--gray-600);
  font-weight: 800;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-top: 1px solid var(--gray-200);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--navy-900);
  color: var(--white);
  border-top: 0;
}

.comparison-table td span {
  display: block;
  color: var(--gray-600);
  font-size: 0.86rem;
}

.comparison-table a {
  color: var(--navy-900);
  font-weight: 900;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  background: var(--emerald-600);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-panel {
  padding: 0 18px 18px;
  color: var(--gray-700);
}

.review-score-card {
  text-align: center;
}

.review-score-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.review-score-card strong {
  display: block;
  font-size: 5.2rem;
  line-height: 1;
  color: var(--emerald-500);
}

.pros-cons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font: inherit;
}

.checkbox-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 700;
  color: var(--gray-700);
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  color: var(--emerald-600);
  font-weight: 800;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.72fr));
  gap: 32px;
}

.footer-grid h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--emerald-500);
}

.footer-brand img {
  margin-bottom: 16px;
}

.affiliate-note {
  border-left: 3px solid var(--emerald-500);
  padding-left: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 960px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--emerald-500);
  color: var(--navy-950);
  font-size: 1.35rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(7, 24, 50, 0.2);
}

.back-to-top.is-visible {
  display: block;
}

@media (max-width: 1060px) {
  .operator-grid,
  .feature-list--four,
  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    min-height: 44px;
  }

  .hero--home {
    min-height: auto;
    padding: 64px 0;
  }

  .hero--inner {
    padding: 56px 0;
  }

  .hero__grid,
  .two-column,
  .editorial-grid,
  .contact-grid,
  .pros-cons,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    display: block;
  }

  .operator-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .footer-bottom,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 540px) {
  .container,
  .breadcrumbs {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 164px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .lead {
    font-size: 1.03rem;
  }

  .hero__actions,
  .card-actions,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-list--four,
  .method-steps,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .operator-card__head {
    display: grid;
  }

  .trust-meter {
    width: 84px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

#ranking .operator-logo {
  width: 130px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ranking .operator-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

#ranking .operator-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#ranking .operator-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  #ranking .operator-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 24, 50, 0.88), rgba(15, 45, 87, 0.76)),
    url("../images/hero-bg.jpg") center center / cover no-repeat;
  color: var(--white);
}

.brand {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  line-height: 1;
}

.footer-logos {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logos-grid img,
.footer-svg-18 {
  height: 42px;
  width: auto;
  display: block;
  opacity: .8;
  transition: opacity .2s ease;
}

.footer-svg-18 {
  fill: currentColor;
}

.footer-logos-grid a:hover img,
.footer-logos-grid a:hover .footer-svg-18 {
  opacity: 1;
}

.footer-logo-item {
  display: flex;
  align-items: center;
}