:root {
    --bg: #ffffff;
    --text: #0b1220;
    --muted: #5a6475;
    --blue: #1f3a93;
    --blue-2: #16307d;
    --sky: #eaf0ff;
    --gold: #ffc857;
    --card: #ffffff;
    --soft: #f4f4f4;
    --border: rgba(16, 24, 40, 0.12);
    --shadow: 0 18px 60px rgba(11, 18, 32, 0.16);
    --shadow-soft: 0 10px 30px rgba(11, 18, 32, 0.1);
    --radius: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        'Segoe UI',
        Roboto,
        Arial,
        'Noto Sans',
        sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.45;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 18px;
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}
.preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 620px;
    padding: 0 20px;
    text-align: center;
}
.preloader__logo {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    overflow: hidden;
}
.preloader__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 8px 0 0;
    line-height: 1.4;
}
.preloader__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin: 0;
    line-height: 1.3;
}
.preloader__bar {
    width: 180px;
    height: 6px;
    background: rgba(31, 58, 147, 0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 4px;
}
.preloader__bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 999px;
    animation: load 1s infinite ease-in-out;
}
.preloader__percent {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-top: 4px;
}
@keyframes load {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(280%);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        backdrop-filter 0.25s ease,
        transform 0.3s ease;
}
.header--hidden {
    transform: translateY(-100%);
}
.header--transparent {
    background: transparent;
}
.header--solid {
    background: rgba(31, 58, 147, 0.96);
    box-shadow: 0 12px 34px rgba(10, 20, 60, 0.25);
    backdrop-filter: saturate(140%) blur(10px);
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
}

