@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* ====================== Base Reset / Normalize ====================== */

/* 1) Use border-box for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2) Remove default margins */
* {
    margin: 0;
}

/* 3) Typography & smoothing */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* remove if you don't want smooth scrolling */
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== Pretty Scrollbar (Page + Modal) ========== */

/* Базовые переменные (при желании подстрой цвета под бренд) */
:root{
  --scroll-thumb: rgba(255,115,80,.65);   /* цвет ползунка */
  --scroll-thumb-hover: rgba(255,115,80,.9);
  --scroll-track: rgba(255,255,255,.06);  /* дорожка */
  --scroll-contrast: #000;                /* для рамки/внутр.тени */
}

/* Плавный скролл, стабильная ширина (не прыгает при появлении) */
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

/* Firefox */
* {
  scrollbar-width: thin;                     /* thin | auto */
  scrollbar-color: var(--scroll-thumb) transparent;
}

/* WebKit (Chrome/Edge/Safari) — глобально для страницы */
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;                              /* на случай горизонтального */
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg,
              var(--scroll-thumb) 0%,
              rgba(255,115,80,.4) 100%);
  box-shadow:
    inset 0 0 0 2px var(--scroll-contrast),  /* тонкая «рамка» */
    0 0 8px rgba(255,115,80,.35);            /* мягкое свечение */
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
              var(--scroll-thumb-hover) 0%,
              rgba(255,115,80,.55) 100%);
  box-shadow:
    inset 0 0 0 2px var(--scroll-contrast),
    0 0 10px rgba(255,115,80,.6);
}

body::-webkit-scrollbar-thumb:active {
  background: var(--scroll-thumb-hover);
}

/* Уголок у элементов с двойным скроллом (например, таблицы) */
*::-webkit-scrollbar-corner {
  background: transparent;
}

/* Скрытая «тропа» — появляется при наведении на область скролла */
@media (hover:hover) {
  body::-webkit-scrollbar-track {
    background: transparent;
    transition: background .2s ease;
  }
  body:hover::-webkit-scrollbar-track {
    background: var(--scroll-track);
  }
}

/* Темный/светлый режим (если используешь color-scheme) */
@media (prefers-color-scheme: light) {
  :root {
    --scroll-contrast: #fff;
    --scroll-track: rgba(0,0,0,.06);
  }
}

/* ====== Модалка: делаем собственный скролл для .modal-body ====== */

.modal-body {
  /* если контент высокий, чтобы появлялся внутренний скролл */
  max-height: min(70vh, 700px);
  overflow: auto;
}

/* Firefox */
.modal-body {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) transparent;
}

/* WebKit */
.modal-body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg,
              var(--scroll-thumb) 0%,
              rgba(255,115,80,.45) 100%);
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.55),
    0 0 6px rgba(255,115,80,.35);
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
}

/* Чтобы элементы с фиксированным хедером корректно прыгали по якорям */
:target {
  scroll-margin-top: 80px; /* под высоту шапки */
}


/* 4) Media elements behave predictably and don’t overflow */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 5) Text & form elements inherit fonts; long words wrap */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: anywhere;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

/* 6) Buttons/links basic reset */
button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

/* 7) Utility: unstyled lists when explicitly requested */
ul[role="list"], ol[role="list"],
ul.reset, ol.reset {
    list-style: none;
    padding: 0;
}

/* 8) Tables: remove spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9) Forms: small cross-browser tweaks */
textarea {
    resize: vertical;
}

input[type="search"] {
    -webkit-appearance: none;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* 10) Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


body, button, html, input, textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

body {
    color: #fff;
    background: #000;
}

:root {
    --brand: #e33a10;
    --text-0: #fff;
    --link: #d7d7d7;
    --link-hover: #fff;

    --hdr-border: rgba(255, 255, 255, .06);
    --glass: hsla(0, 0%, 100%, .05);
}

/* header */
.header {
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    background: transparent
}

