:root {
    --bg-main: #0c0a14;
    --bg-surface: #13101e;
    --bg-card: #1a1528;
    --bg-elevated: #221d33;
    --violet-deep: #2d1b69;
    --violet-mid: #5b34c7;
    --violet-bright: #7c4dff;
    --violet-glow: #a47aff;
    --violet-pale: #c9b3ff;
    --accent-hot: #ff3d71;
    --accent-warm: #ff6b35;
    --text-primary: #eae6f5;
    --text-secondary: #9e95b7;
    --text-muted: #6b6185;
    --border-subtle: rgba(124, 77, 255, .12);
    --border-active: rgba(124, 77, 255, .35);
    --font-display: 'DM Serif Text', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth; font-size: 16px }
body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--violet-glow); text-decoration: none; transition: color .2s }
a:hover { color: var(--violet-pale) }
img { max-width:100%; height: auto; display:block }
button { cursor: pointer; border: none; font-family: inherit }

.age_wall {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(5, 3, 12, .96);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.age_wall._hidden { display: none }
.age_wall--box {
    background: var(--bg-card);
    border: 1px solid var(--border-active);
    padding: 48px 40px;
    max-width: 460px;
    width: 92%;
    text-align: center;
}
.age_wall--emblem {
    font-family: var(--font-display);
    font-size: 3.4rem;
    color: var(--accent-hot);
    margin-bottom: 16px;
    line-height: 1;
}
.age_wall--heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary)
}
.age_wall--txt {
    font-size: .92rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6
}
.age_wall--actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap }
.age_wall--btn {
    padding: 14px 28px;
    font-size: .95rem;
    font-weight: 600;
    transition: all .2s;
}
.age_wall--btn._confirm {
    background: var(--violet-bright);
    color: #fff;
}
.age_wall--btn._confirm:hover { background: var(--violet-mid) }
.age_wall--btn._deny {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted)
}
.age_wall--btn._deny:hover { border-color: var(--accent-hot); color: var(--accent-hot) }

.ck_bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: 20px 0;
}
.ck_bar--inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
}
.ck_bar--text { flex: 1; min-width: 280px }
.ck_bar--text p { font-size: .88rem; color: var(--text-secondary); line-height: 1.5; margin: 0 }
.ck_bar--btns { display: flex; gap: 10px; flex-wrap: wrap }
.ck_bar--accept {
    background: var(--violet-bright); color: #fff;
    padding: 10px 22px; font-size: .88rem; font-weight: 600;
}
.ck_bar--accept:hover { background: var(--violet-mid) }
.ck_bar--settings {
    background: transparent;
    border: 1px solid var(--border-active);
    color: var(--violet-glow);
    padding: 10px 22px; font-size: .88rem; font-weight: 500;
}
.ck_bar--settings:hover { background: rgba(124,77,255,.08) }
.ck_bar--refuse {
    background: transparent;
    color: var(--text-muted);
    padding: 10px 22px; font-size: .88rem; font-weight: 500;
}
.ck_bar--refuse:hover { color: var(--text-secondary) }

