/* Variables */
:root {
    --bg-dark: #455A44;
    --card-light: #E8F5E9;
    --accent-lime: #9CCC65;
    --btn-green: #8BC34A;
    --btn-yes: #4CAF50;
    --btn-no: #f44336;
    --text-black: #212121;
    --text-white: #FFFFFF;
    --text-gray: #616161;
    --text-light-gray: #9e9e9e;
    --footer-link: #CFD8DC;
    --footer-text: #B0BEC5;
    --card-border: #2E7D32;
    --shadow-green: rgba(46, 125, 50, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f3f3f3;
    color: var(--text-black);
    min-height: 100vh;
}

.page {
    max-width: 1000px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 16px 24px;
    width: 100%;
}

.header {
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.header-img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

/* Hero секция с двумя колонками */
.hero {
    margin-top: 10px;
    margin-bottom: 30px;
    width: 100%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

/* Левая колонка с текстом */
.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: black;
    margin: 0 0 20px 0;
}

.hero-highlight {
    color: #982030;
    font-size: 48px;
    display: inline-block;
}

.time-badge {
    background-color: #ddbfc3;
    color: #982030;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px var(--shadow-green);
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 25px;
}

.cta-section {
    margin-bottom: 20px;
}

.cta-question {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Кнопки */
.btn-yes, .btn-no {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 40px;
    min-width: 160px;
    text-align: center;
}

.btn-yes {
    background-color: #982030;
    color: white;
    border: none;

}

.btn-no {
    background: transparent;
    border: 2px solid #982030;
    color: #982030;
}

.btn-yes:hover {
    background: #ddbfc3;
    transform: translateY(-2px);
}

.btn-no:hover {
    background: #ddbfc3;
    color: white;
    transform: translateY(-2px);
}

.btn-yes:active, .btn-no:active {
    transform: translateY(2px);
}

.stats {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light-gray);
    font-size: 14px;
    margin-top: 20px;
}

.stats-icon {
    display: flex;
    align-items: center;
}

.stat-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Правая колонка с телефоном */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 520px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 40px rgba(0,0,0,0.2);
    position: relative;
}

/* Камера на телефоне */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 12px;
    background: #333;
    border-radius: 20px;
    z-index: 2;
}

/* Динамик */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #555;
    border-radius: 10px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Футер */
.footer {
    margin-top: auto;
    padding: 40px 16px;
    text-align: center;
    background-color: #982030;
    border-radius: 20px 20px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 16px;
}

.footer-links a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-info {
    color: var(--footer-text);
    font-size: 13px;
    line-height: 1.5;
}

.footer-info p {
    margin: 4px 0;
    color: #e2576a;
}



/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ ========== */

/* Планшеты и небольшие ноутбуки */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-highlight {
        font-size: 42px;
    }

    .phone-mockup {
        width: 260px;
        height: 480px;
    }
}

/* Планшеты в портретной ориентации */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-highlight {
        font-size: 38px;
    }

    .time-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .phone-mockup {
        width: 280px;
        height: 520px;
    }
}

/* Большие телефоны */
@media (max-width: 576px) {
    .page {
        padding: 0 12px 16px;
    }

    .header-img {
        width: 200px;
        height: 100px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-highlight {
        font-size: 32px;
    }

    .time-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-question {
        font-size: 20px;
    }

    .btn-yes, .btn-no {
        padding: 12px 20px;
        font-size: 16px;
        min-width: 130px;
    }

    .phone-mockup {
        width: 260px;
        height: 480px;
    }
}

/* Маленькие телефоны */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-highlight {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-yes, .btn-no {
        width: 100%;
        max-width: 200px;
    }

    .phone-mockup {
        width: 240px;
        height: 440px;
    }

    .footer-links {
        gap: 12px 16px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-info {
        font-size: 11px;
    }
}

/* Очень маленькие телефоны */
@media (max-width: 320px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-highlight {
        font-size: 24px;
    }

    .phone-mockup {
        width: 220px;
        height: 400px;
    }
}

/* Поддержка устройств с большими экранами */
@media (min-width: 1400px) {
    .page {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-highlight {
        font-size: 58px;
    }

    .phone-mockup {
        width: 320px;
        height: 590px;
    }
}

.stat-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    vertical-align: middle;
}




/* ПРИНУДИТЕЛЬНОЕ СЖАТИЕ ДЛЯ КОМПЬЮТЕРОВ */
@media (min-width: 992px) {
    .page {
        max-width: 1050px !important;  /* принудительно */
    }


}


.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* чтобы видео заполняло экран как картинка */
    border-radius: 30px; /* чтобы совпадало со скруглением телефона */
}