:root {
    --bg: #0f0718;
    --bg-2: #160b26;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(255, 255, 255, 0.12);
    --panel-border: rgba(255, 255, 255, 0.14);
    --text: #f7f2ff;
    --muted: #c9bddc;
    --soft: #a893c7;
    --accent: #d25cff;
    --accent-2: #7a5cff;
    --accent-3: #ff77c8;
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.22);
    --container: 1180px;
    --header-h: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(210, 92, 255, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(122, 92, 255, 0.12), transparent 36%),
        linear-gradient(180deg, #12091d 0%, #0f0718 45%, #14091f 100%);
    color: var(--text);
    min-width: 320px;
    overflow-x: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.7;
}

.orb-a {
    width: 520px;
    height: 520px;
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(255, 119, 200, 0.28) 0%, rgba(255, 119, 200, 0) 72%);
}

.orb-b {
    width: 520px;
    height: 520px;
    top: 24%;
    right: -160px;
    background: radial-gradient(circle, rgba(122, 92, 255, 0.28) 0%, rgba(122, 92, 255, 0) 74%);
}

.orb-c {
    width: 460px;
    height: 460px;
    bottom: -140px;
    left: 24%;
    background: radial-gradient(circle, rgba(210, 92, 255, 0.18) 0%, rgba(210, 92, 255, 0) 74%);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(12, 6, 20, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    box-shadow: 0 0 0 8px rgba(210, 92, 255, 0.10), 0 0 40px rgba(210, 92, 255, 0.35);
    flex: 0 0 auto;
}

.brand-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-menu a {
    padding: 11px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: 0.25s ease;
}

.site-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 4px;
    background: #fff;
    transition: 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 78px 0 38px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
    gap: 34px;
    align-items: start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #f5cfff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.9rem, 6vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.hero-copy h1 span {
    display: block;
    margin-top: 12px;
    color: #f0d7ff;
    opacity: 0.92;
}

.hero-lead {
    max-width: 660px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.82;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    box-shadow: 0 18px 40px rgba(210, 92, 255, 0.28);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    max-width: 760px;
}

.metric-card {
    min-width: 0;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.metric-card strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.metric-card span {
    color: var(--soft);
    font-size: 0.94rem;
    line-height: 1.5;
}

.hero-side {
    position: relative;
    min-height: 490px;
    padding-top: 12px;
}

.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    border: 1px solid var(--panel-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.hero-panel {
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
    pointer-events: none;
}

.panel-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffd4ff;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-panel h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.panel-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.panel-list i {
    color: #ff9be0;
    margin-top: 3px;
}

.floating-card {
    position: absolute;
    right: 18px;
    bottom: -10px;
    width: min(270px, 100%);
    border-radius: 24px;
    padding: 20px;
}

.floating-label {
    display: inline-block;
    color: #ffd8fa;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.floating-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

.banner-row {
    padding: 26px 0 18px;
}

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

.promo-card {
    position: relative;
    overflow: hidden;
    min-height: 290px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    transition: transform 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
}

.promo-card::before {
    content: "";
    position: absolute;
    inset: auto -70px -70px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.promo-card-a {
    background: linear-gradient(135deg, rgba(210, 92, 255, 0.34), rgba(76, 20, 112, 0.74));
}

.promo-card-b {
    background: linear-gradient(135deg, rgba(255, 119, 200, 0.26), rgba(95, 30, 112, 0.74));
}

.promo-card-c {
    background: linear-gradient(135deg, rgba(122, 92, 255, 0.30), rgba(44, 23, 92, 0.78));
}

.promo-label {
    display: inline-block;
    color: #ffdbff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.promo-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 58px;
    margin-bottom: 18px;
}

.promo-logo {
    max-height: 44px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.promo-card h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    letter-spacing: -0.03em;
}

.promo-card p {
    margin: 14px 0 22px;
    color: #f5eefe;
    max-width: 32ch;
    line-height: 1.72;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    margin-top: auto;
}

.section {
    padding: 62px 0;
}

.section-soft {
    padding: 24px 0 56px;
}

.section-head {
    max-width: 860px;
    margin-bottom: 30px;
}

.section-head-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 16ch;
}

.section-head p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.03rem;
}

.section-head.section-head-center h2,
.section-head.section-head-center p {
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    border-radius: 28px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.product-index {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 800;
}

.product-pill {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #edd8ff;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: right;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    width: 100%;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 18px;
    padding: 18px;
}

.card-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.stars {
    display: flex;
    gap: 4px;
    color: #ffb0eb;
}

.product-card h3 {
    margin: 0 0 14px;
    font-size: 1.14rem;
    line-height: 1.4;
    min-height: 4.1em;
}

.feature-list {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.96rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    box-shadow: 0 0 12px rgba(210, 92, 255, 0.48);
}

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

.info-box,
.guide-card {
    border-radius: 28px;
    padding: 24px;
}

.info-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 119, 200, 0.22), rgba(122, 92, 255, 0.20));
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.info-box h3,
.guide-card h3,
.adv-card h3,
.legal-card h3,
.legal-panel h3,
.cookie-info__item h3,
.contact-card h3 {
    margin: 0 0 12px;
    font-size: 1.16rem;
}

.info-box p,
.guide-card p,
.adv-card p,
.legal-card p,
.legal-panel p,
.cookie-info__item p,
.contact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.78;
}

