:root {
    --bg: #0b1512;
    --bg-elev: #0f1f1a;
    --surface: #12271f;
    --line: rgba(255, 255, 255, 0.08);
    --text: #eef4f0;
    --muted: #9db3a9;
    --brand: #17d789;
    --brand-2: #0fb6a2;
    --brand-deep: #0a6b56;
    --accent: #ffd166;
    --danger: #ff6b6b;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    --container: 1160px;
    --topbar-h: 40px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    background:
        radial-gradient(1000px 500px at 80% -10%, rgba(23, 215, 137, 0.14), transparent 60%),
        radial-gradient(800px 500px at 0% 0%, rgba(15, 182, 162, 0.12), transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.topbar {
    background: linear-gradient(90deg, var(--brand-deep), #0d3a30);
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
    color: #d7f5ea;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: var(--topbar-h);
    text-align: center;
}

.topbar__badge {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    background: var(--danger);
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
    flex: none;
}

.topbar__text {
    margin: 0;
}

.navbar {
    background: rgba(11, 21, 18, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.3px;
}

.brand__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #04140f;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 20px rgba(23, 215, 137, 0.28);
}

.brand__text {
    color: var(--text);
}

.brand__accent {
    color: var(--brand);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav__link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.18s ease, background 0.18s ease;
}

.nav__link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 48px 0 56px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__eyebrow {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Sora", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(23, 215, 137, 0.1);
    border: 1px solid rgba(23, 215, 137, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(23, 215, 137, 0.18);
}

.hero__title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(1.85rem, 3.8vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.8px;
    background: linear-gradient(180deg, #ffffff, #bfeadb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    color: var(--muted);
    max-width: 620px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    list-style: none;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.hero__stats li {
    display: flex;
    flex-direction: column;
}

.hero__stats strong {
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.hero__stats span {
    font-size: 0.82rem;
    color: var(--muted);
}

.rankcard {
    position: relative;
    background: linear-gradient(180deg, rgba(18, 39, 31, 0.95), rgba(12, 26, 21, 0.95));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.rankcard::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(23, 215, 137, 0.5), transparent 45%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.rankcard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.rankcard__title {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.rankcard__tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand);
    background: rgba(23, 215, 137, 0.1);
    border: 1px solid rgba(23, 215, 137, 0.22);
    padding: 3px 9px;
    border-radius: 999px;
}

.rankcard__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rankrow {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    transition: transform 0.15s ease, border-color 0.2s ease;
}

.rankrow:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 215, 137, 0.4);
}

.rankrow__pos {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: #04140f;
    background: rgba(255, 255, 255, 0.15);
}

.rankrow__pos--1 {
    background: linear-gradient(135deg, #ffe08a, var(--accent));
}

.rankrow__pos--2 {
    background: linear-gradient(135deg, #e8eef0, #b9c4c9);
}

.rankrow__pos--3 {
    background: linear-gradient(135deg, #e6b07a, #c9823f);
}

.rankrow__logo {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    color: #04140f;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.rankrow__info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}

.rankrow__name {
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rankrow__stars {
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.rankrow__stars em {
    font-style: normal;
    color: var(--muted);
    margin-left: 4px;
    letter-spacing: 0;
}

.rankrow__score {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brand);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--primary {
    color: #04140f;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 12px 26px rgba(23, 215, 137, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(23, 215, 137, 0.35);
}

.btn--ghost {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.listing {
    padding: 24px 0 72px;
}

.listing__head {
    margin-bottom: 26px;
}

.listing__title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.5px;
}

.listing__subtitle {
    color: var(--muted);
    margin-top: 6px;
    max-width: 620px;
}

.offers {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer {
    position: relative;
    background: linear-gradient(180deg, rgba(18, 39, 31, 0.9), rgba(12, 26, 21, 0.9));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, border-color 0.2s ease;
}

.offer:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 215, 137, 0.4);
}

.offer--top {
    border-color: rgba(255, 209, 102, 0.4);
    background:
        linear-gradient(180deg, rgba(255, 209, 102, 0.06), transparent 40%),
        linear-gradient(180deg, rgba(18, 39, 31, 0.92), rgba(12, 26, 21, 0.92));
}

.offer__ribbon {
    position: absolute;
    top: -11px;
    left: 20px;
    font-family: "Sora", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #04140f;
    background: linear-gradient(135deg, #ffe08a, var(--accent));
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(255, 209, 102, 0.3);
}

.offer__main {
    display: grid;
    grid-template-columns: 44px 150px 1fr auto auto;
    align-items: center;
    gap: 22px;
}

.offer__rank {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #04140f;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.offer--top .offer__rank {
    background: linear-gradient(135deg, #ffe08a, var(--accent));
}

.offer__brand {
    display: grid;
    place-items: center;
    height: 72px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    overflow: hidden;
}

.offer__img {
    max-width: 88%;
    max-height: 60%;
    object-fit: contain;
}

.offer__cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.offer__value {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
}

.offer__score {
    align-items: center;
    text-align: center;
}

.offer__scorebox {
    display: grid;
    place-items: center;
    min-width: 58px;
    padding: 8px 0;
    border-radius: 12px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--brand);
    background: rgba(23, 215, 137, 0.1);
    border: 1px solid rgba(23, 215, 137, 0.25);
}

.offer__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 168px;
}

.offer__visit,
.offer__more {
    width: 100%;
    padding: 11px 18px;
}

.offer__disclaimer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-size: 0.76rem;
    line-height: 1.5;
    color: var(--muted);
}

.footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(10, 20, 16, 0.4), rgba(8, 15, 12, 0.9));
    padding: 48px 0 26px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.6fr;
    gap: 36px;
}

.brand--footer {
    font-size: 1.15rem;
}

.footer__about {
    color: var(--muted);
    margin-top: 12px;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer__title {
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.18s ease;
}

.footer__links a:hover {
    color: var(--brand);
}

.footer__disclaimers p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.footer__badge {
    display: grid;
    place-items: center;
    height: 56px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    transition: border-color 0.2s ease, transform 0.15s ease;
}

.footer__badge:not(.footer__badge--static):hover {
    border-color: rgba(23, 215, 137, 0.4);
    transform: translateY(-2px);
}

.footer__badge img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.footer__bottom {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
}

.cookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(9, 18, 15, 0.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.35);
}

.cookie__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.cookie__text {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 0;
}

.cookie__text a {
    color: var(--brand);
    text-decoration: underline;
}

.cookie__actions {
    display: flex;
    gap: 10px;
    flex: none;
}

.cookie__actions .btn {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.agegate {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(4, 10, 8, 0.82);
    backdrop-filter: blur(8px);
}

.agegate__box {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: linear-gradient(180deg, var(--surface), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px 28px 28px;
    text-align: center;
}

.agegate__badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(135deg, var(--danger), #d94848);
    box-shadow: 0 10px 24px rgba(255, 107, 107, 0.35);
}

.agegate__title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.agegate__text {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.agegate__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.agegate__actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
}

.agegate__note {
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__disclaimers {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cookie__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie__actions {
        justify-content: center;
    }
}

@media (max-width: 960px) {
    .offer__main {
        grid-template-columns: 44px 120px 1fr auto;
        grid-template-areas:
            "rank brand bonus actions"
            "rank brand score actions";
        row-gap: 14px;
    }

    .offer__rank {
        grid-area: rank;
    }

    .offer__brand {
        grid-area: brand;
    }

    .offer__bonus {
        grid-area: bonus;
    }

    .offer__score {
        grid-area: score;
        align-items: flex-start;
        text-align: left;
    }

    .offer__actions {
        grid-area: actions;
    }
}

@media (max-width: 640px) {
    .offer__main {
        grid-template-columns: 44px 1fr;
        grid-template-areas:
            "rank brand"
            "bonus bonus"
            "score score"
            "actions actions";
        gap: 14px;
    }

    .offer__brand {
        width: 130px;
    }

    .offer__actions {
        min-width: 0;
    }

    .offer__score {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 860px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--bg-elev);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar {
        position: relative;
    }

    .nav.is-open {
        max-height: 320px;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 12px 16px;
    }

    .nav__link {
        display: block;
        padding: 14px 12px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav__list li + li {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rankcard {
        max-width: 460px;
    }
}

@media (max-width: 520px) {
    .topbar__text {
        font-size: 0.72rem;
    }

    .hero {
        padding: 34px 0 44px;
    }

    .hero__stats {
        gap: 20px;
        margin-top: 16px;
        padding-top: 16px;
    }

    .hero__stats strong {
        font-size: 1.25rem;
    }
}

.page {
    padding: 48px 0 72px;
}

.page__head {
    max-width: 840px;
    margin-bottom: 32px;
}

.page__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Sora", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(23, 215, 137, 0.1);
    border: 1px solid rgba(23, 215, 137, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.page__title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

.page__lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 740px;
}

.prose {
    max-width: 840px;
}

.prose h2 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 32px 0 12px;
}

.prose h3 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 24px 0 8px;
}

.prose p {
    color: var(--muted);
    margin-bottom: 14px;
}

.prose ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
}

.prose ul li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
}

.prose a {
    color: var(--brand);
    text-decoration: underline;
}

.prose strong {
    color: var(--text);
}

.panel {
    background: linear-gradient(180deg, rgba(18, 39, 31, 0.9), rgba(12, 26, 21, 0.9));
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 26px 0;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
}

.card__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #04140f;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    margin-bottom: 14px;
}

.card h3 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-card {
    margin: 26px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.contact-card__email {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brand);
}

.offerpage__hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    background: linear-gradient(180deg, rgba(255, 209, 102, 0.05), transparent 45%),
        linear-gradient(180deg, rgba(18, 39, 31, 0.92), rgba(12, 26, 21, 0.92));
    border: 1px solid rgba(255, 209, 102, 0.3);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.offerpage__logo {
    display: grid;
    place-items: center;
    width: 130px;
    height: 90px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    overflow: hidden;
}

.offerpage__logo img {
    max-width: 86%;
    max-height: 60%;
    object-fit: contain;
}

.offerpage__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offerpage__name {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.4px;
}

.offerpage__bonus {
    color: var(--text);
    font-weight: 600;
}

.offerpage__bonus span {
    color: var(--muted);
    font-weight: 400;
}

.offerpage__stars {
    color: var(--accent);
    letter-spacing: 1px;
}

.offerpage__side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}

.offerpage__scorebox {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 18px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--brand);
    background: rgba(23, 215, 137, 0.1);
    border: 1px solid rgba(23, 215, 137, 0.25);
}

.offerpage__side .btn {
    width: 100%;
}

.proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.proscons__col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
}

.proscons__col h3 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.proscons__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proscons__col li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
    font-size: 0.92rem;
}

.proscons--pros li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 800;
}

.proscons--cons li::before {
    content: "\2715";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--danger);
    font-weight: 800;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 8px;
    font-size: 0.92rem;
}

.info-table th,
.info-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}

.info-table th {
    color: var(--muted);
    font-weight: 600;
    width: 40%;
}

.info-table td {
    color: var(--text);
}

.page__disclaimer {
    margin-top: 30px;
    padding: 16px 18px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--muted);
}

@media (max-width: 720px) {
    .offerpage__hero {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .offerpage__meta {
        align-items: center;
    }

    .offerpage__side {
        width: 100%;
    }

    .proscons {
        grid-template-columns: 1fr;
    }
}
