* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff4081;
    --primary-dark: #e91e63;
    --secondary: #7c4dff;
    --accent: #6a3ed8;
    --gradient: linear-gradient(135deg, #ff4081 0%, #7c4dff 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6a3ed8 100%);
    --gradient-soft: linear-gradient(135deg, #fff0f5 0%, #f3e8ff 100%);
    --bg: #faf8ff;
    --card-bg: #ffffff;
    --text: #1f1d2c;
    --text-light: #7a7a8c;
    --border: #ece5f5;
    --shadow: 0 8px 32px rgba(124, 77, 255, 0.08);
    --shadow-sm: 0 4px 12px rgba(124, 77, 255, 0.06);
    --shadow-lg: 0 20px 60px rgba(124, 77, 255, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

/* Background blobs */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
.bg-blob-1 {
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #d4e8ff 0%, transparent 70%);
    opacity: 0.7;
}
.bg-blob-2 {
    top: 200px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #ffe0ec 0%, transparent 70%);
    opacity: 0.6;
}
.bg-blob-3 {
    top: 60vh;
    right: -150px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #e8d8ff 0%, transparent 70%);
    opacity: 0.5;
}

/* Header */
.site-header {
    position: relative;
    z-index: 10;
    padding: 18px 24px;
}
.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: inline-flex; }
.logo-svg { width: 150px; height: 40px; }

.header-actions {
    display: flex;
    gap: 6px;
}
.header-icon-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.2s ease;
}
.header-icon-btn:hover { background: rgba(124, 77, 255, 0.08); }
.header-icon-btn svg { width: 22px; height: 22px; }

/* Hero */
.hero {
    position: relative;
    z-index: 1;
    padding: 20px 24px 60px;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content { max-width: 720px; }

.hero-title {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-underline {
    display: block;
    width: 120px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 4px;
    margin: 14px auto 18px;
}

.hero-subtitle {
    font-size: clamp(13px, 1.4vw, 15px);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Hero illustration */
.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 880px;
    height: clamp(280px, 40vw, 420px);
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    z-index: 0;
    opacity: 0.7;
}

.hero-phone {
    position: absolute;
    height: 100%;
    width: auto;
    z-index: 2;
    filter: drop-shadow(0 12px 30px rgba(124, 77, 255, 0.18));
}
.hero-phone-left {
    left: 0;
    transform: rotate(-12deg);
    animation: floatLeft 4s ease-in-out infinite;
}
.hero-phone-right {
    right: 0;
    transform: rotate(12deg);
    animation: floatRight 4s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-10px); }
}
@keyframes floatRight {
    0%, 100% { transform: rotate(12deg) translateY(0); }
    50% { transform: rotate(12deg) translateY(-10px); }
}

.hero-envelope {
    position: relative;
    z-index: 3;
    width: clamp(160px, 22vw, 240px);
    filter: drop-shadow(0 14px 28px rgba(232, 52, 95, 0.25));
    animation: floatCenter 3s ease-in-out infinite;
}
@keyframes floatCenter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-envelope svg { width: 100%; height: auto; display: block; }

.floating-heart { transform-origin: center; }
.heart-1 { animation: heartBeat 2.4s ease-in-out infinite 0.1s; }
.heart-2 { animation: heartBeat 2.4s ease-in-out infinite 0.5s; }
.heart-3 { animation: heartBeat 2.4s ease-in-out infinite 0.9s; }

@keyframes heartBeat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-4px); }
}

