:root {
    --container: 1140px;
    --blue: #3B55FF;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .75);
    --glass: rgba(255, 255, 255, .18);
    --shell: rgba(150, 170, 190, .45);
    /* серое пятно вокруг формы */
    --shadow: 0 20px 60px rgba(0, 0, 0, .45);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #000;
}

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

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

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 22px 0 56px;
    background:
        radial-gradient(80% 70% at 20% 35%, rgba(59, 85, 255, .25), transparent 60%),
        radial-gradient(70% 60% at 80% 30%, rgba(255, 255, 255, .10), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
        var(--hero-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 700px at 50% 35%, rgba(0, 0, 0, .15), rgba(0, 0, 0, .65));
    pointer-events: none;
}


/* ===== Expected Profit block ===== */
.hero-profit {
    margin: 22px 0 18px;
    max-width: 520px;
}

.hero-profit__title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 10px;
}

.hero-profit__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-profit__list li {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;

    padding: 10px 14px;
    border-radius: 10px;

    background: linear-gradient(180deg,
            rgba(59, 85, 255, .12),
            rgba(59, 85, 255, .04));
    border: 1px solid rgba(59, 85, 255, .35);
}

.hero-profit__period {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}

.hero-profit__value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.hero-profit__percent {
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
    .hero-profit {
        margin: 16px 0 14px;
    }

    .hero-profit__list li {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "period percent"
            "value value";
        gap: 6px;
    }

    .hero-profit__period {
        grid-area: period;
    }

    .hero-profit__percent {
        grid-area: percent;
    }

    .hero-profit__value {
        grid-area: value;
    }
}


/* NAV */
.hero__header {
    position: relative;
    z-index: 2;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
}

.nav__logo img {
    height: 62px;
    width: auto;
}

.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
}

.nav__links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

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

.nav__cta {
    text-decoration: none;
    color: #fff;
    background: var(--blue);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 26px rgba(59, 85, 255, .35);
}

.nav__burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .25);
    cursor: pointer;
}

.nav__burger span {
    display: block;
    height: 2px;
    width: 18px;
    margin: 4px auto;
    background: rgba(255, 255, 255, .85);
    border-radius: 2px;
}

/* GRID */
.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    padding-top: 42px;
    align-items: start;
}

/* LEFT */
.rating {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .75);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
}

.rating__stars {
    letter-spacing: 2px;
    color: var(--blue);
    font-size: 16px;
    line-height: 1;
}

.rating__stars .muted {
    color: rgba(59, 85, 255, .35);
}

.rating__text {
    font-size: 13px;
    line-height: 1.25;
}

.rating__text strong {
    color: var(--blue);
    font-weight: 700;
}

.rating__text .muted {
    color: rgba(255, 255, 255, .75);
}

.hero__title {
    margin: 22px 0 18px;
    font-size: 54px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.hero__desc {
    margin: 0 0 22px;
    max-width: 520px;
    color: rgba(255, 255, 255, .80);
    font-size: 18px;
    line-height: 1.6;
}

.hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
}

.hero__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(59, 85, 255, .18);
    border: 1px solid rgba(59, 85, 255, .35);
    color: rgba(180, 255, 120, .95);
    /* как зелёные иконки на скрине */
    font-size: 12px;
}

/* RIGHT FORM */
.formShell {
    border-radius: var(--radius-xl);
    padding: 18px;
    background: var(--shell);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.formCard {
    border-radius: 22px;
    background: var(--blue);
    padding: 22px 20px 18px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
}

.formCard__head h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
}

.formCard__head p {
    margin: 0 0 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}

.field {
    display: block;
    margin-bottom: 12px;
}

.field input {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .18);
    padding: 0 14px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.field input::placeholder {
    color: rgba(0, 0, 0, .55);
}

.field input:focus {
    border-color: rgba(255, 255, 255, .60);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .22);
}

.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .18);
    overflow: hidden;
}

.phone input {
    border: 0;
    height: 44px;
    padding: 0 14px 0 6px;
    flex: 1;
    box-shadow: none !important;
}

.phone__prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 12px;
    color: #111;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.phone__flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 12px 0 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, .90);
}

.check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #0b0b0f;
    color: #fff;
    font-family: inherit;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .35);
}

