:root {
    --bg: #ffffff;
    --bg-soft: #f6f6f7;
    --bg-card: #ffffff;
    --text: #111113;
    --muted: #606168;
    --line: #e8e8eb;
    --line-strong: #d4d4d8;
    --red: #b40018;
    --red-dark: #8f0013;
    --red-soft: #fff1f3;
    --black: #050506;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.06);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 16px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--black);
    color: #fff;
    border-radius: 10px;
}

.skip-link:focus {
    left: 16px;
}

.topline {
    background: var(--black);
    color: #fff;
    font-size: 13px;
}

.topline__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    text-align: center;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--red);
    display: inline-block;
    flex: 0 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 23px;
}

.brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--black), var(--red));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(180, 0, 24, 0.22);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: #2c2d31;
}

.nav a {
    position: relative;
    padding: 10px 0;
    transition: color .18s ease;
}

.nav a:hover {
    color: var(--red);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge {
    padding: 8px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 24px rgba(180, 0, 24, .20);
}

.btn--red:hover {
    background: var(--red-dark);
}

.btn--dark {
    background: var(--black);
    color: #fff;
}

.btn--ghost {
    border-color: var(--line-strong);
    background: #fff;
    color: var(--text);
}

.btn--wide {
    min-width: 220px;
}

.menu-btn {
    display: none;
    border: 1px solid var(--line-strong);
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 900;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 36px;
    border-bottom: 1px solid var(--line);
}

.hero:before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(180, 0, 24, .14), rgba(180, 0, 24, 0) 68%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-soft);
    color: var(--red-dark);
    border: 1px solid #ffd6dc;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

h1,
h2,
h3 {
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.045em;
}

h1 {
    margin-top: 18px;
    font-size: clamp(38px, 6vw, 54px);
    max-width: 820px;
}

.hero__lead {
    max-width: 735px;
    margin: 22px 0 0;
    font-size: 19px;
    color: #404148;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__notice {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: var(--radius-sm);
    background: #111113;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.notice-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.hero__notice strong {
    display: block;
    margin-bottom: 4px;
}

.hero__notice p {
    margin: 0;
    color: #e7e7ea;
}

.hero-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card__image {
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.hero-card__body {
    padding: 24px;
}

.score-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.mini-stat {
    padding: 14px 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-soft);
    text-align: center;
}

.mini-stat b {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.mini-stat span {
    font-size: 12px;
    color: var(--muted);
}

section {
    padding: 76px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    max-width: 850px;
}

.section-head p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-card,
.service-card,
.info-card,
.faq-item,
.razdevator-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
}

.trust-card {
    padding: 22px;
}

.trust-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--red-soft);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.trust-card p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

.rating-section {
    background: linear-gradient(180deg, #fff, #f9f9fa);
}

.rating-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    margin-bottom: 22px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: 1px solid var(--line-strong);
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    color: #303137;
    font-weight: 750;
    transition: .18s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card__media {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.service-card__media img {
    width: 100%;
}

.rank-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--black);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
}

.free-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}

.service-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.pill {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 9px;
}

.service-card p {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: 15px;
}

.service-list {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0 0 18px;
    list-style: none;
    font-size: 14px;
}

.service-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #33343a;
}

.service-list li:before {
    content: "✓";
    color: var(--red);
    font-weight: 900;
    flex: 0 0 auto;
}

.rating-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid var(--line);
}

.rating-score b {
    font-size: 28px;
    letter-spacing: -0.04em;
}

.rating-score span {
    color: var(--muted);
    font-size: 13px;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}

.main-top-cta {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.compare-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

th,
td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    background: #111113;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

tr:last-child td {
    border-bottom: 0;
}

td {
    color: #34353a;
}

td strong {
    color: var(--text);
}

.content-grid {
    align-items: start;
}

.razdevator-box {
    padding: 30px;
}

.razdevator-box h2,
.razdevator-box h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.razdevator-box h2:first-child {
    margin-top: 0;
}

.razdevator-box h2 {
    font-size: 34px;
}

.razdevator-box h3 {
    font-size: 24px;
}

.razdevator-box p {
    color: #3e3f45;
    margin: 0 0 16px;
}

.razdevator-box ul {
    margin: 0 0 18px;
    padding-left: 22px;
    color: #3e3f45;
}

.razdevator-box a {
    color: var(--red);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.toc {
    position: sticky;
    top: 104px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.toc h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.toc a {
    color: var(--muted);
    font-size: 14px;
}

.toc a:hover {
    color: var(--red);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    padding: 24px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-card p {
    margin: 0;
    color: var(--muted);
}

.safety {
    background: #111113;
    color: #fff;
}

.safety .section-head p {
    color: #d8d8dc;
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 24px;
    align-items: stretch;
}

.warning-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--red);
    min-height: 100%;
    box-shadow: 0 18px 60px rgba(180, 0, 24, .22);
}

.warning-card h3 {
    font-size: 30px;
    margin-bottom: 12px;
}

.warning-card p {
    margin: 0;
    color: #fff2f4;
}

.rules-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.rules-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.rules-list li {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    color: #f0f0f2;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border: 0;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-weight: 900;
    color: var(--text);
}

.faq-question span {
    font-size: 22px;
    color: var(--red);
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.footer {
    padding: 54px 0 28px;
    background: var(--black);
    color: #fff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, .7fr);
    gap: 28px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer p {
    color: #c7c7cc;
    margin: 14px 0 0;
    max-width: 520px;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer a {
    color: #d9d9dd;
    font-size: 14px;
}

.footer a:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: #a9a9b0;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .nav {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
    }

    .nav.is-open {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .hero__grid,
    .content-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .rating-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toc {
        position: static;
    }
}

@media (max-width: 760px) {
    .topline__inner {
        font-size: 12px;
    }

    .header__inner {
        min-height: 66px;
    }

    .brand {
        font-size: 19px;
    }

    .brand__mark {
        width: 34px;
        height: 34px;
    }

    .age-badge,
    .header__actions .btn {
        display: none;
    }

    .hero {
        padding: 46px 0 28px;
    }

    .hero__lead {
        font-size: 17px;
    }

    .hero__notice {
        grid-template-columns: 1fr;
    }

    section {
        padding: 54px 0;
    }

    .section-head {
        display: grid;
    }

    .rating-grid,
    .trust-grid,
    .info-grid,
    .rules-list,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        display: grid;
    }

    .btn--wide {
        width: 100%;
    }

    .score-row {
        grid-template-columns: 1fr;
    }

    .razdevator-box {
        padding: 22px;
    }

    .razdevator-box h2 {
        font-size: 28px;
    }
}