:root {
  --blue: #2547d0;
  --blue-dark: #15245a;
  --blue-soft: #e9eef8;
  --coral: #ff6f61;
  --coral-dark: #d94d40;
  --white: #ffffff;
  --gray: #f4f6fa;
  --gray-2: #d9e0ee;
  --text: #1b2542;
  --muted: #60708f;
  --shadow: 0 18px 45px rgba(21, 36, 90, .12);
  --radius: 8px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 { font-family: Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.12; margin: 0 0 1rem; color: var(--blue-dark); letter-spacing: 0; }
h1 { font-size: clamp(2.15rem, 7vw, 4.55rem); }
h2 { font-size: clamp(1.55rem, 4.5vw, 2.45rem); }
h3 { font-size: 1.1rem; }
table { border-collapse: collapse; width: 100%; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 32px, 820px); }
.skip-link { position: absolute; left: 1rem; top: -5rem; z-index: 1000; background: var(--blue); color: var(--white); padding: .75rem 1rem; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.top-info { background: var(--blue-dark); color: var(--white); font-size: .875rem; }
.top-info__inner { min-height: 42px; display: flex; align-items: center; gap: .65rem; }
.age-badge { display: inline-grid; place-items: center; min-width: 42px; height: 26px; border-radius: 999px; background: var(--coral); color: var(--white); font-weight: 800; }
.top-info__icon { color: var(--coral); font-size: .65rem; letter-spacing: 2px; }

.site-header { position: sticky; top: 0; z-index: 900; background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(37, 71, 208, .1); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(21, 36, 90, .1); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 164px; }

.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--gray-2); background: var(--white); border-radius: var(--radius); cursor: pointer; }
.nav-toggle__bar { width: 20px; height: 2px; background: var(--blue-dark); margin-inline: auto; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav { position: fixed; inset: 118px 16px auto; display: none; flex-direction: column; gap: .25rem; padding: .75rem; background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); box-shadow: var(--shadow); }
.main-nav.is-open { display: flex; }
.main-nav a { text-decoration: none; padding: .8rem 1rem; border-radius: 6px; color: var(--blue-dark); font-weight: 750; }
.main-nav a:hover, .main-nav a:focus, .main-nav a.is-active { background: var(--blue-soft); color: var(--blue); outline: none; }

.hero { padding: 4.5rem 0 3rem; background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%); overflow: hidden; }
.hero-grid, .platform-hero-grid { display: grid; gap: 2rem; align-items: center; }
.hero-copy > p, .page-hero p, .section-heading p { font-size: 1.08rem; color: var(--muted); max-width: 760px; }
.eyebrow { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .9rem; color: var(--coral-dark); text-transform: uppercase; font-size: .78rem; font-weight: 850; letter-spacing: .08em; }
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.hero-actions, .card-actions, .cookie-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: .72rem 1.05rem; border: 1px solid var(--blue); border-radius: var(--radius); background: var(--blue); color: var(--white); text-decoration: none; font-weight: 800; cursor: pointer; box-shadow: 0 10px 24px rgba(37, 71, 208, .18); }
.button:hover, .button:focus { background: #1f3ab0; outline: 3px solid rgba(37, 71, 208, .18); }
.button--secondary { background: var(--white); color: var(--blue); box-shadow: none; }
.button--ghost { background: var(--white); color: var(--blue-dark); border-color: var(--gray-2); box-shadow: none; }
.button--light { background: var(--white); border-color: var(--white); color: var(--blue); }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.trust-strip { display: grid; gap: .65rem; margin-top: 1.3rem; }
.trust-strip span { display: flex; align-items: center; gap: .45rem; padding: .8rem .9rem; background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); color: var(--muted); }
.trust-strip strong { color: var(--blue-dark); }
.hero-panel, .review-summary, .insight-box { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; }
.pulse-card { padding: 1.25rem; border-radius: var(--radius); background: var(--blue); color: var(--white); }
.pulse-card strong { display: block; font-size: 1.35rem; margin-bottom: .4rem; color: var(--white); }
.pulse-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 8px rgba(255, 111, 97, .22); margin-bottom: 1rem; }
.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: .9rem 0; }
.hero-stat-row div { background: var(--gray); padding: .95rem; border-radius: var(--radius); }
.hero-stat-row strong { display: block; color: var(--blue); font-size: 1.65rem; line-height: 1; }
.hero-stat-row span, .mini-feed p, .mini-list { color: var(--muted); font-size: .92rem; }
.mini-feed p { display: flex; gap: .55rem; margin-bottom: .65rem; }
.mini-feed span { flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); margin-top: .55rem; }

