/* =========================
   Главная страница
   ========================= */
.landing-hero {
    padding: 7px 0 30px ;
}

.landing-hero-container {
    max-width: 1180px;
}

.landing-hero-head {
    text-align: center;
    margin-bottom: 5px;
}

.landing-hero-title {
    margin: 0;
    color: #2f3542;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.5px;
}

.landing-hero-title span {
    font-weight: 700;
}

/* =========================
   Основной layout
   ========================= */
   

.landing-hero-main {
    display: grid;
    grid-template-columns: max-content minmax(0, 780px);
    grid-template-areas:
        "phone video"
        ". button";
    column-gap: 0;
    row-gap: 20px;
    align-items: start;
    justify-content: center;
    margin-top: 0px;
}

/* =========================
   Левая колонка: вертикальный текст + телефон
   ========================= */
.landing-hero-phone-side {
    grid-area: phone;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
}

.landing-hero-subtitle {
    margin: 0;
    color: #2f3542;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    text-align: center;
}

.landing-hero-phone {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
}

.landing-hero-phone img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
}

/* =========================
   Правая колонка: видео
   ========================= */
.landing-hero-video-col {
    grid-area: video;
    max-width: 780px;
	padding-top: 10px;
}

.landing-video-title {
    margin: 0 0 12px;
    text-align: center;
    color: #2f3542;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.15;
}

.landing-video-title strong {
    font-weight: 700;
}

.landing-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.landing-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================
   Кнопка
   ========================= */
.landing-hero-actions {
    grid-area: button;
    margin-top: 0px;
    text-align: center;
}

.landing-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 340px;
    min-height: 64px;
    padding: 12px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, #63c35d 0%, #4aaa46 100%);
    box-shadow: 0 8px 18px rgba(76, 120, 255, 0.22);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.landing-hero-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(76, 120, 255, 0.28);
}

.landing-hero-btn i::before {
    font-size: 22px;
}

/* =========================
   Видимость desktop/mobile
   ========================= */
.mobile-only {
    display: none;
}

/* =========================
   Планшеты
   ========================= */
@media (max-width: 991.98px) {
    .landing-hero-title {
        font-size: 34px;
    }
	

    .landing-hero-subtitle {
        font-size: 21px;
    }

    .landing-hero-phone img {
        max-width: 190px;
    }

    .landing-video-title {
        font-size: 24px;
    }

    .landing-hero-btn {
        min-width: 300px;
        min-height: 58px;
        font-size: 17px;
    }
}

/* =========================
   Мобильная версия
   ========================= */
@media (max-width: 767.98px) {
    .landing-hero {
        padding: 12px 0 24px;
    }

    .landing-hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .landing-hero-title {
        font-size: 28px;
        line-height: 1.12;
    }

    .landing-hero-main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "phone"
            "button"
            "video";
        gap: 18px;
    }

    .landing-hero-phone-side {
        justify-content: center;
        gap: 12px;
    }

    .landing-hero-subtitle {
        font-size: 18px;
    }

    .landing-hero-phone img {
        max-width: 220px;
    }

    .landing-hero-actions {
        margin-top: 0;
    }

    .landing-hero-btn {
        width: 100%;
        max-width: 360px;
        min-width: 0;
        min-height: 58px;
        font-size: 16px;
    }

    .landing-hero-video-col {
        width: 100%;
        max-width: 100%;
		padding-top:0px;
    }

    .landing-video-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .mobile-only {
        display: block;
    }
}
