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

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

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

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

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

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

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

:root {
    --cars-bg: #000;
    --cars-text: #f5f5f5;
    --cars-muted: #dfdfdf;
    --cars-accent: #ef1413;
    --cars-success: #7dff65;
    --cars-border: rgba(255, 255, 255, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    color: var(--cars-text);
    background: var(--cars-bg);
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header {
    position: relative;
    z-index: 20;
    padding: 22px 24px 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0;
}

.site-header__logo {
    flex-shrink: 0;
    font-size: 24px;
    max-width: 200px;
    width: 100%;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.site-header__nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 170px;
    flex-wrap: wrap;
}

.site-header__menu a {
    color: var(--cars-muted);
    font-size: 20px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible {
    color: #fff;
}

.site-header__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 200px;
    width: 100%;
    gap: 6px;
    flex-shrink: 0;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

.site-header__phone-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cars-success);
    box-shadow: 0 0 12px rgba(125, 255, 101, 0.8);
}

.site-header__messenger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 0 0 3px;
    border-bottom: 1px solid var(--cars-accent);
    color: var(--cars-muted);
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
}

.site-header__messenger:hover,
.site-header__messenger:focus-visible {
    color: #fff;
}

main {
    min-height: calc(100vh - 120px);
}

.hero {
    overflow: hidden;
    padding: 60px 24px 100px;
}

