:root {
  --bg: #f4f7f8;
  --surface: #ffffff;
  --surface-soft: #e9f1f3;
  --ink: #142838;
  --ink-2: #263d4d;
  --muted: #53636d;
  --line: #dce7ea;
  --teal: #0d9488;
  --teal-dark: #0a6f68;
  --coral: #e8704f;
  --gold: #d6a334;
  --blue: #2f6f9f;
  --shadow: 0 14px 38px rgba(20, 40, 56, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.header-logo img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  border-color: var(--teal);
}

.age-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.age-dot {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--surface);
  background: var(--coral);
  font-size: 0.78rem;
}

.hero {
  min-height: 350px;
  display: grid;
  align-items: center;
  color: var(--surface);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 40, 56, 0.94) 0%, rgba(20, 40, 56, 0.76) 46%, rgba(20, 40, 56, 0.18) 100%), url("../img/hero.png") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 54px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #9ed7d1;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: 3.55rem;
  line-height: 1.08;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.warning-ribbon {
  background: #0e2231;
  color: var(--surface);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 10px 16px;
}

.disclosure {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #cbdde2;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: #f8fbfc;
  color: var(--ink-2);
  font-size: 0.93rem;
}

.main-area {
  padding: 34px 0 84px;
}

.operator-list {
  display: grid;
  gap: 16px;
}

.operator-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr 184px 200px;
  gap: 22px;
  align-items: center;
  min-height: 176px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.approval {
  position: absolute;
  top: 0;
  right: 0;
  max-width: calc(100% - 24px);
  padding: 5px 14px;
  color: var(--surface);
  background: var(--teal);
  border-radius: 0 var(--radius) 0 var(--radius);
  font-size: 0.66rem;
  font-weight: 900;
}

.brand-tile {
  display: grid;
  place-items: center;
  width: 132px;
  height: 112px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.brand-tile strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.brand-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.brand-tile.dark {
  background: #141414;
  color: var(--surface);
  border-color: #141414;
}

.brand-tile.vivid {
  background: #d9288f;
  color: var(--surface);
  border-color: #d9288f;
}

.operator-info h2,
.operator-info h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  color: var(--gold);
  font-weight: 900;
}

.rating small {
  color: var(--muted);
  font-size: 0.8rem;
}

.operator-info p {
  margin: 0 0 12px;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--ink-2);
  background: var(--surface-soft);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.offer {
  min-height: 114px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 18px;
  border-inline: 1px solid var(--line);
}

.offer span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer strong {
  display: block;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1.1;
}

.offer small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.card-actions {
  display: grid;
  gap: 9px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--surface);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.18);
  transform: translateY(-1px);
}

.btn.secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.btn.secondary:hover {
  background: var(--surface-soft);
  box-shadow: none;
}

.review-link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.review-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.section {
  margin-top: 76px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading::before {
  content: "";
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--teal);
}

.section-heading h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.18;
}

.analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(290px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.article-stack {
  display: grid;
  gap: 18px;
}

.article-card,
.criteria-card,
.resource-card,
.faq-item,
.method-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-card {
  padding: 25px;
}

.article-card h3,
.criteria-card h3,
.resource-card h3,
.method-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.22;
}

.article-card p,
.criteria-card p,
.resource-card p,
.method-card p,
.text-page p {
  color: var(--muted);
}

.article-card p:last-child,
.criteria-card p:last-child,
.resource-card p:last-child,
.method-card p:last-child {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  color: var(--ink-2);
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--surface);
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.sidebar {
  display: grid;
  gap: 18px;
}

.trust-panel {
  padding: 25px;
  color: #d7e4e8;
  background: var(--ink);
  border-radius: var(--radius);
}

.trust-panel h3 {
  margin: 0 0 12px;
  color: var(--surface);
}

.trust-panel p {
  margin: 0 0 16px;
}

.trust-mark {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: #9ed7d1;
  border: 1px solid rgba(158, 215, 209, 0.48);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.media-panel {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.media-panel img {
  width: 100%;
  height: 142px;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 17px;
}

.media-panel h3 {
  margin: 0 0 8px;
}

.media-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.criteria-card {
  padding: 24px;
}

.criteria-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--surface);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
}

