@import url('https://googleapis.com');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: #1e293b;
    scroll-behavior: smooth;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* Фирменные фоновые градиенты */
.block-marketplace { background: radial-gradient(circle at top left, #f3fff0, #DFFFD4); }
.block-geo { background: radial-gradient(circle at top left, #fffbf5, #FAEBD7); }
.block-push { background: radial-gradient(circle at top left, #f5feff, #EAFDFC); }
.block-download { background: radial-gradient(circle at top left, #fafff5, #F5FFEA); }

.screen-block {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 80px 40px;
}

/* Верхняя шапка сайта */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-sizing: border-box;
}

/* ЖЕСТКАЯ ФИКСАЦИЯ И КОРРЕТИРОВКА РАЗМЕРОВ ЛОГОТИПА ДЛЯ ДЕСКТОПА */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    max-width: 180px; /* Чтобы контейнер ссылки не растягивался */
}
.logo-img {
    height: 38px;      /* Аккуратная премиальная высота картинки */
    width: auto;       /* Пропорциональное сжатие ширины */
    object-fit: contain;
    display: block;
}

.badge-eco {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Макетные сетки */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 80px;
}
.row-reverse { flex-direction: row-reverse; }
.final-layout { flex-direction: column; text-align: center; }

/* Скриншоты */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}
.phone-shadow-wrapper {
    position: relative;
    border-radius: 38px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow:
            0 30px 100px -20px rgba(15, 23, 42, 0.12),
            0 12px 30px -10px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-shadow-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
}
.phone-shadow-wrapper img {
    max-height: 55vh;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Типографика */
.text-container {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}
.tagline {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 12px;
}
.text-container h1, .text-container h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
    line-height: 1.15;
    color: #0f172a;
}
.text-container p {
    font-size: 18px;
    color: #475569;
    margin: 0 0 36px 0;
    line-height: 1.6;
}

/* Кнопки переходов */
.btn-next {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-green { background-color: #4CAF50; box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3); }
.btn-brown { background-color: #8D6E63; box-shadow: 0 4px 14px rgba(141, 110, 99, 0.3); }
.btn-cyan { background-color: #00BCD4; box-shadow: 0 4px 14px rgba(0, 188, 212, 0.3); }

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
}

/* Карточки */
.interactive-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 20px 24px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    max-width: 500px;
}
.interactive-card h4 { margin: 0 0 8px 0; font-size: 15px; font-weight: 700; color: #0f172a; }
.calc-hint { font-size: 14px !important; margin: 0 !important; color: #475569 !important; font-weight: 600; }

/* Кнопки скачивания */
.hero-buttons { display: flex; gap: 16px; justify-content: center; width: 100%; }
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    background: #0f172a;
    color: white;
    transition: all 0.2s;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}
.btn-download:hover { transform: translateY(-3px); background: #1e293b; }
.icon-svg { width: 22px; height: 22px; }

/* Скрытие сео-блока */
.seo-hidden-geo {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.center-text { align-items: center; }
.center-text p { max-width: 650px; }

.footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px; text-align: center;
    font-size: 13px; color: #64748b;
    border-top: 1px solid rgba(0,0,0,0.02);
}

/* Мобильная адаптация */
@media (max-width: 900px) {
    .content-wrapper, .row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .navbar {
        padding: 20px 24px;
        position: absolute;
        top: 0;
    }

    /* ИЗЯЩНЫЙ И КОРРЕКТНЫЙ РАЗМЕР КАРТИНКИ ЛОГОТИПА НА МОБИЛЬНЫХ */
    .logo-img {
        height: 26px;
    }

    .badge-eco {
        display: none;
    }

    .block-marketplace {
        padding-top: 90px;
    }

    .text-container { align-items: center; }
    .text-container h1, .text-container h2 { font-size: 26px; letter-spacing: -0.5px; }
    .text-container p { font-size: 15px; max-width: 310px; margin-bottom: 24px; }

    .image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 0 10px;
    }
    .phone-shadow-wrapper {
        max-width: 90%;
    }
    .phone-shadow-wrapper img {
        max-width: 100%;
        height: auto;
        max-height: 44vh;
    }

    .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
    .btn-download { width: 100%; max-width: 280px; box-sizing: border-box; justify-content: center; }
    .interactive-card { max-width: 310px; padding: 16px; }
}