/* Hero CTA */
.hero-cta {
    margin-top: 16px;
    padding: 16px 42px;
    border: none;
    border-radius: 50px;
    background: var(--gradient-purple);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(106, 62, 216, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(106, 62, 216, 0.45);
}
.hero-cta svg { width: 18px; height: 18px; }

/* Quiz section */
.quiz-section {
    position: relative;
    z-index: 1;
    padding: 40px 16px 30px;
}
.quiz-section-inner {
    max-width: 540px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 24px 18px 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
}

/* Carousel */
.carousel-container {
    overflow: hidden;
    margin: 0 -18px 24px;
    padding: 16px 0;
    background: linear-gradient(135deg, #fff5fa 0%, #f3e8ff 50%, #fff0f5 100%);
    border-radius: var(--radius);
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.carousel-track {
    display: flex;
    gap: 14px;
    padding: 8px 16px;
    animation: scroll 40s linear infinite;
    width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.carousel-slide {
    flex-shrink: 0;
    width: 150px;
}

.girl-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(124, 77, 255, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #f0e8fa;
    cursor: pointer;
}
.girl-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 14px 36px rgba(255, 64, 129, 0.28);
}
.girl-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.girl-card:hover img { transform: scale(1.08); }

.girl-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(20, 10, 40, 0.85) 0%, rgba(20, 10, 40, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.girl-info {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 2;
    color: #fff;
}
.girl-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}
.girl-age {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.92;
    margin-top: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.girl-online {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #2ed573;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.6);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(46, 213, 115, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}

/* Progress Bar */
.progress-bar-container {
    margin-bottom: 20px;
}

.progress-bar-track {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.progress-bar-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

/* Quiz */
.quiz-container {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 360px;
}
.quiz-step {
    display: none;
    animation: fadeIn 0.4s ease;
}
.quiz-step.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 20px;
}
.step-number {
    display: inline-block;
    background: var(--gradient-purple);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.step-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

.step-body {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.step-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form */
.form-group { margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--text);
    background: #fafafe;
    transition: all 0.3s ease;
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.1);
}
.form-input::placeholder { color: #b8b8c8; }
.form-input-half { flex: 1; min-width: 0; width: auto; }
.form-row { margin-bottom: 18px; }

.range-group {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.range-separator {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    flex-shrink: 0;
}

/* Checkbox & Radio */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.checkbox-group-inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.checkbox-card,
.radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fafafe;
}
.checkbox-card:hover,
.radio-card:hover {
    border-color: var(--primary);
    background: #fff5f8;
}
.checkbox-card:has(input:checked),
.radio-card:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff0f5 0%, #f5f0ff 100%);
    box-shadow: 0 2px 8px rgba(255, 64, 129, 0.12);
}
.checkbox-card input,
.radio-card input { display: none; }

.checkbox-icon,
.radio-icon {
    font-size: 18px;
    width: 22px;
    text-align: center;
}
.checkbox-label,
.radio-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.checkbox-card-small {
    padding: 10px 12px;
    flex: 1;
    min-width: 110px;
    justify-content: center;
}

.radio-group {
    display: flex;
    gap: 8px;
}
.radio-group .radio-card {
    flex: 1;
    justify-content: center;
}

.contact-icon { margin-right: 4px; }

/* Buttons */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}
.btn-next {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 64, 129, 0.3);
}
.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.4);
}
.btn-prev {
    background: #fff;
    color: var(--text-light);
    border: 1.5px solid var(--border);
}
.btn-prev:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-payment {
    background: var(--gradient);
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255, 64, 129, 0.3);
}
.btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.4);
}

/* Payment */
.payment-body { text-align: center; }
.payment-card {
    position: relative;
    background: linear-gradient(135deg, #fff5fa 0%, #f5edff 100%);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 64, 129, 0.12);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(124, 77, 255, 0.10);
}
.payment-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.payment-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.payment-icon {
    font-size: 48px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 6px 14px rgba(124, 77, 255, 0.25));
    animation: gemFloat 3s ease-in-out infinite;
}
@keyframes gemFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.payment-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
}
.payment-amount {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    letter-spacing: -1px;
    position: relative;
    line-height: 1;
}
.payment-features {
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}
.payment-feature {
    padding: 9px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(124, 77, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 4px;
}
.payment-feature:last-child { border-bottom: none; }
.payment-buttons { margin-bottom: 14px; }
.btn-payment svg { width: 20px; height: 20px; }

.payanyway-widget {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(124, 77, 255, 0.08);
    overflow: hidden;
}
.payanyway-widget > div { width: 100% !important; max-width: 100% !important; }
.payanyway-widget iframe,
.payanyway-widget form,
.payanyway-widget table {
    max-width: 100% !important;
    width: 100% !important;
}
.payment-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}
.payment-note svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Footer */
.footer {
    text-align: center;
    padding: 24px 16px;
    position: relative;
    z-index: 1;
}
.footer-text {
    font-size: 12px;
    color: var(--text-light);
}