.criteria-card:nth-child(2) .criteria-icon {
  background: var(--teal);
}

.criteria-card:nth-child(3) .criteria-icon {
  background: var(--coral);
}

.editorial-band {
  margin-top: 76px;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 52px;
  align-items: center;
  padding: 58px 0;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-card {
  padding: 20px;
  background: #f8fbfc;
}

.editorial-visual img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.fiscal-band {
  margin-top: 76px;
  padding: 36px;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 38px;
  align-items: center;
  color: var(--ink);
  background: #dfe8ed;
  border-radius: var(--radius);
}

.fiscal-band h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.16;
}

.fiscal-band p {
  margin: 0 0 12px;
  color: var(--ink-2);
}

.faq-section {
  max-width: 820px;
  margin: 76px auto 0;
}

.faq-section h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 2.15rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--teal);
  font-size: 1.4rem;
  line-height: 1;
}

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

.faq-item div {
  padding: 0 22px 22px;
  color: var(--muted);
}

.responsible-band {
  padding: 46px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
}

.responsible-grid h2 {
  margin: 0 0 8px;
}

.responsible-grid p {
  margin: 0;
  color: var(--muted);
}

.phone-card {
  display: grid;
  gap: 2px;
  text-align: center;
}

.phone-card strong {
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.1;
}

.phone-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 46px 0;
  background: #102431;
  color: #d7e4e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-logo {
  width: 172px;
  padding: 8px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--surface);
}

.footer-left p {
  max-width: 510px;
  margin: 0 0 14px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(215, 228, 232, 0.25);
  border-radius: var(--radius);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-right a {
  color: #d7e4e8;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.copyright {
  color: #aebec5;
  font-size: 0.82rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(20, 40, 56, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.text-page {
  max-width: 880px;
  padding: 64px 0 84px;
}

.text-page h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.12;
}

.text-page h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.4rem;
}

.text-page ul {
  margin: 0 0 20px 20px;
  color: var(--muted);
}

.text-page li {
  margin-bottom: 8px;
}

.legal-note {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid #f1c6b6;
  border-left: 5px solid var(--coral);
  border-radius: var(--radius);
  background: #fff8f5;
}

.to-complete {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 5px;
  background: #fff0d2;
  color: #6d4a00;
  font-weight: 900;
}

@media (max-width: 980px) {
  .operator-card {
    grid-template-columns: 112px 1fr 180px;
  }

  .brand-tile {
    width: 112px;
  }

  .offer {
    display: none;
  }

  .analysis-grid,
  .editorial-grid,
  .fiscal-band,
  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .responsible-grid {
    text-align: center;
  }
}

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

  .header-nav {
    min-height: 64px;
  }

  .header-logo {
    min-width: 0;
  }

  .header-logo img {
    width: 145px;
  }

  .nav-links {
    display: none;
  }

  .age-pill {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .age-pill > span:not(.age-dot) {
    display: none;
  }

  .hero {
    min-height: 300px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(20, 40, 56, 0.98) 0%, rgba(20, 40, 56, 0.84) 100%), url("../img/hero.png") center / cover;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .section-heading h2,
  .faq-section h2 {
    font-size: 1.65rem;
  }

  .fiscal-band h2 {
    font-size: 1.55rem;
  }

  .text-page h1 {
    font-size: 2rem;
  }

  .warning-ribbon {
    font-size: 0.68rem;
  }

  .operator-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .approval {
    position: static;
    border-radius: 6px;
  }

  .brand-tile {
    width: 116px;
    height: 96px;
  }

  .rating,
  .tags {
    justify-content: center;
  }

  .card-actions {
    width: 100%;
  }

  .section,
  .editorial-band,
  .fiscal-band,
  .faq-section {
    margin-top: 54px;
  }

  .section-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .section-heading::before {
    margin-top: 13px;
    width: 32px;
  }

  .editorial-grid {
    padding: 42px 0;
    gap: 28px;
  }

  .fiscal-band {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-right {
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr;
    border-radius: 8px 8px 0 0;
  }

  .cookie-actions {
    display: grid;
  }
}