.page-hero { padding: 3.8rem 0 2.4rem; background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%); }
.platform-hero { background: linear-gradient(135deg, #f8fbff 0%, #eef3ff 100%); }
.section { padding: 3.4rem 0; }
.section--soft { background: var(--gray); }
.section--blue { background: var(--blue); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue p, .section--blue .eyebrow { color: var(--white); }
.section-heading { margin-bottom: 1.35rem; }
.split, .editorial-grid, .contact-grid, .faq-page-grid, .pros-cons, .popular-layout { display: grid; gap: 1.4rem; }

.card-grid { display: grid; gap: 1rem; }
.platform-card, .review-card, .ranking-card, .bonus-row, .steps article, .values-grid article, .community-stack article, blockquote { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); padding: 1rem; box-shadow: 0 10px 24px rgba(21, 36, 90, .06); }
.platform-card { position: relative; display: flex; flex-direction: column; gap: .9rem; min-height: 100%; }
.platform-card__rank { position: absolute; top: 1rem; right: 1rem; color: var(--coral-dark); font-weight: 900; }
.platform-card__head { display: flex; gap: .85rem; align-items: center; padding-right: 3rem; }
.platform-card__head h3 { margin-bottom: .15rem; }
.platform-card__head p { margin: 0; color: var(--muted); font-size: .92rem; }
.operator-mark { display: inline-grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: var(--radius); background: var(--blue-soft); color: var(--blue); font-weight: 900; }
.operator-mark--large { width: 72px; height: 72px; font-size: 1.4rem; margin-inline: auto; }
.score-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.score-grid div { padding: .8rem; border-radius: var(--radius); background: var(--gray); }
.score-grid strong { display: block; color: var(--blue); font-size: 1.55rem; line-height: 1; }
.score-grid span { display: block; color: var(--muted); font-size: .78rem; margin-top: .35rem; }
.offer { font-weight: 800; color: var(--blue-dark); }
.mini-list, .check-list, .warning-list { padding-left: 1.15rem; margin: 0; }
.mini-list li, .check-list li, .warning-list li { margin-bottom: .35rem; }
.check-list li::marker { color: var(--blue); }
.warning-list li::marker { color: var(--coral); }

.steps { display: grid; gap: .8rem; }
.steps span { display: inline-grid; place-items: center; width: 34px; height: 34px; background: var(--coral); color: var(--white); border-radius: 50%; font-weight: 900; margin-bottom: .65rem; }
.testimonial-grid { display: grid; gap: 1rem; }
blockquote { margin: 0; }
blockquote p { font-size: 1rem; }
cite { display: block; color: var(--blue); font-style: normal; font-weight: 800; }

.popular-layout { align-items: center; }
.popularity-bars { display: grid; gap: .8rem; }
.popularity-bars div { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radius); padding: .9rem; }
.popularity-bars span { display: block; margin-bottom: .5rem; font-weight: 800; }
.popularity-bars strong { display: block; width: var(--value); max-width: 100%; min-width: 4.4rem; background: var(--white); color: var(--blue); border-radius: 999px; padding: .35rem .65rem; text-align: right; }

.faq-preview, .faq-page-grid { display: grid; gap: 1.2rem; }
.faq-list { display: grid; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem; background: var(--white); border: 0; color: var(--blue-dark); cursor: pointer; text-align: left; font-weight: 850; }
.faq-question:focus { outline: 3px solid rgba(37, 71, 208, .2); outline-offset: -3px; }
.faq-answer { display: none; padding: 0 1rem 1rem; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.1rem; }
.filter-bar button { border: 1px solid var(--gray-2); background: var(--white); color: var(--blue-dark); padding: .6rem .85rem; border-radius: 999px; cursor: pointer; font-weight: 800; }
.filter-bar button.is-active, .filter-bar button:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.review-grid { display: grid; gap: 1rem; }
.stars { color: var(--coral); letter-spacing: 1px; }
.review-card footer { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--gray-2); padding-top: .8rem; color: var(--muted); }
.review-card[hidden] { display: none; }