.btn:hover {
    filter: brightness(1.05);
}

.btn:active {
    transform: translateY(1px);
}

.formCard__note {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .85);
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .nav__links {
        display: none;
    }

    .nav__burger {
        display: inline-block;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__desc {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .hero {
        padding: 16px 0 40px;
        min-height: auto;
    }

    .nav__logo img {
        height: 30px;
    }

    .nav__cta {
        display: none;
    }

    /* на мобиле как на скрине — кнопки нет в хедере */
    .hero__grid {
        padding-top: 18px;
    }

    .rating {
        width: 100%;
        justify-content: flex-start;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.12;
        margin: 14px 0 12px;
        text-align: center;
    }

    .hero__desc {
        text-align: center;
        font-size: 13px;
        line-height: 1.6;
    }

    .hero__bullets {
        align-items: flex-start;
        margin-top: 10px;
    }

    .formShell {
        padding: 14px;
    }

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

    .formCard__head h3 {
        font-size: 18px;
        text-align: center;
    }

    .formCard__head p {
        text-align: center;
    }
}

/* ===== Highlights (Öne Çıkanlar) ===== */
.highlights {
    padding: 64px 0 72px;
    background: transparent;
    /* body уже #0C0C0C */
}

.highlights__title {
    margin: 0 0 22px;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.highlights__title span {
    color: var(--blue, #3B55FF);
}

.highlights__table {
    margin: 0 auto;
    max-width: 1180px;
    border-radius: 18px;
    border: 1px solid rgba(59, 85, 255, .45);
    background:
        radial-gradient(120% 140% at 10% 10%, rgba(59, 85, 255, .12), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.hl-row {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 92px;
}

.hl-row+.hl-row {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hl-cell {
    display: flex;
    align-items: center;
    padding: 26px 28px;
}

.hl-cell--left {
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    color: var(--blue, #3B55FF);
    font-size: 20px;
    font-weight: 500;
}

.hl-cell--right {
    color: rgba(255, 255, 255, .92);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.hl-ic {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: rgba(59, 85, 255, .95);
}

.hl-ic svg {
    width: 22px;
    height: 22px;
}

.hl-label {
    display: inline-block;
}

/* ===== Mobile like screenshot ===== */
@media (max-width: 680px) {
    .highlights {
        padding: 44px 0 56px;
    }

    .highlights__title {
        font-size: 34px;
        text-align: left;
        padding: 0 6px;
        margin-bottom: 16px;
    }

    .highlights__table {
        border-radius: 16px;
    }

    .hl-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hl-cell {
        padding: 18px 18px;
    }

    .hl-cell--left {
        border-right: 0;
        font-size: 20px;
        /* как ты просил: 20 */
        padding-bottom: 14px;
    }

    .hl-cell--right {
        font-size: 20px;
        /* как ты просил: 20 */
        padding-top: 18px;
        padding-bottom: 22px;
    }
}


/* ===== Logo marquee ===== */
.logo-marquee {
    background: var(--blue, #3B55FF);
    padding: 18px 0;
    overflow: hidden;
}

.logo-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

.logo-marquee__set {
    display: flex;
    align-items: center;
    gap: 50px;
    /* расстояние между лого */
    padding-right: 50px;
    /* чтобы стык был ровный */
}

.logo-marquee__set img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1) contrast(1.05);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* двигаем ровно на ширину первого сета */
}

/* чуть крупнее на десктопе */
@media (min-width: 900px) {
    .logo-marquee__set img {
        height: 44px;
    }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .logo-marquee__track {
        animation: none;
    }
}

/* ===== Stats (fixed like design) ===== */
.stats {
    padding: 60px 0;
    background: transparent;
}

/* ключ: отрицательный gap и общий "слипшийся" ряд */
.stats__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    /* без gap */
    align-items: stretch;
}

/* карточка */
.stat {
    position: relative;
    border-radius: 22px;
    padding: 20px;
    min-height: 230px;

    /* стеклянный фон */
    background:
        radial-gradient(120% 140% at 20% 10%, rgba(59, 85, 255, .22), transparent 55%),
        linear-gradient(180deg, #0F1220, #0C0C0C);

    /* тонкая рамка */
    border: 1px solid rgba(59, 85, 255, .55);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .55);

    /* ВАЖНО: центрируем контент как на макете */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* “внутренняя подсветка” по краям */
    overflow: hidden;
}

/* эффект “вливания”: делаем наложение соседей */
.stat--1 {
    z-index: 1;
}

.stat--2 {
    z-index: 2;
}

.stat--3 {
    z-index: 3;
}

/* чтобы карточки визуально слипались, средняя и правая заезжают влево */
.stat--2 {
    margin-left: -22px;
}

.stat--3 {
    margin-left: -22px;
}

/* чтобы стык выглядел как мягкая линия */
.stat::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .06),
        inset 0 18px 50px rgba(0, 0, 0, .35);
}

/* цифры/текст */
.stat__num {
    font-size: 48px;
    /* как ты просил */
    font-weight: 500;
    line-height: 1.1;
    color: var(--blue, #3B55FF);
}

.stat__num--multi {
    font-size: 48px;
    line-height: 1.15;
}

.stat__txt {
    margin-top: 14px;
    font-size: 16px;
    /* как ты просил */
    color: rgba(255, 255, 255, .92);
}

/* ===== Mobile (столбиком, центр, без наложений) ===== */
@media (max-width: 768px) {
    .stats {
        padding: 40px 0;
    }

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

    .stat {
        min-height: 200px;
    }

    .stat--2,
    .stat--3 {
        margin-left: 0;
        /* убираем “вливание” на мобиле */
    }
}

/* ===== Quote / Image split block ===== */
.quote-block {
    padding: 70px 0;
    background: transparent;
}

.quote-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 26px;
    overflow: hidden;

    background: #0C0C0C;
    /* плотный */
    border: 1px solid rgba(59, 85, 255, .55);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .6);
}

/* левая часть */
.quote-card__text {
    padding: 44px 54px;
    font-size: 28px;
    /* как ты просил */
    line-height: 1.35;
    color: rgba(255, 255, 255, .92);

    /* лёгкий синий “отблеск” сверху как на макете */
    background:
        radial-gradient(120% 80% at 15% 0%, rgba(59, 85, 255, .18), transparent 60%),
        #0C0C0C;
}

/* правая часть */
.quote-card__media {
    position: relative;
    background: #0C0C0C;
}

.quote-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* тонкий разделитель по центру (как стык на скрине) */
.quote-card__media::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, .10);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .quote-block {
        padding: 44px 0;
    }

    .quote-card {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .quote-card__text {
        padding: 28px 22px;
        font-size: 20px;
        /* оставляем 28 как ты сказал */
        text-align: center;
    }

    .quote-card__media {
        aspect-ratio: 16 / 11;
        /* чтобы похоже на макет */
    }

    .quote-card__media::before {
        left: 0;
        top: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, .10);
    }
}


/* ===== Overview / Platforma Genel Bakış ===== */
.overview {
    padding: 70px 0 80px;
    background:
        radial-gradient(900px 520px at 50% 20%, rgba(0, 0, 0, .10), rgba(0, 0, 0, .70)),
        var(--overview-bg);
    background-size: cover;
    background-position: center;
}

.overview__head {
    text-align: center;
    margin-bottom: 34px;
}

.overview__kicker {
    font-size: 18px;
    color: var(--blue, #3B55FF);
    margin-bottom: 10px;
    font-weight: 500;
}

.overview__title {
    margin: 0;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 500;
    color: #fff;
}

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

/* card */
.o-card {
    border-radius: 18px;
    padding: 22px 22px 22px;
    background: #0C0C0C;
    /* плотная */
    border: 1px solid rgba(59, 85, 255, .55);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .55);

    min-height: 240px;
}

.o-card__ic {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.o-card__ic img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.o-card__title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

.o-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
}

/* ===== Tablet ===== */
@media (max-width: 980px) {
    .overview__title {
        font-size: 44px;
    }

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

/* ===== Mobile (как на скрине — в столбик) ===== */
@media (max-width: 640px) {
    .overview {
        padding: 46px 0 56px;
    }

    .overview__head {
        margin-bottom: 20px;
    }

    .overview__kicker {
        font-size: 18px;
    }

    .overview__title {
        font-size: 32px;
        /* на мобиле визуально меньше, иначе не влезет как на скрине */
        line-height: 1.15;
    }

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

    .o-card {
        padding: 20px;
        min-height: unset;
    }
}

/* ===== Help cards section ===== */
.help-cards {
    padding: 70px 0 80px;
    background: transparent;
}

.help-cards__head {
    text-align: center;
    margin-bottom: 34px;
}

.help-cards__title {
    margin: 0 0 10px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 500;
    color: #fff;
}

.help-cards__title span {
    color: var(--blue, #3B55FF);
}

.help-cards__sub {
    margin: 0;
    font-size: 16px;
    /* как ты просил */
    color: rgba(255, 255, 255, .70);
}

/* list */
.help-cards__list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* card */
.hcard {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(59, 85, 255, .55);
    background: #0C0C0C;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .55);
    min-height: 320px;
}

.hcard--reverse {
    grid-template-columns: 1.05fr 1fr;
}

.hcard--reverse .hcard__content {
    order: 2;
}

.hcard--reverse .hcard__media {
    order: 1;
}

.hcard__content {
    padding: 34px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(120% 90% at 10% 10%, rgba(59, 85, 255, .12), transparent 55%),
        #0C0C0C;
}

.hcard__title {
    margin: 0 0 14px;
    font-size: 32px;
    /* как ты просил */
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

.hcard__text {
    margin: 0 0 22px;
    font-size: 18px;
    /* как ты просил */
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
    max-width: 520px;
}

.hcard__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    padding: 12px 22px;

    background: #3B55FF;
    /* как ты просил */
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    /* как ты просил */
    font-size: 16px;
    /* как ты просил */
    font-weight: 600;
    text-transform: uppercase;
    /* все капсом */
    letter-spacing: .02em;
    box-shadow: 0 16px 34px rgba(59, 85, 255, .35);
}

.hcard__btn:hover {
    filter: brightness(1.05);
}

.hcard__btn:active {
    transform: translateY(1px);
}

.hcard__media {
    position: relative;
    background: #111;
}

.hcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Mobile (как на скрине: текст сверху, фото снизу) ===== */
@media (max-width: 768px) {
    .help-cards {
        padding: 46px 0 56px;
    }

    .help-cards__title {
        font-size: 34px;
        line-height: 1.15;
    }

    .help-cards__sub {
        font-size: 16px;
    }

    .hcard,
    .hcard--reverse {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    /* на мобиле всегда контент сверху */
    .hcard--reverse .hcard__content {
        order: 1;
    }

    .hcard--reverse .hcard__media {
        order: 2;
    }

    .hcard__content {
        padding: 22px 18px;
        text-align: center;
        align-items: center;
    }

    .hcard__text {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .hcard__btn {
        width: 100%;
    }

    .hcard__media {
        aspect-ratio: 16 / 10;
        /* чтобы держало высоту как у тебя */
    }
}

/* ===== Features2 (desktop layout like screenshot) ===== */
.features2 {
    padding: 70px 0 80px;
    background: transparent;
}

.features2__head {
    text-align: center;
    margin-bottom: 34px;
}

.features2__title {
    margin: 0 0 10px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 500;
    color: #fff;
}

.features2__title span {
    color: var(--blue, #3B55FF);
}

.features2__sub {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
}

/* two columns: left content + right card */
.features2__layout {
    display: grid;
    grid-template-columns: 1fr 560px;
    /* справа крупная карточка как на скрине */
    gap: 48px;
    align-items: center;
}

/* LEFT list */
.features2__left {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.f2-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: start;
}

.f2-item__ic {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
}

.f2-item__ic img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.f2-item__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
}

.f2-item__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .78);
    max-width: 560px;
}

/* RIGHT card */
.extra2 {
    border-radius: 18px;
    padding: 22px 22px 18px;
    background:
        radial-gradient(120% 120% at 15% 10%, rgba(59, 85, 255, .18), transparent 55%),
        linear-gradient(180deg, #0F1220, #0C0C0C);
    border: 1px solid rgba(59, 85, 255, .55);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .55);
}

.extra2__title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.extra2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 44px;
    margin-bottom: 18px;
}

.extra2__col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.extra2__li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
}

.extra2__li img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.extra2__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 100%;
    background: var(--blue, #3B55FF);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(59, 85, 255, .30);
}

.extra2__btn:hover {
    filter: brightness(1.05);
}

.extra2__btn:active {
    transform: translateY(1px);
}

/* ===== Tablet (то, что ты называл “таблет версией”) ===== */
@media (max-width: 1024px) {
    .features2__layout {
        grid-template-columns: 1fr;
        /* карточка уходит вниз */
        gap: 26px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
    .features2 {
        padding: 46px 0 60px;
    }

    .features2__head {
        text-align: left;
    }

    .features2__title {
        font-size: 34px;
        line-height: 1.12;
    }

    .f2-item {
        grid-template-columns: 58px 1fr;
        gap: 14px;
    }

    .f2-item__ic {
        width: 54px;
        height: 54px;
    }

    .f2-item__ic img {
        width: 48px;
        height: 48px;
    }

    .extra2 {
        padding: 18px 16px 16px;
        border-radius: 16px;
    }

    .extra2__grid {
        grid-template-columns: 1fr;
        /* как на мобиле */
        gap: 12px;
    }
}

/* ===== Two column CTA ===== */
.two-col-cta {
    padding: 70px 0 80px;
    background: transparent;
}

.two-col-cta__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: start;

    padding: 56px 54px;
    border-radius: 18px;
}

.two-col-cta {
    padding-top: 80px;
    /* вертикальный воздух */
    background: #222222;
    /* ФОН НА ВСЮ ШИРИНУ */
}

/* LEFT */
.cta-left__title {
    margin: 0 0 14px;
    font-size: 56px;
    /* как ты сказал */
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
}

.cta-left__text {
    margin: 0 0 22px;
    font-size: 14px;
    /* как ты сказал */
    line-height: 1.65;
    color: rgba(255, 255, 255, .78);
    max-width: 520px;
}

.cta-left__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 34px;
    border-radius: 10px;
    background: var(--blue, #3B55FF);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    /* как ты сказал */
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(59, 85, 255, .30);
}

.cta-left__btn:hover {
    filter: brightness(1.05);
}

.cta-left__btn:active {
    transform: translateY(1px);
}

/* RIGHT */
.cta-right {
    padding-top: 8px;
}

.cta-right__ic {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
}

.cta-right__ic img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.cta-right__title {
    margin: 0 0 12px;
    font-size: 24px;
    /* как ты сказал */
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
}

.cta-right__text {
    margin: 0;
    font-size: 16px;
    /* как ты сказал */
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
    max-width: 440px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .two-col-cta {
        padding: 46px 0 60px;
    }

    .two-col-cta__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 26px 18px;
        border-radius: 14px;
    }

    .cta-left__title {
        font-size: 40px;
        /* иначе не влезет как на скрине */
        line-height: 1.1;
    }

    .cta-right {
        padding-top: 0;
    }
}

