/* ============================================
   MK CHEFINHO LANDING PAGE
   Dark theme with hot pink accents
   ============================================ */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --pink-hot: #ff1493;
    --pink-neon: #ff2da5;
    --pink-light: #ff69b4;
    --pink-glow: rgba(255, 20, 147, 0.3);
    --pink-subtle: rgba(255, 20, 147, 0.08);
    --gold: #ffd700;
    --gold-light: #ffed4a;
    --white: #ffffff;
    --gray-100: #f0f0f5;
    --gray-300: #b0b0c0;
    --gray-500: #6a6a80;
    --gray-700: #2a2a3a;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Permanent Marker', cursive;
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   PARTICLES
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--pink-hot);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0 50px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--pink-hot);
    top: -100px;
    left: -100px;
    animation: glowPulse 5s ease-in-out infinite;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #9b0060;
    bottom: -100px;
    right: -100px;
    animation: glowPulse 7s ease-in-out infinite reverse;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: var(--pink-neon);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 6s ease-in-out infinite 1s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.15); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 20, 147, 0.15);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-light);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff0055;
    border-radius: 50%;
    animation: dotBlink 1s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 20, 147, 0.1); }
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 25px;
}

.logo-img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 20, 147, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   TORN PAPER EFFECT
   ============================================ */
.torn-paper-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.torn-paper {
    position: relative;
    background: var(--pink-hot);
    padding: 30px 40px 25px;
    display: inline-block;
    transform: rotate(-1deg);
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
}

.torn-paper::before,
.torn-paper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 25px;
    background: var(--pink-hot);
}

.torn-paper::before {
    top: -15px;
    clip-path: polygon(
        0% 80%, 3% 40%, 5% 90%, 8% 50%, 10% 85%, 13% 30%, 15% 70%, 18% 45%,
        20% 80%, 23% 35%, 25% 75%, 28% 50%, 30% 85%, 33% 40%, 35% 70%, 38% 55%,
        40% 80%, 43% 35%, 45% 75%, 48% 50%, 50% 85%, 53% 40%, 55% 70%, 58% 55%,
        60% 80%, 63% 35%, 65% 75%, 68% 50%, 70% 85%, 73% 40%, 75% 70%, 78% 55%,
        80% 80%, 83% 35%, 85% 75%, 88% 50%, 90% 85%, 93% 40%, 95% 70%, 98% 55%,
        100% 80%, 100% 100%, 0% 100%
    );
}

.torn-paper::after {
    bottom: -15px;
    clip-path: polygon(
        0% 0%, 0% 20%, 3% 60%, 5% 10%, 8% 50%, 10% 15%, 13% 70%, 15% 30%, 18% 55%,
        20% 20%, 23% 65%, 25% 25%, 28% 50%, 30% 15%, 33% 60%, 35% 30%, 38% 45%,
        40% 20%, 43% 65%, 45% 25%, 48% 50%, 50% 15%, 53% 60%, 55% 30%, 58% 45%,
        60% 20%, 63% 65%, 65% 25%, 68% 50%, 70% 15%, 73% 60%, 75% 30%, 78% 45%,
        80% 20%, 83% 65%, 85% 25%, 88% 50%, 90% 15%, 93% 60%, 95% 30%, 98% 45%,
        100% 20%, 100% 0%
    );
}

.torn-paper h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.torn-paper h1 .highlight {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 1.1em;
    display: block;
    text-shadow: 2px 2px 15px rgba(255, 215, 0, 0.5);
}

.torn-paper .subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: var(--white);
    margin-top: 5px;
    opacity: 0.9;
}

/* Hero Description */
.hero-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--pink-light);
}

/* ============================================
   MEMOJI 3D CHEFINHO
   ============================================ */
.memoji-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px auto 30px;
}

.memoji-3d {
    position: relative;
    width: 160px;
    height: 160px;
    animation: memojiFloat 4s ease-in-out infinite;
    perspective: 800px;
}

.memoji-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 2;
    border: 4px solid var(--pink-hot);
    box-shadow: 
        0 10px 30px rgba(255, 20, 147, 0.4),
        0 0 60px rgba(255, 20, 147, 0.15),
        inset 0 -5px 15px rgba(0,0,0,0.2);
    margin: 10px;
    transition: transform 0.4s ease;
}

.memoji-3d:hover .memoji-img {
    transform: scale(1.08) rotateY(10deg);
}

.memoji-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 0;
    animation: memojiGlowPulse 3s ease-in-out infinite;
}

.memoji-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 165px;
    height: 165px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--pink-hot);
    border-right-color: var(--gold);
    z-index: 3;
    animation: memojiRingSpin 4s linear infinite;
    pointer-events: none;
}

.memoji-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--pink-light);
    margin-top: 10px;
}

.memoji-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 2px;
}

@keyframes memojiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    75% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes memojiGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes memojiRingSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   VIDEO PLACEHOLDER
   ============================================ */
.video-container {
    max-width: 700px;
    margin: 0 auto 25px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    border-radius: var(--radius);
    border: 2px solid rgba(255, 20, 147, 0.25);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    border-color: var(--pink-hot);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.2);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--pink-hot);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.5);
    transition: var(--transition);
    animation: playPulse 2s ease-in-out infinite;
}

.play-btn svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-placeholder:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4), 0 0 40px rgba(255, 20, 147, 0.3); }
    50% { box-shadow: 0 0 0 20px rgba(255, 20, 147, 0), 0 0 40px rgba(255, 20, 147, 0.5); }
}

.video-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--gray-300);
    white-space: nowrap;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--pink-hot) 0%, #cc0077 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 18px 50px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.cta-price {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-price strong {
    font-size: 1.1rem;
}

