/* СБРОС */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #ffea00 0%, #ffb800 40%, #ff8800 100%);
    color: #222;
    overflow-x: hidden;
}

/* БЕГУЩАЯ СТРОКА */
.ticker-wrap {
    width: 100%;
    background: linear-gradient(90deg, #ff0077, #ff8a00);
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 3px solid rgba(255,255,255,0.3);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
}

.ticker-item {
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    margin-right: 60px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-400%); }
}

/* HERO — ЯРКИЙ ДЕТСКИЙ */
.hero-premium {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background: linear-gradient(135deg, #ffcc00, #ff8800);
    border-radius: 28px;
    border: 4px solid #ff0077;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.3),
        0 0 0 4px rgba(255,255,255,0.4);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 46px;
    font-weight: 900;
    color: #ff0077;
    line-height: 1.2;
    text-shadow: 0 3px 0 #fff;
}

.hero-title span {
    color: #ffffff;
}

.hero-sub {
    margin-top: 12px;
    font-size: 22px;
    color: #222;
    line-height: 1.5;
    font-weight: 600;
}

.hero-benefits {
    list-style: none;
    margin-top: 20px;
}

.hero-benefits li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    font-size: 18px;
    color: #222;
    font-weight: 700;
}

.hero-benefits li::before {
    content: "⭐";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #ff0077;
}

.magic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #ff0077, #ff8a00);
    color: #fff;

    padding: 10px 30px;
    border-radius: 590px;
    border: none;

    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;

    cursor: pointer;

    box-shadow:
        0 0 35px rgba(255, 0, 150, 0.8),
        0 20px 40px rgba(0,0,0,0.4);

    transition: 0.25s ease;
    animation: pulseGlow 2.2s infinite ease-in-out;
}

.magic-btn:hover {
    transform: translateY(-6px) scale(1.07);
    box-shadow:
        0 0 55px rgba(255, 0, 150, 1),
        0 26px 60px rgba(0,0,0,0.6);
    filter: brightness(1.2);
}

@keyframes pulseGlow {
    0% {
        box-shadow:
            0 0 30px rgba(255, 0, 150, 0.6),
            0 20px 40px rgba(0,0,0,0.4);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 55px rgba(255, 0, 150, 1),
            0 26px 60px rgba(0,0,0,0.6);
        transform: scale(1.05);
    }
    100% {
        box-shadow:
            0 0 30px rgba(255, 0, 150, 0.6),
            0 20px 40px rgba(0,0,0,0.4);
        transform: scale(1);
    }
}

/* ШАГИ КВИЗА (в модальном окне) */
.step {
    display: none;
    background: #fff3c4;
    padding: 26px 22px;
    margin: 18px auto;
    max-width: 520px;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 22px 60px rgba(0,0,0,0.2),
        0 0 0 3px rgba(255,0,119,0.4);
    border: 3px solid #ff0077;
}

.step.visible {
    display: block;
}

.step h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ff0077;
}

.step p {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

/* ПОДАРКИ — РУЧНОЙ СКРОЛЛ */
.gifts-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 16px;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.gifts-wrapper::-webkit-scrollbar {
    display: none;
}

.gifts-loop {
    display: flex;
    gap: 14px;
    padding: 0 4px;
}

.gift-item {
    width: 160px;
    background: #ffe680;
    border-radius: 18px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border: 3px solid #ff0077;
    box-shadow: 0 14px 32px rgba(0,0,0,0.2);
    transition: 0.15s ease;
}

.gift-item img {
    width: 120px;
    height: auto;
    margin-bottom: 8px;
}

.gift-item p {
    font-size: 16px;
    font-weight: 800;
    color: #ff0077;
}

.gift-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.gift-item.selected {
    background: #ffcc00;
}

/* ПОЛЯ */
input[type="text"],
input[type="tel"] {
    width: 100%;
    max-width: 380px;
    margin: 8px auto;
    padding: 12px 16px;
    border-radius: 16px;
    border: 3px solid #ff0077;
    background: #fff;
    color: #222;
    font-size: 16px;
    outline: none;
    box-shadow: 0 14px 32px rgba(0,0,0,0.2);
    transition: 0.15s ease;
}

input:focus {
    border-color: #ff8a00;
}

/* КНОПКИ ШАГОВ */
.nextBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 18px auto 4px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #ff0077, #ff8a00);
    border: none;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow:
        0 14px 32px rgba(0,0,0,0.3),
        0 0 0 3px rgba(255,255,255,0.4);
    transition: 0.15s ease;
}

.nextBtn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.nextBtn.disabled {
    opacity: 0.45;
    cursor: default;
    filter: grayscale(0.4);
}

/* ОТЗЫВЫ — БОЛЬШИЕ КАРТОЧКИ */
.reviews-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;

    background: #fff3c4;
    border-radius: 28px;
    border: 4px solid #ff0077;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.2),
        0 0 0 4px rgba(255,255,255,0.4);
}

.reviews-title {
    font-size: 36px;
    font-weight: 900;
    color: #ff0077;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card-big {
    background: #ffe680;
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid #ff0077;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: 0.25s ease;
}

.review-card-big:hover {
    transform: translateY(-8px);
}

.review-big-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.review-big-info {
    padding: 18px;
}

.review-big-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ff0077;
}

.review-stars {
    color: #ff0077;
    font-size: 20px;
    margin: 6px 0;
}

.review-big-info p {
    margin-top: 10px;
    font-size: 15px;
    color: #222;
    line-height: 1.6;
}

/* ФУТЕР */
.footer-info {
    background: #0a0a0f;
    color: #dcdcdc;
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.2fr;
    gap: 30px;
}

.footer-block h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-block p {
    font-size: 14px;
    color: #c4c4dd;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-docs {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-docs a {
    color: #c4c4dd;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.footer-docs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* АДАПТИВ */
@media (max-width: 900px) {
    .hero-premium {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 20px;
    }
}

/* МОДАЛЬНОЕ ОКНО */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.modal-window {
    background: #fff3c4;
    width: 90%;
    max-width: 520px;
    padding: 30px;
    border-radius: 26px;
    position: relative;
    animation: fadeIn 0.3s ease;
    border: 4px solid #ff0077;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff0077;
    color: #fff;
    border: none;
    font-size: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 900;
}

@keyframes fadeIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.option {
    background: #ffe680;
    border: 3px solid #ff0077;
    border-radius: 16px;
    padding: 14px 20px;
    margin: 10px auto;
    max-width: 380px;
    font-size: 18px;
    font-weight: 800;
    color: #ff0077;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0,0,0,0.2);
    transition: 0.2s ease;
}

.option:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.option.selected {
    background: #ffcc00;
    border-color: #ff8a00;
    box-shadow: 0 18px 40px rgba(255, 138, 0, 0.4);
}

.nextBtn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.4);
}

