:root {
    --navy-950: #07182c;
    --navy-900: #0c2545;
    --navy-800: #12345d;
    --navy-700: #1a477b;
    --blue-700: #1b57c7;
    --blue-600: #2468e5;
    --blue-500: #377cf0;
    --blue-100: #e9f1ff;
    --blue-50: #f5f8ff;
    --teal-700: #1e716a;
    --teal-600: #27867c;
    --teal-100: #dff3ef;
    --gold-600: #c4902f;
    --gold-100: #fff2d6;
    --red-700: #a12d39;
    --red-100: #fde8eb;
    --green-700: #216a4c;
    --green-100: #e0f5e9;
    --ink: #14263c;
    --muted: #637286;
    --muted-2: #8090a3;
    --line: #dfe7f1;
    --surface: #ffffff;
    --surface-2: #f7f9fc;
    --surface-3: #eef3f9;
    --shadow-sm: 0 8px 24px rgba(19, 44, 76, .08);
    --shadow-md: 0 20px 55px rgba(19, 44, 76, .12);
    --shadow-lg: 0 30px 80px rgba(4, 24, 49, .2);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --container: 1200px;
    --header-height: 82px;
    --transition: 180ms ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

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

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

button, a {
    -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(55, 124, 240, .35);
    outline-offset: 3px;
}

h1, h2, h3, h4, p, ul, ol, blockquote {
    margin-top: 0;
}

h1, h2, h3, h4 {
    color: var(--navy-950);
    font-weight: 750;
    line-height: 1.13;
    letter-spacing: -.028em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 5.4vw, 5rem);
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

::selection {
    background: rgba(36, 104, 229, .2);
}

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

.site-shell {
    min-height: 100vh;
    overflow: clip;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--surface);
    color: var(--navy-950);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.icon--xs {
    width: 14px;
    height: 14px;
}

.topbar {
    position: relative;
    z-index: 51;
    background: var(--navy-950);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar__inner > span,
.topbar__contacts,
.topbar__contacts > span,
.topbar__contacts > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar .icon {
    width: 16px;
    height: 16px;
    color: #8eb6ff;
}

.topbar__contacts {
    gap: 24px;
}

.topbar a:hover {
    color: #fff;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(223, 231, 241, .9);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(12, 37, 69, .08);
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.brand img {
    flex: 0 0 auto;
}

.brand__text {
    display: grid;
    line-height: 1.05;
}

.brand__text strong {
    color: var(--navy-950);
    font-size: 20px;
    letter-spacing: -.035em;
}

.brand__text small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 4px;
}

.main-nav a {
    position: relative;
    padding: 12px 10px;
    border-radius: 10px;
    color: #40516a;
    font-size: 14px;
    font-weight: 620;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.is-active {
    background: var(--blue-50);
    color: var(--blue-700);
}

.main-nav a.is-active::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    border-radius: 10px;
    background: var(--blue-600);
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-phone__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-700);
}

.header-phone__icon .icon {
    width: 18px;
    height: 18px;
}

.header-phone > span:last-child {
    display: grid;
    line-height: 1.1;
}

.header-phone small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
}

.header-phone strong {
    color: var(--navy-950);
    font-size: 14px;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--navy-950);
    cursor: pointer;
}

.menu-toggle__close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
    display: block;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

.button:active {
    transform: translateY(0);
}

.button .icon {
    width: 19px;
    height: 19px;
}

.button--primary {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: #fff;
    box-shadow: 0 10px 28px rgba(36, 104, 229, .24);
}

.button--primary:hover {
    box-shadow: 0 15px 36px rgba(36, 104, 229, .32);
}

.button--secondary {
    border-color: rgba(255, 255, 255, .23);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(12px);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, .16);
}

.button--light {
    background: #fff;
    color: var(--blue-700);
    box-shadow: 0 12px 34px rgba(3, 17, 35, .2);
}

.button--outline {
    border-color: var(--line);
    background: var(--surface);
    color: var(--navy-900);
}

.button--outline:hover {
    border-color: #b8c9dc;
    background: var(--blue-50);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff;
}

.button--small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 11px;
    font-size: 14px;
}

.button--wide {
    width: 100%;
}

.global-disclaimer {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #ead9ab;
    background: #fff8e8;
}

.ad-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #654b17;
}