.cta-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-btn-large {
    padding: 22px 60px;
    width: 100%;
    max-width: 500px;
}

.cta-btn-large .cta-text {
    font-size: 1.3rem;
}

.pulse {
    animation: pulseShadow 2s ease-in-out infinite;
}

@keyframes pulseShadow {
    0%, 100% { box-shadow: 0 5px 25px rgba(255, 20, 147, 0.3); }
    50% { box-shadow: 0 5px 50px rgba(255, 20, 147, 0.6), 0 0 80px rgba(255, 20, 147, 0.2); }
}

.cta-guarantee {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d15 100%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.title-accent {
    display: block;
    font-size: 2rem;
    margin-top: 5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ============================================
   CAROUSEL INFINITE SCROLL
   ============================================ */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 20px;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: carouselScroll 25s linear infinite;
    width: fit-content;
}

.carousel-slide {
    flex-shrink: 0;
    height: 420px;
    width: auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-slide:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.carousel-img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}


@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 20, 147, 0.12);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 20, 147, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-hot), #9b0060);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-badge {
    font-size: 0.75rem;
    color: #00d26a;
    display: block;
}

.testimonial-screenshot {
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #ffd700 100%);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.screenshot-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.screenshot-label {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    margin-top: 4px;
}

.testimonial-content p {
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Torn Paper Divider */
.torn-paper-divider {
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
}

.torn-paper-divider.top {
    top: -1px;
    background: var(--bg-dark);
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 60%, 97% 30%, 94% 70%, 91% 20%, 88% 60%, 85% 35%,
        82% 70%, 79% 25%, 76% 65%, 73% 30%, 70% 60%, 67% 20%, 64% 55%, 61% 35%,
        58% 70%, 55% 25%, 52% 65%, 49% 30%, 46% 60%, 43% 20%, 40% 55%, 37% 35%,
        34% 70%, 31% 25%, 28% 65%, 25% 30%, 22% 60%, 19% 20%, 16% 55%, 13% 35%,
        10% 70%, 7% 25%, 4% 65%, 0% 40%
    );
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 80px 0;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 20, 147, 0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    animation-delay: var(--delay, 0s);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink-hot);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.15);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-hot), var(--gold), var(--pink-hot));
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--pink-light);
}

.benefit-card p {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 20, 147, 0.1);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    border-color: rgba(255, 20, 147, 0.3);
    background: var(--bg-card-hover);
}

.faq-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--pink-hot);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 16px 24px;
}

.faq-answer p {
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 60px 0 80px;
}

.final-cta-wrapper {
    text-align: center;
}

.final-torn-paper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08) 0%, rgba(255, 20, 147, 0.02) 100%);
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
}

.final-torn-paper h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.final-torn-paper p {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-final {
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--gray-700);
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    opacity: 0.6;
    filter: grayscale(0.5);
}

.footer p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.disclaimer {
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 0.75rem !important;
    color: var(--gray-700) !important;
    line-height: 1.5;
}

/* ============================================
   QUIZ MODAL
   ============================================ */
.quiz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.quiz-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.quiz-modal {
    background: var(--bg-card);
    border: 2px solid rgba(255, 20, 147, 0.25);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quiz-overlay.active .quiz-modal {
    transform: scale(1) translateY(0);
}

.quiz-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.quiz-close:hover {
    color: var(--white);
}

.quiz-progress {
    width: 100%;
    height: 4px;
    background: var(--gray-700);
    border-radius: 2px;
    margin-bottom: 35px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--pink-hot), var(--gold));
    border-radius: 2px;
    width: 33%;
    transition: width 0.5s ease;
}

.quiz-step {
    text-align: center;
}

.quiz-step.hidden {
    display: none;
}

.quiz-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.quiz-icon-big {
    font-size: 4rem;
    animation: fireBounce 0.6s ease-in-out infinite alternate;
}

@keyframes fireBounce {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.quiz-step h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--white);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    background: rgba(255, 20, 147, 0.06);
    border: 1px solid rgba(255, 20, 147, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.quiz-option:hover {
    background: rgba(255, 20, 147, 0.15);
    border-color: var(--pink-hot);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.2);
}

.quiz-option.selected {
    background: linear-gradient(135deg, var(--pink-hot), #cc0077);
    border-color: var(--pink-hot);
    transform: scale(0.97);
}

.quiz-result-text {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quiz-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pink-hot), #cc0077);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
    animation: pulseShadow 2s ease-in-out infinite;
}

.quiz-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
}

.btn-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.quiz-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0 30px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .logo-img {
        height: 70px;
    }

    .torn-paper {
        padding: 20px 25px 18px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cta-btn {
        padding: 16px 30px;
        width: 100%;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-btn-large {
        padding: 18px 30px;
    }

    .cta-btn-large .cta-text {
        font-size: 1.1rem;
    }

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

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

    .counter-row {
        gap: 20px;
    }

    .carousel-slide {
        height: 320px;
        width: auto;
    }

    .amount {
        font-size: 4rem;
    }

    .urgency-torn-paper {
        padding: 40px 25px;
    }

    .final-torn-paper {
        padding: 40px 25px;
    }

    .quiz-modal {
        padding: 30px 24px;
    }

    .quiz-step h3 {
        font-size: 1.3rem;
    }

    .trust-badges {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-badge span {
        font-size: 0.7rem;
    }

    .torn-paper h1 {
        font-size: 2.2rem;
    }

    .torn-paper .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .counter-row {
        flex-direction: column;
        gap: 15px;
    }

    .counter-divider {
        width: 50px;
        height: 2px;
    }

    .carousel-slide {
        height: 280px;
        width: auto;
    }
}