.header__inner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    /* 24px */
    padding: 1rem 1.5rem;
    /* 16px 24px */
    background: transparent;
    z-index: 3;
}

@media (min-width:62.5rem) {

    /* 1000px */
    .header__inner {
        position: fixed;
        background: var(--glass);
        backdrop-filter: blur(.625rem);
        /* 10px */
        border-bottom: .0625rem solid var(--hdr-border);
        /* 1px */
        max-height: 5rem;
        /* 80px */
        padding: 1.5rem 1.5rem;
        /* 24px 24px */
    }
}

@media (min-width:68.75rem) {

    /* 1100px */
    .header__inner {
        padding: 1.5rem 4.75rem
    }

    /* 24px 76px */
}

/* бренд */
.header__brand {
    display: inline-flex;
    align-items: center
}

.header__logo {
    display: block;
    max-width: 8.125rem;
    height: auto
}

/* 130px */

/* навигация */
.header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

/* 24px */
@media (min-width:62.5rem) {
    .header__nav {
        margin-left: auto
    }
}

.nav-link {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--link);
    padding: .5rem .75rem;
    /* 8px 12px */
    border-radius: .5rem;
    /* 8px */
    font-size: 1rem;
    line-height: 140%;
    font-weight: 700;
}

.nav-link:hover {
    color: var(--link-hover);
    background: rgba(255, 255, 255, .06)
}



/* кнопка входа */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem;
    /* 8px 12px */
    border-radius: 1.5rem;
    /* 24px */
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 700;
    line-height: 140%;
    background: var(--brand);
    color: var(--text-0);
}

.button:active:not(:disabled) {
    filter: brightness(.85)
}

.button--contrast {
    background: #fff;
    color: var(--brand)
}

@media (max-width: 62.49rem) {

    /* 999px */
    .header__nav {
        display: none;
    }
}

/*HERO*/

/* ---------- Reusable button (brand) ---------- */
/* Use across the site (header, hero, etc.) */
.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-block-size: 2.75rem;
    /* 44px for tap target */
    padding-inline: 1.25rem;
    /* 20px */
    border: 0;
    border-radius: .5rem;
    /* 8px */
    background: #e53a14;
    color: #fff;
    font: 700 1rem/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    cursor: pointer;
    transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}

.btn-brand:hover {
    opacity: .92
}

.btn-brand:active {
    transform: translateY(.0625rem)
}

/* 1px */
.btn-brand:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .1875rem rgba(255, 255, 255, .35)
}

/* 3px */
/* ===== HERO (BEM) ===== */

/* keep header above art; if хедер fixed — этого достаточно */
.header {
    z-index: 10;
}

.hero {
    position: relative;
    color: #fff;

    /* base spacing */
    padding: 2.5rem 1.5rem;
    /* ~40px 24px */
    min-height: 100svh;
    /* subtle dark background just in case image fails */
    background-color: #000;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center
}

@media (max-width: 48rem) {


    /* 768px */
    .hero {
        padding: 2rem 1rem;
        /* ~24px 16px */
    }
}

/* art under the header & content */
.hero__art {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* ниже контента */
    overflow: hidden;
}

/* image covers and gets desktop positioning rules below */
.hero__image {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    object-position: center 4%;
    filter: none;
    pointer-events: none;
    user-select: none;
}

/* optional gradient overlay like на рефе */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .01) 50%, rgba(0, 0, 0, .85));
    z-index: 1;
    /* над картинкой, под контентом */
}

.hero__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    align-items: center;
    justify-content: flex-end;
}

.hero__content {
    position: relative;
    z-index: 2;
    /* выше арта и оверлея */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    /* ~16px */
    inline-size: 100%;
    /* ~992px — ширина колонки */
    margin-inline: auto;
}


.hero__title {
    font-size: 5rem;
    /* 80px */
    line-height: 1.4;
    /* 140% */
    font-weight: 400;
    text-align: left;
    line-height: 140%;
}