/* Validation */
.form-input.error {
    border-color: #ef5350;
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.1);
}
.error-message {
    color: #ef5350;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}
.error-message.visible { display: block; }

.btn.loading {
    opacity: 0.7;
    pointer-events: none;
}
.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 768px) {
    .site-header { padding: 14px 16px; }
    .logo-svg { width: 130px; height: 36px; }
    .hero { padding: 16px 16px 40px; }
    .hero-illustration {
        height: 260px;
        margin: 18px auto 14px;
    }
    .hero-phone-left { transform: rotate(-10deg) scale(0.85); transform-origin: left center; }
    .hero-phone-right { transform: rotate(10deg) scale(0.85); transform-origin: right center; }
    @keyframes floatLeft {
        0%, 100% { transform: rotate(-10deg) scale(0.85) translateY(0); }
        50% { transform: rotate(-10deg) scale(0.85) translateY(-8px); }
    }
    @keyframes floatRight {
        0%, 100% { transform: rotate(10deg) scale(0.85) translateY(0); }
        50% { transform: rotate(10deg) scale(0.85) translateY(-8px); }
    }
    .carousel-slide { width: 140px; }
    .checkbox-card-small { min-width: 100px; padding: 9px 10px; }
    .checkbox-label, .radio-label { font-size: 13px; }
    .step-body { padding: 20px; }
}

@media (max-width: 480px) {
    .site-header { padding: 12px 14px; }
    .logo-svg { width: 118px; height: 32px; }

    .hero { padding: 12px 14px 30px; }
    .hero-title { font-size: 22px; letter-spacing: -0.3px; }
    .hero-underline { width: 90px; height: 3px; margin: 10px auto 14px; }
    .hero-subtitle { font-size: 11px; line-height: 1.5; letter-spacing: 0.2px; }
    .hero-illustration { height: 220px; margin: 14px auto 10px; }
    .hero-phone-left { transform: rotate(-9deg) scale(0.7); }
    .hero-phone-right { transform: rotate(9deg) scale(0.7); }
    @keyframes floatLeft {
        0%, 100% { transform: rotate(-9deg) scale(0.7) translateY(0); }
        50% { transform: rotate(-9deg) scale(0.7) translateY(-6px); }
    }
    @keyframes floatRight {
        0%, 100% { transform: rotate(9deg) scale(0.7) translateY(0); }
        50% { transform: rotate(9deg) scale(0.7) translateY(-6px); }
    }
    .hero-envelope { width: clamp(120px, 32vw, 170px); }
    .hero-cta { padding: 14px 32px; font-size: 15px; }

    .quiz-section { padding: 20px 8px; }
    .quiz-section-inner { padding: 16px 10px 22px; border-radius: 20px; }

    .carousel-container { margin: 0 -10px 20px; padding: 12px 0; }
    .carousel-track { gap: 10px; padding: 6px 12px; }
    .carousel-slide { width: 120px; }
    .girl-card { border-radius: 14px; }
    .girl-info { left: 9px; right: 9px; bottom: 8px; }
    .girl-name { font-size: 13px; }
    .girl-age { font-size: 11px; }
    .girl-online { width: 9px; height: 9px; top: 8px; right: 8px; }

    .step-header { margin-bottom: 16px; }
    .step-title { font-size: 17px; }
    .step-subtitle { font-size: 12px; }
    .step-body { padding: 16px; border-radius: 16px; }

    .form-group label { font-size: 12px; }
    .form-input { padding: 11px 14px; font-size: 16px; }

    .checkbox-card, .radio-card { padding: 10px 12px; gap: 8px; }
    .checkbox-card-small { min-width: 0; flex: 1 1 calc(50% - 4px); padding: 9px 8px; }
    .checkbox-label, .radio-label { font-size: 13px; }
    .checkbox-icon, .radio-icon { font-size: 16px; width: 18px; }

    .step-footer {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .btn {
        padding: 12px 18px;
        font-size: 14px;
        flex: 1;
        min-width: 0;
    }
    .btn-payment { padding: 14px; font-size: 15px; flex: none; width: 100%; }

    .payment-card { padding: 24px 18px; }
    .payment-icon { font-size: 40px; }
    .payment-title { font-size: 17px; }
    .payment-amount { font-size: 32px; margin-bottom: 16px; }
    .payment-note { font-size: 11px; }

    .progress-bar-label { font-size: 11px; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 20px; }
    .carousel-slide { width: 110px; }
    .checkbox-card-small { flex-basis: 100%; }
    .btn { padding: 11px 14px; font-size: 13px; }
}


/* ===== Thanks page ===== */
.thanks-section {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
}
.thanks-card {
    position: relative;
    width: 100%;
    max-width: 540px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 44px 32px 36px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.confetti span {
    position: absolute;
    top: -20px;
    left: var(--x);
    width: 8px;
    height: 14px;
    background: var(--c);
    border-radius: 2px;
    animation: confettiFall 3s ease-in var(--d) infinite;
    opacity: 0.85;
}
@keyframes confettiFall {
    0% { transform: translateY(-20px) rotate(0); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(120vh) rotate(720deg); opacity: 0; }
}

.thanks-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    animation: thanksPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.thanks-icon svg { width: 100%; height: 100%; display: block; }
@keyframes thanksPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.check-path {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCheck 0.6s ease-out 0.4s forwards;
}
@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.thanks-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.thanks-subtitle {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 auto 28px;
    max-width: 440px;
}

.thanks-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
}
.thanks-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.thanks-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.thanks-info-icon svg { width: 20px; height: 20px; }
.thanks-info-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.thanks-info-desc {
    font-size: 12px;
    color: var(--text-light);
}

.thanks-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 40px;
    border-radius: 50px;
    background: var(--gradient-purple);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(106, 62, 216, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.thanks-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(106, 62, 216, 0.42);
}
.thanks-btn svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
    .thanks-card { padding: 32px 20px 28px; border-radius: 22px; }
    .thanks-icon { width: 88px; height: 88px; margin-bottom: 14px; }
    .thanks-subtitle { font-size: 14px; margin-bottom: 22px; }
    .thanks-info { gap: 10px; margin-bottom: 22px; }
    .thanks-info-item { padding: 12px 14px; gap: 12px; }
    .thanks-info-icon { width: 36px; height: 36px; }
    .thanks-btn { padding: 14px 32px; font-size: 14px; }
}