.ck_modal {
    position: fixed; inset: 0; z-index: 9500;
    background: rgba(5, 3, 12, .85);
    display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.ck_modal._open { display: flex }
.ck_modal--panel {
    background: var(--bg-card);
    border: 1px solid var(--border-active);
    max-width: 520px; width: 92%;
    max-height: 85vh; overflow-y: auto;
}
.ck_modal--head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-subtle);
}
.ck_modal--head h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary)
}
.ck_modal--close {
    background: none; color: var(--text-muted);
    font-size: 1.6rem; line-height: 1; padding: 4px;
}
.ck_modal--close:hover { color: var(--text-primary) }
.ck_modal--body { padding: 24px 28px }
.ck_toggle_row {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.ck_toggle_row:last-child { border-bottom: none }
.ck_toggle_row--info { flex: 1 }
.ck_toggle_row--info strong {
    display: block;
    font-size: .92rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.ck_toggle_row--info span { font-size: .82rem; color: var(--text-muted); line-height: 1.4 }

.ck_switch {
    position: relative;
    display: inline-block;
    width: 46px; height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.ck_switch input { opacity:0; width:0; height:0 }
.ck_switch--slider {
    position: absolute; inset: 0;
    background: var(--bg-main);
    border: 1px solid var(--text-muted);
    transition: .25s;
    cursor: pointer;
}
.ck_switch--slider::before {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    left: 2px; bottom: 2px;
    background: var(--text-muted);
    transition: .25s;
}
.ck_switch input:checked + .ck_switch--slider {
    background: var(--violet-deep);
    border-color: var(--violet-bright);
}
.ck_switch input:checked + .ck_switch--slider::before {
    background: var(--violet-bright);
    transform: translateX(22px);
}
.ck_switch._locked { opacity: .6; pointer-events: none }

.ck_modal--foot {
    padding: 16px 28px 24px;
    border-top: 1px solid var(--border-subtle);
}
.ck_modal--save {
    width: 100%;
    background: var(--violet-bright);
    color: #fff;
    padding: 12px; font-size: .92rem; font-weight: 600;
}
.ck_modal--save:hover { background: var(--violet-mid) }

.topNav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 8000;
    background: rgba(12,10,20,.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background .3s;
}
.topNav_inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
.topNav_brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.topNav_logo {
    height: 32px; width: auto;
    filter: brightness(0) invert(1);
}
.topNav_sitename {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -.01em;
}
.topNav_links {
    display: flex; align-items: center; gap: 28px;
}
.topNav_link {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color .2s;
    position: relative;
}
.topNav_link:hover,
.topNav_link._active { color: var(--text-primary) }
.topNav_link._active::after {
    content: "";
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--violet-bright);
}
.topNav_burger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; padding: 8px;
}
.topNav_burger span {
    display: block; width: 22px; height: 2px;
    background: var(--text-primary);
    transition: all .25s;
}

.heroBlock {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.heroBlock_bg {
    position: absolute; inset: 0;
    z-index: -1;
}
.heroBlock_bgImg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .4;
}
.heroBlock_bg::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(45,27,105,.5) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(91,52,199,.2) 0%, transparent 60%),
        linear-gradient(175deg, rgba(12,10,20,.7) 0%, rgba(15,11,26,.65) 100%);
    z-index: 1;
}
.heroBlock_bg::after {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1' height='1' x='30' y='30' fill='%237c4dff' opacity='.07'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: 2;
}
.heroBlock_content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp .7s ease-out both;
}
@keyframes fadeUp {
    from { opacity:0; transform: translateY(30px) }
    to { opacity:1; transform: translateY(0) }
}
.heroBlock_tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--violet-glow);
    border: 1px solid var(--border-active);
    padding: 6px 18px;
    margin-bottom: 28px;
}
.heroBlock_h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.18;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 400;
}
.heroBlock_desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.heroBlock_ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }
.heroBlock_btn {
    padding: 14px 32px;
    font-size: .92rem;
    font-weight: 600;
    transition: all .2s;
    display: inline-block;
}
.heroBlock_btn._primary {
    background: var(--violet-bright);
    color: #fff;
}
.heroBlock_btn._primary:hover { background: var(--violet-mid) }
.heroBlock_btn._ghost {
    border: 1px solid var(--border-active);
    color: var(--violet-glow);
}
.heroBlock_btn._ghost:hover { background: rgba(124,77,255,.08) }
.heroBlock_scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    animation: bounceDown 2s ease-in-out infinite;
}
.heroBlock_scroll .material-icons { font-size: 2rem; color: var(--text-muted) }
@keyframes bounceDown {
    0%,100% { transform: translateX(-50%) translateY(0) }
    50% { transform: translateX(-50%) translateY(10px) }
}