/* ===== Reviews ===== */
.reviews {
    padding: 70px 0 80px;
    background: #222222;
}

.reviews__head {
    text-align: center;
    margin-bottom: 34px;
}

.reviews__title {
    margin: 0 0 10px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 500;
    color: #fff;
}

.reviews__title span {
    color: var(--blue, #3B55FF);
}

.reviews__sub {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, .72);
}

/* grid 2 columns */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 34px;
}

.review-card {
    border-radius: 18px;
    padding: 22px 22px 18px;
    background: linear-gradient(180deg, #0B1018 0%, #090D00 100%);
    border: 1px solid #2F577F;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .55);

    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 230px;
}

.review-stars {
    color: #F05B22;
    /* звезды */
    letter-spacing: 3px;
    font-size: 18px;
    line-height: 1;
}

.review-text {
    margin: 0;
    font-size: 16px;
    /* комментарий */
    line-height: 1.6;
    color: rgba(255, 255, 255, .84);
}

.review-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
}

.review-ava {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .18);
}

.review-name {
    font-size: 16px;
    /* имя */
    color: rgba(255, 255, 255, .90);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .reviews {
        padding: 46px 0 60px;
    }

    .reviews__head {
        text-align: left;
        margin-bottom: 18px;
    }

    .reviews__title {
        font-size: 34px;
        line-height: 1.12;
    }

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

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

/* ===== FAQ ===== */
.faq {
    padding: 90px 0;
    background:
        #222222
        /* можешь заменить */
}

.faq__grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT */
.faq__title {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* RIGHT */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 18px 0;
}

.faq-q {
    width: 100%;
    background: none;
    border: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 22px 1fr 20px;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    /* заголовок */
    text-align: left;
}

.faq-q img {
    width: 18px;
    height: 18px;
}

.faq-toggle {
    font-style: normal;
    font-size: 22px;
    color: #fff;
    opacity: .8;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-a p {
    margin: 12px 0 0 34px;
    font-size: 14px;
    /* текст */
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
}

/* open state */
.faq-item.is-open .faq-a {
    max-height: 600px;
}

.faq-item.is-open .faq-toggle {
    content: "−";
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq__title {
        font-size: 40px;
    }
}

/* ===== Join form over image ===== */
.join-block {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.join-block__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.join-block__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(0px);
}

/* легкое затемнение/контраст */
.join-block::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .35));
}