/* ===== Girls carousel сверху главной ===== */
.girls-top {
    position: relative;
    z-index: 1;
    padding: 18px 0 8px;
}

/* Hero-вариант карусели — крупнее, без розовой плашки */
.carousel-container-hero {
    background: transparent;
    margin: 0;
    padding: 8px 0;
    border-radius: 0;
}
.carousel-container-hero .carousel-slide {
    width: 180px;
}
.carousel-container-hero .girl-card {
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(124, 77, 255, 0.18);
}
.carousel-container-hero .girl-name { font-size: 16px; }
.carousel-container-hero .girl-age { font-size: 12px; }

@media (max-width: 768px) {
    .girls-top { padding: 12px 0 4px; }
    .carousel-container-hero .carousel-slide { width: 160px; }
}
@media (max-width: 480px) {
    .girls-top { padding: 8px 0 2px; }
    .carousel-container-hero .carousel-slide { width: 140px; }
    .carousel-container-hero .girl-card { border-radius: 16px; }
    .carousel-container-hero .girl-name { font-size: 14px; }
}


/* ===== Consent checkbox (главная) ===== */
.consent-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px auto 14px;
    cursor: pointer;
    user-select: none;
    max-width: 480px;
    padding: 0 8px;
    text-align: left;
}
.consent-check input { display: none; }
.consent-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid #c8b8e0;
    background: #fff;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
    margin-top: 1px;
}
.consent-box svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.2s ease;
}
.consent-check input:checked + .consent-box {
    background: var(--gradient);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.25);
}
.consent-check input:checked + .consent-box svg {
    opacity: 1;
    transform: scale(1);
}
.consent-text {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
    letter-spacing: 0.1px;
}
.consent-link {
    color: #6a3ed8;
    text-decoration: underline;
    text-decoration-color: rgba(106, 62, 216, 0.35);
    text-underline-offset: 2px;
}
.consent-link:hover { color: var(--primary); }