.regBanner {
    background: #b71c1c;
    padding: 28px 24px;
}
.regBanner_inner {
    max-width: 1100px; margin: 0 auto;
    text-align: center;
}
.regBanner_txt {
    display: flex; align-items: center; justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.regBanner_icon {
    font-size: 1.8rem;
    color: rgba(255,255,255,.9);
}
.regBanner_msg {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    letter-spacing: .02em;
}
.regBanner_msg a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.regBanner_msg a:hover { opacity: .85 }
.regBanner_orgs {
    display: flex; align-items: center; justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.regBanner_orgLink {
    display: inline-block;
    opacity: .85;
    transition: opacity .2s;
}
.regBanner_orgLink:hover { opacity: 1 }
.regBanner_orgLink img {
    height: 32px; width: auto;
    filter: brightness(0) invert(1);
}

.trustCard {
    padding: 80px 24px;
    background: var(--bg-surface);
}
.trustCard_inner {
    max-width: 760px; margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-active);
    padding: 48px 44px;
    position: relative;
    text-align: center;
}
.trustCard_badge {
    position: absolute;
    top: -1px; right: 40px;
    background: var(--violet-bright);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 16px;
}
.trustCard_hero {
    margin-bottom: 28px;
    padding: 24px 0;
}
.trustCard_bigLogo {
    max-height: 72px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}
.trustCard_h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}
.trustCard_desc {
    font-size: .95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.trustCard_features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
}
.trustCard_feat {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
}
.trustCard_feat .material-icons {
    color: var(--violet-glow);
    font-size: 1.4rem;
    margin-top: 2px;
}
.trustCard_feat strong {
    display: block;
    font-size: .88rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.trustCard_feat span { font-size: .8rem; color: var(--text-muted); line-height: 1.4 }
.trustCard_actions {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}
.trustCard_cta {
    display: inline-block;
    background: var(--accent-hot);
    color: #fff;
    padding: 16px 36px;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .2s;
}
.trustCard_cta:hover { background: #e0345f; color: #fff }
.trustCard_review {
    display: inline-block;
    border: 1px solid var(--border-active);
    color: var(--violet-glow);
    padding: 16px 32px;
    font-size: .92rem;
    font-weight: 600;
    transition: all .2s;
}
.trustCard_review:hover { background: rgba(124,77,255,.08); color: var(--violet-pale) }

.newsBlock {
    padding: 80px 24px;
    background: var(--bg-main);
}
.newsBlock_inner { max-width: 1100px; margin: 0 auto }
.newsBlock_head { margin-bottom: 48px }
.newsBlock_h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-primary)
}
.newsBlock_lead { font-size: .95rem; color: var(--text-muted) }
.newsBlock_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.newsItem {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 32px 28px;
    transition: border-color .25s;
}
.newsItem:hover { border-color: var(--border-active) }
.newsItem_date {
    font-size: .78rem;
    color: var(--violet-glow);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.newsItem_title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.newsItem_excerpt {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.whyBlock {
    padding: 80px 24px;
    background: var(--bg-surface);
}
.whyBlock_inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.whyBlock_h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}
.whyBlock_p {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}
.whyBlock_p:last-child { margin-bottom: 0 }
.whyBlock_imgWrap { position: relative }
.whyBlock_img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
}
.whyBlock_imgCaption {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

.tmBlock {
    padding: 80px 24px;
    background: var(--bg-main);
}
.tmBlock_inner { max-width: 1100px; margin: 0 auto }
.tmBlock_h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
}
.tmBlock_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tmCard {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 32px 28px;
    transition: border-color .25s;
}
.tmCard:hover { border-color: var(--border-active) }
.tmCard_top {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
}
.tmCard_avatar {
    width: 48px; height: 48px;
    object-fit: cover;
    border: 2px solid var(--violet-deep);
    flex-shrink: 0;
}
.tmCard_name {
    display: block;
    font-size: .92rem;
    color: var(--text-primary);
}
.tmCard_loc {
    font-size: .78rem;
    color: var(--text-muted);
}
.tmCard_quote {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.faqBlock {
    padding: 80px 24px;
    background: var(--bg-surface);
}
.faqBlock_inner { max-width: 760px; margin: 0 auto }
.faqBlock_h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 36px;
    color: var(--text-primary);
    text-align: center;
}
.faqItem {
    border: 1px solid var(--border-subtle);
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color .2s;
}
.faqItem:hover { border-color: var(--border-active) }
.faqItem_q {
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.faqItem_q span:first-child {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-primary);
}
.faqItem_arrow {
    color: var(--text-muted);
    transition: transform .25s;
}
.faqItem._open .faqItem_arrow { transform: rotate(180deg) }
.faqItem_a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
}
.faqItem._open .faqItem_a { max-height: 400px }
.faqItem_a p {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faqItem_a a { color: var(--violet-glow) }
.faqItem_a a:hover { text-decoration: underline }

.siteFooter {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    padding: 64px 24px 32px;
}
.siteFooter_inner { max-width: 1100px; margin: 0 auto }
.siteFooter_top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
}
.siteFooter_logo {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; margin-bottom: 14px;
}
.siteFooter_logoImg {
    height: 28px; width: auto;
    filter: brightness(0) invert(1);
}
.siteFooter_logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
}
.siteFooter_about {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.siteFooter_colTitle {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.siteFooter_col a {
    display: block;
    font-size: .88rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.siteFooter_col a:hover { color: var(--text-primary) }

.siteFooter_responsible {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.siteFooter_respTitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.siteFooter_respText {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    max-width: 800px;
}
.siteFooter_respText:last-of-type { margin-bottom: 20px }
.siteFooter_respText a { color: var(--violet-glow) }
.siteFooter_respText a:hover { text-decoration: underline }

.siteFooter_disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}
.siteFooter_badges {
    display: flex; align-items: center; justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.siteFooter_badge18,
.siteFooter_badgeAnj,
.siteFooter_badgeMineur {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 6px 14px;
    border: 1px solid var(--accent-hot);
    color: var(--accent-hot);
}
.siteFooter_badgeAnj { border-color: var(--violet-glow); color: var(--violet-glow) }
.siteFooter_badgeMineur { border-color: var(--accent-warm); color: var(--accent-warm) }
.siteFooter_warning {
    font-size: .82rem;
    font-weight: 700;
    color: var(--accent-hot);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: .02em;
}
.siteFooter_regOrgs {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
    margin-top: 20px;
}
.siteFooter_regOrgs a {
    display: inline-block;
    opacity: .55;
    transition: opacity .2s;
}
.siteFooter_regOrgs a:hover { opacity: .85 }
.siteFooter_regOrgs img {
    height: 26px; width: auto;
    filter: brightness(0) invert(1);
}

.siteFooter_bottom {
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.siteFooter_bottom p { font-size: .8rem; color: var(--text-muted) }
.siteFooter_cookieBtn {
    background: none;
    font-size: .8rem;
    color: var(--text-muted);
    text-decoration: underline;
}
.siteFooter_cookieBtn:hover { color: var(--text-secondary) }

@media (max-width: 900px) {
    .topNav_links { display: none }
    .topNav_links._mobileOpen {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-subtle);
        padding: 24px;
        gap: 16px;
    }
    .topNav_burger { display: flex }
    .topNav_burger._active span:nth-child(1) { transform: rotate(45deg) translateY(7px) }
    .topNav_burger._active span:nth-child(2) { opacity: 0 }
    .topNav_burger._active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px) }

    .trustCard_features { grid-template-columns: 1fr }
    .trustCard_inner { padding: 36px 24px }
    .newsBlock_grid { grid-template-columns: 1fr }
    .tmBlock_grid { grid-template-columns: 1fr }
    .whyBlock_inner { grid-template-columns: 1fr }
    .siteFooter_top { grid-template-columns: 1fr 1fr; gap: 32px }
}

@media (max-width: 560px) {
    .heroBlock_h1 { font-size: 1.9rem }
    .heroBlock { padding: 100px 20px 60px }
    .siteFooter_top { grid-template-columns: 1fr }
    .siteFooter_bottom { flex-direction: column; gap: 12px; text-align: center }
    .trustCard_top { flex-direction: column; text-align: center }
    .age_wall--box { padding: 36px 24px }
    .ck_bar--inner { flex-direction: column; text-align: center }
}
