@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --dark: #172019;
    --dark-light: #222d25;
    --olive: #303d32;
    --gold: #c6a566;
    --gold-light: #d8bd86;
    --cream: #eee9dc;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.65);
    --border: rgba(255, 255, 255, 0.14);

    --container: 1380px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--white);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

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

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

button {
    border: 0;
}

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


/* ==========================================
   HEADER
========================================== */

.header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    transform: rotate(45deg);
}

.logo-icon i {
    display: block;
    width: 3px;
    height: 20px;
    background: var(--gold);
}

.logo-icon i:first-child,
.logo-icon i:last-child {
    height: 14px;
}

.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-content strong {
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.logo-content small {
    margin-top: 7px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.28em;
}


/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav a:hover {
    color: #fff;
    transform: translateY(-1px);
}


/* PHONE */

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.header-phone span {
    color: var(--gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.header-phone a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}


/* MOBILE BUTTON */

.menu-button {
    width: 44px;
    height: 44px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);

    cursor: pointer;
}

.menu-button span {
    width: 19px;
    height: 1px;
    background: #fff;
}


/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;
    min-height: 820px;
    height: 100vh;
    max-height: 980px;

    overflow: hidden;

    background: var(--dark);
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("/assets/theme/image/banner.png");
    background-size: cover;
    background-position: center center;

    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(17, 25, 19, 0.98) 0%,
            rgba(17, 25, 19, 0.91) 34%,
            rgba(17, 25, 19, 0.62) 57%,
            rgba(17, 25, 19, 0.27) 100%
        ),
        linear-gradient(
            180deg,
            rgba(13, 18, 14, 0.68) 0%,
            rgba(13, 18, 14, 0.05) 45%,
            rgba(13, 18, 14, 0.82) 100%
        );
}


/* HERO INNER */

.hero-inner {
    position: relative;
    z-index: 5;

    height: 100%;
    min-height: 820px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 92px;
    padding-bottom: 80px;
}


/* HERO CONTENT */

.hero-content {
    width: 700px;
    max-width: 68%;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;

    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--gold);

    box-shadow: 0 0 0 5px rgba(198, 165, 102, 0.12);
}


/* TITLE */

