/* assets/styles/landing-desktop.css */
/* Только Desktop-версия. Мобильные стили и адаптив намеренно не включены. */

:root {
    --hero-bg: #f8fafc;
    --text-main: #0f172a;
    --text-secondary: #334155;

    --blue: #2563eb;
    --telegram: #0ea5e9;
    --purple: #7c3aed;
    --cyan: #0891b2;
    --green: #16a34a;
    --orange: #ea580c;

    --blue-soft: #dbeafe;
    --purple-soft: #ede9fe;
    --green-soft: #ccfbf1;
    --tag-blue: #eef2ff;
    --tag-green: #dcfce7;

    --card-radius: 36px;
    --button-radius: 18px;
    --shadow-card: 0 28px 70px -24px rgba(13, 25, 51, 0.12);
    --shadow-soft: 0 20px 50px -24px rgba(13, 25, 51, 0.10);
    --shadow-button: 0 14px 28px -10px rgba(0, 0, 0, 0.16);
}

.hero-desktop {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 1024px;
    padding: 135px 130px;
    box-sizing: border-box;
    background: var(--hero-bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
}

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

.hero-desktop__bg {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
}

.hero-desktop__bg--blue {
    width: 520px;
    height: 520px;
    top: 65px;
    right: 60px;
    background: var(--blue-soft);
    opacity: 0.85;
}

.hero-desktop__bg--purple {
    width: 420px;
    height: 420px;
    left: 70px;
    bottom: -70px;
    background: var(--purple-soft);
    opacity: 0.85;
}

.hero-desktop__bg--green {
    width: 270px;
    height: 270px;
    right: 130px;
    bottom: 48px;
    background: var(--green-soft);
    opacity: 0.75;
}

.hero-desktop__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 610px 390px;
    gap: 150px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-desktop__left {
    min-width: 0;
}

.hero-desktop__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.hero-desktop__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.hero-desktop__tag--blue {
    background: var(--tag-blue);
    color: #4338ca;
}

.hero-desktop__tag--purple {
    background: var(--purple-soft);
    color: #6d28d9;
}

.hero-desktop__tag--green {
    background: var(--tag-green);
    color: #15803d;
}

.hero-desktop__card,
.hero-desktop__cta,
.hero-desktop__visual {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
}

.hero-desktop__card {
    width: 610px;
    min-height: 360px;
    padding: 40px 38px 36px;
    border-radius: var(--card-radius);
}

.hero-desktop__title {
    margin: 0 0 42px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111827;
}

.hero-desktop__list {
    display: grid;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-desktop__item {
    position: relative;
    margin: 0;
    padding-left: 32px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.32;
    color: var(--text-secondary);
}

.hero-desktop__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 18px;
    height: 18px;
    border-radius: 999px;
}

.hero-desktop__item--blue::before {
    background: var(--blue);
}

.hero-desktop__item--purple::before {
    background: var(--purple);
}

.hero-desktop__item--cyan::before {
    background: var(--cyan);
}

.hero-desktop__cta {
    width: 610px;
    min-height: 200px;
    margin-top: 34px;
    padding: 34px 38px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.hero-desktop__cta-text {
    position: relative;
    margin: 0;
    padding-left: 32px;
    font-size: 24px;
    line-height: 1.28;
}

.hero-desktop__cta-text + .hero-desktop__cta-text {
    margin-top: 24px;
}

.hero-desktop__cta-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 18px;
    height: 18px;
    border-radius: 999px;
}

.hero-desktop__cta-text--green {
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-desktop__cta-text--green::before {
    background: var(--green);
}

.hero-desktop__cta-text--orange {
    font-weight: 700;
    color: #111827;
}

.hero-desktop__cta-text--orange::before {
    background: var(--orange);
}

.hero-desktop__actions {
    display: flex;
    gap: 16px;
    margin-top: 38px;
}

.hero-desktop__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 16px 24px;
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-button);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.hero-desktop__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -12px rgba(0, 0, 0, 0.22);
}

.hero-desktop__button:active {
    transform: translateY(0);
    opacity: 0.9;
}

.hero-desktop__button--vk {
    width: 278px;
    background: var(--blue);
}

.hero-desktop__button--tg {
    width: 258px;
    background: var(--telegram);
}

.hero-desktop__visual {
    position: relative;
    width: 390px;
    height: 420px;
    margin-top: 115px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0 22px 60px -28px rgba(13, 25, 51, 0.08);
}

.hero-desktop__visual-circle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-align: center;
    font-weight: 700;
}

.hero-desktop__visual-circle--blue {
    left: 48px;
    top: 48px;
    width: 210px;
    height: 210px;
    background: rgba(219, 234, 254, 0.95);
    color: #1e293b;
    font-size: 32px;
}

.hero-desktop__visual-circle--purple {
    left: 34px;
    top: 250px;
    width: 115px;
    height: 115px;
    background: rgba(237, 233, 254, 0.90);
    color: #6d28d9;
    font-size: 14px;
    font-weight: 600;
}

.hero-desktop__visual-circle--green {
    left: 170px;
    top: 220px;
    width: 150px;
    height: 150px;
    background: rgba(204, 251, 241, 0.90);
    color: #0e7490;
    font-size: 18px;
    font-weight: 600;
}

/* === Адаптив === */

/* Планшет: убираем правую колонку, одна колонка */
@media (max-width: 1100px) {
    .hero-desktop {
        min-height: auto;
        padding: 80px 48px 64px;
    }

    .hero-desktop__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-desktop__card,
    .hero-desktop__cta {
        width: 100%;
    }

    .hero-desktop__visual {
        display: none;
    }
}

/* Мобильный */
@media (max-width: 600px) {
    .hero-desktop {
        padding: 40px 18px 48px;
    }

    .hero-desktop__tags {
        margin-bottom: 22px;
    }

    .hero-desktop__card {
        padding: 26px 20px 22px;
        border-radius: 22px;
        min-height: auto;
    }

    .hero-desktop__title {
        font-size: 26px;
        margin-bottom: 26px;
    }

    .hero-desktop__list {
        gap: 20px;
    }

    .hero-desktop__item {
        font-size: 17px;
        padding-left: 26px;
    }

    .hero-desktop__item::before {
        width: 14px;
        height: 14px;
    }

    .hero-desktop__cta {
        min-height: auto;
        margin-top: 18px;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .hero-desktop__cta-text {
        font-size: 18px;
        padding-left: 26px;
    }

    .hero-desktop__cta-text::before {
        width: 14px;
        height: 14px;
    }

    .hero-desktop__cta-text + .hero-desktop__cta-text {
        margin-top: 18px;
    }

    .hero-desktop__actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

    .hero-desktop__button--vk,
    .hero-desktop__button--tg {
        width: 100%;
    }

    .hero-desktop__bg--blue {
        width: 260px;
        height: 260px;
        top: 10px;
        right: -70px;
    }

    .hero-desktop__bg--purple {
        width: 180px;
        height: 180px;
        left: -50px;
        bottom: -40px;
    }

    .hero-desktop__bg--green {
        width: 130px;
        height: 130px;
        right: 10px;
        bottom: 16px;
    }
}