/* >= 768px */
@media (max-width: 48rem) {

    /* 768px */
    .hero__title {
        font-size: 2.25rem;
        /* 36px */
    }
}

@media (max-width: 26.875rem) {

    /* 768px */
    .hero__title {
        font-size: 1.5rem;
        /* 24px */
    }
}

.hero__title strong {
    font-family: Bitter, Montserrat, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

.hero__accent {
    font-style: normal;
    font-weight: 800;
    display: block;
    margin-block-start: .5rem;
}

.hero__cta {
    margin-block-start: 1rem;
    max-inline-size: 31.25rem;
    /* 500px */
}

/* single reusable brand button */
.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 100%;
    min-inline-size: 12rem;
    /* 192px */
    padding: .875rem 1.5rem;
    /* ~14px 24px */
    border: 0;
    border-radius: 9999px;
    background: #e23a16;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    /* 16px */
    line-height: 1.4;
    text-align: center;
    transition: transform .08s ease, background-color .15s ease, opacity .15s ease;
    cursor: pointer;
}

.btn-brand:hover {
    background: #d33413;
}

.btn-brand:active {
    transform: translateY(.0625rem);
}

/* 1px */
.btn-brand:disabled {
    opacity: .6;
    pointer-events: none;
}

/* policy line */

/* wrapper */
.check {
    display: inline-flex;
    align-items: flex-start;
    gap: .5rem;
    /* 8px */
    color: #fff;
    font-size: .75rem;
    /* 12px */
    line-height: 1.4;
    max-width: 31.25rem;
    line-height: 140%;
}

/* прячем input, оставляя доступность */
.check__input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(50%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

/* коробка — только рамка, НИКАКОГО красного */
.check__box {
    --box: 1.5rem;
    /* 24px */
    --radius: .375rem;
    /* 6px */

    inline-size: var(--box);
    block-size: var(--box);
    min-inline-size: var(--box);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: var(--radius);
    background: transparent;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    transform: translateY(.15rem);
    transition: border-color .15s ease, box-shadow .15s ease;
    cursor: pointer;
}

/* галочка — два бордера, повернутые на 45° */
.check__box::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    inline-size: .55rem;
    /* ~9px */
    block-size: 1rem;
    /* ~16px */
    border-right: .2rem solid #fff;
    border-bottom: .2rem solid #fff;
    transform: rotate(45deg) translateY(-.1rem);
    opacity: 0;
    transition: opacity .12s ease;
}

/* checked — просто показать галочку, фон НЕ меняется */
.check__input:checked+.check__box::after {
    opacity: 1;
}

/* hover / focus */
.check:hover .check__box {
    border-color: #fff;
}

.check__input:focus-visible+.check__box {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .35);
    /* тонкое focus-кольцо */
}

/* disabled (на будущее) */
.check__input:disabled+.check__box {
    opacity: .55;
    cursor: not-allowed;
}

.check__input:disabled~.check__text {
    opacity: .7;
}

/* ===== Desktop adjustments from your refs ===== */
@media (min-width: 62.5rem) {

    /* 1000px */
    .hero {
        padding: 2.5rem 6.25rem;
        /* 40px 100px */
    }

    .hero__image {
        object-position: right 2.5rem;
        /* x: right; y: 40px */
        inline-size: auto;
        block-size: 100%;
        /* scale by width viewport like 40vw at large screens */
        transform-origin: right top;
    }

    /* emulate background-size: 40vw — via max width on image wrapper */
    .hero__art {
        display: grid;
    }

    .hero__art>.hero__image {
        justify-self: end;
        inline-size: 40vw;
        block-size: auto;
    }
}

/* ===== About Section ===== */


.img-bg-page {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .6) 90%, rgba(0, 0, 0, .85)), url("../img/gentlove-woman-bg.30ccd367929ed656.webp");
    background-position: right 50%;
    background-size: 75% auto;
    background-repeat: no-repeat;
}

.about-section {
    padding: 2.5rem 6.25rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    min-height: 100svh;
    padding: 32px 16px;
    width: 100%;

}