.ad-disclaimer__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: #ffe9b4;
    color: #8e6414;
}

.ad-disclaimer__icon .icon {
    width: 20px;
    height: 20px;
}

.ad-disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.ad-disclaimer--bar {
    min-height: 76px;
    align-items: center;
    padding: 13px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--blue-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
}

.eyebrow--light {
    color: #a9c7ff;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 17%, rgba(55, 124, 240, .32), transparent 30%),
        radial-gradient(circle at 84% 88%, rgba(39, 134, 124, .2), transparent 26%),
        linear-gradient(135deg, #07182c 0%, #0b2748 52%, #103867 100%);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .16;
    background-image: radial-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to right, transparent, #000 38%, #000);
}

.hero__inner {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items: center;
    gap: 64px;
    padding-block: 78px 86px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    color: #a9c7ff;
}

.hero h1 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(2.7rem, 5.4vw, 4.9rem);
}

.hero h1 span {
    color: #8fb8ff;
}

.hero__lead {
    max-width: 700px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.62;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 32px;
}

.hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.hero__points li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__points .icon {
    width: 18px;
    height: 18px;
    color: #72d5c8;
}

.hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
}

.hero__visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
}

.hero__visual img {
    width: min(100%, 560px);
    filter: drop-shadow(0 32px 55px rgba(0, 0, 0, .28));
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(255, 255, 255, .11);
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .16);
    backdrop-filter: blur(15px);
    font-size: 13px;
    font-weight: 700;
}

.hero-float .icon {
    width: 19px;
    height: 19px;
    color: #8fe0d5;
}

.hero-float--one {
    top: 12%;
    right: -4%;
}

.hero-float--two {
    bottom: 10%;
    left: -3%;
}

.hero-trust {
    margin-top: -28px;
    position: relative;
    z-index: 4;
}

.hero-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.trust-item {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 23px;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--line);
}

.trust-item__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    background: var(--blue-100);
    color: var(--blue-700);
}

.trust-item:nth-child(2) .trust-item__icon {
    background: var(--teal-100);
    color: var(--teal-700);
}

.trust-item:nth-child(3) .trust-item__icon {
    background: var(--gold-100);
    color: var(--gold-600);
}

.trust-item:nth-child(4) .trust-item__icon {
    background: #eee9ff;
    color: #6e4fc6;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    margin-bottom: 3px;
    color: var(--navy-950);
    font-size: 15px;
}

.trust-item span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.section {
    padding-block: 104px;
}

.section--tight {
    padding-block: 72px;
}

.section--soft {
    background: var(--surface-2);
}

.section--blue {
    background: var(--blue-50);
}

.section--dark {
    background: var(--navy-950);
    color: #fff;
}

.section--dark h2,
.section--dark h3 {
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.section--dark .section-heading p {
    color: rgba(255, 255, 255, .7);
}

.grid {
    display: grid;
    gap: 24px;
}

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

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

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

.card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(15, 42, 74, .045);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    border-color: #c8d7e9;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 17px;
    background: var(--blue-100);
    color: var(--blue-700);
}

.card__icon .icon {
    width: 26px;
    height: 26px;
}

.card:nth-child(3n + 2) .card__icon {
    background: var(--teal-100);
    color: var(--teal-700);
}

.card:nth-child(3n + 3) .card__icon {
    background: var(--gold-100);
    color: var(--gold-600);
}

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

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--blue-700);
    font-weight: 750;
}

.card-link .icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.card-link:hover .icon {
    transform: translateX(4px);
}

.card--featured {
    border-color: transparent;
    background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
    color: #fff;
    box-shadow: var(--shadow-md);
}

.card--featured h3 {
    color: #fff;
}

.card--featured p {
    color: rgba(255, 255, 255, .72);
}

.card--featured .card__icon {
    background: rgba(255, 255, 255, .12);
    color: #9cc0ff;
}

.card--featured .card-link {
    color: #fff;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
}

.split--top {
    align-items: start;
}

.split__visual {
    position: relative;
}

.info-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 25% 20%, rgba(55, 124, 240, .25), transparent 28%),
        linear-gradient(145deg, #eaf2ff, #f8fbff 62%, #e3f2ef);
}

.info-visual::before,
.info-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(36, 104, 229, .16);
    border-radius: 50%;
}

.info-visual::before {
    width: 400px;
    height: 400px;
}

