:root {
    --bg: #f5f7fb;
    --bg-soft: #eef3f9;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --surface-alt: #f9fbff;
    --text: #16324f;
    --muted: #58718c;
    --muted-2: #7c90a7;
    --line: rgba(148, 171, 198, 0.22);
    --line-strong: rgba(121, 148, 179, 0.38);
    --primary: #2364d2;
    --primary-strong: #17499f;
    --primary-soft: #eaf2ff;
    --navy: #13283f;
    --navy-2: #1a334f;
    --sky: #dfeeff;
    --rose: #f9eaef;
    --gold: #fff4de;
    --shadow: 0 24px 70px rgba(30, 65, 109, 0.10);
    --shadow-soft: 0 16px 38px rgba(34, 72, 118, 0.07);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --container: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.gate-open, body.gate-open { overflow: hidden; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(182, 214, 255, 0.34), transparent 31%),
        radial-gradient(circle at 100% 8%, rgba(255, 235, 201, 0.36), transparent 24%),
        linear-gradient(180deg, #f7faff 0%, #f2f6fb 52%, #eff4fa 100%);
    min-width: 320px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.site-shell {
    min-height: 100vh;
    position: relative;
    overflow: clip;
}
.site-shell::before,
.site-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    filter: blur(14px);
}
.site-shell::before {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 140px;
    background: rgba(167, 206, 255, 0.20);
}
.site-shell::after {
    width: 300px;
    height: 300px;
    right: -110px;
    top: 420px;
    background: rgba(255, 225, 172, 0.24);
}
.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}
.container.narrow { width: min(880px, calc(100% - 32px)); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(247, 250, 255, 0.72);
    border-bottom: 1px solid rgba(182, 199, 219, 0.22);
}
.header-row {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fefefe, #eaf3ff);
    border: 1px solid rgba(132, 163, 196, 0.30);
    box-shadow: 0 14px 26px rgba(40, 89, 140, 0.11);
    color: var(--primary-strong);
    font-size: 1.08rem;
    font-weight: 900;
}
.brand-mark.soft {
    background: linear-gradient(180deg, #fefefe, #f4f8ff);
    width: 54px;
    height: 54px;
}
.brand-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.brand-copy strong {
    font-size: 1.02rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.brand-copy small {
    color: var(--muted);
    line-height: 1.2;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.main-nav a {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #33516f;
    font-weight: 700;
    transition: .22s ease;
}
.main-nav a:hover {
    background: rgba(255,255,255,0.86);
    color: var(--primary-strong);
    box-shadow: inset 0 0 0 1px rgba(132, 163, 196, 0.22);
}
.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.86);
    cursor: pointer;
    color: var(--text);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
    position: relative;
    margin: 0 auto;
    content: "";
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after { position: absolute; top: 6px; left: 0; }
main { padding-bottom: 14px; }
section { padding: 34px 0; }
.hero-panel { padding: 34px 0 20px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.14fr .86fr;
    gap: 22px;
    align-items: stretch;
}
.hero-copy,
.hero-side,
.info-card,
.review-box,
.timeline-card,
.product-card,
.faq-list details,
.cta-banner,
.support-panel,
.prose-block,
.age-card,
.cookie-bar,
.sticky-card,
.footer-grid > div,
.stat-row article,
.floating-card.large,
.floating-strip {
    background: var(--surface);
    border: 1px solid rgba(165, 184, 208, 0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}
.hero-copy {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,250,255,0.84)),
        linear-gradient(180deg, rgba(234,242,255,0.65), rgba(255,255,255,0));
}
.hero-copy::before,
.hero-copy::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}
.hero-copy::before {
    width: 240px;
    height: 240px;
    right: -70px;
    top: -70px;
    background: radial-gradient(circle, rgba(148, 196, 255, 0.18), transparent 68%);
}
.hero-copy::after {
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -70px;
    background: radial-gradient(circle, rgba(255, 228, 185, 0.20), transparent 70%);
}
.hero-copy h1 {
    margin: 16px 0 16px;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: .96;
    letter-spacing: -0.055em;
    max-width: 11ch;
}
.hero-copy p {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.05rem;
}
.pill,
.eyebrow,
.rating-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: .82rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .01em;
}
.pill {
    background: linear-gradient(180deg, #ffffff, #ecf4ff);
    color: var(--primary-strong);
    border: 1px solid rgba(126, 166, 211, 0.30);
}
.eyebrow {
    background: #eef4fb;
    color: #47617c;
}
.rating-chip {
    background: rgba(255,255,255,0.10);
    color: #f2f7ff;
    border: 1px solid rgba(255,255,255,0.16);
}
.hero-actions,
.age-actions,
.cookie-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-actions { margin-top: 28px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #3079eb, #1f5fc1);
    box-shadow: 0 18px 34px rgba(35, 100, 210, 0.22);
}
.btn-primary:hover { background: linear-gradient(180deg, #2f71d9, #1953ac); }
.btn-secondary {
    color: var(--text);
    background: #ffffff;
    border-color: rgba(135, 159, 186, 0.34);
    box-shadow: var(--shadow-soft);
}
.stat-row {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.stat-row article {
    border-radius: 22px;
    padding: 20px 18px;
    background: rgba(255,255,255,0.72);
}
.stat-row strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-row span { color: var(--muted); }
.hero-side {
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(240,247,255,0.78));
}
.floating-card.large {
    border-radius: var(--radius-lg);
    padding: 30px;
}
.floating-card h2 {
    margin: 0 0 16px;
    font-size: 1.42rem;
    line-height: 1.08;
}
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}
.check-list li::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 4px;
    background: #d5e5ff;
    box-shadow: inset 0 0 0 4px #2d70db;
}
.floating-strip {
    border-radius: 24px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    text-align: center;
    color: #48627f;
    font-weight: 800;
}
.section-heading { margin-bottom: 26px; }
.section-heading h2,
.sticky-card h2,
.inner-hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 16ch;
}
.section-heading p,
.sticky-card p,
.timeline-card p,
.info-card p,
.review-box p,
.prose-block p,
.prose-block li,
.support-panel,
.faq-list p,
summary,
.footer-brand p,
.footer-contact,
.footer-links,
.footer-bottom,
.text-link,
.inner-hero p { color: var(--muted); }
.section-heading.split,
.section-heading.split.tight {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 18px;
    align-items: end;
}
.feature-grid,
.criteria-list,
.faq-list { display: grid; gap: 18px; }
.three-up,
.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card,
.review-box {
    border-radius: 26px;
    padding: 26px;
}
.info-card h3,
.review-box h3,
.product-card h3,
.timeline-card h3 {
    margin: 0 0 12px;
    font-size: 1.26rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.banner-row { padding: 10px 0; }
.cta-banner {
    border-radius: 32px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.93), rgba(239,246,255,0.88)),
        linear-gradient(180deg, rgba(230,241,255,0.44), rgba(255,255,255,0));
}
.cta-banner.compact { padding: 28px 30px; }
.cta-banner h2 {
    margin: 10px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    max-width: 18ch;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.product-logo-bar {
    min-height: 96px;
    padding: 18px 22px;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.product-logo-bar img {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}
.product-top,
.product-card .bonus-copy,
.product-card .mini-columns,
.product-card .card-actions {
    padding-left: 24px;
    padding-right: 24px;
}
.product-top {
    padding-top: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.score-badge {
    flex: 0 0 auto;
    min-width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 1.28rem;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(139, 164, 193, 0.18);
}
.lead-label {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 1rem;
}
.bonus-copy {
    margin: 0;
    padding-top: 8px;
    color: #36516e;
    font-weight: 800;
    line-height: 1.4;
}
.mini-columns {
    padding-top: 6px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}
.mini-columns h4 {
    margin: 0 0 10px;
    font-size: 1rem;
    letter-spacing: -0.02em;
}
.mini-columns ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--muted);
}
.card-actions {
    margin-top: auto;
    padding-top: 18px;
    padding-bottom: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.card-actions .btn { flex: 0 0 auto; }
.card-actions span {
    color: var(--muted-2);
    font-size: .92rem;
}
.accent-sky .score-badge { background: var(--sky); color: #17499f; }
.accent-rose .score-badge { background: var(--rose); color: #8d3654; }
.accent-gold .score-badge { background: var(--gold); color: #8a6323; }
.criteria-layout {
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    gap: 22px;
    align-items: start;
}
.sticky-card,
.timeline-card,
.support-panel,
.prose-block {
    border-radius: 30px;
    padding: 30px;
}
.sticky-card {
    position: sticky;
    top: 106px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,255,0.88)),
        linear-gradient(180deg, rgba(229,239,255,0.44), rgba(255,255,255,0));
}
.timeline-card strong {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--primary-strong);
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 900;
}
.text-link {
    justify-self: end;
    align-self: center;
    font-weight: 800;
    color: var(--primary-strong);
}
.faq-list details {
    overflow: hidden;
    border-radius: 24px;
    padding: 0 24px;
}
.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-weight: 800;
    color: var(--text);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 0 0 22px; }
.responsible-strip { padding-bottom: 38px; }
.responsible-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 22px;
    align-items: stretch;
}
.support-panel {
    display: grid;
    gap: 14px;
    align-content: center;
}
.support-panel a {
    min-height: 56px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(149, 172, 196, 0.26);
    font-weight: 800;
}
.site-footer { padding: 12px 0 36px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.18fr .82fr .82fr;
    gap: 18px;
    padding-top: 14px;
}
.footer-grid > div {
    border-radius: 28px;
    padding: 26px;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.footer-contact,
.footer-links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.footer-grid h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    font-size: .96rem;
}
.inner-hero { padding: 42px 0 16px; }
.inner-hero h1 { max-width: none; }
.prose-block h2 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}
.prose-block > *:first-child { margin-top: 0; }
.prose-block a { color: var(--primary-strong); font-weight: 800; }
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(18, 33, 52, 0.42);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}
.age-gate.is-visible {
    opacity: 1;
    visibility: visible;
}
.age-gate[hidden] { display: none; }
.age-card-wrap {
    width: 100%;
    min-height: 100dvh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-card {
    width: min(100%, 700px);
    margin: 0 auto;
    border-radius: 34px;
    padding: 38px;
    text-align: center;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,250,255,0.92)),
        linear-gradient(180deg, rgba(229,239,255,0.44), rgba(255,255,255,0));
}
.age-card h2 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: .98;
    letter-spacing: -0.05em;
}
.age-card p {
    margin: 0 auto 28px;
    max-width: 56ch;
    color: var(--muted);
}
.age-actions { justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; }
.cookie-bar {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 105;
    border-radius: 28px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease;
}
.cookie-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cookie-bar p { margin: 6px 0 0; }
@media (max-width: 1080px) {
    .hero-grid,
    .criteria-layout,
    .responsible-grid,
    .footer-grid,
    .section-heading.split,
    .section-heading.split.tight,
    .cards-grid,
    .three-up,
    .review-grid {
        grid-template-columns: 1fr;
    }
    .sticky-card { position: static; }
    .cta-banner,
    .footer-bottom,
    .cookie-bar { flex-direction: column; align-items: flex-start; }
    .text-link { justify-self: start; }
    .section-heading h2,
    .sticky-card h2,
    .inner-hero h1,
    .cta-banner h2 { max-width: none; }
}
@media (max-width: 760px) {
    .container { width: min(100% - 20px, var(--container)); }
    .header-row { min-height: 76px; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 10px;
        right: 10px;
        padding: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: rgba(255,255,255,0.96);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .main-nav a {
        justify-content: flex-start;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 16px;
    }
    .brand-copy small { display: none; }
    section { padding: 24px 0; }
    .hero-panel { padding-top: 22px; }
    .hero-copy,
    .hero-side,
    .info-card,
    .review-box,
    .timeline-card,
    .sticky-card,
    .prose-block,
    .age-card,
    .footer-grid > div,
    .floating-card.large,
    .cta-banner,
    .product-top,
    .product-card .bonus-copy,
    .product-card .mini-columns,
    .product-card .card-actions {
        padding-left: 22px;
        padding-right: 22px;
    }
    .hero-copy,
    .hero-side,
    .info-card,
    .review-box,
    .timeline-card,
    .sticky-card,
    .prose-block,
    .age-card,
    .footer-grid > div,
    .floating-card.large,
    .cta-banner { padding-top: 22px; padding-bottom: 22px; }
    .hero-copy h1 { font-size: 2.45rem; max-width: none; }
    .stat-row,
    .floating-strip,
    .mini-columns { grid-template-columns: 1fr; }
    .product-logo-bar {
        padding: 16px 20px;
        min-height: 88px;
        align-items: flex-start;
        flex-direction: column;
    }
    .product-logo-bar img { height: 32px; }
    .product-top { padding-top: 18px; }
    .score-badge {
        min-width: 62px;
        height: 62px;
        border-radius: 20px;
    }
    .card-actions { flex-direction: column; align-items: stretch; }
    .card-actions .btn { width: 100%; }
    .faq-list details { padding: 0 18px; }
    .age-card-wrap { padding: 12px; }
    .age-card h2 { font-size: 2.2rem; }
    .age-actions,
    .cookie-actions { flex-direction: column; }
    .age-actions .btn,
    .cookie-actions .btn { width: 100%; }
    .cookie-bar {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 24px;
    }
}


.site-footer {
    padding: 18px 0 34px;
    margin-top: 20px;
    background: linear-gradient(135deg, #13284a 0%, #0a1733 55%, #071225 100%);
    color: rgba(255,255,255,0.92);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer .footer-grid > div {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    backdrop-filter: blur(0px);
}
.site-footer .brand-mark.soft {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: #fff;
}
.site-footer h3,
.site-footer strong,
.site-footer a { color: #fff; }
.site-footer p,
.site-footer span,
.site-footer .footer-links a,
.site-footer .footer-contact a { color: rgba(255,255,255,0.82); }
.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover { color: #fff; }
.footer-banners {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
    padding-top: 4px;
}
.footer-banner {
    min-height: 72px;
    border-radius: 22px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.footer-banner:hover { transform: translateY(-1px); }
.footer-banner-accent {
    background: linear-gradient(135deg, #df4d48, #b71d2e);
    border-color: rgba(255,255,255,0.08);
}
.footer-bottom {
    align-items: center;
    color: rgba(255,255,255,0.78);
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 18px;
    padding-top: 20px;
}
.footer-bottom p { margin: 0; }
@media (max-width: 980px) {
    .footer-banners { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .footer-banners { grid-template-columns: 1fr; }
}

.regulatory-strip {
    margin-top: 20px;
    padding: 26px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.regulatory-copy {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,0.84);
    font-size: 1.02rem;
    line-height: 1.7;
}
.regulatory-copy strong { color: #fff; }
.regulatory-banners {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}
.reg-banner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 138px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    color: #fff !important;
    text-decoration: none;
    background:
        radial-gradient(circle at top right, rgba(255,205,64,0.18), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.11);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.reg-banner strong {
    display: block;
    margin: 6px 0 8px;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}
.reg-banner span:last-child {
    color: rgba(255,255,255,0.74);
    line-height: 1.5;
}
.reg-banner-kicker {
    color: #ffcc33;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}
.reg-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.18);
}
@media (max-width: 1100px) {
    .regulatory-banners { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .regulatory-strip { padding-top: 22px; }
    .regulatory-copy { font-size: 0.96rem; }
    .regulatory-banners { grid-template-columns: 1fr; }
    .reg-banner { min-height: 122px; }
}
