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

body {
    background: radial-gradient(circle at top, #2b2bff 0%, #0b0b1f 40%, #050509 100%);
    color: #fff;
    overflow-x: hidden;
}

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

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

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

@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: radial-gradient(circle at top, #1a1a3a 0%, #0a0a1f 50%, #050509 100%);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.05);
}

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

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

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

.hero-sub {
    margin-top: 12px;
    font-size: 18px;
    color: #e5e5ff;
    line-height: 1.5;
}

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

.hero-benefits li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #f5f5ff;
}

.hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcf4b, #ff8a00);
}

/* Телефон */
.hero-phone {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-phone-img {
    width: 340px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,75,138,0.4), rgba(255,75,138,0.05), transparent);
    filter: blur(40px);
    z-index: 1;
}

/* КНОПКА CTA */
.magic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

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

    padding: 18px 36px;
    border-radius: 999px;
    border: none;

    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    cursor: pointer;

    box-shadow:
        0 0 25px rgba(255, 75, 138, 0.6),
        0 12px 30px rgba(0,0,0,0.6);

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

.magic-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 40px rgba(255, 75, 138, 0.9),
        0 18px 40px rgba(0,0,0,0.8);
    filter: brightness(1.15);
}

@keyframes pulseGlow {
    0% {
        box-shadow:
            0 0 20px rgba(255, 75, 138, 0.5),
            0 12px 30px rgba(0,0,0,0.6);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 35px rgba(255, 75, 138, 0.9),
            0 18px 40px rgba(0,0,0,0.8);
        transform: scale(1.03);
    }
    100% {
        box-shadow:
            0 0 20px rgba(255, 75, 138, 0.5),
            0 12px 30px rgba(0,0,0,0.6);
        transform: scale(1);
    }
}

/* ШАГИ КВИЗА */
.step {
    display: none;
    background: radial-gradient(circle at top, #181830 0%, #090914 60%, #050509 100%);
    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.8),
        0 0 0 1px rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.step.visible {
    display: block;
}

.step h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.step p {
    font-size: 14px;
    color: #dcdcff;
    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: 150px;
    background: rgba(12,12,28,0.95);
    border-radius: 16px;
    padding: 10px 10px 12px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.7);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out, background 0.12s ease-out;
}

.gift-item img {
    width: 110px;
    height: auto;
    margin-bottom: 6px;
}

.gift-item p {
    font-size: 13px;
    font-weight: 600;
    color: #f5f5ff;
}

.gift-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.85);
}

.gift-item.selected {
    border-color: #ffcf4b;
    background: radial-gradient(circle at top, rgba(255,207,75,0.18), rgba(12,12,28,0.95));
}

/* РАДИОКНОПКИ */
label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin: 8px auto;
    padding: 10px 12px;
    background: rgba(12,12,28,0.95);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    color: #f5f5ff;
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.7);
    transition: border-color 0.12s ease-out, background 0.12s ease-out, transform 0.12s ease-out;
}

label:hover {
    border-color: #ffcf4b;
    transform: translateY(-2px);
}

label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #ffcf4b;
}

/* ПОЛЯ */
input[type="text"],
input[type="tel"] {
    width: 100%;
    max-width: 380px;
    margin: 8px auto;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(8,8,20,0.95);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    box-shadow: 0 10px 26px rgba(0,0,0,0.7);
    transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

input::placeholder {
    color: #8888aa;
}

input:focus {
    border-color: #ffcf4b;
    box-shadow: 0 14px 32px rgba(0,0,0,0.85);
    background: rgba(10,10,24,0.98);
}

/* КНОПКИ ШАГОВ */
.nextBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 18px auto 4px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #ff4b8a, #ff8a00);
    border: none;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.8),
        0 0 0 1px rgba(255,255,255,0.12);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
}

.nextBtn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        0 16px 40px rgba(0,0,0,0.9),
        0 0 0 1px rgba(255,255,255,0.18);
}

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

/* КНОПКА СНИЗУ */
.btn-primary {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 26px auto 40px;
    background: linear-gradient(135deg, #ff4b4b, #ff8a00);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    box-shadow:
        0 18px 46px rgba(0,0,0,0.9),
        0 0 0 1px rgba(255,255,255,0.16);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        0 22px 60px rgba(0,0,0,1),
        0 0 0 1px rgba(255,255,255,0.22);
}

/* ОТЗЫВЫ */
.reviews-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;

    background: radial-gradient(circle at top, #1a1a3a 0%, #0a0a1f 50%, #050509 100%);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.05);
}

.reviews-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.review-card {
    background: rgba(12,12,28,0.95);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.9);
}

.review-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffcf4b;
}

.review-info h3 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

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

.review-info p {
    color: #dcdcff;
    font-size: 14px;
    line-height: 1.5;
}

/* ФУТЕР */
footer {
    background: radial-gradient(circle at top, #050509 0%, #020208 60%);
    color: #ffffff;
    padding: 40px 20px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 10px;
}

.footer-grid-clean {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.2fr;
    gap: 26px;
    max-width: 1120px;
    margin: 0 auto;
}

.footer-grid-clean h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-grid-clean p {
    font-size: 13px;
    color: #c4c4dd;
    line-height: 1.6;
}

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

    .hero-phone-img {
        width: 260px;
    }

    .step {
        margin: 12px 12px 18px;
        padding: 22px 18px;
        max-width: 100%;
    }

    .footer-grid-clean {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

@media (max-width: 540px) {
    .hero-premium {
        margin: 18px 12px;
        padding: 22px 18px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .btn-primary {
        max-width: 280px;
        font-size: 14px;
        padding: 14px 20px;
    }
}