@media (max-width: 62.5rem) {
    .img-bg-page {
        background-position: center 25%;
        background-repeat: no-repeat;
        background-size: 70%;
    }
}

@media (max-width: 48rem) {
    .about-section {
        padding: 2rem 1rem;
    }
}

.about__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1080px;
    width: 100%;
    gap: 2rem;
    align-items: start;
}

.about-section .about__subtitle {
    font-size: 1.25rem;
    /* 16px */
    font-weight: 700;
}

.about__title {
    font-size: 3.75rem;
    line-height: 140%;
    font-weight: 400;
}

.about__title strong {
    font-family: Bitter, Montserrat, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

.about__text {
    font-size: 1.25rem;
    /* 18px */
    line-height: 140%;
    font-weight: 400;
}

@media (max-width: 48rem) {
    .about-section .about__subtitle {
        font-size: 1rem;
    }

    .about__title {
        font-size: 1.5rem;
        line-height: 140%;
    }

    .about__text {
        font-size: 1rem;
        line-height: 140%;
    }
}

.phone-section {
    padding: 2.5rem 6.25rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    min-height: 100svh;
    padding: 32px 16px;
    width: 100%;

}

@media (max-width: 48rem) {
    .phone-section {
        padding: 2rem 1rem;
    }
}


.phone__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1080px;
    width: 100%;
    gap: 2rem;
    align-items: start;
}

.phone-section .phone__row {
    align-items: center;
    display: flex;
    gap: 120px;
    justify-content: center;
}

@media (max-width: 62.375rem) {
    .phone-section .phone__row {
        align-items: center;
        display: flex;
        flex-direction: column-reverse;
        gap: 60px;
        justify-content: center;
    }

    .phone__inner {
        align-items: center;
        text-align: center;
    }
}

/* ====== PHONE + OVERLAY ====== */
/* Родитель: кладём элементы в одну ячейку grid → панель поверх телефона */
.hotstart__wrap {
    margin: revert;
    max-width: 336px;
    position: relative;
}

/* телефон — основание (снизу) */
.hotstart__phone {
    align-items: center;
    display: flex;
    gap: 0;
    justify-content: center;
    padding: 60px 42px;
    position: relative;
    width: 100%;
    /* подстраховка под PNG с вырезанным экраном */
}

.hotstart__img {
    aspect-ratio: 1.99;
    display: block;
    height: 720px;
    left: 50%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* панель — сверху, занимает ту же ячейку и растягивается до размеров телефона */
.hotstart__panel {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    margin: auto;
    position: relative;
    max-width: 300px;
}

/* ====== Контент внутри экрана ====== */
.hotstart__text {
    display: grid;
    gap: 13px;
    max-width: 300px;
}

.hotstart__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto 0;
}



.hotstart__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotstart__title {
    margin: 6px 0 2px;
    font-weight: 800;
    font-size: 16px;
    /* внутри экрана шрифт компактнее */
    line-height: 1.35;
    color: #fff;
}

.hotstart__subtitle {
    font-size: 13px;
    line-height: 1.45;
    color: #dfe2e6;
}

/* ====== Сообщение (чип + карточка) ====== */
.hotstart__bubble {
    background: #0f1113;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .38);
}

.hotstart__bubble-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
}

.hotstart__bubble-ico {
    width: 16px;
    height: 16px;
    fill: #ff6a3a;
}

.hotstart__bubble-title {
    display: inline-block;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 999px;
    background: #23262a;
    color: #fff;
}

/* тело */
.hotstart__bubble-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background: #1a1d21;
}

.hotstart__bubble-text {
    flex: 1 1 auto;
    font-size: 13px;
    line-height: 1.45;
    color: #d7dadd;
    text-align: left;
}