.brand__mark img {
    width: 50px;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand__name {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #fff;
}
.brand__sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav__link {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    padding: 10px 10px;
    border-radius: 12px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.nav__link .fa {
    font-size: 14px;
    margin-right: 4px;
}
.nav__link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__cta {
    display: inline-flex;
}
.city {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}
.city small {
    opacity: 0.82;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.08s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1px;
    gap: 6px;
}
.btn .fa {
    font-size: 16px;
}
.btn:active {
    transform: translateY(1px);
}
.btn--gold {
    background: var(--gold);
    color: #1a1a1a;
}
.btn--gold:hover {
    background: #ffd679;
}
.btn--outline {
    background: rgba(255, 255, 255, 0);
    color: #000;
    border-color: rgba(255, 255, 255, 0.28);
}
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

/* Mobile menu */
.mobile {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(11, 18, 32, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.mobile.is-open {
    opacity: 1;
    pointer-events: auto;
}
.mobile__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(420px, 92vw);
    background: #fff;
    border-radius: 28px 0 0 28px;
    box-shadow: var(--shadow);
    transform: translateX(12px);
    transition: transform 0.22s ease;
    display: flex;
    flex-direction: column;
}
.mobile.is-open .mobile__panel {
    transform: translateX(0);
}
.mobile__head {
    padding: 18px 18px 10px;
}
.mobile__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.mobile__close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
}
.mobile__start {
    flex: 1;
}
.mobile__links {
    padding: 10px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile__links a {
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 600;
    font-size: 15px;
}
.mobile__links a:hover {
    background: rgba(31, 58, 147, 0.06);
}
.mobile__foot {
    margin-top: auto;
    padding: 14px 18px 18px;
}
.mobile__sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    display: none;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
}

/* Sections */
.section {
    padding: 78px 0;
}
.section--soft {
    background: var(--soft);
}
.section--sky {
    background: var(--sky);
}
.section--blue {
    background: var(--blue);
    color: #fff;
}

.h1 {
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 14px;
    font-weight: 900;
    letter-spacing: -0.4px;
}
.h2 {
    font-size: 34px;
    line-height: 1.12;
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: -0.2px;
}
.lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
}
.p {
    margin: 0;
    color: var(--muted);
}

/* Hero */
.hero {
    min-height: 92vh;
    padding-top: 96px;
    background:
        linear-gradient(
            120deg,
            rgba(11, 18, 32, 0.82),
            rgba(31, 58, 147, 0.66)
        ),
        radial-gradient(
            60% 60% at 80% 20%,
            rgba(255, 200, 87, 0.26),
            rgba(255, 200, 87, 0) 55%
        ),
        radial-gradient(
            70% 60% at 10% 30%,
            rgba(120, 164, 255, 0.3),
            rgba(120, 164, 255, 0) 60%
        ),
        linear-gradient(180deg, #0b1220, #111a35 45%, #0b1220);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: center;
}
.hero__box {
    padding: 26px 0;
}
.hero__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 18px;
    max-width: 640px;
}
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
}
.pill b {
    font-weight: 900;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.hero__note {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.timer {
    margin-top: 22px;
    padding: 20px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background:
        linear-gradient(
            135deg,
            rgba(255, 200, 87, 0.16) 0%,
            rgba(31, 58, 147, 0.22) 100%
        ),
        rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 12px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.timer__label {
    font-weight: 800;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.timer__time {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 900;
    font-size: 38px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(255, 200, 87, 0.35);
}
.timer__time span {
    display: inline-flex;
    min-width: 56px;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
}
.hero__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}
.hero__card ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.hero__card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    font-size: 13px;
}
.hero__card li i {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}

/* Split block */
.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: center;
}
.illus {
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
    background:
        radial-gradient(
            70% 60% at 30% 20%,
            rgba(255, 200, 87, 0.22),
            rgba(255, 200, 87, 0) 60%
        ),
        radial-gradient(
            70% 60% at 70% 70%,
            rgba(31, 58, 147, 0.18),
            rgba(31, 58, 147, 0) 60%
        ),
        linear-gradient(180deg, #ffffff, #f2f6ff);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: url('../img/man_and_papers.png');
    background-size: cover;
}
.illus__tag {
    margin: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    font-weight: 900;
}

.checklist {
    display: grid;
    gap: 12px;
    margin: 18px 0 16px;
}
.check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
}
.check__dot {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(31, 58, 147, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--blue);
    flex-shrink: 0;
}
.check__dot .fa {
    font-size: 14px;
}
.check p {
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

/* Feature icons */
.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 22px;
}
.feature {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease;
}
.feature:hover {
    transform: translateY(-3px);
}
.feature__ic {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: rgba(31, 58, 147, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 10px;
    flex-shrink: 0;
}
.feature__ic .fa {
    font-size: 22px;
}
.feature h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 900;
}
.feature p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

/* Trust stats */
.trust {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(
        135deg,
        rgba(31, 58, 147, 0.96),
        rgba(31, 58, 147, 0.55) 45%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: var(--shadow);
}
.trust__inner {
    padding: 28px;
}
.trust__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
}
.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.stat {
    padding: 16px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}
.stat b {
    display: block;
    font-size: 22px;
    font-weight: 900;
}
.stat span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
}
.trust__bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.trust__bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}
.trust__bullets li i {
    font-style: normal;
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust__bullets li i.fa {
    font-size: 14px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.step {
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 28px 24px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    opacity: 0;
    transition: opacity 0.2s ease;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(31, 58, 147, 0.18);
}
.step:hover::before {
    opacity: 1;
}
.step b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(31, 58, 147, 0.1),
        rgba(255, 200, 87, 0.12)
    );
    border: 2px solid rgba(31, 58, 147, 0.12);
    color: var(--blue);
    margin-bottom: 16px;
    font-weight: 900;
    font-size: 22px;
}
.step h4 {
    margin: 0 0 10px;
    font-weight: 950;
    font-size: 17px;
    line-height: 1.3;
    color: var(--text);
}
.step p {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
    font-size: 14px;
    line-height: 1.5;
}

