@font-face {
    font-family: "Unbounded";
    src: url("../fonts/Unbounded-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Unbounded";
    src: url("../fonts/Unbounded-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Unbounded";
    src: url("../fonts/Unbounded-900.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #080a10;
    --ink-2: #111521;
    --paper: #f1f1eb;
    --paper-2: #e7e7df;
    --card: #ffffff;
    --muted: #636779;
    --line: rgba(8, 10, 16, 0.12);
    --line-dark: rgba(255, 255, 255, 0.12);
    --red: #e14343;
    --red-dark: #b92626;
    --mint: #49e89f;
    --cyan: #7fe8ff;
    --radius: 8px;
    --shadow: 0 24px 70px rgba(8, 10, 16, 0.16);
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 98px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Unbounded", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--red);
    color: #fff;
}

.grid-bg {
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 88px 88px;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 18px;
    left: 50%;
    width: min(calc(100% - 32px), var(--wrap));
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 8px 10px 8px 18px;
    color: #fff;
    background: rgba(8, 10, 16, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 82px;
    height: auto;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.nav a,
.header-phone {
    transition: color 160ms ease;
}

.nav a:hover,
.header-phone:hover {
    color: var(--cyan);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header-phone {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 13px;
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    align-items: center;
    gap: 48px;
    padding: 126px max(28px, calc((100vw - var(--wrap)) / 2)) 74px;
    overflow: hidden;
    color: #fff;
    background-color: var(--ink);
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 10, 16, 0.95), rgba(8, 10, 16, 0.78) 48%, rgba(8, 10, 16, 0.9)),
        radial-gradient(circle at 78% 22%, rgba(225, 67, 67, 0.24), transparent 30%),
        linear-gradient(180deg, transparent 0%, rgba(8, 10, 16, 0.8) 100%);
    pointer-events: none;
}

.hero::after {
    content: "GLASS";
    position: absolute;
    right: -42px;
    bottom: -42px;
    color: rgba(255, 255, 255, 0.035);
    font-size: 180px;
    line-height: 1;
    font-weight: 900;
    pointer-events: none;
}

.hero__content,
.hero__visual {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 26px;
    font-size: 66px;
    line-height: 0.98;
    font-weight: 900;
}

h2 {
    max-width: 900px;
    margin-bottom: 0;
    font-size: 48px;
    line-height: 1.04;
    font-weight: 900;
}

h3 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 900;
}

.hero__lead {
    max-width: 690px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 20px;
}

.hero__actions,
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn--primary {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}

.btn--primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.btn--messenger {
    min-height: 52px;
    padding-right: 16px;
    padding-left: 16px;
}

.btn--dark {
    color: #fff;
    background: var(--ink);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.hero__badges span,
.contact-row a {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 11px 14px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    text-transform: none;
}

.photo-stack {
    position: relative;
    width: min(420px, 100%);
    margin-left: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.35);
}

.photo-stack::before {
    content: "";
    position: absolute;
    inset: 34px -22px -22px 54px;
    border: 1px solid rgba(127, 232, 255, 0.2);
    border-radius: var(--radius);
    pointer-events: none;
}

.photo-stack__main {
    width: 100%;
    aspect-ratio: 0.74;
    object-fit: cover;
    object-position: 50% 48%;
    border-radius: 6px;
    filter: saturate(0.92) contrast(1.08);
}

.photo-stack__panel {
    position: absolute;
    right: -24px;
    bottom: 34px;
    width: 224px;
    padding: 18px;
    color: var(--ink);
    background: var(--mint);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.photo-stack__panel strong {
    display: block;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.22;
}

.mono {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.ticker {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    color: #fff;
    background: var(--red);
    border-top: 1px solid rgba(225, 67, 67, 0.64);
    border-bottom: 1px solid rgba(225, 67, 67, 0.64);
}

.ticker span {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 0;
    border-radius: 0;
    padding: 20px max(22px, calc((100vw - var(--wrap)) / 8));
    background: #141925;
}

.ticker span::before {
    content: "";
    width: 24px;
    height: 3px;
    margin-bottom: 13px;
    background: var(--red);
}

.ticker strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.18;
    font-weight: 900;
}

.ticker em {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-style: normal;
    line-height: 1.25;
}

.section {
    padding: 108px max(28px, calc((100vw - var(--wrap)) / 2));
}

.section__head {
    margin-bottom: 42px;
}

.section__head--split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
    gap: 42px;
    align-items: end;
}

.section__head--split > p {
    margin-bottom: 0;
    color: var(--muted);
}

.intro__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 18px;
}

.glass-card,
.metric-card,
.price-card,
.step-card,
.trust__cards article,
.faq details,
.lead-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(8, 10, 16, 0.04);
}

.glass-card {
    min-height: 260px;
    padding: 34px;
}

.glass-card p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
}

.metric-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.metric-card strong {
    display: block;
    color: var(--red);
    font-size: 58px;
    line-height: 0.95;
    font-weight: 900;
}

.metric-card span {
    margin-top: 16px;
    color: var(--muted);
}