.info-visual::after {
    width: 520px;
    height: 520px;
}

.info-visual img {
    position: relative;
    z-index: 1;
    width: min(86%, 490px);
}

.content-lead {
    color: var(--muted);
    font-size: 18px;
}

.check-list,
.feature-list,
.document-list {
    display: grid;
    gap: 15px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.feature-list li,
.document-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list .icon,
.feature-list .icon,
.document-list .icon {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    color: var(--teal-700);
}

.feature-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy-950);
}

.feature-list span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.process-grid {
    counter-reset: process;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.process-step {
    counter-increment: process;
    position: relative;
    min-height: 230px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
    overflow: hidden;
}

.process-step::before {
    content: "0" counter(process);
    display: block;
    margin-bottom: 28px;
    color: #8db7ff;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .1em;
}

.process-step::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -55px;
    right: -48px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.process-step h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
}

.process-step p {
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
}

.callout {
    padding: 26px 28px;
    border: 1px solid #cadcf7;
    border-radius: var(--radius);
    background: var(--blue-50);
}

.callout--warning {
    border-color: #ead6a3;
    background: #fff9ea;
}

.callout--success {
    border-color: #bfe3d2;
    background: #effaf4;
}

.callout__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--navy-950);
    font-weight: 780;
}

.callout__head .icon {
    color: var(--blue-700);
}

.callout--warning .callout__head .icon {
    color: var(--gold-600);
}

.callout p,
.callout ul {
    color: var(--muted);
}

.quiz-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.quiz-intro {
    position: relative;
    overflow: hidden;
    padding: 48px;
    background:
        radial-gradient(circle at 85% 14%, rgba(55, 124, 240, .32), transparent 30%),
        linear-gradient(155deg, var(--navy-950), var(--navy-700));
    color: #fff;
}

.quiz-intro::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(255, 255, 255, .025), 0 0 0 80px rgba(255, 255, 255, .018);
}

.quiz-intro h2 {
    color: #fff;
}

.quiz-intro p {
    color: rgba(255, 255, 255, .7);
}

.quiz-intro__facts {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.quiz-intro__facts span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.quiz-intro__facts .icon {
    width: 18px;
    height: 18px;
    color: #87d9cd;
}

.quiz {
    padding: 46px;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
}

.quiz-progress__bar {
    height: 8px;
    flex: 1 1 auto;
    overflow: hidden;
    border-radius: 100px;
    background: var(--surface-3);
}

.quiz-progress__bar span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue-600), var(--teal-600));
    transition: width 260ms ease;
}

