


/* 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: #fafcf9;
    color: var(--text-black);
    min-height: 100vh;
}

.page {
    max-width: 1050px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 16px 24px;
}

.header {
    margin: 0 auto;
    padding: 10px 10px;
}

.header-img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

/* Hero секция с двумя колонками */
.hero {
    margin-top: 0;
    margin-bottom: 40px;

}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1px;
}

/* Левая колонка с текстом */
.hero-left {
    flex: 1;
    max-width: 800px;
    margin-left: 100px;

}

.hero-title {
    font-size: 53px;

    line-height: 1.2;
    color: black;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-highlight {
    color: #4a6844;

    font-size: 53px;
    display: inline-block;
}

.time-badge {
    background-color: #eff6ee;
    color: #4a6840;
    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: 30px;
}

.cta-section {
    margin-bottom: 25px;
}

.cta-question {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Обычная зеленая кнопка "Так точно" */
.btn-yes {
    padding: 23px 38px;
    background-color: #4b6741;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 23px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

/* Кнопка "Никак нет" с прозрачным фоном и обводкой */
.btn-no {
    padding: 23px 38px;
    background: transparent;  /* прозрачный фон */
    border: 2px solid var(#73777d);  /* красная обводка */
    border-radius: 40px;
    font-size: 23px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: var(#73777d);  /* красный текст */
}

/* Эффект при наведении на кнопку "Никак нет" */
.btn-no:hover {
    background: #92af88;  /* появляется красный фон */
    color: white;
    transform: translateY(-2px);

}

/* Эффект при нажатии */
.btn-yes:hover {
    transform: translateY(-2px);
    opacity: 0.9;
     background: #92af88;
}

.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;
}

.stats-icon {
    font-size: 20px;
}

/* Правая колонка с телефоном */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

.phone-mockup {
    width: 290px;
    height: 530px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 30px 50px rgba(0,0,0,0.2),
        0 0 0 1px #333,
        0 0 0 2px #555;
    position: relative;
}

/* Камера на телефоне */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: #333;
    border-radius: 20px;
    z-index: 2;
}

/* Динамик */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    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: #4b6741;
    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: #8ca284;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-left {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-title, .hero-highlight {
        font-size: 42px;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }
}


.stat-image {
    width: 80px;  /* или нужный вам размер */
    height: 80px;
    object-fit: contain;
    vertical-align: middle;
}