.join-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

/* внешний “стеклянный” контейнер */
.join-card {
    width: min(520px, 100%);
    border-radius: 26px;
    padding: 22px;
    background: rgba(185, 210, 235, .55);
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
}

/* внутренняя синяя форма */
.join-card__inner {
    border-radius: 22px;
    padding: 28px 26px 24px;
    background: #2F49D8;
    /* насыщенный синий как на скрине */
    border: 1px solid rgba(255, 255, 255, .18);
}

.join-title {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.join-sub {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .85);
    text-align: center;
}

.join-form {
    margin: 0;
}

.join-input {
    width: 100%;
    height: 54px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .18);
    background: #fff;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
    margin-bottom: 14px;
}

.join-input::placeholder {
    color: #666;
}

.join-phone {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.join-phone__prefix {
    height: 54px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.join-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.join-plus,
.join-code {
    color: #222;
    font-size: 16px;
}

.join-input--phone {
    margin-bottom: 0;
}

.join-check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.35;
}

.join-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ffffff;
}

.join-btn {
    width: 100%;
    height: 56px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #0A0A0A !important;
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    cursor: pointer;
}

.join-btn:hover {
    filter: brightness(1.05);
}

.join-btn:active {
    transform: translateY(1px);
}

.join-note {
    margin: 16px 0 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .82);
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
    .join-block {
        padding: 54px 0;
    }

    .join-card {
        width: min(420px, 100%);
        padding: 16px;
        border-radius: 22px;
    }

    .join-card__inner {
        padding: 22px 16px 18px;
        border-radius: 18px;
    }

    .join-title {
        font-size: 22px;
    }

    .join-sub {
        font-size: 14px;
    }

    .join-phone {
        grid-template-columns: 110px 1fr;
    }
}

