/* Общие настройки */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #eef2f5;
    color: #000000;
    text-align: center;
    padding-bottom: 20px;
}

/* Верхняя плашка бренда */
.brand-bar {
    background-color: #f1f3f5;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.5px;
}
.brand-logo {
    width: 14px;
    height: 14px;
    fill: #7f8c8d;
}

/* Контейнер */
.funnel-container {
    max-width: 650px;
    margin: 15px auto;
    padding: 0 15px;
}

/* Белая плашка заголовка */
.offer-header {
    background: #ffffff;
    border-radius: 12px 12px 0 0;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    position: relative;
}
.box-preview {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #edf2f7;
}
.box-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.header-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

/* Стрелочка между блоками */
.offer-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 55px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #ffffff transparent;
    display: block;
    width: 0;
    z-index: 10;
}

/* Главная карточка */
.main-card {
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    border: 1px solid #e2e8f0;
    padding: 25px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

/* Красный баннер EXPIRES */
.expiry-badge {
    background-color: #e46a63;
    color: #ffffff;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.card-headline {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}
.sub-headline {
    font-size: 14.5px;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Блок прогресса */
.progress-wrapper {
    margin-bottom: 25px;
}
.progress-container {
    background-color: #e2e8f0;
    border-radius: 9999px;
    height: 8px;
    width: 75%;
    margin: 0 auto 6px auto;
    overflow: hidden;
}
.progress-bar {
    background-color: #65b87a;
    height: 100%;
    width: 35%;
    border-radius: 9999px;
}
.progress-text {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Текст вопроса */
.question-text {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
}

/* Две горизонтальные кнопки на десктопе, перестраивающиеся на мобилках */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.btn {
    flex: 1;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.2s ease;
}
.btn-yes {
    background-color: #2b6cb0;
    color: #ffffff;
}
.btn-yes:hover {
    background-color: #1e4e8c;
}
.btn-no {
    background-color: #ffffff;
    color: #a0aec0;
    border: 1px solid #cbd5e0;
}
.btn-no:hover {
    background-color: #f7fafc;
}

/* Иконки преимуществ */
.features-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
    margin-bottom: 10px;
}
.icon-box, .icon-box-box {
    width: 60px;
    height: 52px;
    background: #4a4a4a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.icon-box svg, .icon-box-box svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* Специфика коробки со звездами */
.icon-box-box {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 6px;
}
.stars-svg {
    width: 24px !important;
    height: 12px !important;
    margin-bottom: -2px;
}

.badge-check, .badge-search {
    position: absolute;
    background: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
}
.badge-check {
    top: -4px;
    right: -4px;
    font-size: 9px;
    width: 16px;
    height: 16px;
    font-weight: bold;
}
.badge-search {
    bottom: -2px;
    right: -4px;
    width: 18px;
    height: 18px;
    padding: 3px;
}
.badge-search svg {
    fill: #ffffff !important;
    width: 100% !important;
    height: 100% !important;
}

.win-big-text {
    font-size: 19px;
    font-weight: 800;
    color: #4a4a4a;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Стили подвала */
footer {
    max-width: 650px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
    font-size: 10.5px;
    color: #718096;
    line-height: 1.5;
    text-align: justify;
}
.disclaimer {
    margin-bottom: 15px;
}
.footer-links {
    text-align: center;
}
.footer-links a {
    color: #718096;
    text-decoration: underline;
    margin: 0 6px;
}

/* Адаптивность под мобильные экраны */
@media (max-width: 500px) {
    .button-group {
        flex-direction: column;
    }
    .header-title {
        font-size: 22px;
    }
    .card-headline {
        font-size: 22px;
    }
    .question-text {
        font-size: 20px;
    }
}