.hero__inner {
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.hero__eyebrow {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-size: 68px;
    line-height: 115%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-weight: 300;

    text-align: center;
    color: #dfdfdf;
}

.hero__title span {
    display: block;
    font-weight: 700;
}

.hero__description {
    max-width: 783px;
    margin: 34px auto 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 135%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #dfdfdf;
}

.hero__description strong {
    font-weight: 700;
    color: #f9f9f9;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 46px;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    width: 100%;
    min-height: 85px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s;
}

.hero__button:hover,
.hero__button:focus-visible {
    transform: translateY(-2px);
}

.hero__button--primary {
    background: var(--cars-accent);
    position: relative;
    max-width: 426px;
    width: 100%;
    min-width: auto;
    overflow: hidden;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.hero__button--primary::before {
    content: "";
    border-radius: 80px;
    width: 322px;
    height: 58px;
    filter: blur(40px);
    background: rgba(239, 20, 19, 0.9);
    display: block;
    z-index: -1;
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__button--primary::after {
    content: "";
    position: absolute;
    left: 2.5%;
    right: 2.5%;
    top: 0;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.28) 45%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.hero__button--secondary {
    border: 1px solid var(--cars-accent);
    color: #fff;
    max-width: 448px;
    width: 100%;
}

.hero__benefits {
    display: flex;
    justify-content: center;
    gap: 474px;
    margin-top: 62px;
}

.hero__benefit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 380px;
    font-size: 22px;
    line-height: 99%;
    letter-spacing: -0.04em;
    text-align: center;
    width: 402px;
    height: 83px;
    position: relative;
    justify-content: center;
    color: #dfdfdf;
}

.hero__benefit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0%;
    display: block;
    width: 402px;
    z-index: -1;
    height: 83px;
    background-image: url("../images/btn_hero.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.9;
    background-position: center;
}

.hero__benefit strong {
    color: #fff;
}

.hero__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.hero_img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.quick-links {
    padding: 18px 24px 80px;
}

.quick-links__inner {
    max-width: 1680px;
    margin: 0 auto;
    padding-top: 126px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 33px;

    background-size: cover;
    background-position: center top;
}

.quick-links__card {
    min-height: 192px;
    padding: 25px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        radial-gradient(
            160% 120% at 85% 100%,
            rgba(255, 255, 255, 0.09) 0%,
            rgba(255, 255, 255, 0) 35%
        ),
        rgba(19, 19, 20, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quick-links__text {
    margin: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #f4f4f4;
}

.quick-links__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ef1413;
}

.quick-links__arrow {
    color: rgba(255, 255, 255, 0.75);
    font-size: 34px;
    line-height: 1;
}

.offer {
    padding: 200px 24px 200px;
    position: relative;
}

.offer_img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.offer__inner {
    max-width: 1720px;
    margin: 0 auto;
    position: relative;
}

.offer__top {
    display: flex;
    gap: 48px;
    align-items: start;
}

.offer__title {
    margin: 0;
    font-size: 54px;
    text-wrap: balance;
    max-width: 800px;
    line-height: 115%;
    letter-spacing: -0.04em;
    color: #dfdfdf;
    font-weight: 400;
}

.offer__title strong {
    font-weight: 700;
    color: #fff;
}

.offer__intro {
    margin: 0;
    font-weight: 400;
    max-width: 564px;
    font-size: 24px;
    line-height: 135%;
    margin-left: auto;
    letter-spacing: -0.04em;
    color: #dfdfdf;
}

.offer__intro strong {
    font-weight: 700;
    color: #f9f9f9;
}

.offer__proofs {
    margin-top: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.offer__proof-divider {
    flex: 1;
    height: 0;
    border: 2px solid;
    border-image-source: linear-gradient(
        90deg,
        rgba(35, 35, 35, 0.7) 0%,
        rgba(131, 131, 131, 0.7) 51.04%,
        rgba(35, 35, 35, 0.7) 100%
    );
    border-image-slice: 1;
    margin: 0 2px;
}

.offer-proof {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 138px;
    padding: 24px;
    border: 1px solid transparent;
    border-radius: 22px;
    background: rgba(19, 19, 20, 0.95);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.offer-proof__icon-wrap {
    position: absolute;
    top: -31px;
    left: 22px;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(
        212deg,
        #333 0%,
        #212121 48.63%,
        #0a0a0a 80.38%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.offer-proof__icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.offer-proof:nth-of-type(1) {
    max-width: 295px;
    width: 100%;
}

.offer-proof:nth-of-type(2) {
    max-width: 295px;
    width: 100%;
}

.offer-proof:nth-of-type(3) {
    max-width: 608px;
    width: 100%;
}

.offer-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.58) 16%,
        rgba(255, 255, 255, 0.2) 44%,
        rgba(255, 255, 255, 0.06) 100%
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.offer-proof p {
    margin: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #dfdfdf;
    height: 56px;
    margin-top: auto;
}

.offer-proof strong {
    font-weight: 700;
    color: var(--cars-accent);
}

.offer__cards {
    margin-top: 92px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.offer-card {
    padding: 40px;
    position: relative;
    border-radius: 22px;
    height: 640px;
    display: flex;
    flex-direction: column;
}

.offer-card__title {
    margin: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 115%;
    letter-spacing: -0.04em;
    color: #f9f9f9;
}

.offer-card__lead {
    margin: 24px 0 0;
    font-weight: 400;
    font-size: 26px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #dfdfdf;
}

.offer-card__list {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.offer-card__list li {
    position: relative;
    padding-left: 40px;
    font-weight: 400;
    flex: 1 1 40%;
    font-size: 22px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #dfdfdf;
}

.offer-card__list li::before {
    content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    left: 0;
    top: 0px;
    border: 1px solid transparent;
    border-radius: 5px;
    background:
        linear-gradient(212deg, #333 0%, #212121 48.63%, #0a0a0a 80.38%)
            padding-box,
        linear-gradient(
                90deg,
                rgba(35, 35, 35, 0.7) 0%,
                rgba(131, 131, 131, 0.7) 51.04%,
                rgba(35, 35, 35, 0.7) 100%
            )
            border-box;
}

.offer-card__list li::after {
    content: "";
    border-radius: 2px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 8px;
    top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #f3f3f3;
}

.offer-card__image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

.offer-card__button {
    margin: 0 auto 0;
    min-width: 378px;
    min-height: 76px;
    padding: 0 34px;
    border-radius: 999px;
    background: var(--cars-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    bottom: -40px;
    line-height: 115%;
    left: 50%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.offer-card__button::before {
    content: "";
    position: absolute;
    left: 2.5%;
    right: 2.5%;
    top: 0;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.28) 45%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.docs-white {
    padding: 130px 24px 80px;
    background: #f4f4f4 url("../images/back_three.png");

    border-radius: 42px;
}

.docs-white__inner {
    max-width: 1720px;
    margin: 0 auto;

    color: #282828;
}

.docs-white__top {
    display: flex;
    gap: 48px;
    justify-content: space-between;
}

.docs-white__title {
    margin: 0;
    font-size: 54px;
    line-height: 115%;
    letter-spacing: -0.04em;
    color: #333;
    max-width: 896px;
    font-weight: 400;
}

.docs-white__title strong {
    font-weight: 700;
}

.docs-white__intro {
    margin: 0;
    font-size: 24px;
    max-width: 688px;
    line-height: 135%;
    letter-spacing: -0.04em;
    color: #4a4a4a;
}

.docs-white__intro strong {
    font-weight: 700;
    color: #2a2a2a;
}

.docs-white__head-row {
    margin-top: 100px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 100px;
    align-items: center;
}

.docs-white__head-title {
    margin: 0;
    font-size: 40px;
    line-height: 115%;
    letter-spacing: -0.04em;
    color: #333;
}

.docs-white__head-link {
    font-size: 24px;
    line-height: 135%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    display: flex;
    gap: 20px;
    align-items: center;

    color: #ef1413;
}

.docs-white__head-note {
    margin: 0;
    color: #4a4a4a;
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: -0.04em;
    color: #4a4a4a;
}

.docs-white__cards {
    margin-top: 67px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.docs-card {
    background: #e4e4e4;
    border-radius: 22px;
    padding: 40px 40px 90px 40px;
    position: relative;
}

.docs-card__title {
    margin: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 115%;
    letter-spacing: -0.04em;
    color: #333;
}

.docs-card__lead {
    margin: 20px 0 0;
    font-weight: 400;
    font-size: 26px;
    line-height: 135%;
    letter-spacing: -0.04em;
    color: #333;
}

.docs-card__list {
    margin-top: 37px;
    display: grid;
    gap: 26px;
}

.docs-card__list li {
    position: relative;
    padding-left: 44px;
    font-weight: 400;
    font-size: 22px;
    line-height: 125%;
    letter-spacing: -0.04em;
    color: #4a4a4a;
}

.docs-card__list li::before {
    content: "";
    border-radius: 5px;
    width: 26px;
    height: 26px;
    background: linear-gradient(
        212deg,
        #828282 0%,
        #333 48.63%,
        #2c2c2c 80.38%
    );
    position: absolute;
    left: 0;
    top: px;
}

.docs-card__list li::after {
    content: "";
    border-radius: 2px;
    width: 10px;
    height: 10px;
    background: #f3f3f3;
    position: absolute;
    left: 8px;
    top: 8px;
}

.docs-card__note {
    margin: 18px 0 0;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    padding: 14px 16px;
    background: #dddddd;
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: -0.04em;
    color: #4a4a4a;
}

.docs-card__button {
    margin: 0;
    bottom: -20px;
    min-height: 66px;
    min-width: 260px;
    padding: 0 36px;
    border-radius: 999px;
    background: var(--cars-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 112%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16),
        0 16px 30px rgba(239, 20, 19, 0.24);
    overflow: hidden;
}

.docs-white__main-btn {
    margin: 0 auto;
    min-height: 66px;
    min-width: 260px;
    padding: 0 36px;
    border-radius: 999px;
    background: var(--cars-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 112%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.16),
        0 16px 30px rgba(239, 20, 19, 0.24);
    overflow: hidden;
}

.docs-card__button::before,
.docs-white__main-btn::before {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    top: 0;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.28) 45%,
        rgba(255, 255, 255, 0) 100%
    );
}

.docs-white__center-action {
    margin-top: 82px;
    display: flex;
    justify-content: center;
}

.docs-white__outline-btn {
    font-weight: 600;
    font-size: 22px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    border: 2px solid #ef1413;
    border-radius: 80px;
    width: 402px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs-white__extra-title {
    margin: 72px 0 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 115%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #333;
}

.docs-white__chips {
    margin-top: 66px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.docs-white__chip {
    min-height: 76px;
    border-radius: 999px;
    border: 1px solid #d6d6d6;
    background-image: url("../images/back_glass.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 22px;
    line-height: 99%;
    letter-spacing: -0.04em;
    text-align: right;
}

.docs-white__chip-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--cars-accent);
}

.docs-white__chip--active {
    background: var(--cars-accent);
    border-color: var(--cars-accent);
    color: #fff;
}

.docs-white__chip--active .docs-white__chip-arrow {
    color: #fff;
}

.docs-white__bottom-action {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
    .site-header__inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-header__nav {
        order: 3;
        flex-basis: 100%;
    }

    .site-header__actions {
        align-items: center;
    }

    .hero {
        padding-top: 56px;
    }

    .hero__benefits {
        justify-content: center;
        flex-wrap: wrap;
    }

    .quick-links {
        padding: 8px 16px 60px;
    }

    .quick-links__inner {
        padding-top: 86px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .quick-links__text {
        font-size: 28px;
    }

    .quick-links__link {
        font-size: 24px;
    }

    .offer {
        padding: 10px 16px 64px;
    }

    .offer__top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer__title {
        font-size: 42px;
    }

    .offer__intro {
        font-size: 24px;
    }

    .offer__proofs {
        margin-top: 28px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .offer__proof-divider {
        display: none;
    }

    .offer-proof p {
        font-size: 24px;
    }

    .offer-proof__icon-wrap {
        top: -26px;
        width: 52px;
        height: 52px;
    }

    .offer-proof__icon {
        width: 24px;
        height: 24px;
    }

    .offer__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        min-height: auto;
    }

    .offer-card__title {
        font-size: 36px;
    }

    .offer-card__lead {
        font-size: 24px;
    }

    .offer-card__list li {
        font-size: 22px;
    }

    .offer-card__button {
        min-width: 360px;
        font-size: 22px;
    }

    .docs-white {
        padding: 12px 16px 64px;
    }

    .docs-white__inner {
        border-radius: 26px;
        padding: 32px 24px 48px;
    }

    .docs-white__top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .docs-white__title {
        font-size: 42px;
    }

    .docs-white__intro {
        font-size: 23px;
    }

    .docs-white__head-row {
        margin-top: 32px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .docs-white__head-title {
        font-size: 38px;
    }

    .docs-white__head-link {
        font-size: 24px;
    }

    .docs-white__head-note {
        font-size: 20px;
    }

    .docs-white__cards {
        grid-template-columns: 1fr;
    }

    .docs-card__title {
        font-size: 34px;
    }

    .docs-card__lead {
        font-size: 24px;
    }

    .docs-card__list li {
        font-size: 22px;
    }

    .docs-card__button,
    .docs-white__main-btn {
        font-size: 22px;
    }

    .docs-white__outline-btn {
        font-size: 22px;
    }

    .docs-white__extra-title {
        margin-top: 50px;
        font-size: 42px;
    }

    .docs-white__chip {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 12px;
    }

    .site-header__inner {
        gap: 16px;
    }

    .site-header__logo {
        font-size: 22px;
    }

    .site-header__menu {
        justify-content: center;
        gap: 20px;
    }

    .site-header__actions {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .site-header__phone,
    .site-header__messenger {
        justify-content: center;
    }

    .hero {
        padding: 40px 16px 72px;
    }

    .hero__eyebrow {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: 0.14em;
    }

    .hero__title {
        font-size: clamp(36px, 14vw, 56px);
        line-height: 1.02;
    }

    .hero__description {
        margin-top: 26px;
        font-size: 16px;
    }

    .hero__actions {
        gap: 16px;
        margin-top: 34px;
    }

    .hero__button {
        min-width: 100%;
        min-height: 62px;
        padding: 0 24px;
        font-size: 14px;
    }

    .hero__benefits {
        margin-top: 40px;
        gap: 14px;
    }

    .hero__benefit {
        min-width: 100%;
        padding: 18px 20px;
        font-size: 15px;
    }

    .quick-links {
        padding: 0 12px 46px;
    }

    .quick-links__inner {
        padding-top: 44px;
        grid-template-columns: 1fr;
    }

    .quick-links__card {
        min-height: 162px;
        padding: 18px 18px 16px;
        border-radius: 16px;
    }

    .quick-links__text {
        font-size: 20px;
    }

    .quick-links__link {
        font-size: 18px;
    }

    .quick-links__arrow {
        font-size: 20px;
    }

    .offer {
        padding: 0 12px 44px;
    }

    .offer__title {
        font-size: 32px;
    }

    .offer__intro {
        font-size: 19px;
    }

    .offer-proof {
        min-height: auto;
        padding: 18px;
        border-radius: 16px;
    }

    .offer-proof p {
        font-size: 20px;
    }

    .offer-proof__icon-wrap {
        top: -20px;
        left: 14px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .offer-proof__icon {
        width: 18px;
        height: 18px;
    }

    .offer-card {
        padding: 20px 18px 16px;
        border-radius: 16px;
    }

    .offer-card__title {
        font-size: 28px;
    }

    .offer-card__lead {
        margin-top: 14px;
        font-size: 20px;
    }

    .offer-card__list {
        margin-top: 18px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .offer-card__list li {
        font-size: 18px;
        padding-left: 24px;
    }

    .offer-card__list li::before {
        width: 14px;
        height: 14px;
        top: 7px;
    }

    .offer-card__image-wrap {
        min-height: 140px;
        margin-top: 18px;
    }

    .offer-card__image {
        min-height: 140px;
    }

    .offer-card__button {
        margin-top: 14px;
        min-width: 100%;
        min-height: 58px;
        font-size: 16px;
    }

    .docs-white {
        padding: 0 12px 44px;
    }

    .docs-white__inner {
        border-radius: 18px;
        padding: 22px 14px 30px;
    }

    .docs-white__title {
        font-size: 30px;
    }

    .docs-white__intro {
        font-size: 17px;
    }

    .docs-white__head-title {
        font-size: 30px;
    }

    .docs-white__head-link {
        font-size: 18px;
    }

    .docs-white__head-note {
        font-size: 15px;
    }

    .docs-card {
        border-radius: 16px;
        padding: 18px 16px 14px;
    }

    .docs-card__title {
        font-size: 28px;
    }

    .docs-card__lead {
        margin-top: 12px;
        font-size: 18px;
    }

    .docs-card__list {
        margin-top: 14px;
        gap: 9px;
    }

    .docs-card__list li {
        font-size: 16px;
        padding-left: 24px;
    }

    .docs-card__list li::before {
        width: 12px;
        height: 12px;
        top: 5px;
    }

    .docs-card__note {
        font-size: 14px;
        padding: 10px 11px;
    }

    .docs-card__button,
    .docs-white__main-btn {
        margin-top: 16px;
        min-height: 52px;
        min-width: 220px;
        font-size: 15px;
    }

    .docs-white__center-action {
        margin-top: 26px;
    }

    .docs-white__outline-btn {
        min-height: 50px;
        font-size: 15px;
        padding: 0 22px;
    }

    .docs-white__extra-title {
        margin-top: 34px;
        font-size: 31px;
    }

    .docs-white__chips {
        margin-top: 18px;
        gap: 10px;
    }

    .docs-white__chip {
        min-height: 42px;
        padding: 0 14px;
        font-size: 14px;
    }

    .docs-white__chip-arrow {
        width: 10px;
        height: 10px;
    }

    .docs-white__bottom-action {
        margin-top: 28px;
    }
}