.metric-card--dark {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.metric-card--dark strong {
    color: var(--cyan);
}

.metric-card--dark span {
    color: rgba(255, 255, 255, 0.72);
}

.prices {
    background: var(--paper-2);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.price-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.price-card .mono {
    display: block;
    min-height: 2.6em;
    line-height: 1.3;
}

.price-card__value {
    display: grid;
    grid-template-rows: 13px 1fr;
    min-height: 48px;
    margin: 22px 0 18px;
}

.price-card__prefix {
    align-self: start;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.1;
}

.price-card__amount {
    align-self: end;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.03;
    white-space: nowrap;
}

.price-card__amount--word {
    align-self: start;
    font-size: 28px;
    line-height: 1.08;
    white-space: normal;
}

.price-card__value--word {
    display: block;
    padding-top: 13px;
}

.price-card p {
    margin-top: auto;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.fit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fit__panel {
    min-height: 520px;
    padding: 42px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.fit__panel--yes {
    background: var(--card);
}

.fit__panel--no {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.fit__panel--no .eyebrow {
    color: var(--cyan);
}

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

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--mint);
}

.fit__panel--no .check-list li {
    color: rgba(255, 255, 255, 0.72);
}

.check-list--alert li::before {
    background: var(--red);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    min-height: 310px;
    padding: 24px;
}

.step-card span {
    display: block;
    margin-bottom: 34px;
    color: rgba(8, 10, 16, 0.22);
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.step-card h3 {
    margin: 0 0 14px;
    font-size: 19px;
    line-height: 1.16;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}

.step-card--uv h3 {
    font-size: 15px;
    line-height: 1.24;
}

.step-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.before-after {
    background: #fbfbf7;
}

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

.before-after-card {
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(8, 10, 16, 0.04);
}

.before-after-card__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--ink);
}

.before-after-card__image {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--ink);
}

.before-after-card__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
}

.before-after-card__image figcaption {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 6px 9px;
    color: #fff;
    background: rgba(8, 10, 16, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.before-after-card__image + .before-after-card__image figcaption {
    color: var(--ink);
    background: rgba(73, 232, 159, 0.9);
    border-color: rgba(73, 232, 159, 0.35);
}

.before-after-card__body {
    padding: 22px;
}

.before-after-card__body h3 {
    margin: 10px 0 10px;
}

.before-after-card__body p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.risk {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: 46px;
    color: #fff;
    background-color: var(--ink);
}

.risk h2 {
    max-width: 760px;
}

.risk p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.risk__list {
    display: grid;
    gap: 12px;
    align-content: center;
}

.risk__item {
    min-height: 82px;
    display: grid;
    align-content: center;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    background: rgba(225, 67, 67, 0.06);
}

.risk__item strong {
    color: #ff7777;
    font-size: 17px;
    line-height: 1.2;
}

.risk__item span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.35;
}

.trust {
    display: grid;
    grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.trust__media {
    position: relative;
}

.trust__media img {
    width: 100%;
    aspect-ratio: 0.78;
    object-fit: cover;
    object-position: 48% 42%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.trust__media::after {
    content: "YAR";
    position: absolute;
    right: -28px;
    bottom: 18px;
    color: var(--red);
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
}

.trust__content h2 {
    margin-bottom: 36px;
}

.trust__cards {
    display: grid;
    gap: 14px;
}

.trust__cards article {
    padding: 24px;
}

.trust__cards article:first-child {
    border-left: 4px solid var(--red);
    padding-left: 20px;
}

.trust__cards p {
    margin-bottom: 0;
    color: var(--muted);
}

.faq {
    background: var(--paper-2);
}

.faq__list {
    display: grid;
    gap: 10px;
}

.faq details {
    padding: 0 24px;
}

.faq summary {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--red);
    font-size: 30px;
    line-height: 1;
}

.faq details[open] summary::after {
    content: "-";
}

.faq details p {
    max-width: 850px;
    margin: -4px 0 24px;
    color: var(--muted);
}

.lead-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
    gap: 54px;
    align-items: center;
    padding: 112px max(28px, calc((100vw - var(--wrap)) / 2));
    color: #fff;
    background-color: var(--ink);
}

.lead-section__copy p:not(.eyebrow) {
    margin-top: 22px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
}

.contact-row {
    margin-top: 30px;
}

.lead-form {
    display: grid;
    gap: 15px;
    padding: 28px;
    color: var(--ink);
    box-shadow: var(--shadow);
}

.lead-form label {
    display: grid;
    gap: 8px;
}

.lead-form label span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(8, 10, 16, 0.16);
    border-radius: 6px;
    padding: 15px 16px;
    color: var(--ink);
    background: #fbfbf7;
    outline: none;
    resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 67, 67, 0.12);
}

.lead-form .btn {
    width: 100%;
    margin-top: 6px;
}

.hp {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--red);
    font-size: 13px;
}

.form-status.is-success {
    color: #07884d;
}

.privacy {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.form-consent {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px !important;
    margin-top: 2px;
    cursor: pointer;
}

.lead-form .form-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    accent-color: var(--red);
}

