:root {
    --bg: #050814;
    --bg-soft: #0c1224;
    --bg-block: rgba(15, 22, 41, 0.82);
    --bg-block-2: rgba(20, 29, 55, 0.88);
    --text: #ffffff;
    --muted: #a7b6d7;
    --muted-2: #8292b7;
    --purple: #8b3dff;
    --purple-2: #a95cff;
    --blue: #2f6bff;
    --blue-2: #5193ff;
    --line: rgba(255, 255, 255, 0.09);
    --line-2: rgba(255, 255, 255, 0.15);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 5%, rgba(91, 34, 166, 0.38), transparent 0 28%),
        radial-gradient(circle at 92% 95%, rgba(28, 62, 154, 0.35), transparent 0 28%),
        linear-gradient(180deg, #040711 0%, #050914 45%, #060b16 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.05;
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.065;
    z-index: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.9) 0.55px, transparent 0.8px);
    background-size: 7px 7px;
    mix-blend-mode: soft-light;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    position: relative;
    z-index: 1;
    overflow: clip;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.14'/%3E%3C/svg%3E");
    opacity: 0.07;
    mix-blend-mode: soft-light;
    z-index: 0;
}

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

.card {
    background: linear-gradient(180deg, rgba(16, 24, 45, 0.88), rgba(11, 17, 32, 0.92));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(18px);
    position: relative;
}

.card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.32), rgba(47, 107, 255, 0.24), rgba(255, 255, 255, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 20, 0.72);
    backdrop-filter: blur(16px);
}

.topbar-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.22), rgba(47, 107, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 26px rgba(0, 0, 0, 0.24);
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
}

.brand-mark::before {
    width: 28px;
    height: 28px;
    left: 9px;
    top: 7px;
    border: 2px solid rgba(255, 255, 255, 0.94);
    opacity: 0.92;
}

.brand-mark::after {
    width: 16px;
    height: 16px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    box-shadow: 0 0 18px rgba(139, 61, 255, 0.42);
}

.brand-copy {
    min-width: 0;
}

.brand-title {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}

.brand-subtitle {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    transition: .25s ease;
}

.desktop-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    padding: 0;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    padding: 0 0 16px;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-weight: 600;
}

.mobile-nav.active {
    display: block;
}

.hero {
    padding: 68px 0 22px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
}

.hero-copy,
.hero-side {
    padding: 32px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(139, 61, 255, 0.12);
    border: 1px solid rgba(139, 61, 255, 0.22);
    color: #efe6ff;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b881ff;
    box-shadow: 0 0 0 6px rgba(139, 61, 255, 0.18);
}

h1 {
    margin: 20px 0 14px;
    font-size: clamp(2.4rem, 5.4vw, 5rem);
    line-height: .96;
    letter-spacing: -.05em;
    max-width: 11ch;
}

.hero-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.04rem;
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn {
    min-height: 54px;
    padding: 0 20px;
    border-radius: 16px;
    font-weight: 800;
    font-size: .96rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    box-shadow: 0 18px 38px rgba(66, 78, 255, 0.24);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 46px rgba(66, 78, 255, 0.3);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--line-2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.hero-feature {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 70px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.28), rgba(47, 107, 255, 0.24));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.hero-feature strong {
    display: block;
    font-size: .95rem;
}

.hero-feature span:last-child {
    display: block;
    margin-top: 2px;
    color: var(--muted-2);
    font-size: .82rem;
}

.hero-side {
    display: grid;
    gap: 16px;
    align-content: start;
}

.side-panel {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.side-label {
    display: block;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .78rem;
    font-weight: 700;
}

.score-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 10px;
}

.score-line strong {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.06em;
}

.score-line span {
    color: var(--muted);
    font-weight: 600;
}

.meter-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.meter-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 6px;
}

.meter {
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--purple), var(--blue), #78acff);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tag {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
}

.side-panel p {
    color: var(--muted);
    margin: 10px 0 0;
    line-height: 1.75;
}

.banner-strip {
    padding: 8px 0 6px;
}

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

.promo-banner {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .28s ease;
}

.promo-banner::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -10%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    filter: blur(26px);
    opacity: .52;
}

.promo-banner::after {
    content: "";
    position: absolute;
    inset: auto -15% -25% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: .35;
}

.promo-banner:hover {
    transform: translateY(-3px);
}

.promo-banner strong,
.promo-banner span {
    position: relative;
    z-index: 1;
}

.promo-banner strong {
    font-size: 1.12rem;
    line-height: 1.35;
    max-width: 18ch;
}

.promo-banner>span:last-child {
    color: #fff;
    opacity: .9;
    font-weight: 700;
    font-size: .92rem;
}

.promo-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-banner-purple {
    background: linear-gradient(135deg, rgba(40, 18, 84, 0.98), rgba(21, 16, 44, 0.95));
}

.promo-banner-purple::before {
    background: rgba(139, 61, 255, 0.56);
}

.promo-banner-purple::after {
    background: rgba(47, 107, 255, 0.35);
}

.promo-banner-blue {
    background: linear-gradient(135deg, rgba(10, 28, 76, 0.98), rgba(11, 18, 40, 0.95));
}