.consent-check.shake { animation: consentShake 0.45s ease; }
@keyframes consentShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.hero-cta.disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: auto;
    box-shadow: 0 6px 16px rgba(106, 62, 216, 0.18);
}
.hero-cta.disabled:hover { transform: none; }

/* ===== Info block (главная) ===== */
.info-block {
    position: relative;
    z-index: 1;
    padding: 30px 16px 60px;
}
.info-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}
.info-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    filter: drop-shadow(0 16px 40px rgba(124, 77, 255, 0.18));
}
.info-image svg { width: 100%; height: auto; display: block; border-radius: 28px; }

.info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #6a3ed8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(124, 77, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.info-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gradient);
}
.info-title {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.info-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
}
.info-text strong { color: var(--text); font-weight: 700; }
.info-accent {
    color: var(--primary);
    font-weight: 800;
}
.info-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.info-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.info-feature-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    color: #fff;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.info-feature-icon svg { width: 18px; height: 18px; }
.info-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

@media (max-width: 768px) {
    .info-inner { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
    .info-image { max-width: 320px; }
}
@media (max-width: 480px) {
    .info-block { padding: 16px 12px 40px; }
    .info-inner { padding: 22px 18px; border-radius: 22px; }
    .info-image { max-width: 260px; }
    .info-text { font-size: 14px; }
    .info-feature-text { font-size: 13px; }
}

/* ===== Search loading step (между 5 и 6) ===== */
.quiz-step-search.active { display: block; }
.search-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    overflow: hidden;
}

.search-anim {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 26px;
}
.search-anim-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.18;
    animation: searchPulse 2.4s ease-out infinite;
}
.search-anim-pulse:nth-child(2) { animation-delay: 0.8s; }
.search-anim-pulse:nth-child(3) { animation-delay: 1.6s; }
@keyframes searchPulse {
    0%   { transform: scale(0.6); opacity: 0.55; }
    100% { transform: scale(1.6); opacity: 0; }
}
.search-anim-icon {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255, 64, 129, 0.35);
    animation: searchHeartBeat 1.4s ease-in-out infinite;
}
.search-anim-icon svg { width: 38px; height: 38px; }
@keyframes searchHeartBeat {
    0%, 100% { transform: scale(1); }
    20% { transform: scale(1.12); }
    40% { transform: scale(0.96); }
    60% { transform: scale(1.06); }
}

.search-loading-state { display: block; }
.search-result-state { display: none; animation: fadeInUp 0.5s ease both; }
.search-card.done .search-loading-state { display: none; }
.search-card.done .search-result-state { display: block; }
.search-card.done .search-anim-pulse { animation-play-state: paused; opacity: 0; }
.search-card.done .search-anim-icon { animation: none; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 18px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.search-progress-track {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}
.search-progress-fill {
    height: 100%;
    width: 0;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 0.2s linear;
    position: relative;
    overflow: hidden;
}
.search-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0, rgba(255,255,255,0.45) 50%, transparent 100%);
    animation: shimmer 1.6s linear infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.search-status {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    min-height: 18px;
}

.search-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #d4f7e0, #c1f3d2);
    color: #1f8a4d;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.search-result-badge svg { width: 14px; height: 14px; }
.search-result-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 10px;
}
.search-result-count {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
    margin-right: 4px;
}
.search-result-subtitle {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.search-result-state .btn-payment {
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .search-card { padding: 28px 20px; }
    .search-anim { width: 90px; height: 90px; }
    .search-anim-icon svg { width: 32px; height: 32px; }
    .search-title { font-size: 16px; }
    .search-result-title { font-size: 18px; }
    .search-result-count { font-size: 32px; }
}

/* ===== Old price (зачёркнутая) ===== */
.payment-price-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    position: relative;
}
.payment-old-price {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #b8b8c8;
    text-decoration: line-through;
    text-decoration-color: #ff4081;
    text-decoration-thickness: 2px;
}
.payment-discount {
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 3px 9px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.35);
    position: relative;
}