/* Legal info block */
.legal-info {
    margin-top: 28px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        radial-gradient(
            80% 60% at 20% 10%,
            rgba(31, 58, 147, 0.04),
            transparent 60%
        ),
        #fff;
    box-shadow: var(--shadow-soft);
    padding: 28px;
}
.legal-info__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(31, 58, 147, 0.08);
    border: 1px solid rgba(31, 58, 147, 0.12);
    font-weight: 900;
    font-size: 14px;
    color: var(--blue);
    margin-bottom: 18px;
}
.legal-info__badge .fa {
    font-size: 16px;
}
.legal-info__intro {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(31, 58, 147, 0.08);
}
.legal-info__intro p {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.6;
}
.legal-info__intro p:last-child {
    margin-bottom: 0;
}
.legal-info__important h5 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 950;
    color: var(--text);
}
.legal-info__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}
.legal-info__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(31, 58, 147, 0.03);
    border: 1px solid rgba(31, 58, 147, 0.08);
    font-weight: 650;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
}
.legal-info__icon {
    flex: 0 0 auto;
    font-size: 20px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
}
.legal-info__icon .fa {
    font-size: 18px;
}
.legal-info__cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(31, 58, 147, 0.08);
}

/* Cases */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}
.card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 18px;
}
.card h4 {
    margin: 0 0 8px;
    font-weight: 900;
}
.card p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}
.card__sum {
    font-size: 24px;
    font-weight: 1000;
    color: var(--blue);
    letter-spacing: -0.2px;
}

/* Quiz */
.quiz {
    margin-top: 18px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background:
        radial-gradient(
            80% 60% at 20% 10%,
            rgba(31, 58, 147, 0.04),
            transparent 60%
        ),
        radial-gradient(
            70% 50% at 80% 90%,
            rgba(255, 200, 87, 0.06),
            transparent 60%
        ),
        #fff;
    box-shadow:
        0 0 0 1px rgba(31, 58, 147, 0.08) inset,
        var(--shadow-soft);
    overflow: hidden;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.quiz__head {
    padding: 44px 32px 28px;
    text-align: center;
    border-bottom: 1px solid rgba(31, 58, 147, 0.08);
}
.quiz__body {
    padding: 28px 32px 32px;
}
.quiz__kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 900;
    color: var(--blue);
    background: rgba(31, 58, 147, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.quiz__title {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.3px;
}
.quiz__sub {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
    font-size: 15px;
    line-height: 1.5;
}

.quiz__options {
    display: grid;
    gap: 10px;
}
.quiz__options:not(:empty) {
    margin: 16px 0;
}
.opt {
    padding: 14px 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    text-align: left;
    transition:
        transform 0.08s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.opt:hover {
    background: rgba(31, 58, 147, 0.05);
}
.opt.is-selected {
    border-color: rgba(31, 58, 147, 0.55);
    background: rgba(31, 58, 147, 0.08);
}
.opt:active {
    transform: translateY(1px);
}

.quiz__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.quiz__micro {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 650;
    font-size: 13px;
    text-align: center;
}
.quiz__intro-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.quiz__intro-cta .btn {
    padding: 16px 32px;
    font-size: 16px;
}

.progress {
    height: 10px;
    background: rgba(31, 58, 147, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 16px;
}
.progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 999px;
    transition: width 0.25s ease;
}

.form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.field {
    display: grid;
    gap: 6px;
}
.field label {
    font-weight: 900;
    font-size: 13px;
    color: #1a2338;
}
.field input {
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    outline: none;
}
.field select {
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    outline: none;
    background: #fff;
    cursor: pointer;
}
.field input:focus,
.field select:focus {
    border-color: rgba(31, 58, 147, 0.55);
    box-shadow: 0 0 0 4px rgba(31, 58, 147, 0.12);
}
.field-checkbox {
    display: flex;
    align-items: flex-start;
    margin: 12px 0;
}
.field-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(26, 35, 56, 0.85);
}
.field-checkbox input[type='checkbox'] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}
.field-checkbox a {
    color: var(--blue);
    text-decoration: underline;
}
.field-checkbox a:hover {
    text-decoration: none;
}

/* Reviews slider */
.slider {
    position: relative;
    margin-top: 18px;
}
.track {
    display: flex;
    gap: 14px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 12px;
    align-items: center;
    scrollbar-width: none;
}
.track::-webkit-scrollbar {
    display: none;
}
.slide {
    scroll-snap-align: center;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}
.slide--landscape {
    width: 380px;
    height: auto;
}
.slide--portrait {
    width: 280px;
    height: auto;
}
.slide video {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    background: #000;
    transition: opacity 0.18s ease;
}
.slide--portrait video {
    height: 490px;
}

.slide video.video--masked {
    opacity: 0;
}

/* Video preview overlay */
.video-preview {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            60% 60% at 50% 50%,
            rgba(31, 58, 147, 0.18),
            rgba(31, 58, 147, 0) 60%
        ),
        linear-gradient(
            180deg,
            rgba(11, 18, 32, 0.459),
            rgba(11, 18, 32, 0.363)
        );
    opacity: 1;
    transition: opacity 0.18s ease;
}
.video-preview.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.video-play {
    width: 76px;
    height: 76px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition:
        transform 0.12s ease,
        background 0.18s ease;
}
.video-play:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
}
.video-play:active {
    transform: translateY(0px);
}
.video-play__badge {
    width: 52px;
    height: 52px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 18px 55px rgba(31, 58, 147, 0.35);
    display: grid;
    place-items: center;
}
.video-play__badge::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}