.criteria-item {
    border-radius: 26px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.criteria-number {
    display: inline-flex;
    margin-bottom: 14px;
    color: #f0b9ff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.criteria-item h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.criteria-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.split-box {
    border-radius: 34px;
    padding: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
    align-items: start;
}

.split-copy h2,
.wide-banner-copy h2 {
    margin: 0 0 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 15ch;
}

.split-copy p,
.wide-banner-copy p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 62ch;
}

.payment-stack {
    display: grid;
    gap: 14px;
    align-content: start;
}

.payment-chip {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.payment-chip strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.payment-chip span {
    color: var(--soft);
    font-size: 0.94rem;
    line-height: 1.6;
}

.wide-banner {
    border-radius: 34px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.wide-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.guide-emoji {
    display: inline-flex;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

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

.adv-card {
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.narrow {
    max-width: 900px;
}

.responsible-card {
    border-radius: 30px;
    padding: 28px;
}

.responsible-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.85;
}

.responsible-card p:last-child {
    margin-bottom: 0;
}

.legal-section {
    padding-top: 28px;
}

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

.legal-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card,
.legal-panel,
.cookie-info,
.contact-card {
    border-radius: 28px;
}

.legal-card,
.legal-panel {
    padding: 24px;
}

.legal-stack {
    display: grid;
    gap: 18px;
}

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

.cookie-info__item {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card {
    padding: 28px;
}

.contact-card__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 16px;
}

.contact-note {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
    padding: 28px 0 116px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: flex-start;
}

.footer-brand {
    max-width: 620px;
}

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

.footer-brand p,
.footer-meta p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.75;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.badge {
    display: inline-flex;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #eed7ff;
    font-size: 0.83rem;
    font-weight: 700;
}

.cookie-bar {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(18, 10, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.cookie-bar.is-hidden {
    display: none;
}

.cookie-bar p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.cookie-btn {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    border: 0;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 1180px) {

    .cards-grid,
    .adv-grid,
    .legal-grid,
    .cookie-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .split-box {
        grid-template-columns: 1fr;
    }

    .wide-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-side {
        min-height: auto;
    }

    .floating-card {
        position: static;
        margin-top: 16px;
        width: 100%;
    }

    .banner-grid,
    .info-grid,
    .criteria-grid,
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-wrap,
    .contact-card__row {
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    :root {
        --header-h: 74px;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(16, 8, 26, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }

    .site-menu.is-open {
        display: flex;
    }

    .site-menu a {
        border-radius: 14px;
        padding: 13px 14px;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-copy h1,
    .section-head h2,
    .split-copy h2,
    .wide-banner-copy h2 {
        max-width: 100%;
    }

    .banner-grid,
    .cards-grid,
    .info-grid,
    .criteria-grid,
    .guide-grid,
    .adv-grid,
    .legal-grid,
    .legal-grid--wide,
    .cookie-info,
    .contact-card__row {
        grid-template-columns: 1fr;
    }

    .split-box,
    .wide-banner,
    .hero-panel,
    .responsible-card,
    .contact-card,
    .cookie-info,
    .legal-card,
    .legal-panel {
        padding: 22px;
    }

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

    .cookie-bar {
        flex-direction: column;
        align-items: stretch;
        bottom: 14px;
        left: 14px;
        right: 14px;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .hero-copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .section {
        padding: 46px 0;
    }

    .section-soft {
        padding: 12px 0 42px;
    }

    .brand-text {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .promo-card,
    .product-card,
    .info-box,
    .guide-card,
    .responsible-card,
    .criteria-item,
    .adv-card,
    .legal-card,
    .legal-panel,
    .contact-card,
    .cookie-info {
        border-radius: 24px;
    }

    .promo-logo {
        max-height: 38px;
    }

    .card-logo {
        max-width: 100%;
        max-height: 100%;
    }
}