.quiz-progress__text {
    min-width: 64px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.quiz-step[hidden] {
    display: none;
}

.quiz-step h3 {
    margin-bottom: 8px;
    font-size: 24px;
}

.quiz-step > p {
    margin-bottom: 26px;
    color: var(--muted);
}

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

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card span {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    color: var(--ink);
    font-weight: 650;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.option-card input:checked + span {
    border-color: var(--blue-600);
    background: var(--blue-50);
    box-shadow: 0 0 0 3px rgba(36, 104, 229, .1);
    color: var(--blue-700);
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.quiz-actions .button[data-quiz-prev] {
    visibility: hidden;
}

.quiz-actions .button[data-quiz-prev].is-visible {
    visibility: visible;
}

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

.fact-card {
    padding: 26px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .1);
}

.fact-card__number {
    display: block;
    margin-bottom: 10px;
    color: #8fb8ff;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.fact-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.fact-card p {
    color: rgba(255, 255, 255, .63);
    font-size: 14px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    border: 0;
    background: transparent;
    color: var(--navy-950);
    font-size: 18px;
    font-weight: 730;
    text-align: left;
    cursor: pointer;
}

.faq-plus {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--blue-100);
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 3px;
    background: var(--blue-700);
    transform: translate(-50%, -50%);
    transition: transform var(--transition), opacity var(--transition);
}

.faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer > div {
    max-width: 880px;
    padding: 0 54px 26px 4px;
    color: var(--muted);
}

.faq-answer p,
.faq-answer ul {
    margin-bottom: 12px;
}

.faq-answer a {
    color: var(--blue-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section--cta {
    padding-block: 70px;
    background: var(--surface-2);
}

.cta-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 64px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 92% 10%, rgba(55, 124, 240, .48), transparent 32%),
        linear-gradient(135deg, var(--navy-950), #133f72);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -120px;
    bottom: -190px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .025), 0 0 0 110px rgba(255, 255, 255, .018);
}

.cta-panel__content {
    max-width: 750px;
}

.cta-panel h2 {
    margin-bottom: 15px;
    color: #fff;
}

.cta-panel p {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: 80px 88px;
    background:
        radial-gradient(circle at 80% 5%, rgba(55, 124, 240, .28), transparent 30%),
        linear-gradient(140deg, var(--navy-950), #123c6d);
    color: #fff;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 2%;
    bottom: -210px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .02), 0 0 0 120px rgba(255, 255, 255, .015);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.page-hero h1 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .72);
    font-size: 19px;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.breadcrumbs {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.breadcrumbs ol {
    min-height: 52px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs li,
.breadcrumbs a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.breadcrumbs a:hover {
    color: var(--blue-700);
}

.timeline {
    position: relative;
    display: grid;
    gap: 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 23px;
    width: 2px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item__marker {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 6px solid var(--surface);
    border-radius: 50%;
    background: var(--blue-600);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 0 1px var(--line);
}

.timeline-item__body {
    padding: 2px 0 0;
}

.timeline-item__body h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.timeline-item__body p {
    color: var(--muted);
}

.comparison-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    border-spacing: 0;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}

.comparison-table th {
    background: var(--surface-3);
    color: var(--navy-950);
    font-size: 14px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 28%;
    font-weight: 730;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table td + td,
.comparison-table th + th {
    border-left: 1px solid var(--line);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.price-card--featured {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-md);
}

.price-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 100px;
    background: var(--blue-100);
    color: var(--blue-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.price-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--blue-100);
    color: var(--blue-700);
}

.price-card__price {
    margin: 8px 0 22px;
    color: var(--navy-950);
    font-size: 28px;
    font-weight: 820;
    letter-spacing: -.035em;
}

.price-card > p {
    color: var(--muted);
}

.price-card ul {
    display: grid;
    gap: 11px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

.price-card li {
    display: flex;
    gap: 9px;
    color: #45566e;
    font-size: 14px;
}

.price-card li .icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--teal-700);
}

.price-card .button {
    margin-top: auto;
}

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

.article-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.article-card__visual {
    min-height: 180px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 75% 20%, rgba(55, 124, 240, .22), transparent 28%),
        linear-gradient(145deg, #e9f2ff, #f7faff);
    color: var(--blue-700);
}

.article-card:nth-child(2) .article-card__visual {
    background: linear-gradient(145deg, #e3f5f1, #f7fbfa);
    color: var(--teal-700);
}

.article-card:nth-child(3) .article-card__visual {
    background: linear-gradient(145deg, #fff1d7, #fffaf1);
    color: var(--gold-600);
}

.article-card__visual .icon {
    width: 64px;
    height: 64px;
    opacity: .85;
}

.article-card__body {
    padding: 26px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 13px;
    color: var(--muted-2);
    font-size: 12px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-meta .icon {
    width: 14px;
    height: 14px;
}

.article-card h3 {
    font-size: 21px;
}

.article-card p {
    color: var(--muted);
    font-size: 14px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 56px;
}

.article-content {
    min-width: 0;
}

.article-content h2 {
    margin-top: 50px;
    font-size: 30px;
}

.article-content h3 {
    margin-top: 36px;
    font-size: 22px;
}

.article-content p,
.article-content li {
    color: #47586f;
}

.article-content ul,
.article-content ol {
    display: grid;
    gap: 9px;
    padding-left: 22px;
}

.article-content a {
    color: var(--blue-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content .callout {
    margin-block: 32px;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

.sidebar-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.sidebar-card h3 {
    font-size: 18px;
}

.sidebar-card nav {
    display: grid;
    gap: 10px;
}

.sidebar-card nav a {
    color: var(--muted);
    font-size: 14px;
}

.sidebar-card nav a:hover {
    color: var(--blue-700);
}

.legal-document {
    max-width: 900px;
    margin-inline: auto;
}

.legal-document h2 {
    margin-top: 46px;
    font-size: 28px;
}

.legal-document h3 {
    margin-top: 30px;
    font-size: 20px;
}

.legal-document p,
.legal-document li {
    color: #47586f;
}

.legal-document ol,
.legal-document ul {
    display: grid;
    gap: 9px;
    padding-left: 22px;
}

.legal-requisites {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 8px 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
}

.legal-requisites dt {
    color: var(--muted);
}

.legal-requisites dd {
    margin: 0;
    color: var(--navy-950);
    font-weight: 650;
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: start;
    gap: 48px;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--blue-100);
    color: var(--blue-700);
}

.contact-card strong,
.contact-card span,
.contact-card a {
    display: block;
}

.contact-card strong {
    margin-bottom: 4px;
    color: var(--navy-950);
}

.contact-card span {
    color: var(--muted);
    font-size: 14px;
}

.contact-card a:hover {
    color: var(--blue-700);
}

.lead-form {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.lead-form--compact {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.form-heading {
    margin-bottom: 26px;
}

.form-heading h3 {
    margin-bottom: 9px;
    font-size: 28px;
}

.form-heading p {
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.field {
    display: grid;
    gap: 7px;
}

.field--full {
    grid-column: 1 / -1;
}

.field > span {
    color: #3c4e65;
    font-size: 13px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #d5dfeb;
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
    height: 52px;
    padding: 0 15px;
}

.field textarea {
    min-height: 116px;
    padding: 14px 15px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9ba8b8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(36, 104, 229, .09);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
    border-color: var(--red-700);
    background: #fffafa;
}

.consent-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    margin: 20px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--blue-600);
}

.consent-check a {
    color: var(--blue-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-footnote {
    margin: 13px 0 0;
    color: var(--muted-2);
    font-size: 11px;
    text-align: center;
}

.form-response {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.form-response.is-visible {
    display: block;
}

.form-response.is-success {
    background: var(--green-100);
    color: var(--green-700);
}

.form-response.is-error {
    background: var(--red-100);
    color: var(--red-700);
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.notice {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 12px;
}

.notice--success {
    background: var(--green-100);
    color: var(--green-700);
}

.notice--error {
    background: var(--red-100);
    color: var(--red-700);
}

.site-footer {
    padding-top: 76px;
    background: var(--navy-950);
    color: rgba(255, 255, 255, .68);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .8fr .8fr 1fr;
    gap: 54px;
    padding-bottom: 48px;
}

.brand--footer .brand__text strong {
    color: #fff;
}

.brand--footer .brand__text small {
    color: rgba(255, 255, 255, .5);
}

.footer-brand p {
    max-width: 360px;
    margin: 22px 0 18px;
    font-size: 14px;
}

.footer-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.footer-area .icon {
    width: 18px;
    height: 18px;
    color: #8fb8ff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
}

.footer-column a,
.footer-column > span {
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
    transition: color var(--transition);
}

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

.footer-contacts a,
.footer-contacts > span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contacts .icon {
    width: 17px;
    height: 17px;
    color: #8fb8ff;
}

.footer-contacts .button {
    margin-top: 9px;
    color: #fff;
}

.ad-disclaimer--footer {
    margin-bottom: 36px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 218, 132, .18);
    border-radius: 16px;
    background: rgba(255, 218, 132, .07);
    color: rgba(255, 235, 191, .84);
}

.ad-disclaimer--footer .ad-disclaimer__icon {
    background: rgba(255, 220, 144, .12);
    color: #ffd783;
}

.footer-bottom {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

.footer-bottom > div,
.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

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

.modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.is-open {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 17, 32, .72);
    backdrop-filter: blur(7px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 640px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .34);
}

.modal__content {
    padding: 40px;
}

.modal__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--navy-950);
    cursor: pointer;
}

.modal__close .icon {
    width: 19px;
    height: 19px;
}

.cookie-banner {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: min(calc(100% - 40px), 720px);
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy-950);
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.cookie-banner a {
    color: var(--blue-700);
    text-decoration: underline;
}

.toast {
    position: fixed;
    z-index: 1200;
    right: 20px;
    bottom: 20px;
    max-width: 360px;
    padding: 15px 18px;
    border-radius: 13px;
    background: var(--navy-950);
    color: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.empty-state {
    padding: 46px;
    border: 1px dashed #cbd8e8;
    border-radius: var(--radius);
    background: var(--surface-2);
    text-align: center;
}

.empty-state .icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    color: var(--blue-600);
}

.error-page {
    min-height: 66vh;
    display: grid;
    place-items: center;
    padding-block: 90px;
    text-align: center;
}

.error-code {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-600);
    font-size: clamp(5rem, 16vw, 10rem);
    font-weight: 850;
    line-height: .9;
    letter-spacing: -.08em;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    :root {
        --container: 1080px;
    }

    .main-nav a {
        padding-inline: 8px;
        font-size: 13px;
    }

    .header-phone {
        display: none;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
        gap: 34px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr .8fr .8fr;
    }

    .footer-contacts {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-contacts h3 {
        width: 100%;
    }
}

@media (max-width: 1020px) {
    :root {
        --header-height: 72px;
    }

    .topbar__inner > span {
        display: none;
    }

    .topbar__inner {
        justify-content: flex-end;
    }

    .main-nav {
        position: fixed;
        z-index: 49;
        top: calc(38px + var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 2px;
        overflow-y: auto;
        padding: 24px 20px 120px;
        border-top: 1px solid var(--line);
        background: #fff;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 16px;
        font-size: 16px;
    }

    .main-nav a.is-active::after {
        top: 12px;
        right: auto;
        bottom: 12px;
        left: 5px;
        width: 3px;
        height: auto;
    }

    .site-header__inner {
        justify-content: space-between;
    }

    .menu-toggle {
        display: grid;
    }

    .header-actions .button {
        display: none;
    }

    .hero__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-block: 70px 80px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        display: none;
    }

    .hero-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .trust-item:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split__visual {
        order: -1;
    }

    .info-visual {
        min-height: 420px;
    }

    .process-grid,
    .grid--3,
    .price-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .quiz-wrap {
        grid-template-columns: 1fr;
    }

    .quiz-intro {
        padding: 42px;
    }

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

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar__contacts > span {
        display: none;
    }

    .topbar__contacts {
        width: 100%;
        justify-content: center;
    }

    .brand__text strong {
        font-size: 18px;
    }

    .brand__text small {
        font-size: 9px;
    }

    .global-disclaimer .container {
        width: 100%;
    }

    .ad-disclaimer--bar {
        min-height: 102px;
        padding: 13px 14px;
    }

    .ad-disclaimer p {
        font-size: 12px;
    }

    .ad-disclaimer__icon {
        width: 34px;
        height: 34px;
    }

    .hero__inner {
        padding-block: 58px 70px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .hero__lead {
        font-size: 17px;
    }

    .hero__actions {
        display: grid;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__points {
        display: grid;
    }

    .hero-trust {
        margin-top: 0;
        padding-top: 14px;
        background: var(--surface-2);
    }

    .hero-trust__grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .trust-item {
        min-height: 96px;
        padding: 18px;
    }

    .trust-item + .trust-item,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .section {
        padding-block: 74px;
    }

    .section--tight {
        padding-block: 56px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading p,
    .content-lead {
        font-size: 16px;
    }

    .grid--2,
    .grid--3,
    .grid--4,
    .process-grid,
    .price-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .process-step,
    .price-card {
        padding: 25px;
    }

    .info-visual {
        min-height: 330px;
        border-radius: var(--radius);
    }

    .quiz-intro,
    .quiz {
        padding: 28px;
    }

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

    .quiz-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cta-panel {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 38px 28px;
    }

    .cta-panel .button {
        width: 100%;
    }

    .page-hero {
        padding-block: 58px 66px;
    }

    .page-hero p {
        font-size: 17px;
    }

    .page-hero__actions {
        display: grid;
    }

    .page-hero__actions .button {
        width: 100%;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        border-radius: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        min-width: 210px;
        padding: 16px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-requisites {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .legal-requisites dd + dt {
        margin-top: 10px;
    }

    .lead-form,
    .modal__content {
        padding: 26px;
    }

    .lead-form--compact {
        padding: 0;
    }

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

    .field--full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contacts {
        grid-column: 1 / -1;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 24px;
    }

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

    .cookie-banner .button {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .brand img {
        width: 40px;
        height: 40px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.25rem;
    }

    .hero__lead,
    .page-hero p {
        font-size: 16px;
    }

    .section {
        padding-block: 62px;
    }

    .quiz-actions {
        grid-template-columns: 1fr;
    }

    .quiz-actions .button[data-quiz-prev] {
        order: 2;
    }

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

    .footer-brand,
    .footer-contacts {
        grid-column: auto;
    }
}