.ranking-grid { display: grid; gap: 1rem; }
.ranking-card ol { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .65rem; }
.ranking-card li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .75rem; padding: .75rem; background: var(--gray); border-radius: var(--radius); }
.ranking-card li span, .bonus-rank { display: inline-grid; place-items: center; width: 34px; height: 34px; background: var(--blue); color: var(--white); border-radius: 50%; font-weight: 900; }
.ranking-card a { color: var(--blue); font-weight: 800; text-decoration: none; }

.table-wrap { overflow-x: auto; border: 1px solid var(--gray-2); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); }
.comparison-table th, .comparison-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--gray-2); vertical-align: top; min-width: 150px; }
.comparison-table th { background: var(--blue); color: var(--white); white-space: nowrap; }
.comparison-table td a { display: block; color: var(--blue); text-decoration: none; font-weight: 800; margin-top: .25rem; }

.bonus-list { display: grid; gap: 1rem; }
.bonus-row { display: grid; gap: 1rem; align-items: center; }
.category-cloud { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.category-cloud h2 { width: 100%; }
.category-cloud a { background: var(--white); color: var(--blue); border-radius: 999px; padding: .7rem .95rem; text-decoration: none; font-weight: 850; }
.values-grid, .community-stack { display: grid; gap: .9rem; }
.community-stack strong { display: block; color: var(--blue); font-size: 2rem; line-height: 1; }
.community-stack span { color: var(--muted); }

.contact-form, .contact-aside { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: .7rem; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid var(--gray-2); border-radius: var(--radius); padding: .75rem; background: var(--white); color: var(--text); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 3px solid rgba(37, 71, 208, .18); border-color: var(--blue); }
.checkbox { display: flex; gap: .6rem; align-items: flex-start; color: var(--muted); }
.legal-content { max-width: 860px; }
.legal-content h2 { margin-top: 1.5rem; }

.site-footer { background: #101a3e; color: #dfe6f5; padding: 3rem 0 1.2rem; }
.site-footer h2 { color: var(--white); font-size: 1rem; }
.site-footer a { display: block; color: #dfe6f5; text-decoration: none; margin-bottom: .45rem; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid { display: grid; gap: 1.5rem; }
.footer-brand img { background: var(--white); border-radius: var(--radius); padding: .25rem; margin-bottom: 1rem; }
.footer-warning { color: var(--white); font-weight: 800; }
.footer-contact { font-weight: 850; color: var(--white) !important; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 1.6rem; padding-top: 1rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; }

.back-to-top { position: fixed; right: 1rem; bottom: 1rem; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--coral); color: var(--white); font-weight: 900; box-shadow: var(--shadow); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; z-index: 920; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 930; display: none; gap: 1rem; align-items: center; justify-content: space-between; background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem; }
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { color: var(--muted); margin: .2rem 0 0; }
.placeholder-notice { position: fixed; left: 50%; bottom: 1rem; z-index: 940; width: min(420px, calc(100% - 32px)); transform: translate(-50%, 12px); opacity: 0; pointer-events: none; background: var(--blue-dark); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: .9rem 1rem; font-weight: 800; transition: opacity .2s ease, transform .2s ease; }
.placeholder-notice.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 700px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid, .pros-cons, .testimonial-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-row { grid-template-columns: auto 1fr auto; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
}

@media (min-width: 940px) {
  .nav-toggle { display: none; }
  .main-nav { position: static; display: flex; flex-direction: row; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .main-nav a { padding: .55rem .75rem; }
  .brand img { width: 188px; }
  .hero-grid, .platform-hero-grid { grid-template-columns: 1.12fr .88fr; }
  .split, .popular-layout, .faq-preview, .faq-page-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid--compact { grid-template-columns: repeat(4, 1fr); }
  .ranking-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { grid-template-columns: 1fr auto; left: 50%; right: auto; width: min(900px, calc(100% - 32px)); transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

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

.platform-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.operator-logo {
  width: 120px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.operator-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.86) 0%, rgba(255, 255, 255, 0.82) 100%),
    url("../images/hero-bg.jpg") center center / cover no-repeat;
}

.brand {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  line-height: 1;
}

.brand span {
  color: #22c55e;
}

.footer-logos {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.footer-logos-grid a,
.footer-logos-grid img {
  display: block;
}

.footer-logos-grid img {
  height: 40px;
  width: auto;
  opacity: .75;
  transition: opacity .2s ease;
}

.footer-logos-grid a:hover img {
  opacity: 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;
}