@media (max-width: 760px) {
    .slide--landscape {
        width: 320px;
    }
    .slide--portrait {
        width: 72vw;
        height: calc(72vw * 1.75);
    }
    .slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide,
    .slide--landscape {
        width: 320px;
        max-width: 320px !important;
    }
}
.slide__top {
    height: 220px;
    background:
        linear-gradient(
            135deg,
            rgba(31, 58, 147, 0.18),
            rgba(255, 200, 87, 0.18)
        ),
        #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    border: 1px solid rgba(31, 58, 147, 0.22);
    background: #fff;
    cursor: pointer;
    font-weight: 1000;
    color: var(--blue);
    box-shadow: var(--shadow-soft);
}
.slide__body {
    padding: 16px;
    background: #fff;
    z-index: 99;
}
.slide__body b {
    display: block;
    font-weight: 950;
}
.slide__body p {
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    z-index: 10;
    font-size: 32px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    padding-top: 5px;
    line-height: 1;
    color: var(--blue);
}
.arrow--l {
    left: -10px;
}
.arrow--r {
    right: -10px;
}

/* FAQ */
.faq {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}
.qa {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}
.qa button {
    width: 100%;
    text-align: left;
    padding: 16px 16px;
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 950;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.qa button span {
    opacity: 0.88;
    font-weight: 900;
}
.qa__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}
.qa__a div {
    padding: 0 16px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 650;
}
.qa.is-open .qa__a {
    max-height: 240px;
}

/* CTA block */
.cta {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.25);
    padding: 22px;
}
.cta h3 {
    margin: 0 0 8px;
    font-weight: 950;
    font-size: 20px;
}
.cta p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 650;
}
.cta .field label {
    color: rgba(255, 255, 255, 0.92);
}
.cta .field input {
    background: rgba(255, 255, 255, 0.95);
}