/* ===== Footer ===== */
.site-footer {
    background: #000;
    padding: 70px 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: start;
}

/* LEFT */
.footer-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.footer-support {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--blue, #3B55FF);
    font-size: 16px;
    letter-spacing: .02em;
}

.footer-support__ic {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-nav {
    margin-top: 74px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
}

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

/* RIGHT */
.footer-right {
    justify-self: end;
    text-align: left;
}

.footer-loc {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
}

.footer-loc__ic {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-top: 2px;
}

.footer-loc__title {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
}

.footer-loc__city {
    font-size: 18px;
    color: rgba(255, 255, 255, .70);
}

.footer-photo {
    width: 360px;
    height: 360px;
    border-radius: 999px;
    overflow: hidden;
}

.footer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Divider */
.footer-divider {
    margin: 48px 0 22px;
    height: 1px;
    background: rgba(255, 255, 255, .12);
}

/* Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: 18px;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, .85);
}

.footer-copy {
    color: rgba(255, 255, 255, .55);
    font-size: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-right {
        justify-self: start;
    }

    .footer-photo {
        width: 300px;
        height: 300px;
    }

    .footer-nav {
        margin-top: 34px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 46px 0 22px;
    }

    .footer-logo img {
        height: 54px;
    }

    .footer-nav a {
        font-size: 16px;
    }

    .footer-photo {
        width: 240px;
        height: 240px;
    }

    .footer-divider {
        margin: 34px 0 16px;
    }

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

    .footer-legal {
        gap: 18px 26px;
    }

    .footer-legal a,
    .footer-copy {
        font-size: 16px;
    }
}