/* круглая оранжевая кнопка отправки */
.hotstart__send {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: radial-gradient(120% 120% at 50% 0%,
            #ff853e 0%, #e33a16 65%, #bb280f 100%);
    box-shadow:
        0 10px 22px rgba(227, 58, 22, .45),
        inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.hotstart__send-ico {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* прозрачная «Create more options» */
.hotstart__more {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

.hotstart__more-ico {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* ====== Адаптив ====== */
@media (max-width: 900px) {

    .hotstart__panel {
        padding: 20px 4px 18px;
    }

    .hotstart__title {
        font-size: 15px;
    }

    .hotstart__subtitle {
        font-size: 12.5px;
    }
}

@media (max-width: 22.5rem) {

    .hotstart__avatar {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .hotstart__bubble-body {
        padding: 5px;
    }

    .hotstart__phone {
        padding: 60px 30px;
    }
}


.phone__text {
    max-width: 500px;
    line-height: 140%;
    font-size: 2rem;
}

.phone__text strong {
    font-family: Bitter, Montserrat, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

@media (max-width: 48rem) {
    .phone__text {
        font-size: 1.25rem;
    }
}

.review-section {
    padding: 60px 16px;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    width: 100%;

}

@media (max-width: 48rem) {
    .review-section {
        padding: 2rem 1rem;
    }
}

@media (min-width: 48rem) {
    .review-section {
        min-height: 100svh;
        padding: 32px 16px;
        width: 100%;
    }

}

.review__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1080px;
    width: 100%;
    gap: 2rem;
    align-items: start;
}

.review-section .review__subtitle {
    font-size: 1.25rem;
    /* 16px */
    font-weight: 700;
}

.review__title {
    font-size: 3.75rem;
    line-height: 140%;
    font-weight: 400;
}

.review__title strong {
    font-family: Bitter, Montserrat, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

@media (max-width: 48rem) {
    .review-section .review__subtitle {
        font-size: 1rem;
    }

    .review__title {
        font-size: 1.5rem;
        line-height: 140%;
    }
}

.reviews__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: stretch;
    padding-top: 8px;
    width: 100%;
    flex-direction: column;
}

.reviews__list li {
    width: 100%;
}

@media (min-width:48rem) {

    /* >=768px */
    .reviews__list {
        padding-top: 92px;
        display: flex;
        flex-direction: row;
        max-width: 75rem;
    }
}

/* Card */
.review-item {
    background: hsla(0, 0%, 100%, .1);
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .35);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.review-item:hover {
    box-shadow: 0 .75rem 2.25rem rgba(0, 0, 0, .45);
}

/* Top row (avatar + name) */
.review-item__top {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-block-end: .75rem;
}

.review-item__avatar {
    inline-size: 2.5rem;
    block-size: 2.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #656d78;
    border: 1px solid rgba(255, 255, 255, .18);
    font-weight: 800;
    font-size: .9375rem;
    color: #fff;
}

.review-item__name {
    font-weight: 700;
    font-size: 1rem;
}

/* Text & date */
.review-item__text {
    margin: 0 0 .75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, .9);
    line-height: 140%;
}

.review-item__date {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
}

@media (max-width: 48rem) {
    .review-item__text {
        font-size: .875rem;
    }
}

.cta-section {
    padding: 2.5rem 6.25rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    min-height: 100svh;
    padding: 32px 16px;
    width: 100%;
    background-color: #000;

    background-image: linear-gradient(180deg, rgba(0, 0, 0, .6) 90%, rgba(0, 0, 0, .85)), url("../img/man-bg.webp");
    background-position: center 25%;
    background-repeat: no-repeat;
    background-size: cover;

}

@media (max-width: 48rem) {
    .cta-section {
        padding: 2rem 1rem;
    }
}

.cta__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1080px;
    width: 100%;
    gap: 2rem;
    align-items: start;
}

.cta__title {
    font-size: 5rem;
    line-height: 140%;
    font-weight: 400;
}

.cta__title strong {
    font-family: Bitter, Montserrat, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

.cta__text {
    font-size: 3.75rem;
    line-height: 140%;
    font-weight: 400;
}

.cta-section .btn-brand {
    inline-size: auto;
}

@media (max-width: 48rem) {

    .cta__title {
        font-size: 2.25rem;
        line-height: 140%;
    }

    .cta__text {
        font-size: 1.5rem;
        line-height: 140%;
        font-weight: 400;
    }

}

/* ===== footer ===== */
.site-footer {
    background: #000;
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 2rem 1rem 2.5rem;
}

.site-footer__brand {
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 1.25rem;
    margin-bottom: .75rem;
    color: #ff4a1a
}

.site-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem
}

.site-footer__links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-weight: 500
}

.site-footer__links a:hover {
    color: #fff;
    text-decoration: underline
}

.site-footer__copy {
    opacity: .6;
    font-size: .875rem;
    margin: 0;
}

@media (min-width:48rem) {
    .site-footer {
        padding: 2.5rem 1rem 3rem
    }
}

.footer__logo {
    display: block;
    max-width: 8.125rem;
    height: auto;
    margin: 0 auto 15px;
}


/*MODAL*/

/* Базовые кнопки (упростим) */
.btn {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: .5rem;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 100%;
    min-inline-size: 12rem;
    padding: .875rem 0.2rem;
    border: 0;
    border-radius: 9999px;
    background: #e23a16;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    transition: transform .08s ease, background-color .15s ease, opacity .15s ease;
    cursor: pointer;
}

.btn-primary:hover {
    filter: brightness(.95);
}

.btn:focus {
    outline: 2px solid #fff2;
    outline-offset: 2px;
}

/* МОДАЛКА */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    /* скрыта по умолчанию */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    /* backdrop */
}

/* Fade-анимация как у bootstrap */
.modal.fade {
    opacity: 0;
    transition: opacity .2s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-dialog {
    width: 100%;
    max-width: 720px;
    /* кастомная ширина */
    margin: 1rem;
    transform: translateY(10px);
    transition: transform .22s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

/* Вертикальное центрирование */
.modal-dialog-centered {
    align-self: center;
}

/* Контент */
.modal-content {
    background: #111;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem .75rem 0 .75rem;
    border: 0;
}

/* Крестик */
.btn-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    border-radius: 999px;
}

.btn-close::before, .btn-close::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 2px;
    background: #bbb;
    transform-origin: center;
}

.btn-close::before {
    transform: rotate(45deg);
}

.btn-close::after {
    transform: rotate(-45deg);
}

.btn-close:hover::before, .btn-close:hover::after {
    background: #fff;
}

.modal-body {
    padding: 1rem 1.25rem 1.5rem;
}

.text-center {
    text-align: center;
}

.modal-dialog-wide {
    max-width: 720px;
}

/* Немного адаптива */
@media (max-width: 575.98px) {
    .modal-body {
        padding: .75rem;
    }
}

/* Служебный класс блокировки скролла body */
.body-lock {
    overflow: hidden;
}

.container-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.modal-title {
    font-family: Bitter, Montserrat, sans-serif;
    font-weight: 900;
}

.modal-body p b {
    font-family: Bitter, Montserrat, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

.modal-body img {
    max-width: 60px;
    margin: 0 auto 15px;
}

.modal-body strong {
    display: block;
    margin-bottom: 15px;
}

.modal-content .form-control {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    color: grey;
    font-weight: 600;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #C4C4C4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.middle-content-form {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}




#exampleModal2 .padding-sides {
    padding: 0px 0px 15px !important;
}


.date-selectors {
    display: flex;
    gap: 10px;
}

.loading {
    position: fixed;
    z-index: 999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: none;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 50px;
    height: 50px;
    margin-top: -0.5em;

    border: 15px solid #fb1446;
    border-radius: 100%;
    border-bottom-color: transparent;
    -webkit-animation: spinner 1s linear 0s infinite;
    animation: spinner 1s linear 0s infinite;


}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.modal-body .middle-content {
    padding-bottom: 15px;
}