/* Footer */
.footer {
    background: var(--blue);
    color: #fff;
    padding: 54px 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: start;
}
.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer__links a {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}
.footer__links a:hover {
    color: #1a1a1a;
    background: var(--gold);
    border-color: transparent;
}
.footer__muted {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 650;
    margin-top: 12px;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__social a {
    font-size: 35px;
}

/* Chat */
.chatfab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 260;
    display: inline-flex;
}
.chatfab button {
    width: 56px;
    height: 56px;
    border-radius: 22px;
    border: 0;
    background: linear-gradient(135deg, var(--gold), #ffd679);
    font-weight: 1000;
    cursor: pointer;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}
.chat {
    position: fixed;
    right: 18px;
    bottom: 86px;
    z-index: 260;
    width: min(380px, calc(100vw - 36px));
    border-radius: 26px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
}
.chat.is-open {
    display: block;
}
.chat__head {
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background:
        linear-gradient(
            135deg,
            rgba(31, 58, 147, 0.1),
            rgba(255, 200, 87, 0.1)
        ),
        #fff;
}
.chat__head b {
    font-weight: 950;
}
.chat__head small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}
.chat__close {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
}
.chat__body {
    padding: 12px 14px;
    display: grid;
    gap: 10px;
    max-height: 320px;
    overflow: auto;
}
.msg {
    padding: 12px 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    max-width: 90%;
}
.msg--me {
    margin-left: auto;
    background: rgba(31, 58, 147, 0.06);
    border-color: rgba(31, 58, 147, 0.16);
}
.msg b {
    display: block;
    font-weight: 950;
    font-size: 13px;
}
.msg p {
    margin: 4px 0 0;
    color: var(--muted);
    font-weight: 650;
}
.chat__chips {
    padding: 12px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--border);
    background: #fff;
}
.chip {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 900;
    font-size: 13px;
}
.chip:hover {
    background: rgba(31, 58, 147, 0.06);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1020px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .split {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .header__nav {
        display: none;
    }
    .header__cta {
        display: none;
    }
    .burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .brand {
        min-width: auto;
    }
    .mobile__sticky {
        display: block;
    }
}

/* Tablet adaptive */
@media (max-width: 768px) {
    .h1 {
        font-size: 38px;
    }
    .h2 {
        font-size: 32px;
    }
    section {
        padding: 50px 0;
    }
    .container {
        padding: 0 20px;
    }
    .hero {
        min-height: 88vh;
        padding-top: 80px;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero__box {
        padding: 20px 0;
    }
    .hero__sub {
        font-size: 15px;
    }
    .hero__meta {
        gap: 8px;
        margin: 14px 0 16px;
    }
    .pill {
        padding: 8px 10px;
        font-size: 12px;
    }
    .hero__cta {
        gap: 10px;
    }
    .timer {
        margin-top: 18px;
        padding: 18px 20px;
    }
    .timer__label {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .timer__time {
        font-size: 32px;
        gap: 10px;
    }
    .timer__time span {
        min-width: 48px;
        padding: 5px 8px;
    }
    .hero__card {
        padding: 20px;
    }
    .hero__card h3 {
        font-size: 15px;
    }
    .hero__card p {
        font-size: 13px;
    }
    .hero__card li {
        font-size: 12px;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .trust__inner {
        padding: 24px;
    }
    .trust__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat {
        padding: 14px;
    }
    .stat b {
        font-size: 20px;
    }
    .stat span {
        font-size: 12px;
    }
    .trust__bullets {
        gap: 8px;
    }
    .trust__bullets li {
        font-size: 13px;
    }
    .quiz__header {
        padding: 20px;
    }
    .quiz__body {
        padding: 24px 20px;
    }
    .timer {
        gap: 10px;
    }
    .timer__box {
        min-width: 60px;
        height: 64px;
    }
    .price {
        padding: 24px;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.modal.is-open {
    display: flex;
    opacity: 1;
}
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(4px);
}
.modal__content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(11, 18, 32, 0.3);
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px;
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--muted);
    transition: all 0.2s ease;
    z-index: 10;
}
.modal__close:hover {
    background: var(--soft);
    color: var(--text);
}
.modal__header {
    text-align: center;
    margin-bottom: 28px;
}
.modal__title {
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 10px;
    color: var(--text);
    line-height: 1.2;
}
.modal__subtitle {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    font-weight: 600;
}
.modal__form {
    margin-bottom: 24px;
}
.modal__field {
    margin-bottom: 16px;
}
.modal__field label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
}
.modal__field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-size: 15px;
    transition: border-color 0.2s ease;
}
.modal__field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-size: 15px;
    transition: border-color 0.2s ease;
    background: #fff;
    cursor: pointer;
}
.modal__field input:focus,
.modal__field select:focus {
    outline: none;
    border-color: var(--blue);
}
.modal__field-checkbox {
    display: flex;
    align-items: flex-start;
    margin: 16px 0;
}
.modal__field-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(26, 35, 56, 0.85);
}
.modal__field-checkbox input[type='checkbox'] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}
.modal__field-checkbox a {
    color: var(--blue);
    text-decoration: underline;
}
.modal__field-checkbox a:hover {
    text-decoration: none;
}
.modal__submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-bottom: 10px;
}
.modal__note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    font-weight: 600;
}
.modal__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--soft);
    border-radius: 16px;
}
.modal__benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.modal__benefit .fa {
    color: #4caf50;
    font-size: 16px;
}
.modal__privacy {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 20px;
    padding: 14px;
    background: rgba(31, 58, 147, 0.04);
    border-radius: 12px;
    font-weight: 600;
}
.modal__timer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(
        135deg,
        rgba(31, 58, 147, 0.08),
        rgba(255, 200, 87, 0.08)
    );
    border-radius: 16px;
}
.modal__timer-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
}
.modal__timer .timer {
    justify-content: center;
}