.hero-title {
    max-width: 850px;

    color: #fff;

    font-family: "Manrope", sans-serif;
    font-size: clamp(54px, 6vw, 92px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.hero-title span {
    display: block;
    color: var(--gold);
}


/* DESCRIPTION */

.hero-text {
    max-width: 560px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.7;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 38px;
}

.button {
    min-height: 56px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

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

.button-primary {
    color: var(--dark);
    background: var(--gold);
}

.button-primary:hover {
    background: var(--gold-light);
}

.button-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-arrow {
    font-size: 17px;
    line-height: 1;
}


/* STATS */

.hero-stats {
    display: flex;
    align-items: center;
    gap: 42px;

    margin-top: 54px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stat strong {
    color: #fff;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}


/* ==========================================
   HERO RIGHT
========================================== */

.hero-right {
    width: 330px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    align-self: flex-end;
    margin-bottom: 45px;
}


/* CARD */

.hero-card {
    position: relative;

    padding: 27px;

    background: rgba(22, 31, 24, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(15px);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.hero-card:hover {
    background: rgba(31, 42, 33, 0.88);
    transform: translateY(-4px);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-card-number {
    color: var(--gold);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.hero-card-arrow {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    border: 1px solid rgba(198, 165, 102, 0.4);

    font-size: 16px;
}


.hero-card-icon {
    width: 54px;
    height: 54px;

    margin-top: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(198, 165, 102, 0.12);
    border: 1px solid rgba(198, 165, 102, 0.25);
}

.hero-card-icon span {
    color: var(--gold);
    font-size: 25px;
    font-weight: 300;
}


.hero-card h2 {
    margin-top: 22px;

    color: #fff;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}


.hero-card p {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
    line-height: 1.6;
}


.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 22px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-card-link span {
    font-size: 17px;

    transition: transform 0.2s ease;
}

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


/* NOTE */

.hero-note {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px 18px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-note-icon {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    background: rgba(198, 165, 102, 0.12);

    font-size: 13px;
}

.hero-note-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-note-content strong {
    color: #fff;

    font-size: 11px;
    font-weight: 700;
}

.hero-note-content span {
    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
}


/* ==========================================
   HERO BOTTOM
========================================== */

.hero-bottom {
    position: absolute;
    z-index: 10;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 18px 0;

    background: rgba(12, 18, 14, 0.48);
}

.hero-bottom-inner {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.hero-bottom-dot {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--gold);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {

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

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 11px;
    }

    .header-phone {
        display: none;
    }

    .hero-content {
        max-width: 65%;
    }

    .hero-right {
        width: 290px;
    }
}


@media (max-width: 900px) {

    .container {
        width: min(100% - 40px, 700px);
    }

    .nav {
        position: absolute;

        top: 78px;
        left: 20px;
        right: 20px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 8px;

        background: #1c271f;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .nav a {
        padding: 14px 16px;
        font-size: 12px;
    }

    .menu-button {
        display: flex;
    }

    .hero {
        min-height: 780px;
        height: auto;
        max-height: none;
    }

    .hero-inner {
        min-height: 780px;

        display: block;

        padding-top: 145px;
        padding-bottom: 130px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(50px, 9vw, 75px);
    }

    .hero-right {
        display: none;
    }
}


@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    .header-inner {
        min-height: 74px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-icon i {
        height: 17px;
    }

    .logo-icon i:first-child,
    .logo-icon i:last-child {
        height: 11px;
    }

    .logo-content strong {
        font-size: 10px;
    }

    .logo-content small {
        margin-top: 6px;
        font-size: 7px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-inner {
        min-height: 760px;
        padding-top: 125px;
        padding-bottom: 105px;
    }

    .hero-background {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(17, 25, 19, 0.98) 0%,
                rgba(17, 25, 19, 0.82) 55%,
                rgba(17, 25, 19, 0.5) 100%
            ),
            linear-gradient(
                180deg,
                rgba(13, 18, 14, 0.7),
                rgba(13, 18, 14, 0.85)
            );
    }

    .hero-badge {
        margin-bottom: 22px;
        font-size: 8px;
    }

    .hero-title {
        font-size: 46px;
        line-height: 1;
    }

    .hero-text {
        margin-top: 23px;
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-buttons {
        margin-top: 29px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
        min-height: 54px;
    }

    .hero-stats {
        gap: 25px;
        margin-top: 39px;
    }

    .hero-stat strong {
        font-size: 16px;
    }

    .hero-stat span {
        font-size: 7px;
    }

    .hero-bottom-inner {
        justify-content: center;
        text-align: center;
    }

    .hero-bottom-inner span:last-child,
    .hero-bottom-dot {
        display: none;
    }
}


@media (max-width: 380px) {

    .hero-title {
        font-size: 40px;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-stat strong {
        font-size: 14px;
    }
}

/* ==========================================
   PAYMENTS
========================================== */

.payments {
    position: relative;
    padding: 105px 0 115px;
    background: #f1eee5;
    color: #20271f;
    overflow: hidden;
}

.payments::before {
    content: "₽";
    position: absolute;
    right: -30px;
    top: -90px;

    color: rgba(48, 61, 50, 0.035);

    font-family: "Manrope", sans-serif;
    font-size: 420px;
    font-weight: 800;

    pointer-events: none;
}


/* TOP */

.payments-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 48px;
}

.payments-title {
    max-width: 600px;
}

.section-label {
    display: block;

    margin-bottom: 15px;

    color: #9b814c;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.payments-title h2 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.05em;
}

.payments-number {
    color: #c7bfae;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
}


/* LAYOUT */

.payments-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.35fr 1fr .85fr;
    gap: 14px;
}


/* MAIN PAYMENT */

.payment-main {
    min-height: 310px;

    padding: 34px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #303d32;
    color: #fff;
}

.payment-main-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-main-top > span {
    color: rgba(255,255,255,.55);

    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.payment-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c9aa69;

    border: 1px solid rgba(201,170,105,.35);

    font-size: 21px;
}

.payment-main-value {
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.055em;
}


/* YEAR */

.payment-year {
    min-height: 310px;

    padding: 34px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #fffdf8;

    border: 1px solid #d9d2c2;
}

.payment-year-number {
    max-width: 400px;

    color: #242b24;

    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.055em;
}

.payment-year-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-year-bottom > span:first-child {
    color: #858278;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.payment-arrow {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #303d32;

    border: 1px solid #d4cbb9;

    font-size: 18px;
}


/* VETERAN */

.payment-veteran {
    min-height: 310px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #dcd7c8;

    color: #252c25;

    transition:
        transform .3s ease,
        background .3s ease;
}

.payment-veteran:hover {
    transform: translateY(-5px);
    background: #d3cdbb;
}

.veteran-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: #303d32;

    font-size: 24px;
}

.veteran-content {
    display: flex;
    flex-direction: column;

    margin-top: auto;
}

.veteran-content span {
    margin-bottom: 8px;

    color: #7e7a6e;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.veteran-content strong {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.veteran-arrow {
    margin-top: 25px;

    font-size: 22px;

    transition: transform .25s ease;
}

.payment-veteran:hover .veteran-arrow {
    transform: translateX(7px);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .payments {
        padding: 80px 0;
    }

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

    .payment-veteran {
        min-height: 230px;
        grid-column: 1 / -1;
    }

}


@media (max-width: 650px) {

    .payments {
        padding: 65px 0;
    }

    .payments-top {
        margin-bottom: 30px;
    }

    .payments-title h2 {
        font-size: 36px;
    }

    .payments-number {
        display: none;
    }

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

    .payment-main,
    .payment-year,
    .payment-veteran {
        min-height: 220px;
    }

    .payment-main,
    .payment-year {
        padding: 27px;
    }

    .payment-main-value {
        font-size: 39px;
    }

    .payment-year-number {
        font-size: 36px;
    }

    .payment-veteran {
        grid-column: auto;
        padding: 27px;
    }

}

.conditions-section {
    position: relative;
    padding: 110px 0;
    background: #f3f1e9;
    overflow: hidden;
}

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


/* Заголовок */

.conditions-head {
    margin-bottom: 55px;
}

.conditions-head-content {
    max-width: 820px;
}

.conditions-title {
    margin: 0 0 24px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.conditions-title span {
    display: block;
    color: #858a6c;
}

.conditions-description {
    max-width: 680px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Карточки */

.conditions-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1.18fr;
    grid-template-rows: 285px 225px;
    gap: 14px;
}

.conditions-card {
    position: relative;
    min-width: 0;
    padding: 27px 28px;
    border: 1px solid #d5d2c5;
    border-radius: 9px;
    background: #fbfaf6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.conditions-card:hover {
    transform: translateY(-5px);
    border-color: #bcb9aa;
    box-shadow: 0 20px 45px rgba(40, 44, 34, 0.10);
}


/* Общие элементы */

.conditions-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.conditions-card-number {
    color: #73785b;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.conditions-card-type {
    color: #898c7d;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.conditions-card-content {
    position: relative;
    z-index: 2;
}

.conditions-card-small {
    display: block;
    margin-bottom: 11px;
    color: #85897a;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.conditions-card h3 {
    max-width: 430px;
    margin: 0 0 13px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -0.025em;
}

.conditions-card p {
    max-width: 430px;
    margin: 0;
    color: #696d61;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.conditions-card strong {
    color: #292d25;
    font-weight: 750;
}


/* 01 */

.conditions-card-main {
    grid-column: 1;
    grid-row: 1 / 3;
    background: #e5e3d8;
    border-color: #d0cdbd;
}

.conditions-card-main h3 {
    font-size: 31px;
}

.conditions-card-main::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -85px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(95, 102, 69, 0.07);
}

.conditions-card-bg-number {
    position: absolute;
    right: -5px;
    bottom: -42px;
    color: rgba(75, 81, 57, 0.08);
    font-family: "Manrope", sans-serif;
    font-size: 190px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.08em;
}


/* 02 */

.conditions-card-dark {
    grid-column: 2;
    grid-row: 1;
    background: #33372e !important;
    border-color: #33372e !important;
}

.conditions-card-dark .conditions-card-number {
    color: #c4c8ad !important;
}

.conditions-card-dark .conditions-card-type {
    color: #b9bda5 !important;
}

.conditions-card-dark .conditions-card-small {
    color: #b9bda5 !important;
}

.conditions-card-dark h3 {
    color: #ffffff !important;
    font-size: 25px;
    line-height: 1.15;
}

.conditions-card-dark p {
    color: #d4d7cc !important;
    font-size: 14px;
    line-height: 1.6;
}

.conditions-card-dark strong {
    color: #ffffff !important;
}

.conditions-card-icon {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d4ba;
    font-size: 17px;
}


/* 03 */

.conditions-card-wide {
    grid-column: 3;
    grid-row: 1;
}

.conditions-card-arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 46px;
    height: 46px;
    border: 1px solid #d7d4c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #73785b;
    font-size: 15px;
}


/* 04 */

.conditions-card-documents {
    grid-column: 2 / 4;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.conditions-document-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6e4d9;
    color: #687052;
    font-size: 24px;
}

.conditions-document-content {
    min-width: 0;
    flex: 1;
}

.conditions-document-content .conditions-card-top {
    margin-bottom: 18px;
}

.conditions-document-content h3 {
    margin-bottom: 9px;
}


/* Планшет */

@media (max-width: 1000px) {

    .conditions-cards {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 240px 220px;
    }

    .conditions-card-main {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .conditions-card-dark {
        grid-column: 2;
        grid-row: 1;
    }

    .conditions-card-wide {
        grid-column: 2;
        grid-row: 2;
    }

    .conditions-card-documents {
        grid-column: 1 / 3;
        grid-row: 3;
    }
}


/* Телефон */

@media (max-width: 700px) {

    .conditions-section {
        padding: 80px 0;
    }

    .conditions-container {
        width: calc(100% - 30px);
    }

    .conditions-head {
        margin-bottom: 40px;
    }

    .conditions-title {
        font-size: 44px;
        line-height: 0.98;
    }

    .conditions-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .conditions-cards {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .conditions-card-main,
    .conditions-card-dark,
    .conditions-card-wide,
    .conditions-card-documents {
        grid-column: auto;
        grid-row: auto;
        min-height: 235px;
    }

    .conditions-card-main {
        min-height: 280px;
    }

    .conditions-card-documents {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
    }

    .conditions-document-content {
        width: 100%;
    }

    .conditions-document-content .conditions-card-top {
        margin-bottom: 18px;
    }

    .conditions-card h3 {
        font-size: 22px;
    }

    .conditions-card-main h3 {
        font-size: 28px;
    }

    .conditions-card-dark h3 {
        font-size: 24px;
    }
}


.eligibility-section {
    position: relative;
    padding: 115px 0;
    background: #e6e4d8;
    overflow: hidden;
}

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


/* Заголовок */

.eligibility-head {
    margin-bottom: 55px;
}

.eligibility-title-wrap {
    max-width: 900px;
}

.eligibility-title {
    margin: 0 0 25px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.eligibility-title span {
    display: block;
    color: #858a6c;
}

.eligibility-description {
    max-width: 680px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Карточки */

.eligibility-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.eligibility-item {
    position: relative;
    min-height: 335px;
    padding: 28px;
    box-sizing: border-box;
    border: 1px solid #d0cdbf;
    border-radius: 10px;
    background: #faf9f4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.eligibility-item:hover {
    transform: translateY(-6px);
    border-color: #bdb9a8;
    box-shadow: 0 22px 45px rgba(45, 48, 38, 0.11);
}


/* Темная карточка */

.eligibility-item-dark {
    background: #34382f;
    border-color: #34382f;
}

.eligibility-item-dark:hover {
    border-color: #34382f;
}


/* Верх карточки */

.eligibility-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eligibility-number {
    color: #747a5b;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.eligibility-tag {
    color: #898d7e;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eligibility-item-dark .eligibility-number {
    color: #c4c8ad;
}

.eligibility-item-dark .eligibility-tag {
    color: #b8bda5;
}


/* Содержимое */

.eligibility-content {
    position: relative;
    z-index: 2;
}

.eligibility-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 25px;
    border: 1px solid #d6d3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
    color: #70765a;
    font-size: 17px;
}

.eligibility-item-dark .eligibility-icon {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #c5c9ad;
}

.eligibility-content h3 {
    max-width: 340px;
    margin: 0 0 14px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: 29px;
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.035em;
}

.eligibility-item-dark .eligibility-content h3 {
    color: #ffffff;
}

.eligibility-content p {
    max-width: 300px;
    margin: 0;
    color: #6b6f63;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.eligibility-item-dark .eligibility-content p {
    color: #d0d3c8;
}


/* Большие номера на фоне */

.eligibility-item::after {
    content: "01";
    position: absolute;
    right: -10px;
    bottom: -55px;
    color: rgba(91, 98, 69, 0.07);
    font-family: "Manrope", sans-serif;
    font-size: 190px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.eligibility-item:nth-child(2)::after {
    content: "02";
    color: rgba(255, 255, 255, 0.035);
}

.eligibility-item:nth-child(3)::after {
    content: "03";
}


/* Декоративная точка */

.eligibility-item:nth-child(1)::before,
.eligibility-item:nth-child(3)::before {
    content: "";
    position: absolute;
    right: 30px;
    top: 82px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #858a6c;
    opacity: 0.7;
}

.eligibility-item:nth-child(3)::before {
    background: #c0c3a9;
}


/* Планшет */

@media (max-width: 900px) {

    .eligibility-section {
        padding: 90px 0;
    }

    .eligibility-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .eligibility-item {
        min-height: 270px;
    }

    .eligibility-content h3 {
        font-size: 27px;
    }
}


/* Телефон */

@media (max-width: 600px) {

    .eligibility-section {
        padding: 75px 0;
    }

    .eligibility-container {
        width: calc(100% - 30px);
    }

    .eligibility-head {
        margin-bottom: 38px;
    }

    .eligibility-title {
        font-size: 43px;
        line-height: 0.98;
    }

    .eligibility-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .eligibility-item {
        min-height: 250px;
        padding: 25px;
    }

    .eligibility-content h3 {
        font-size: 25px;
    }

    .eligibility-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
}

.vacancies-section {
    position: relative;
    padding: 120px 0;
    background: #f8f7f2;
    overflow: hidden;
}

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


/* Заголовок */

.vacancies-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 48px;
}

.vacancies-kicker {
    padding-top: 14px;
    color: #747a5c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vacancies-head-main {
    max-width: 850px;
}

.vacancies-title {
    margin: 0 0 23px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.vacancies-title span {
    display: block;
    color: #858a6c;
}

.vacancies-description {
    max-width: 650px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Фильтр */

.vacancies-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vacancies-filter-item {
    padding: 11px 18px;
    border: 1px solid #d5d2c6;
    border-radius: 100px;
    background: transparent;
    color: #6f7467;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.vacancies-filter-item:hover,
.vacancies-filter-item.is-active {
    border-color: #363b31;
    background: #363b31;
    color: #ffffff;
}


/* Сетка */

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


/* Карточка */

.vacancy-card {
    position: relative;
    min-height: 285px;
    padding: 25px;
    box-sizing: border-box;
    border: 1px solid #d8d5ca;
    border-radius: 9px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.vacancy-card:hover {
    transform: translateY(-5px);
    border-color: #aaa994;
    box-shadow: 0 20px 45px rgba(42, 46, 36, 0.10);
}


/* Первая карточка */

.vacancy-card-featured {
    background: #34382f;
    border-color: #34382f;
}

.vacancy-card-featured .vacancy-number {
    color: #c6caad;
}

.vacancy-card-featured .vacancy-category {
    color: #b8bda4;
}

.vacancy-card-featured h3 {
    color: #ffffff;
}

.vacancy-card-featured .vacancy-icon {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #c8ccb1;
}

.vacancy-card-featured .vacancy-link {
    color: #d0d3bd;
}


/* Верх */

.vacancy-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.vacancy-number {
    color: #747a5b;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.vacancy-icon {
    width: 46px;
    height: 46px;
    border: 1px solid #d7d4c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f2ea;
    color: #73795b;
    font-size: 15px;
}


/* Контент */

.vacancy-card-content {
    position: relative;
    z-index: 2;
}

.vacancy-category {
    display: block;
    margin-bottom: 12px;
    color: #8a8d7e;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vacancy-card h3 {
    max-width: 280px;
    margin: 0 0 22px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.03em;
}

.vacancy-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #6e7555;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.vacancy-link i {
    transition: transform 0.25s ease;
}

.vacancy-card:hover .vacancy-link i {
    transform: translateX(5px);
}


/* Большая декоративная цифра */

.vacancy-card::after {
    content: "01";
    position: absolute;
    right: -8px;
    bottom: -48px;
    color: rgba(84, 91, 63, 0.055);
    font-family: "Manrope", sans-serif;
    font-size: 150px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.vacancy-card:nth-child(2)::after {
    content: "02";
}

.vacancy-card:nth-child(3)::after {
    content: "03";
}

.vacancy-card:nth-child(4)::after {
    content: "04";
}

.vacancy-card:nth-child(5)::after {
    content: "05";
}

.vacancy-card:nth-child(6)::after {
    content: "06";
}

.vacancy-card:nth-child(7)::after {
    content: "07";
}

.vacancy-card:nth-child(8)::after {
    content: "08";
}

.vacancy-card:nth-child(9)::after {
    content: "09";
}

.vacancy-card:nth-child(10)::after {
    content: "10";
}

.vacancy-card:nth-child(11)::after {
    content: "11";
}

.vacancy-card:nth-child(12)::after {
    content: "12";
}

.vacancy-card-featured::after {
    color: rgba(255, 255, 255, 0.035);
}


/* Нижний блок */

.vacancies-footer {
    margin-top: 25px;
    padding: 24px 27px;
    border-radius: 9px;
    background: #34382f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.vacancies-footer p {
    max-width: 520px;
    margin: 0;
    color: #d2d4ca;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.vacancies-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid #aeb292;
    border-radius: 5px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.vacancies-button:hover {
    background: #aeb292;
    color: #292d25;
}


/* Планшет */

@media (max-width: 900px) {

    .vacancies-section {
        padding: 90px 0;
    }

    .vacancies-head {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 35px;
    }

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

    .vacancy-card {
        min-height: 270px;
    }

    .vacancies-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Телефон */

@media (max-width: 600px) {

    .vacancies-section {
        padding: 75px 0;
    }

    .vacancies-container {
        width: calc(100% - 30px);
    }

    .vacancies-head {
        display: block;
        margin-bottom: 35px;
    }

    .vacancies-kicker {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .vacancies-title {
        font-size: 43px;
        line-height: 0.98;
    }

    .vacancies-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .vacancies-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }

    .vacancies-filter-item {
        flex-shrink: 0;
    }

    .vacancies-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vacancy-card {
        min-height: 245px;
    }

    .vacancy-card h3 {
        font-size: 24px;
    }

    .vacancies-footer {
        padding: 22px;
    }

    .vacancies-button {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}



/* =========================================
   ПРЕИМУЩЕСТВА
========================================= */

.benefits-section {
    position: relative;
    padding: 120px 0;
    background: #e9e7da;
    overflow: hidden;
}

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


/* Заголовок */

.benefits-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 55px;
}

.benefits-kicker {
    padding-top: 14px;
    color: #747a5c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.benefits-head-main {
    max-width: 850px;
}

.benefits-title {
    margin: 0 0 23px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.benefits-title span {
    display: block;
    color: #858a6c;
}

.benefits-description {
    max-width: 650px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Сетка */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


/* Карточка */

.benefit-card {
    position: relative;
    min-height: 310px;
    padding: 25px;
    box-sizing: border-box;
    border: 1px solid #d2d0c4;
    border-radius: 9px;
    background: #f8f7f2;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #aaa994;
    box-shadow: 0 20px 45px rgba(42, 46, 36, 0.10);
}


/* Первая карточка */

.benefit-card-featured {
    background: #34382f;
    border-color: #34382f;
}

.benefit-card-featured .benefit-number {
    color: #c6caad;
}

.benefit-card-featured .benefit-category {
    color: #b8bda4;
}

.benefit-card-featured h3 {
    color: #ffffff;
}

.benefit-card-featured p {
    color: #c8ccb9;
}

.benefit-card-featured .benefit-icon {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #c8ccb1;
}


/* Верх карточки */

.benefit-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.benefit-number {
    color: #747a5b;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.benefit-icon {
    width: 46px;
    height: 46px;

    border: 1px solid #d7d4c8;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #efede4;
    color: #73795b;
    font-size: 15px;
}


/* Контент */

.benefit-card-content {
    position: relative;
    z-index: 2;
}

.benefit-category {
    display: block;
    margin-bottom: 12px;

    color: #8a8d7e;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.benefit-card h3 {
    max-width: 310px;
    margin: 0 0 15px;

    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.03em;
}

.benefit-card p {
    max-width: 330px;
    margin: 0;

    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.6;
}


/* Декоративный номер */

.benefit-card::after {
    content: attr(data-number);

    position: absolute;
    right: -8px;
    bottom: -48px;

    color: rgba(84, 91, 63, 0.055);

    font-family: "Manrope", sans-serif;
    font-size: 150px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.08em;

    pointer-events: none;
}

.benefit-card-featured::after {
    color: rgba(255, 255, 255, 0.035);
}


/* Информационная строка */

.benefits-note {
    margin-top: 25px;
    padding: 20px 25px;

    border: 1px solid #d2d0c4;
    border-radius: 9px;
    background: rgba(248, 247, 242, 0.65);

    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefits-note i {
    flex-shrink: 0;
    margin-top: 2px;

    color: #747a5b;
    font-size: 15px;
}

.benefits-note p {
    max-width: 850px;
    margin: 0;

    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   ПЛАНШЕТ
========================================= */

@media (max-width: 900px) {

    .benefits-section {
        padding: 90px 0;
    }

    .benefits-head {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 35px;
    }

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

    .benefit-card {
        min-height: 285px;
    }

}


/* =========================================
   ТЕЛЕФОН
========================================= */

@media (max-width: 600px) {

    .benefits-section {
        padding: 75px 0;
    }

    .benefits-container {
        width: calc(100% - 30px);
    }

    .benefits-head {
        display: block;
        margin-bottom: 35px;
    }

    .benefits-kicker {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .benefits-title {
        font-size: 42px;
        line-height: 0.98;
    }

    .benefits-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit-card {
        min-height: 260px;
        padding: 22px;
    }

    .benefit-card h3 {
        font-size: 24px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .benefits-note {
        padding: 18px 20px;
    }

}
.benefit-card-featured .benefit-category {
    color: #c6caad;
}

.benefit-card-featured h3 {
    color: #ffffff !important;
}

.benefit-card-featured p {
    color: #d2d6c8 !important;
}

.benefit-card-featured .benefit-number {
    color: #c6caad;
}

.benefit-card-featured .benefit-icon {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #c8ccb1;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
    position: relative;
    padding: 120px 0;
    background: #f8f7f2;
    overflow: hidden;
}

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


/* Заголовок */

.faq-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.faq-kicker {
    padding-top: 14px;
    color: #747a5c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-head-main {
    max-width: 850px;
}

.faq-title {
    margin: 0 0 23px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.faq-title span {
    display: block;
    color: #858a6c;
}

.faq-description {
    max-width: 650px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Список */

.faq-list {
    border-top: 1px solid #d5d2c6;
}


/* Вопрос */

.faq-item {
    border-bottom: 1px solid #d5d2c6;
    background: transparent;
}


/* Убираем стандартный маркер */

.faq-question {
    list-style: none;
}

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

.faq-question::marker {
    display: none;
}


/* Строка вопроса */

.faq-question {
    width: 100%;
    min-height: 100px;
    padding: 22px 25px;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 50px;
    align-items: center;
    gap: 25px;

    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #efede4;
}


/* Номер */

.faq-question-number {
    color: #858a6c;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* Текст */

.faq-question-title {
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 750;
    letter-spacing: -0.025em;
}


/* Кнопка + */

.faq-question-icon {
    width: 42px;
    height: 42px;

    border: 1px solid #d5d2c6;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1efe7;
    color: #747a5b;

    font-size: 12px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* Ответ */

.faq-answer {
    padding: 0 100px 30px 120px;
}

.faq-answer p {
    max-width: 760px;
    margin: 0;

    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* Открытый элемент */

.faq-item[open] {
    background: #34382f;
}

.faq-item[open] .faq-question {
    background: #34382f;
}

.faq-item[open] .faq-question:hover {
    background: #34382f;
}

.faq-item[open] .faq-question-number {
    color: #c6caad;
}

.faq-item[open] .faq-question-title {
    color: #ffffff;
}

.faq-item[open] .faq-question-icon {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #c8ccb1;
}

.faq-item[open] .faq-question-icon i {
    transform: rotate(45deg);
}

.faq-item[open] .faq-answer p {
    color: #d2d6c8;
}


/* CTA */

.faq-footer {
    margin-top: 25px;
    padding: 28px 30px;

    border-radius: 9px;
    background: #34382f;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.faq-footer-text span {
    display: block;
    margin-bottom: 5px;

    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 750;
}

.faq-footer-text p {
    margin: 0;

    color: #c8ccb9;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.faq-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;

    border: 1px solid #aeb292;
    border-radius: 5px;

    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.faq-button:hover {
    background: #aeb292;
    color: #292d25;
}


/* =========================================
   ПЛАНШЕТ
========================================= */

@media (max-width: 900px) {

    .faq-section {
        padding: 90px 0;
    }

    .faq-head {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 35px;
    }

    .faq-question {
        grid-template-columns: 55px minmax(0, 1fr) 50px;
        gap: 20px;
    }

    .faq-answer {
        padding-left: 95px;
    }

}


/* =========================================
   ТЕЛЕФОН
========================================= */

@media (max-width: 600px) {

    .faq-section {
        padding: 75px 0;
    }

    .faq-container {
        width: calc(100% - 30px);
    }

    .faq-head {
        display: block;
        margin-bottom: 40px;
    }

    .faq-kicker {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .faq-title {
        font-size: 43px;
        line-height: 0.98;
    }

    .faq-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .faq-question {
        min-height: 85px;
        padding: 18px 15px;

        grid-template-columns: 35px minmax(0, 1fr) 42px;
        gap: 12px;
    }

    .faq-question-number {
        font-size: 11px;
    }

    .faq-question-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .faq-question-icon {
        width: 36px;
        height: 36px;
    }

    .faq-answer {
        padding: 0 20px 25px 62px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.65;
    }

    .faq-footer {
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .faq-button {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

}


/* =========================================
   CONTACT / FORM
   ========================================= */

.contact-section {
    position: relative;
    padding: 120px 0;
    background: #f8f7f2;
    overflow: hidden;
}

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


/* Заголовок */

.contact-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 55px;
}

.contact-kicker {
    padding-top: 14px;
    color: #747a5c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-kicker span {
    display: block;
    margin-bottom: 7px;
    color: #b0b19f;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.contact-head-main {
    max-width: 850px;
}

.contact-title {
    margin: 0 0 24px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.contact-title span {
    display: block;
    color: #858a6c;
}

.contact-description {
    max-width: 650px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Основной блок */

.contact-form-wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    min-height: 520px;
    border-radius: 9px;
    overflow: hidden;
    background: #34382f;
}


/* Левая часть */

.contact-form-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 38px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    box-sizing: border-box;
}

.contact-form-number {
    color: #9ca281;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.contact-form-info h3 {
    max-width: 300px;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.contact-form-info p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.65;
}


/* Правая часть */

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 45px;
    box-sizing: border-box;
    background: #f1f0e9;
}


/* Поля */

.contact-form-field {
    margin-bottom: 24px;
}

.contact-form-field label {
    display: block;
    margin-bottom: 9px;
    color: #565b4e;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-input-wrap {
    position: relative;
}

.contact-input-wrap > i {
    position: absolute;
    left: 18px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #858a6c;
    font-size: 14px;
    pointer-events: none;
}

.contact-input-wrap input,
.contact-input-wrap select {
    width: 100%;
    height: 58px;
    padding: 0 18px 0 49px;
    border: 1px solid #d3d1c6;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    background: #ffffff;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-input-wrap input::placeholder {
    color: #a2a49a;
}

.contact-input-wrap input:hover,
.contact-input-wrap select:hover {
    border-color: #aaa994;
}

.contact-input-wrap input:focus,
.contact-input-wrap select:focus {
    border-color: #858a6c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(133, 138, 108, 0.10);
}


/* Select */

.contact-input-wrap select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 48px;
    cursor: pointer;
}

.contact-select-arrow {
    left: auto !important;
    right: 18px;
    color: #858a6c !important;
    font-size: 11px !important;
    transition: transform 0.25s ease;
}

.contact-input-wrap select:focus + .contact-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}


/* Honeypot */

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}


/* Нижняя часть формы */

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 4px;
}


/* Согласие */

.contact-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 330px;
    color: #777a70;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.5;
    cursor: pointer;
}

.contact-agreement input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-agreement-check {
    position: relative;
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    margin-top: 1px;
    border: 1px solid #c5c4b9;
    border-radius: 3px;
    background: #ffffff;
    box-sizing: border-box;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.contact-agreement-check i {
    position: absolute;
    left: 3px;
    top: 2px;
    color: #ffffff;
    font-size: 9px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.contact-agreement input:checked + .contact-agreement-check {
    border-color: #747a5c;
    background: #747a5c;
}

.contact-agreement input:checked + .contact-agreement-check i {
    opacity: 1;
}

.contact-agreement a {
    color: #62684f;
    text-decoration: underline;
    text-decoration-color: rgba(98, 104, 79, 0.35);
    text-underline-offset: 2px;
}

.contact-agreement a:hover {
    text-decoration-color: #62684f;
}


/* Кнопка */

.contact-submit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 190px;
    height: 56px;
    padding: 0 22px;
    border: 1px solid #34382f;
    border-radius: 5px;
    background: #34382f;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-submit i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.contact-submit:hover {
    border-color: #858a6c;
    background: #858a6c;
    color: #ffffff;
}

.contact-submit:hover i {
    transform: translateX(5px);
}

.contact-submit:active {
    transform: translateY(1px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-head {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 35px;
    }

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

    .contact-form-info {
        min-height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .contact-form-info h3 {
        max-width: 500px;
    }

    .contact-form-info p {
        max-width: 550px;
    }

    .contact-form {
        padding: 40px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 75px 0;
    }

    .contact-container {
        width: calc(100% - 30px);
    }

    .contact-head {
        display: block;
        margin-bottom: 35px;
    }

    .contact-kicker {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .contact-title {
        font-size: 43px;
        line-height: 0.98;
    }

    .contact-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .contact-form-wrap {
        border-radius: 8px;
    }

    .contact-form-info {
        min-height: 270px;
        padding: 27px;
    }

    .contact-form-info h3 {
        font-size: 34px;
    }

    .contact-form-info p {
        font-size: 13px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .contact-form-field {
        margin-bottom: 20px;
    }

    .contact-input-wrap input,
    .contact-input-wrap select {
        height: 56px;
    }

    .contact-form-bottom {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-top: 5px;
    }

    .contact-agreement {
        max-width: none;
    }

    .contact-submit {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 380px) {

    .contact-title {
        font-size: 38px;
    }

    .contact-form-info {
        padding: 23px;
    }

    .contact-form {
        padding: 25px 18px;
    }

    .contact-form-info h3 {
        font-size: 31px;
    }
}


.documents-section {
    position: relative;
    padding: 120px 0;
    background: #e9e7da;
    overflow: hidden;
}

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


/* Заголовок */

.documents-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.documents-kicker {
    padding-top: 14px;
    color: #747a5c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.documents-kicker span {
    display: block;
    margin-bottom: 7px;
    color: #aaa996;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.documents-head-main {
    max-width: 850px;
}

.documents-title {
    margin: 0 0 23px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.documents-title span {
    display: block;
    color: #858a6c;
}

.documents-description {
    max-width: 650px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Основной блок */

.documents-box {
    border: 1px solid #d0cec2;
    border-radius: 9px;
    background: #f8f7f2;
    overflow: hidden;
}


/* Шапка */

.documents-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 28px 30px;
    border-bottom: 1px solid #d5d2c6;
}

.documents-box-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.documents-box-number {
    color: #747a5c;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.documents-label {
    display: block;
    margin-bottom: 5px;
    color: #8a8d7e;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.documents-box-title h3 {
    margin: 0;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 750;
    letter-spacing: -0.03em;
}


/* Переключатель */

.documents-tabs {
    display: flex;
    align-items: stretch;
    padding: 4px;
    border: 1px solid #d1cfc3;
    border-radius: 6px;
    background: #eeece3;
}

.documents-tab {
    min-height: 40px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    color: #85887d;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.documents-tab:hover {
    color: #4e5347;
}

.documents-tab.is-active {
    border-color: #858a6c;
    background: #f8f7f2;
    color: #4f5543;
}


/* Содержимое */

.documents-content {
    display: none;
    padding: 10px 30px 5px;
}

.documents-content.is-active {
    display: block;
}


/* Строка документа */

.document-row {
    position: relative;
    display: grid;
    grid-template-columns: 35px 45px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    min-height: 82px;
    border-bottom: 1px solid #dedbd0;
}

.document-row:last-child {
    border-bottom: none;
}

.document-row-number {
    color: #a2a396;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.document-row-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #d3d1c5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeece3;
    color: #747a5c;
    font-size: 13px;
}

.document-row-text span {
    display: block;
    margin-bottom: 5px;
    color: #96988d;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.document-row-text strong {
    display: block;
    color: #363a31;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}


/* Нижняя информационная панель */

.documents-footer {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: 15px;
    padding: 20px 22px;
    border-radius: 7px;
    background: #34382f;
}

.documents-footer-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c4a7;
    font-size: 12px;
}

.documents-footer p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.55;
}

.documents-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #aeb292;
    border-radius: 5px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.documents-button i {
    transition: transform 0.25s ease;
}

.documents-button:hover {
    background: #aeb292;
    color: #292d25;
}

.documents-button:hover i {
    transform: translateX(4px);
}


/* Планшет */

@media (max-width: 900px) {

    .documents-section {
        padding: 90px 0;
    }

    .documents-head {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 35px;
    }

    .documents-box-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .documents-tabs {
        width: 100%;
    }

    .documents-tab {
        flex: 1;
    }

    .documents-footer {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .documents-button {
        grid-column: 2;
        justify-self: start;
    }
}


/* Телефон */

@media (max-width: 600px) {

    .documents-section {
        padding: 75px 0;
    }

    .documents-container {
        width: calc(100% - 30px);
    }

    .documents-head {
        display: block;
        margin-bottom: 35px;
    }

    .documents-kicker {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .documents-title {
        font-size: 43px;
        line-height: 0.98;
    }

    .documents-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .documents-box-head {
        padding: 23px 20px;
        gap: 22px;
    }

    .documents-box-title h3 {
        font-size: 19px;
    }

    .documents-tabs {
        width: 100%;
        box-sizing: border-box;
    }

    .documents-tab {
        min-height: 44px;
        padding: 0 10px;
        font-size: 10px;
    }

    .documents-content {
        padding: 5px 20px;
    }

    .document-row {
        grid-template-columns: 25px 40px minmax(0, 1fr);
        gap: 10px;
        min-height: 78px;
    }

    .document-row-icon {
        width: 38px;
        height: 38px;
    }

    .document-row-text strong {
        font-size: 13px;
    }

    .document-row-text span {
        font-size: 8px;
    }

    .documents-footer {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin: 10px;
        padding: 20px;
    }

    .documents-footer p {
        font-size: 12px;
    }

    .documents-button {
        width: 100%;
        box-sizing: border-box;
    }
}


.seo-content-section {
    position: relative;
    padding: 120px 0;
    background: #f8f7f2;
    overflow: hidden;
}

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


/* Заголовок */

.seo-content-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 65px;
}

.seo-content-kicker {
    padding-top: 14px;
    color: #747a5c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.seo-content-kicker span {
    display: block;
    margin-bottom: 7px;
    color: #b0b19f;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.seo-content-head-main {
    max-width: 850px;
}

.seo-content-title {
    margin: 0 0 24px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.seo-content-title span {
    display: block;
    color: #858a6c;
}

.seo-content-intro {
    max-width: 680px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* Основная сетка */

.seo-content-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 60px;
}


/* Навигация */

.seo-content-nav {
    position: sticky;
    top: 30px;
    align-self: start;
    display: flex;
    flex-direction: column;
}

.seo-nav-label {
    margin-bottom: 18px;
    color: #96988d;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.seo-content-nav a {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 0;
    border-bottom: 1px solid #dedbd0;
    color: #666b5f;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.2s ease,
        padding 0.2s ease;
}

.seo-content-nav a:first-of-type {
    border-top: 1px solid #dedbd0;
}

.seo-content-nav a span {
    color: #aaa99b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.seo-content-nav a:hover {
    padding-left: 5px;
    color: #747a5c;
}


/* Текстовые блоки */

.seo-content-text {
    max-width: 780px;
}

.seo-text-block {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    padding: 0 0 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid #d8d5ca;
}

.seo-text-number {
    padding-top: 7px;
    color: #858a6c;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.seo-text-block h3 {
    margin: 0 0 22px;
    color: #292d25;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.seo-text-block p {
    margin: 0 0 18px;
    color: #62665c;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.seo-text-block p:last-of-type {
    margin-bottom: 0;
}


/* CTA внутри текста */

.seo-content-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 14px 19px;
    border-radius: 5px;
    background: #34382f;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.seo-content-cta i {
    transition: transform 0.25s ease;
}

.seo-content-cta:hover {
    background: #747a5c;
    transform: translateY(-2px);
}

.seo-content-cta:hover i {
    transform: translateX(4px);
}


/* Дополнительные SEO-блоки */

.seo-content-more {
    border-top: 1px solid #d8d5ca;
}

.seo-content-more details {
    border-bottom: 1px solid #d8d5ca;
}

.seo-content-more summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    color: #363a31;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.seo-content-more summary::-webkit-details-marker {
    display: none;
}

.seo-content-more summary i {
    flex-shrink: 0;
    color: #747a5c;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.seo-content-more details[open] summary i {
    transform: rotate(45deg);
}

.seo-details-content {
    padding: 0 45px 25px 0;
}

.seo-details-content p {
    max-width: 680px;
    margin: 0;
    color: #686c60;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* Планшет */

@media (max-width: 900px) {

    .seo-content-section {
        padding: 90px 0;
    }

    .seo-content-head {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 35px;
    }

    .seo-content-layout {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 35px;
    }
}


/* Телефон */

@media (max-width: 600px) {

    .seo-content-section {
        padding: 75px 0;
    }

    .seo-content-container {
        width: calc(100% - 30px);
    }

    .seo-content-head {
        display: block;
        margin-bottom: 45px;
    }

    .seo-content-kicker {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .seo-content-title {
        font-size: 43px;
        line-height: 0.98;
    }

    .seo-content-intro {
        font-size: 15px;
        line-height: 1.65;
    }

    .seo-content-layout {
        display: block;
    }

    .seo-content-nav {
        position: static;
        margin-bottom: 45px;
    }

    .seo-content-nav a {
        min-height: 45px;
    }

    .seo-content-text {
        max-width: none;
    }

    .seo-text-block {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .seo-text-block h3 {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .seo-text-block p {
        font-size: 14px;
        line-height: 1.75;
    }

    .seo-content-more summary {
        font-size: 14px;
    }

    .seo-details-content {
        padding-right: 10px;
    }

    .seo-details-content p {
        font-size: 13px;
    }
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    position: relative;
    padding: 80px 0 25px;
    background: #34382f;
    color: #ffffff;
    overflow: hidden;
}

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


/* =========================================
   ОСНОВНАЯ ЧАСТЬ
   ========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 65px;
}


/* =========================================
   БРЕНД
   ========================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 22px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    line-height: 0.94;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.footer-logo span {
    color: #aeb292;
}

.footer-description {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.7;
}


/* Кнопка */

.footer-main-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 14px 18px;
    border: 1px solid rgba(174, 178, 146, 0.65);
    border-radius: 5px;
    background: transparent;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.footer-main-button i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.footer-main-button:hover {
    border-color: #aeb292;
    background: #aeb292;
    color: #292d25;
}

.footer-main-button:hover i {
    transform: translateX(4px);
}


/* =========================================
   ЗАГОЛОВКИ КОЛОНОК
   ========================================= */

.footer-column-title {
    margin-bottom: 24px;
    color: #92987b;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =========================================
   КОНТАКТЫ
   ========================================= */

.footer-contacts {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-label {
    display: block;
    margin-bottom: 7px;
    color: #92987b;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.65;
}

.footer-contact-item address {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.65;
    font-style: normal;
}

.footer-contact-item a {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #aeb292;
}


/* =========================================
   О НАС
   ========================================= */

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-about p {
    max-width: 330px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.58);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.7;
}

.footer-about p:last-child {
    margin-bottom: 0;
}


/* =========================================
   НИЖНЯЯ ПАНЕЛЬ
   ========================================= */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 35px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


/* Копирайт */

.footer-copy {
    color: rgba(255, 255, 255, 0.38);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1.4;
}


/* Юридические ссылки */

.footer-legal {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.42);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* =========================================
   КНОПКА НАВЕРХ
   ========================================= */

.footer-up {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #aeb292;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-up i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.footer-up:hover {
    color: #ffffff;
}

.footer-up:hover i {
    transform: translateY(-4px);
}


/* =========================================
   ДЕКОРАТИВНАЯ ЛИНИЯ
   ========================================= */

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(174, 178, 146, 0.25);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px 40px;
    }

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

    .footer-description {
        max-width: 400px;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .footer-legal {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .footer-up {
        grid-column: 2;
        grid-row: 1;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 60px 0 22px;
    }

    .footer-container {
        width: calc(100% - 30px);
    }


    /* Основная часть */

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 42px;
        padding-bottom: 45px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-logo {
        font-size: 25px;
    }

    .footer-description {
        max-width: 330px;
    }


    /* Контакты */

    .footer-contacts {
        width: 100%;
    }

    .footer-contact-item {
        margin-bottom: 18px;
    }


    /* О нас */

    .footer-about {
        width: 100%;
    }

    .footer-about p {
        max-width: none;
        font-size: 12px;
    }


    /* Нижняя часть */

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

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

    .footer-up {
        align-self: flex-end;
        margin-top: -5px;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 380px) {

    .footer-logo {
        font-size: 23px;
    }

    .footer-description {
        font-size: 11px;
    }

    .footer-contact-item p,
    .footer-contact-item address,
    .footer-about p {
        font-size: 11px;
    }

    .footer-main-button {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}


/* =====================================================
   ПЛАВАЮЩАЯ КНОПКА
   ===================================================== */

.floating-contact-button {
    position: fixed;
    right: 24px;
    bottom: 24px;

    z-index: 9990;

    width: 265px;
    height: 76px;

    display: flex;
    align-items: center;

    padding: 8px 13px 8px 9px;

    border: 0;
    border-radius: 42px;

    background:
        linear-gradient(
            135deg,
            #a92222 0%,
            #bd2d2d 55%,
            #a71f1f 100%
        );

    color: #fff;

    font-family: "Manrope", sans-serif;

    cursor: pointer;

    box-shadow:
        0 18px 45px rgba(75,25,25,.25),
        0 5px 15px rgba(75,25,25,.15);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.floating-contact-button::before {
    content: "";

    position: absolute;

    inset: -7px;

    border: 1px solid rgba(169,34,34,.18);

    border-radius: inherit;

    pointer-events: none;

    animation: floatingContactPulse 3s ease-in-out infinite;
}


.floating-contact-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 24px 55px rgba(75,25,25,.32),
        0 8px 20px rgba(75,25,25,.18);
}


@keyframes floatingContactPulse {

    0%,
    100% {
        opacity: .3;
        transform: scale(1);
    }

    50% {
        opacity: .8;
        transform: scale(1.025);
    }

}


/* =====================================================
   ИКОНКА КНОПКИ
   ===================================================== */

.floating-contact-icon {

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.30);

}


.floating-pencil {

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #fff;

    color: #a92222;

    font-size: 20px;
    font-weight: 800;

}


/* =====================================================
   ТЕКСТ
   ===================================================== */

.floating-contact-text {

    display: flex;
    flex-direction: column;

    margin-left: 13px;

    text-align: left;
}


.floating-contact-text strong {

    font-size: 17px;
    line-height: 1.2;

    font-weight: 800;

    color: #fff;
}


.floating-contact-text small {

    margin-top: 4px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    line-height: 1.3;
}


/* =====================================================
   СТРЕЛКА
   ===================================================== */

.floating-contact-arrow {

    width: 34px;
    height: 34px;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.25);

    font-size: 20px;

    transition: transform .3s ease;
}


.floating-contact-button:hover
.floating-contact-arrow {

    transform: translateX(4px);

}


/* =====================================================
   MODAL
   ===================================================== */

.contact-modal {

    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.contact-modal.is-open {

    visibility: visible;

    opacity: 1;

}


/* =====================================================
   ЗАТЕМНЕНИЕ
   ===================================================== */

.contact-modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(28,31,25,.72);

    backdrop-filter: blur(8px);

}


/* =====================================================
   ОКНО
   ===================================================== */

.contact-modal-window {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 520px;

    max-height: calc(100vh - 40px);

    overflow-y: auto;

    border-radius: 20px;

    background: #f8f7f2;

    box-shadow:
        0 35px 100px rgba(0,0,0,.32);

    transform:
        translateY(25px)
        scale(.97);

    transition:
        transform .35s ease;
}


.contact-modal.is-open
.contact-modal-window {

    transform:
        translateY(0)
        scale(1);

}


/* =====================================================
   КРЕСТИК
   ===================================================== */

.contact-modal-close {

    position: absolute;

    top: 17px;
    right: 17px;

    z-index: 20;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.48);

    border-radius: 50%;

    background: rgba(18,22,16,.48);

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        border-color .25s ease;
}


.modal-close-x {

    position: relative;

    width: 20px;
    height: 20px;

    display: block;
}


.modal-close-x::before,
.modal-close-x::after {

    content: "";

    position: absolute;

    top: 9px;
    left: 0;

    width: 20px;
    height: 2px;

    border-radius: 2px;

    background: #fff;

}


.modal-close-x::before {

    transform: rotate(45deg);

}


.modal-close-x::after {

    transform: rotate(-45deg);

}


.contact-modal-close:hover {

    background: rgba(255,255,255,.20);

    border-color: rgba(255,255,255,.80);

    transform: rotate(90deg);

}


.contact-modal-close:active {

    transform:
        rotate(90deg)
        scale(.9);

}


/* =====================================================
   ШАПКА
   ===================================================== */

.contact-modal-head {

    display: flex;

    gap: 18px;

    padding: 32px 72px 30px 32px;

    background:
        linear-gradient(
            135deg,
            #34382f,
            #4b513e
        );

    color: #fff;

}


.contact-modal-badge {

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    background: rgba(255,255,255,.07);

}


.contact-modal-badge span {

    color: #fff;

    font-size: 24px;

}


.contact-modal-kicker {

    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,.55);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;

}


.contact-modal-head h2 {

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 30px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -.04em;

}


.contact-modal-head p {

    max-width: 330px;

    margin: 12px 0 0;

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.55;

}


/* =====================================================
   ФОРМА
   ===================================================== */

.modal-contact-form {

    padding: 28px 32px 25px;

}


.modal-form-field {

    margin-bottom: 17px;

}


.modal-form-field label {

    display: block;

    margin-bottom: 7px;

    color: #3c4037;

    font-size: 11px;

    font-weight: 800;

}


/* =====================================================
   ПОЛЯ
   ===================================================== */

.modal-input-wrap {

    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    height: 58px;

    border: 1px solid #d9d6c9;

    border-radius: 10px;

    background: #fff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.modal-input-wrap:focus-within {

    border-color: #858a6c;

    box-shadow:
        0 0 0 3px rgba(133,138,108,.10);

}


.modal-field-icon {

    width: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777b70;

    font-size: 18px;

}


.modal-input-wrap input,
.modal-input-wrap select {

    flex: 1;

    width: 100%;
    height: 100%;

    padding: 0 15px 0 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: #292d25;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

}


.modal-input-wrap input::placeholder {

    color: #a2a39d;

}


.modal-input-wrap select {

    appearance: none;

    cursor: pointer;

}


.modal-select-arrow {

    width: 30px;

    margin-right: 8px;

    color: #65695d;

    font-size: 18px;

    text-align: center;

    pointer-events: none;

}


/* =====================================================
   HONEYPOT
   ===================================================== */

.modal-honeypot {

    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;

}


/* =====================================================
   СОГЛАСИЕ
   ===================================================== */

.modal-agreement {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 18px 0;

    color: #686b62;

    font-size: 11px;

    line-height: 1.5;

    cursor: pointer;

}


.modal-agreement input {

    position: absolute;

    opacity: 0;

}


.modal-agreement-check {

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c9c8bd;

    border-radius: 5px;

    background: #fff;

}


.modal-agreement-check span {

    display: none;

    color: #fff;

    font-size: 12px;

    font-weight: 800;

}


.modal-agreement input:checked
+ .modal-agreement-check {

    border-color: #747a5c;

    background: #747a5c;

}


.modal-agreement input:checked
+ .modal-agreement-check span {

    display: block;

}


.modal-agreement a {

    color: #4e543f;

    font-weight: 700;

}


/* =====================================================
   КНОПКА ОТПРАВКИ
   ===================================================== */

.modal-submit {

    width: 100%;

    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #a92222,
            #bd2d2d
        );

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(169,34,34,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.modal-submit:hover {

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(169,34,34,.25);

}


.modal-submit-arrow {

    font-size: 19px;

    transition:
        transform .25s ease;

}


.modal-submit:hover
.modal-submit-arrow {

    transform: translateX(4px);

}


/* =====================================================
   MAX
   ===================================================== */

.modal-max-link {

    margin-top: 20px;

    text-align: center;

}


.modal-max-caption {

    display: block;

    margin-bottom: 9px;

    color: #92938b;

    font-size: 10px;

}


.modal-max-link a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #4d523f;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

}


.modal-max-icon {

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #4d523f;

    color: #fff;

    font-size: 12px;

    font-weight: 800;

}


.modal-max-arrow {

    transition:
        transform .2s ease;

}


.modal-max-link a:hover
.modal-max-arrow {

    transform: translateX(3px);

}


/* =====================================================
   ЗАЩИТА
   ===================================================== */

.modal-security {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 20px;

    color: #999a92;

    font-size: 10px;

}


.modal-security span {

    font-size: 12px;

}


/* =====================================================
   БЛОКИРОВКА СКРОЛЛА
   ===================================================== */

body.modal-open {

    overflow: hidden;

}


/* =====================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ===================================================== */

@media (max-width: 700px) {

    .floating-contact-button {

        right: 14px;
        bottom: 14px;

        width: auto;

        min-width: 0;

        height: 62px;

        padding: 7px 10px 7px 7px;

    }


    .floating-contact-icon {

        width: 48px;
        height: 48px;

        flex-basis: 48px;

    }


    .floating-pencil {

        width: 30px;
        height: 30px;

        font-size: 16px;

    }


    .floating-contact-text {

        margin-left: 9px;

    }


    .floating-contact-text strong {

        font-size: 15px;

    }


    .floating-contact-text small {

        font-size: 10px;

    }


    .floating-contact-arrow {

        width: 29px;
        height: 29px;

        margin-left: 10px;

    }


    /* MODAL */

    .contact-modal {

        align-items: flex-end;

        padding: 0;

    }


    .contact-modal-window {

        width: 100%;

        max-width: none;

        max-height:
            calc(100vh - 10px);

        border-radius:
            18px 18px 0 0;

    }


    .contact-modal-head {

        padding:
            27px 62px 25px 22px;

        gap: 13px;

    }


    .contact-modal-badge {

        width: 45px;
        height: 45px;

        flex-basis: 45px;

    }


    .contact-modal-badge span {

        font-size: 19px;

    }


    .contact-modal-head h2 {

        font-size: 25px;

    }


    .contact-modal-head p {

        margin-top: 9px;

        font-size: 12px;

    }


    .contact-modal-close {

        top: 13px;
        right: 13px;

        width: 40px;
        height: 40px;

    }


    .modal-contact-form {

        padding:
            23px 20px 20px;

    }

}


@media (max-width: 420px) {

    .floating-contact-button {

        height: 58px;

    }


    .floating-contact-icon {

        width: 44px;
        height: 44px;

        flex-basis: 44px;

    }


    .floating-contact-text strong {

        font-size: 14px;

    }


    .floating-contact-text small {

        display: none;

    }


    .floating-contact-arrow {

        width: 27px;
        height: 27px;

        margin-left: 7px;

    }


    .contact-modal-head {

        padding-right: 58px;

    }


    .contact-modal-head h2 {

        font-size: 23px;

    }


    .modal-contact-form {

        padding:
            20px 16px 18px;

    }


    .modal-input-wrap {

        height: 54px;

    }


    .modal-submit {

        height: 55px;

    }

}

/* =====================================================
   COOKIE-БАННЕР
   ===================================================== */

.cookie-banner {
    position: fixed;

    left: 24px;
    bottom: 24px;

    z-index: 9980;

    width: min(620px, calc(100vw - 48px));

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;

    background:
        rgba(52,56,47,.97);

    color: #fff;

    box-shadow:
        0 18px 50px rgba(0,0,0,.20);

    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(25px);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease;
}


.cookie-banner.is-visible {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* =====================================================
   ИКОНКА
   ===================================================== */

.cookie-banner-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    border: 1px solid
        rgba(255,255,255,.16);
}


.cookie-banner-icon span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #858a6c;

    color: #fff;

    font-size: 16px;
}


/* =====================================================
   ТЕКСТ
   ===================================================== */

.cookie-banner-content {
    flex: 1;

    min-width: 0;
}


.cookie-banner-title {
    margin-bottom: 5px;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;
}


.cookie-banner-text {
    max-width: 470px;

    color:
        rgba(255,255,255,.62);

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    line-height: 1.5;
}


.cookie-banner-link {
    display: inline-block;

    margin-top: 7px;

    color: #b9bd9f;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    border-bottom:
        1px solid rgba(185,189,159,.35);

    transition:
        color .2s ease,
        border-color .2s ease;
}


.cookie-banner-link:hover {
    color: #fff;

    border-color: #fff;
}


/* =====================================================
   КНОПКА
   ===================================================== */

.cookie-banner-button {
    flex: 0 0 auto;

    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 17px;

    border: 0;

    border-radius: 8px;

    background: #a92222;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.cookie-banner-button span {
    font-size: 16px;

    transition:
        transform .25s ease;
}


.cookie-banner-button:hover {
    background: #bd2d2d;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(169,34,34,.25);
}


.cookie-banner-button:hover span {
    transform:
        translateX(3px);
}


/* =====================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ===================================================== */

@media (max-width: 700px) {

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;

        width: auto;

        display: grid;

        grid-template-columns:
            40px 1fr;

        gap: 12px;

        padding: 15px;

        border-radius: 13px;
    }


    .cookie-banner-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .cookie-banner-icon span {
        width: 24px;
        height: 24px;

        font-size: 14px;
    }


    .cookie-banner-title {
        font-size: 12px;
    }


    .cookie-banner-text {
        font-size: 9px;

        line-height: 1.45;
    }


    .cookie-banner-link {
        font-size: 9px;
    }


    .cookie-banner-button {
        grid-column:
            1 / -1;

        width: 100%;

        height: 43px;
    }

}