.promo-banner-blue::before {
    background: rgba(47, 107, 255, 0.54);
}

.promo-banner-blue::after {
    background: rgba(139, 61, 255, 0.28);
}

.promo-banner-mix {
    background: linear-gradient(135deg, rgba(24, 18, 58, 0.98), rgba(9, 20, 49, 0.95));
}

.promo-banner-mix::before {
    background: rgba(139, 61, 255, 0.42);
}

.promo-banner-mix::after {
    background: rgba(47, 107, 255, 0.42);
}

.section {
    padding: 20px 0 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #bea6ff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.section-head p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

.product-card {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(17, 25, 47, 0.92), rgba(10, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: auto auto -40px -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(139, 61, 255, 0.18);
    filter: blur(30px);
    pointer-events: none;
}

.product-card.featured {
    border-color: rgba(139, 61, 255, 0.34);
    box-shadow: 0 24px 80px rgba(56, 32, 124, 0.34);
}

.product-rank {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(255, 255, 255, 0.14);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.product-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.product-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.32), rgba(47, 107, 255, 0.30));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

.product-sub {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .84rem;
}

.product-score {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.product-score strong {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.06em;
}

.product-score span {
    color: #ffd76d;
    font-size: .98rem;
}

.product-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.product-points {
    margin: 18px 0 22px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.75;
}

.reviews-section {
    padding-top: 26px;
}

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

.review-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 22, 41, 0.86), rgba(10, 16, 30, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.review-stars {
    color: #ffd76d;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.review-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.review-card span {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.guide {
    padding: 32px;
    margin-top: 4px;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
}

.guide h2 {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.guide h3 {
    margin: 20px 0 10px;
    font-size: 1.14rem;
}

.guide p,
.guide li {
    color: var(--muted);
    line-height: 1.8;
}

.guide ul {
    margin: 0;
    padding-left: 20px;
}

.guide-side {
    display: grid;
    gap: 16px;
}

.guide-box {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.guide-box p {
    margin: 0;
}

.footer {
    padding: 28px 0 46px;
}

.footer-card {
    padding: 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .9fr .95fr;
    gap: 24px;
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.footer h4 {
    margin: 0 0 12px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: var(--muted-2);
    line-height: 1.7;
}

@media (max-width: 1100px) {

    .hero-grid,
    .product-grid,
    .reviews-grid,
    .guide-grid,
    .footer-grid,
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 860px) {
    .desktop-nav {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero-copy,
    .hero-side,
    .guide,
    .footer-card {
        padding: 22px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .topbar-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-title {
        font-size: .92rem;
    }

    .brand-subtitle {
        max-width: 170px;
    }

    h1 {
        max-width: none;
    }
}

.trust-strip {
    margin-top: 26px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(4, 8, 19, 0.96), rgba(3, 7, 16, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 40px rgba(0, 0, 0, 0.28);
}

.trust-strip-title {
    margin-bottom: 14px;
    text-align: center;
    color: var(--muted-2);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
}

.trust-logo-item {
    min-height: 92px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.95), rgba(6, 10, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    transition: .25s ease;
}

.trust-logo-item:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 61, 255, 0.20);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.trust-logo-item img {
    max-width: 100%;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(.95);
    opacity: .92;
    transition: .25s ease;
}

.trust-logo-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@media (max-width: 1100px) {
    .trust-strip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .trust-strip {
        padding: 16px 14px 14px;
        border-radius: 18px;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .trust-logo-item {
        min-height: 78px;
        padding: 12px;
    }

    .trust-logo-item img {
        max-height: 34px;
    }
}

.legal-hero {
    padding: 32px;
}

.legal-updated {
    margin: 18px 0 0;
    color: var(--muted-2);
    font-size: .9rem;
    line-height: 1.6;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.42fr;
    gap: 20px;
}

.legal-content {
    padding: 30px;
}

.legal-article {
    display: grid;
    gap: 24px;
}

.legal-section h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.legal-section h3 {
    margin: 18px 0 10px;
    font-size: 1.08rem;
    line-height: 1.25;
}

.legal-section p,
.legal-section li {
    color: var(--muted);
    line-height: 1.82;
    margin: 0;
}

.legal-section ul {
    margin: 12px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.legal-contact {
    color: #fff !important;
    font-weight: 700;
    margin-top: 10px !important;
}

.legal-sidebar {
    display: grid;
    gap: 16px;
    align-content: start;
}

.legal-side-card {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 22, 41, 0.86), rgba(10, 16, 30, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.legal-side-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.legal-side-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .legal-hero,
    .legal-content {
        padding: 22px;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}



.hero-inner {
    padding-bottom: 10px;
}

.page-hero {
    padding: 32px;
}

.page-title {
    max-width: 13ch;
}

.page-intro {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.04rem;
    max-width: 72ch;
}

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

.about-mini-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15,22,41,0.86), rgba(10,16,30,0.92));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.about-mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(139,61,255,0.28), rgba(47,107,255,0.24));
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-weight: 800;
}

.about-mini-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.about-mini-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.about-layout {
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .about-grid-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 22px;
    }

    .about-grid-cards {
        grid-template-columns: 1fr;
    }
}