/* Modal Step 2 */
.modal__callback {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--soft);
    border-radius: 16px;
}
.modal__callback-title {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 12px;
    color: var(--text);
}
.modal__phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}
.modal__phone {
    font-size: 18px;
    font-weight: 900;
    color: var(--blue);
    text-decoration: none;
}
.modal__phone:hover {
    text-decoration: underline;
}
.modal__callback-note {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    font-weight: 600;
}
.modal__priority {
    margin-bottom: 24px;
}
.modal__priority-title {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 12px;
    color: var(--text);
}
.modal__messengers {
    display: flex;
    gap: 10px;
}
.modal__messenger {
    flex: 1;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.modal__messenger:hover {
    background: var(--soft);
    border-color: var(--blue);
}
.modal__messenger .fa {
    font-size: 18px;
}
.modal__messenger--max {
    width: 100%;
    margin-top: 10px;
    flex: none;
}
.modal__call {
    margin-bottom: 24px;
    text-align: center;
}

/* Cases Modal Styles */
.modal__content--wide {
    max-width: 900px;
    width: 95vw;
}
.cases-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.cases-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}
.cases-table thead {
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff;
}
.cases-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cases-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}
.cases-table tbody tr:last-child td {
    border-bottom: none;
}
.cases-table tbody tr:hover {
    background: var(--soft);
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.doc-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.doc-link:hover {
    color: var(--gold);
    text-decoration: underline;
}
.doc-link::after {
    content: '→';
    font-size: 16px;
}
.modal__call-title {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 12px;
    color: var(--text);
}
.modal__call-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-bottom: 8px;
}
.modal__call-note {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    font-weight: 600;
}
.modal__download {
    margin-bottom: 24px;
    text-align: center;
}
.modal__download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    transition: all 0.2s ease;
}
.modal__download-link:hover {
    background: var(--soft);
}
.modal__download-link .fa {
    font-size: 18px;
}
.modal__urgency {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 20px;
    padding: 14px;
    background: rgba(255, 200, 87, 0.12);
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

#final label,
#final label a {
    color: #fff;
}

.h2.is-in,
.p.is-in,
.lead.is-in {
    text-align: center;
}

