/* ============================================
   GAMIFIED QUIZ CSS - Based on Mounjalift Theme
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0d0318 0%, #1a0a2e 50%, #2d1b4e 100%);
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e2e8f0;
    -webkit-font-smoothing: antialiased;
}

/* === PARTICLES BACKGROUND === */
#particles-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

/* === MAIN CONTAINER === */
.quiz-container {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 16px 40px;
    min-height: 100vh;
}

/* === PROGRESS BAR === */
.progress-wrapper {
    background: rgba(30, 15, 60, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #a78bfa;
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8b5cf6, #10b981);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* === GLOBAL LOGO === */
.global-logo {
    text-align: center;
    padding: 16px 16px 8px;
    position: relative;
    z-index: 1;
}

.global-logo img {
    height: 36px;
    display: inline-block;
}

/* === POINTS DISPLAY === */
.points-display {
    position: fixed;
    top: 110px;
    right: 16px;
    z-index: 100;
    background: rgba(30, 15, 60, 0.95);
    border: 1px solid #fbbf24;
    border-radius: 30px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.points-display.visible {
    opacity: 1;
    transform: translateX(0);
}

.points-icon {
    font-size: 1rem;
}

.points-value {
    font-weight: 700;
    color: #fbbf24;
    font-size: 1rem;
}

.points-label {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* === LIVE ACTIVITY === */
.live-activity {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    max-width: 320px;
    z-index: 100;
    background: rgba(30, 15, 60, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    transform: translateY(150%);
    transition: transform 0.4s ease;
}

.live-activity.show {
    transform: translateY(0);
}

.activity-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* === QUIZ SCREENS === */
.quiz-screen {
    display: none;
    animation: fadeSlideUp 0.4s ease;
}

.quiz-screen.active {
    display: block;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === GLASS CARD (Reusable) === */
.glass-card {
    background: rgba(30, 15, 60, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* === WELCOME SCREEN === */
.screen-content.welcome {
    text-align: center;
}

.logo-container {
    margin-bottom: 16px;
}

.logo {
    height: 40px;
    display: inline-block;
}

.product-showcase {
    margin: 20px 0;
}

.product-img,
.product-hero-img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.welcome-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.highlight {
    background: linear-gradient(135deg, #a78bfa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 24px;
}

.welcome-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #34d399;
}

.stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.welcome-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: #64748b;
}

/* === BUTTONS === */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    border-radius: 14px;
    padding: 18px 24px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary.pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(139, 92, 246, 0.6), 0 0 0 8px rgba(139, 92, 246, 0.1);
    }
}

.btn-arrow {
    font-size: 1.2rem;
}

/* === QUESTION SCREENS === */
.question-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.question-badge.final {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    color: #1a0a2e;
}

.question-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.question-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* === OPTIONS === */
.options-list,
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.options-grid.cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.option-btn {
    background: rgba(30, 15, 60, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 14px;
    padding: 16px 18px;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    font-family: inherit;
}

.option-btn:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.option-btn.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

.option-btn.highlight {
    border-color: #f472b6;
    background: rgba(244, 114, 182, 0.15);
    color: #ffffff !important;
}

.option-btn.highlight .option-text,
.option-btn.highlight .option-emoji,
.option-btn.highlight .option-tag {
    color: #ffffff !important;
}

/* Force all children to be white */
.option-btn.highlight * {
    color: #ffffff !important;
}

.option-btn.gold-border {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    color: #ffffff !important;
}

.option-btn.gold-border .option-text,
.option-btn.gold-border .option-emoji {
    color: #ffffff !important;
}

.option-btn.gold-border * {
    color: #ffffff !important;
}

.option-btn.large,
.option-btn.icon-top {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
}

.option-btn.full-width {
    grid-column: span 2;
}

.option-icon,
.option-emoji {
    font-size: 1.5rem;
}

.option-text {
    flex: 1;
}

.option-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.option-tag.popular {
    background: rgba(244, 114, 182, 0.2);
    color: #f472b6;
}

/* Override pink color when inside highlight button */
.option-btn.highlight .option-tag.popular {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
}

.option-tag.gold {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* ============================================
   NEUROMARKETING ENHANCEMENTS
   ============================================ */

/* === VALIDATION POPUP === */
.validation-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.validation-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.validation-icon {
    font-size: 1.4rem;
}

/* === FLOATING ANIMATION === */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* === GLOW EFFECT === */
.glow-effect {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

/* === PULSE TEXT === */
@keyframes pulseText {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
        text-shadow: 0 0 20px currentColor;
    }
}

.pulse-text {
    animation: pulseText 2s ease-in-out infinite;
}

/* === FADE IN ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay {
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

/* === SOCIAL PROOF BAR === */
.social-proof-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 24px 0;
    padding: 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #a78bfa;
}

.proof-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(139, 92, 246, 0.3);
}

/* === LIVE USERS === */
.live-users {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #10b981;
    margin-bottom: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1s infinite;
}

/* === MEGA PULSE BUTTON === */
@keyframes megaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.mega-pulse {
    animation: megaPulse 2s infinite;
}

/* === CARD OPTION (Q1) === */
.option-btn.card-option {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px;
    text-align: left;
}

.big-icon {
    font-size: 2.5rem;
}

.option-content {
    flex: 1;
}

.option-hint {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* === FEATURED OPTION === */
.option-btn.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid #8b5cf6;
    position: relative;
    overflow: hidden;
}

.option-btn.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.option-subtext {
    display: block;
    font-size: 0.8rem;
    color: #a78bfa;
    margin-top: 4px;
}

.badge-popular {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0 12px 0 12px;
}

.badge-bonus {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a0a2e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0 12px 0 12px;
}

/* === HIGHLIGHT SOFT === */
.option-btn.highlight-soft {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.option-btn.highlight-soft .option-tag.popular {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* === MICRO TEXT === */
.micro-text {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 4px;
}

/* === SUBTLE OPTION === */
.option-btn.subtle {
    opacity: 0.7;
    border-style: dashed;
}

/* === MEGA FEATURED (COMMITMENT) === */
.option-btn.mega-featured {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(239, 68, 68, 0.1));
    border: 2px solid #fbbf24;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.option-btn.mega-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    animation: shine 2s infinite;
}

.commitment-fire {
    font-size: 2rem;
    animation: float 1.5s ease-in-out infinite;
}

.option-text.big {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fbbf24;
}

.commitment-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a0a2e;
    padding: 6px 12px;
    border-radius: 12px 0 12px 0;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* === DNA HELIX ANIMATION === */
.calc-visual {
    margin-bottom: 24px;
}

.dna-helix {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 4px solid transparent;
    border-top-color: #8b5cf6;
    border-right-color: #10b981;
    border-radius: 50%;
    animation: dnaRotate 1s linear infinite;
}

@keyframes dnaRotate {
    to {
        transform: rotate(360deg);
    }
}

.calc-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 24px;
}

/* === TRANSFORMATION VISUAL === */
.transformation-visual {
    margin: 20px 0;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.state {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.state-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.state-emoji {
    font-size: 2.5rem;
}

.state.after {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.arrow-transform {
    font-size: 1.5rem;
    color: #10b981;
    animation: pulseText 1.5s infinite;
}

/* === RESULT NUMBER ANIMATION === */
.result-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.kg-label {
    font-size: 2rem;
    color: #10b981;
}

.result-subheadline {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* === SECTION MINI TITLE === */
.section-mini-title {
    font-size: 0.85rem;
    color: #a78bfa;
    margin-bottom: 12px;
}

/* === ANIMATE POP === */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-pop {
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* ============================================
   TRANSFORMATION GALLERY
   ============================================ */
.transformation-gallery {
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 15, 60, 0.9), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.gallery-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-icon {
    font-size: 1.3rem;
}

/* Transform Cards Container - Horizontal Scroll */
.transformation-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.transformation-cards::-webkit-scrollbar {
    display: none;
}

/* Individual Transform Card */
.transform-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: linear-gradient(135deg, rgba(30, 15, 60, 0.95), rgba(20, 10, 40, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.transform-card.active,
.transform-card:hover {
    border-color: #10b981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

/* Card Header with Badges */
.transform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(139, 92, 246, 0.1));
}

.transform-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.transform-time {
    background: rgba(255, 255, 255, 0.1);
    color: #a78bfa;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

/* Card Image */
.transform-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.transform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.transform-card:hover .transform-image img {
    transform: scale(1.05);
}

/* Card Info */
.transform-info {
    padding: 16px;
}

.transform-quote {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.4;
}

.transform-name {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Navigation Dots */
.transform-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.transform-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.transform-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #10b981;
}

/* Swipe Hint */
.swipe-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 12px;
    animation: swipeHint 2s ease-in-out infinite;
}

@keyframes swipeHint {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* Stats Bar */
.results-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #10b981;
}

.stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(16, 185, 129, 0.3);
}

/* ============================================
   IMC CALCULATOR
   ============================================ */
.imc-calculator {
    margin: 24px 0;
    padding: 24px;
}

.calc-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.calc-icon {
    font-size: 1.4rem;
}

.calc-description {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.imc-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.imc-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.imc-input-group label {
    font-size: 0.75rem;
    color: #a78bfa;
    font-weight: 500;
}

.imc-input-group input {
    background: rgba(30, 15, 60, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 12px;
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.imc-input-group input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.imc-input-group input::placeholder {
    color: #64748b;
    font-weight: 400;
}

.btn-calculate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

/* IMC Result */
.imc-result {
    margin-top: 24px;
    animation: fadeInUp 0.5s ease;
}

.imc-result.hidden {
    display: none;
}

.imc-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.imc-stat {
    text-align: center;
    padding: 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.imc-stat.metabolic {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.imc-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.imc-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #a78bfa;
}

.imc-stat-value.warning {
    color: #fbbf24;
}

.imc-stat-value.danger {
    color: #ef4444;
}

.imc-stat-value.success {
    color: #10b981;
}

.imc-stat-class {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* IMC Insight */
.imc-insight {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.imc-insight p {
    color: #fbbf24;
    font-size: 0.9rem;
    line-height: 1.5;
}

.imc-insight strong {
    color: #f1f5f9;
}

/* Weight Projection */
.weight-projection {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.projection-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 16px;
}

.projection-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.timeline-point {
    text-align: center;
    padding: 10px 12px;
    background: rgba(30, 15, 60, 0.6);
    border-radius: 10px;
    min-width: 55px;
}

.timeline-point.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid #10b981;
}

.point-time {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.point-weight {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #10b981;
}

.timeline-arrow {
    color: #10b981;
    font-size: 0.8rem;
}

/* ============================================
   NAME INPUT SCREEN
   ============================================ */
.name-screen {
    text-align: center;
}

.question-badge.welcome-badge {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    border: none;
    font-size: 1rem;
}

.name-input-container {
    margin: 30px 0;
}

.name-input {
    width: 100%;
    max-width: 300px;
    background: rgba(30, 15, 60, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 16px;
    padding: 18px 24px;
    color: #f1f5f9;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.name-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.name-input::placeholder {
    color: #64748b;
    font-weight: 400;
}

.skip-link {
    margin-top: 20px;
    color: #64748b;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.skip-link:hover {
    color: #a78bfa;
}

/* ============================================
   BODY DATA QUIZ STEP
   ============================================ */
.question-badge.special {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
}

.body-data-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.body-data-form.premium {
    gap: 12px;
}

/* Name card - full width with emphasis */
.data-input-card.name-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(30, 15, 60, 0.9));
    border-color: rgba(139, 92, 246, 0.4);
}

.data-input-card.name-card input {
    background: rgba(15, 5, 30, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 14px;
    color: #f1f5f9;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.data-input-card.name-card input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.data-input-card.name-card input::placeholder {
    color: #64748b;
    font-weight: 400;
}

/* Horizontal row for body data */
.data-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.data-input-card.compact {
    padding: 10px 8px;
    overflow: visible;
}

.data-input-card.compact label {
    font-size: 0.7rem;
    margin-bottom: 4px;
    white-space: nowrap;
}

.data-input-card.compact .input-with-unit {
    gap: 4px;
}

.data-input-card.compact .input-with-unit input {
    font-size: 1.1rem;
    padding: 8px 4px;
    min-width: 0;
}

.data-input-card.compact .unit {
    font-size: 0.75rem;
    min-width: auto;
}

/* Pulse animation for button */
.pulse-soft {
    animation: pulseSoft 2s ease-in-out infinite;
}

@keyframes pulseSoft {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(16, 185, 129, 0.5);
    }
}

.data-input-card {
    background: rgba(30, 15, 60, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
}

.data-input-card:focus-within {
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.data-input-card label {
    display: block;
    font-size: 0.85rem;
    color: #a78bfa;
    font-weight: 600;
    margin-bottom: 10px;
}

.input-with-unit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-with-unit input {
    flex: 1;
    background: rgba(15, 5, 30, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 14px;
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.input-with-unit input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.input-with-unit input::placeholder {
    color: #475569;
    font-weight: 400;
}

.input-with-unit .unit {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 40px;
}

.btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-continue .btn-arrow {
    font-size: 1.3rem;
}

.data-note {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 16px;
}

/* ============================================
   BODY ANALYSIS RESULTS (on result page)
   ============================================ */
.body-analysis {
    margin: 24px 0;
    padding: 24px;
    animation: fadeInUp 0.6s ease;
}

.analysis-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.analysis-icon {
    font-size: 1.4rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.analysis-stat {
    text-align: center;
    padding: 20px 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: fadeInUp 0.5s ease;
}

.analysis-stat.metabolic {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.analysis-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.analysis-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #a78bfa;
    line-height: 1;
}

.analysis-value.warning {
    color: #fbbf24;
}

.analysis-value.danger {
    color: #ef4444;
}

.analysis-value.success {
    color: #10b981;
}

.analysis-class {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
}

.analysis-insight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.analysis-insight p {
    color: #fbbf24;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.analysis-insight strong {
    color: #f1f5f9;
}

.point-weight.current {
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.7;
}

/* === INFO SCREENS === */
.info-screen,
.testimonial-screen {
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-text {
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-text strong {
    color: #f1f5f9;
}

.text-danger {
    color: #f87171;
}

.info-highlight {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
}

.info-small {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 16px;
}

/* === TESTIMONIAL === */
.testimonial-card-full {
    background: rgba(30, 15, 60, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.testimonial-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.testimonial-content {
    padding: 16px;
}

.testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.testimonial-author {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* === CALCULATING SCREEN === */
.calculating-screen {
    text-align: center;
    padding: 40px 20px;
}

.loader-ring {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
}

.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ring:nth-child(2) {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-top-color: #10b981;
    animation-duration: 0.8s;
    animation-direction: reverse;
}

.ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: #f472b6;
    animation-duration: 0.6s;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.calc-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.calc-steps {
    text-align: left;
    max-width: 280px;
    margin: 0 auto 20px;
}

.calc-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #64748b;
    opacity: 0.5;
    transition: all 0.3s;
}

.calc-step.active {
    opacity: 1;
    color: #e2e8f0;
}

.calc-step.done {
    opacity: 1;
    color: #34d399;
}

.step-icon {
    width: 20px;
    text-align: center;
}

.calc-progress {
    max-width: 260px;
    margin: 0 auto;
}

.calc-bar {
    height: 6px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.calc-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8b5cf6, #10b981);
    transition: width 0.2s;
}

.calc-percent {
    font-size: 0.8rem;
    color: #64748b;
}

/* === RESULT SCREEN === */
.result-screen {
    text-align: center;
}

.urgency-banner {
    background: #ef4444;
    color: white;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: -20px -16px 20px -16px;
    border-radius: 0;
}

.result-header {
    margin-bottom: 20px;
}

.approved-seal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #34d399;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #34d399;
}

.result-headline {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 16px 0 8px;
}

.result-sub {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.potential-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.potential-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.potential-row:last-child {
    border-bottom: none;
}

.easy-tag {
    color: #34d399;
}

/* === OFFER CONTAINER === */
.offer-container {
    background: rgba(30, 15, 60, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 20px;
}

.product-hero {
    position: relative;
    text-align: center;
    margin-bottom: 16px;
}

.discount-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    transform: rotate(5deg);
}

.kit-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
}

.kit-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* === VALUE STACK === */
.value-stack {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stack-item:last-child {
    border-bottom: none;
}

.stack-item.bonus {
    color: #34d399;
    font-weight: 600;
}

.item-name {
    flex: 1;
}

.item-value {
    text-align: right;
}

.crossed {
    text-decoration: line-through;
    color: #64748b;
    margin-right: 6px;
    font-size: 0.8rem;
}

.stack-total {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #64748b;
    font-weight: 700;
    color: #94a3b8;
}

.total-crossed {
    text-decoration: line-through;
}

/* === PRICING CARD === */
.pricing-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid #8b5cf6;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 16px;
}

.price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a78bfa;
    margin-bottom: 8px;
}

.price-installments {
    margin-bottom: 4px;
}

.installments-num {
    font-size: 1rem;
    color: #e2e8f0;
}

.installments-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.price-cash {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.btn-cta-big {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 18px 24px;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 0 #047857;
    transition: all 0.1s;
}

.btn-cta-big:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #047857;
}

.btn-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: none;
    margin-top: 4px;
    opacity: 0.9;
}

.stock-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #f87171;
    font-size: 0.85rem;
    margin: 16px 0;
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.sec-item {
    font-size: 0.7rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

/* === MINI FAQ === */
.mini-faq {
    margin-top: 24px;
}

.mini-faq h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
}

details {
    background: rgba(30, 15, 60, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 8px;
    border-radius: 10px;
    padding: 12px 14px;
}

summary {
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: #e2e8f0;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 10px;
    padding-left: 12px;
    border-left: 2px solid #8b5cf6;
    line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 380px) {
    .welcome-title {
        font-size: 1.5rem;
    }

    .question-title {
        font-size: 1.25rem;
    }

    .installments-val {
        font-size: 2rem;
    }

    .options-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEW COMPONENTS - Kits, Testimonials, Form
   ============================================ */

/* === SOCIAL PROOF SECTION === */
.social-proof-section {
    margin-bottom: 20px;
}

.testimonial-slider {
    position: relative;
    min-height: 140px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8b5cf6;
    margin: 0 auto 10px;
}

.testimonial-slide p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.testimonial-slide span {
    font-size: 0.8rem;
    color: #64748b;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: #8b5cf6;
    transform: scale(1.2);
}

/* === SECTION TITLE === */
.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
    text-align: center;
}

/* === KIT SELECTION === */
.kits-section {
    margin-bottom: 20px;
}

.kit-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 15, 60, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kit-card:hover {
    border-color: #8b5cf6;
}

.kit-card.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.kit-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f472b6;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.kit-badge.gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a0a2e;
}

.kit-image {
    flex-shrink: 0;
}

.kit-image img {
    width: 60px;
    height: auto;
}

.kit-info {
    flex: 1;
}

.kit-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 2px;
}

.kit-info p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.kit-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-old {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: line-through;
}

.price-new {
    font-size: 1.1rem;
    font-weight: 800;
    color: #34d399;
}

.kit-economy {
    display: inline-block;
    font-size: 0.7rem;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
}

.kit-economy.gold {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.kit-select {
    flex-shrink: 0;
}

.radio-circle {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    position: relative;
}

.radio-circle.checked {
    border-color: #10b981;
}

.radio-circle.checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
}

/* === ORDER FORM === */
.order-form-section {
    margin-bottom: 20px;
}

.form-step {
    margin-bottom: 16px;
}

.form-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    color: #f1f5f9;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-group input::placeholder {
    color: #64748b;
}

.input-with-prefix {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.input-with-prefix .prefix {
    padding: 14px 12px;
    font-size: 0.9rem;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(139, 92, 246, 0.2);
}

.input-with-prefix input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group.small {
    flex: 0 0 80px;
}

.form-row .form-group {
    flex: 1;
}

.optional {
    color: #64748b;
    font-weight: 400;
}

.cep-link {
    display: inline-block;
    font-size: 0.75rem;
    color: #a78bfa;
    margin-top: 6px;
    text-decoration: none;
}

.address-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.address-preview.hidden {
    display: none;
}

/* === ORDER TOTAL === */
.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.order-total strong {
    font-size: 1.3rem;
    color: #34d399;
}

/* === PAYMENT OPTIONS === */
.payment-options h4 {
    font-size: 0.9rem;
    color: #a78bfa;
    margin-bottom: 10px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 15, 60, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.payment-option input {
    display: none;
}

.payment-option:hover {
    border-color: #8b5cf6;
}

.payment-option.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 0.75rem;
    color: #64748b;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 20px;
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
}

.cta-price {
    margin-bottom: 20px;
}

.cta-price .price-from {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 4px;
}

.cta-price .price-from s {
    color: #94a3b8;
}

.cta-price .price-to {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #34d399;
    line-height: 1;
    margin-bottom: 4px;
}

.cta-price .price-installments {
    font-size: 0.9rem;
    color: #a78bfa;
}

.stock-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #f87171;
    font-size: 0.85rem;
    margin: 16px 0;
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ============================================
   LOADING OVERLAY - Smooth Transition Effect
   ============================================ */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 3, 24, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: #8b5cf6;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 0.8s linear infinite;
}

.loading-content p {
    color: #a78bfa;
    font-size: 0.95rem;
    font-weight: 500;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   MODAL POPUP SYSTEM
   ============================================ */
.quiz-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
}

.quiz-modal {
    background: rgba(30, 15, 60, 0.95);
    border: 2px solid #8b5cf6;
    border-radius: 20px;
    padding: 30px;
    max-width: 320px;
    text-align: center;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.modal-message {
    color: #f1f5f9;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.modal-btn {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* ============================================
   AI ANALYSIS ELEMENTS
   ============================================ */
.ai-insight-container {
    margin: 24px 0;
}

.ai-loading {
    text-align: center;
    color: #a78bfa;
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.ai-analysis-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    animation: fadeInUp 0.5s ease;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ai-text {
    color: #f1f5f9;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* AI Kit Recommendation */
.ai-rec-badge {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    padding: 6px 12px;
    border-radius: 8px 8px 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin: -1px -1px 0 -1px;
}

.kit-card.ai-recommended {
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    }
}

.ai-rec-reason {
    text-align: center;
    color: #a78bfa;
    font-size: 0.85rem;
    margin: 12px 0;
    padding: 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

/* ============================================
   ATTENTION-GRABBING ANALYSIS MODAL
   ============================================ */
.analysis-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.analysis-modal {
    background: linear-gradient(135deg, #1e0f3c, #0f0520);
    border: 2px solid #f59e0b;
    border-radius: 24px;
    padding: 32px 24px;
    max-width: 380px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: modalBounce 0.5s ease;
}

@keyframes modalBounce {
    0% {
        transform: scale(0.8) translateY(-30px);
        opacity: 0;
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.15), transparent 60%);
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.modal-alert-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 16px;
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.modal-title {
    color: #f59e0b;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-analysis {
    color: #f1f5f9;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 4px 35px rgba(245, 158, 11, 0.7);
    }
}

.modal-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

/* ============================================
   PURCHASE NOTIFICATIONS
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1e0f3c, #0f0520);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    z-index: 9000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 0.4s ease;
}

.purchase-notification.hidden {
    display: none;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notif-icon {
    font-size: 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 8px;
    border-radius: 10px;
}

.notif-content {
    flex: 1;
}

.notif-text {
    color: #f1f5f9;
    font-size: 0.85rem;
    margin: 0;
}

.notif-text strong {
    color: #10b981;
}

.notif-action {
    color: #94a3b8;
    font-size: 0.75rem;
    margin: 2px 0 0;
}

.notif-action span {
    color: #a78bfa;
    font-weight: 600;
}

.notif-time {
    color: #64748b;
    font-size: 0.65rem;
    white-space: nowrap;
}

/* ============================================
   MICRO-ANIMATIONS (Premium touches)
   ============================================ */
/* Enhanced button hover */
.option-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.option-btn:active {
    transform: translateY(-1px) scale(0.99);
}

/* CTA button shake on hover */
.btn-primary:hover,
.btn-continue:hover {
    animation: subtleShake 0.5s ease-in-out;
}

@keyframes subtleShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }
}

/* Points glow when updating */
.points-display.bump {
    animation: pointsBump 0.3s ease;
}

@keyframes pointsBump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8));
    }

    100% {
        transform: scale(1);
    }
}

/* Kit card enhanced hover */
.kit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Price glow effect */
.kit-price {
    transition: all 0.3s ease;
}

.kit-card:hover .kit-price {
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}