.lead-form .form-consent span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    text-transform: none;
}

.form-consent a {
    color: var(--red-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer {
    display: grid;
    grid-template-columns: 1.2fr 0.95fr 0.85fr 1.1fr;
    gap: 32px 28px;
    align-items: start;
    padding: 42px max(28px, calc((100vw - var(--wrap)) / 2));
    color: #fff;
    background: #05060a;
}

.footer img {
    margin-bottom: 12px;
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer .mono {
    color: var(--cyan);
}

.footer__column {
    display: grid;
    gap: 10px;
}

.footer__column > a,
.footer__messengers a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.35;
}

.footer__column > a:hover,
.footer__messengers a:hover {
    color: var(--cyan);
}

.footer__phone {
    font-weight: 900;
    color: #fff !important;
    font-size: 18px !important;
}

.footer__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__bottom p {
    font-size: 11px;
    line-height: 1.4;
}

.cookie-banner {
    position: fixed;
    z-index: 60;
    left: 50%;
    bottom: 18px;
    width: min(760px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 18px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.cookie-banner__text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.cookie-banner__text p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--red-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-banner__actions .btn {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 11px;
}

.cookie-banner__necessary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.legal-header {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px max(28px, calc((100vw - var(--wrap)) / 2));
    color: #fff;
    background: var(--ink);
}

.legal-header .brand img {
    width: 82px;
}

.legal-header__back {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.legal-header__back:hover {
    color: var(--cyan);
}

.legal-page {
    min-height: calc(100vh - 148px);
    padding: 84px max(28px, calc((100vw - var(--wrap)) / 2));
    background: var(--paper);
}

.legal-page__inner {
    max-width: 900px;
}

.legal-page__date {
    margin-top: -18px;
    color: var(--muted);
    font-size: 13px;
}

.legal-card {
    margin-top: 32px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-card h2 {
    margin: 32px 0 12px;
    font-size: 22px;
    line-height: 1.18;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

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

.legal-card a {
    color: var(--red-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 24px;
    padding: 22px max(28px, calc((100vw - var(--wrap)) / 2));
    color: rgba(255, 255, 255, 0.66);
    background: #05060a;
}

.legal-footer p {
    margin: 0;
    font-size: 11px;
}

@media (max-width: 1120px) {
    h1 {
        font-size: 54px;
    }

    h2 {
        font-size: 40px;
    }

    .price-grid,
    .process__grid,
    .before-after__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 8px;
        color: #fff;
        background: rgba(8, 10, 16, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: var(--radius);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
    }

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

    .nav a {
        padding: 13px 12px;
        border-radius: 6px;
    }

    .nav a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

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

    .header-phone {
        padding: 0 12px;
    }

    .hero,
    .section__head--split,
    .risk,
    .trust,
    .lead-section,
    .intro__grid,
    .fit {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 118px;
    }

    .photo-stack {
        margin: 0;
        width: min(380px, 100%);
    }

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

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

    .footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 58px;
        padding: 7px 8px 7px 12px;
    }

    .brand img {
        width: 68px;
    }

    .header-phone {
        min-height: 40px;
        font-size: 11px;
    }

    .hero {
        gap: 34px;
        padding: 104px 18px 54px;
    }

    .hero::after {
        font-size: 92px;
        right: -18px;
    }

    h1 {
        font-size: 36px;
        line-height: 1.04;
    }

    h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    h3 {
        font-size: 18px;
    }

    .hero__lead {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        padding: 14px 16px;
    }

    .hero__actions,
    .contact-row {
        display: grid;
    }

    .hero__messengers {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero__messengers .btn {
        min-height: 46px;
        padding: 10px 8px;
        font-size: 10px;
    }

    .photo-stack {
        padding: 8px;
    }

    .photo-stack__panel {
        position: static;
        width: 100%;
        margin-top: 8px;
    }

    .ticker,
    .price-grid,
    .process__grid,
    .before-after__grid,
    .footer {
        grid-template-columns: 1fr;
    }

    .ticker span {
        min-height: 88px;
        padding: 16px 18px;
    }

    .section,
    .lead-section {
        padding: 70px 18px;
    }

    .glass-card,
    .fit__panel {
        min-height: auto;
        padding: 24px;
    }

    .metric-card,
    .price-card,
    .step-card {
        min-height: auto;
    }

    .metric-card strong {
        font-size: 44px;
    }

    .step-card span {
        margin-bottom: 26px;
    }

    .trust__media::after {
        right: 12px;
        font-size: 48px;
    }

    .faq summary {
        min-height: 66px;
        font-size: 16px;
    }

    .lead-form {
        padding: 18px;
    }

    .footer__bottom {
        display: grid;
        gap: 6px;
    }

    .cookie-banner {
        bottom: 10px;
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

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

    .legal-header,
    .legal-page,
    .legal-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .legal-page {
        min-height: calc(100vh - 136px);
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .legal-card {
        margin-top: 24px;
        padding: 22px 18px;
    }

    .legal-card h2 {
        font-size: 19px;
    }
}