@media (max-width: 560px) {
    .container {
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
    }
    .h1 {
        font-size: 26px;
        line-height: 1.15;
    }
    .h2 {
        font-size: 22px;
        line-height: 1.2;
    }
    .h3 {
        font-size: 18px;
    }
    .hero {
        min-height: 85vh;
        padding-top: 75px;
        padding-bottom: 35px;
        padding-left: 0;
        padding-right: 0;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .hero__box {
        padding: 12px 0;
    }
    .hero__sub {
        font-size: 13px;
        margin: 0 0 12px;
        line-height: 1.4;
    }
    .hero__meta {
        gap: 6px;
        margin: 12px 0 14px;
        flex-wrap: wrap;
    }
    .pill {
        padding: 6px 10px;
        font-size: 10px;
    }
    .hero__cta {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
        margin-top: 14px;
    }
    .hero__cta .btn {
        width: 320px;
        justify-content: center;
        padding: 13px 18px;
        font-size: 14px;
    }
    .hero__note {
        font-size: 11px;
        margin-top: 8px;
    }
    .timer {
        margin-top: 14px;
        padding: 14px 16px;
        border-radius: 18px;
        width: 320px;
    }
    .timer__label {
        font-size: 11px;
        margin-bottom: 8px;
        text-transform: uppercase;
    }
    .timer__time {
        font-size: 22px;
        gap: 6px;
        justify-content: center;
    }
    .timer__time span {
        min-width: 36px;
        padding: 4px 6px;
        border-radius: 8px;
        font-size: 22px;
    }
    .timer__time small {
        font-size: 10px;
    }
    .hero__card {
        display: none !important;
    }
    .brand {
        gap: 8px;
    }
    .brand__sub {
        display: none;
    }
    .brand__logo {
        width: 40px;
        height: 40px;
    }
    .brand__text {
        font-size: 15px;
    }
    .city {
        display: none;
    }
    .arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .arrow--l {
        left: 5px;
    }
    .arrow--r {
        right: 5px;
    }
    section {
        padding: 40px 0;
    }
    .kicker {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .btn {
        padding: 13px 18px;
        font-size: 14px;
    }
    .features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .feature {
        padding: 16px;
    }
    .feature__icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .feature h3 {
        font-size: 16px;
    }
    .feature p {
        font-size: 13px;
    }
    .trust {
        border-radius: 20px;
    }
    .trust__inner {
        padding: 18px 16px;
    }
    .trust__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat {
        padding: 12px 10px;
        border-radius: 14px;
    }
    .stat b {
        font-size: 16px;
    }
    .stat span {
        font-size: 10px;
    }
    .trust__bullets {
        gap: 8px;
    }
    .trust__bullets li {
        font-size: 11px;
        gap: 7px;
    }
    .trust__bullets li i {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .steps {
        gap: 14px;
    }
    .step {
        padding: 16px;
    }
    .step__num {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
    .step h3 {
        font-size: 16px;
    }
    .step p {
        font-size: 13px;
    }
    .split {
        gap: 18px;
    }
    .split__text {
        padding: 0;
    }
    .split__img {
        min-height: 220px;
    }
    .cards {
        gap: 12px;
    }
    .card {
        padding: 16px;
    }
    .card__icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .price {
        padding: 18px;
    }
    .price__old {
        font-size: 18px;
    }
    .price__new {
        font-size: 28px;
    }
    .quiz__header {
        padding: 16px;
        gap: 8px;
    }
    .quiz__title {
        font-size: 18px;
    }
    .quiz__body {
        padding: 18px 16px;
    }
    .quiz__micro {
        font-size: 11px;
    }
    .opt {
        padding: 13px 14px;
        font-size: 14px;
    }
    .quiz__controls {
        padding: 14px 16px;
        gap: 10px;
    }
    .quiz__progress {
        height: 4px;
    }
    .timer__box {
        min-width: 48px;
        height: 52px;
        padding: 7px;
    }
    .timer__num {
        font-size: 18px;
    }
    .timer__label {
        font-size: 9px;
    }
    .timer__sep {
        font-size: 18px;
    }
    .field label {
        font-size: 11px;
    }
    .field input,
    .field select {
        padding: 12px 14px;
        font-size: 14px;
    }
    .field-checkbox {
        margin: 10px 0;
    }
    .field-checkbox label {
        font-size: 11px;
    }
    .field-checkbox input[type='checkbox'] {
        width: 16px;
        height: 16px;
    }
    .slide {
        min-width: 260px;
    }
    .slide video {
        height: 180px;
    }
    .slide--portrait video {
        height: 380px;
    }
    .slide__body {
        padding: 12px;
    }
    .slide__body b {
        font-size: 13px;
    }
    .slide__body p {
        font-size: 12px;
        line-height: 1.4;
    }
    .faq {
        gap: 8px;
    }
    .qa button {
        padding: 13px;
        font-size: 14px;
    }
    .qa__a div {
        padding: 0 13px 13px;
        font-size: 13px;
    }
    .cta {
        padding: 16px;
    }
    .cta h3 {
        font-size: 17px;
    }
    .cta p {
        font-size: 13px;
    }
    .footer {
        padding: 35px 0;
    }
    .footer__grid {
        gap: 18px;
    }
    .footer__links {
        gap: 8px;
    }
    .footer__links a {
        padding: 8px 10px;
        font-size: 13px;
    }
    .footer__social a {
        font-size: 26px;
    }
    .modal__content {
        padding: 20px 16px;
        max-height: 85vh;
    }
    .modal__title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .modal__subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .modal__field {
        margin-bottom: 13px;
    }
    .modal__field label {
        font-size: 11px;
    }
    .modal__field input,
    .modal__field select {
        padding: 12px 14px;
        font-size: 14px;
    }
    .modal__field-checkbox {
        margin: 13px 0;
    }
    .modal__field-checkbox label {
        font-size: 11px;
    }
    .modal__field-checkbox input[type='checkbox'] {
        width: 16px;
        height: 16px;
    }
    .modal__submit {
        padding: 13px;
        font-size: 14px;
    }
    .modal__note {
        font-size: 11px;
    }
    .modal__benefits {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 14px;
    }
    .modal__benefit {
        font-size: 12px;
    }
    .modal__messengers {
        flex-direction: column;
        gap: 10px;
    }
    .modal__messenger {
        font-size: 13px;
        padding: 11px;
    }
    .modal__call {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .modal__content--wide {
        max-width: 95vw;
        padding: 20px 12px;
    }
    .cases-table-wrapper {
        margin: 16px -12px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .cases-table {
        font-size: 12px;
    }
    .cases-table th,
    .cases-table td {
        padding: 10px 8px;
        font-size: 11px;
    }
    .cases-table th {
        font-size: 10px;
    }
    .status-badge {
        padding: 3px 8px;
        font-size: 10px;
    }
    .doc-link {
        font-size: 11px;
    }
    .mobile__sticky {
        padding: 11px 14px;
    }
    .mobile__sticky .btn {
        padding: 11px 16px;
        font-size: 13px;
    }
    .chatfab {
        right: 12px;
        bottom: 12px;
    }
    .chatfab button {
        width: 50px;
        height: 50px;
    }
    #final .split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    #final .h2 {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 14px;
    }
    #final .lead {
        font-size: 14px;
        line-height: 1.4;
    }
    #final .timer {
        margin-top: 16px !important;
        padding: 16px 18px;
    }
    #final .timer__label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    #final .timer__time {
        font-size: 26px;
        gap: 8px;
    }
    #final .timer__time span {
        min-width: 40px;
        padding: 5px 7px;
    }
    #final .timer__time small {
        font-size: 12px;
    }
    #final .cta {
        padding: 18px 16px;
        border-radius: 18px;
    }
    #final .cta h3 {
        font-size: 17px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    #final .cta p {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    #final .field {
        margin-bottom: 12px;
    }
    #final .field label {
        font-size: 11px;
        margin-bottom: 5px;
    }
    #final .field input {
        padding: 12px 14px;
        font-size: 14px;
    }
    #final .field-checkbox {
        margin: 12px 0;
    }
    #final .field-checkbox label {
        font-size: 11px;
    }
    #final .field-checkbox input[type='checkbox'] {
        width: 16px;
        height: 16px;
    }
    #final .btn {
        padding: 13px 18px;
        font-size: 14px;
    }
    .chat {
        right: 12px;
        bottom: 75px;
        width: calc(100vw - 24px);
        max-width: 320px;
    }
    .header__row {
        padding: 10px 0;
    }
    .modal__timer .timer {
        width: 100%;
    }
}
