/* ==========================================================================
   CSS SYSTEM DESIGN - MELODIA DO AMOR LANDING PAGE
   Author: Antigravity AI
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --bg-darkest: #040408;
    --bg-darker: #080811;
    --bg-dark: #0e0e1b;
    --bg-card: rgba(18, 18, 32, 0.65);
    
    --pink-primary: #ec4899;
    --pink-light: #f472b6;
    --pink-glow: rgba(236, 72, 153, 0.4);
    --purple-primary: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.3);
    --danger-red: #ef4444;
    --danger-red-glow: rgba(239, 68, 68, 0.25);
    
    --text-primary: #f4f4f6;
    --text-secondary: #9ea2b5;
    --text-muted: #64687a;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-pink: rgba(236, 72, 153, 0.2);
    --border-purple: rgba(168, 85, 247, 0.15);
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #d946ef 0%, #ec4899 50%, #f43f5e 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    --gradient-dark-card: linear-gradient(180deg, rgba(14, 14, 27, 0.8) 0%, rgba(8, 8, 17, 0.95) 100%);
    
    /* Shadows */
    --shadow-glow-pink: 0 0 25px rgba(236, 72, 153, 0.45);
    --shadow-glow-purple: 0 0 20px rgba(168, 85, 247, 0.35);
    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darkest);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    background: radial-gradient(circle at top, #0f0b1a 0%, var(--bg-darkest) 80%);
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --------------------------------------------------------------------------
   3. BACKGROUND GLOW ORBS
   -------------------------------------------------------------------------- */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 450px;
    height: 450px;
    top: 5%;
    left: -10%;
    background: var(--pink-primary);
}

.orb-2 {
    width: 500px;
    height: 500px;
    top: 35%;
    right: -10%;
    background: var(--purple-primary);
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    top: 70%;
    left: 10%;
    background: var(--pink-primary);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.15); }
}

/* --------------------------------------------------------------------------
   4. LAYOUT & GRID SYSTEM
   -------------------------------------------------------------------------- */
.page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 720px; }
.max-w-lg { max-width: 900px; }

/* Grid systems */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2-cols {
    grid-template-columns: 1fr;
}

.grid-3-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-30-70 {
        display: grid;
        grid-template-columns: 3fr 7fr;
        align-items: center;
    }
}

/* Spacers */
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 4rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }

.text-center { text-align: center; }
.w-full { width: 100%; }
.items-center { align-items: center; }
.gap-md { gap: 2rem; }
.gap-lg { gap: 4rem; }

/* Section structural rules */
section {
    padding: 4.5rem 0;
    position: relative;
}

/* --------------------------------------------------------------------------
   5. COMPONENT: GLASS CARD
   -------------------------------------------------------------------------- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   6. COMPONENT: BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.15rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform var(--transition-fast), box-shadow var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.55), 0 0 15px rgba(217, 70, 239, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* Animação pulsante */
.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(236, 72, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

.cta-wrapper {
    margin: 1.5rem 0;
}

/* --------------------------------------------------------------------------
   7. TEXT GRADIENTS & DECORATIONS
   -------------------------------------------------------------------------- */
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    color: var(--pink-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
}

.hero-tagline {
    display: inline-block;
    color: var(--pink-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
}

.social-proof-hero {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars-avatars-img {
    height: 38px;
    object-fit: contain;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   9. VSL SECTION & VIDEO PLAYER
   -------------------------------------------------------------------------- */
.vsl-section {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.vsl-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.vsl-player-container {
    width: 100%;
    max-width: 420px; /* High-converting vertical format width */
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-pink);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.25), var(--shadow-card);
    aspect-ratio: 9 / 16;
    background-color: #000;
}

/* Fallback/Default style to ensure Wistia custom component fills it responsively */
.vsl-player-container wistia-player {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* --------------------------------------------------------------------------
   10. UNFAIR ADVANTAGE SECTION
   -------------------------------------------------------------------------- */
.unfair-advantage-section {
    background: linear-gradient(180deg, transparent 0%, rgba(236, 72, 153, 0.02) 50%, transparent 100%);
}

.advantage-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.advantage-text::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 3px;
    background: var(--gradient-brand);
    border-radius: 4px;
}

.advantage-subtext {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.advantage-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glow-back {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 30px;
    background: radial-gradient(circle, var(--pink-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    top: 10%;
}

.image-glow-back.gray-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0,0,0,0) 70%);
}

.floating-img {
    animation: floatAnimation 6s infinite ease-in-out;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rounded-lg {
    border-radius: 20px;
}

/* --------------------------------------------------------------------------
   11. STORY SECTION
   -------------------------------------------------------------------------- */
.story-section {
    background: rgba(0, 0, 0, 0.2);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-paragraph {
    color: var(--text-secondary);
    font-size: 1rem;
}

.highlight-paragraph {
    color: #fff;
    font-size: 1.1rem;
    border-left: 2px solid var(--pink-primary);
    padding-left: 1rem;
}

/* --------------------------------------------------------------------------
   12. RESULTS (PROOF) SECTION
   -------------------------------------------------------------------------- */
.results-section {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%);
    overflow: hidden;
}

.results-layout-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .results-layout-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 2.5rem;
    }
    .testimonial-bubble,
    .testimonial-instagram-card {
        flex: 1 1 300px;
    }
}

.testimonial-bubble {
    width: 100%;
    max-width: 440px; /* same size as center white block */
}

.testimonial-bubble img {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Central Testimonial Card styling */
.testimonial-instagram-card {
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--transition-normal);
}

.testimonial-instagram-card:hover {
    transform: translateY(-5px);
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 780px;
    margin: 2rem auto 0 auto;
}

/* --------------------------------------------------------------------------
   13. PUZZLE BLOCK (PAIN POINTS)
   -------------------------------------------------------------------------- */
.puzzle-section {
    background-color: var(--bg-darkest);
}

.puzzle-card {
    border: 1px solid rgba(236, 72, 153, 0.15);
    background: linear-gradient(180deg, rgba(20, 15, 30, 0.8) 0%, rgba(10, 8, 18, 0.95) 100%);
    padding: 2.5rem;
}

.puzzle-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .puzzle-title {
        font-size: 1.85rem;
    }
}

.pain-points-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pain-point-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-cross {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger-red);
}

.icon-cross svg {
    width: 14px;
    height: 14px;
}

/* --------------------------------------------------------------------------
   14. HOW IT WORKS (STEPS)
   -------------------------------------------------------------------------- */
.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.step-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid var(--border-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.step-svg-icon {
    width: 32px;
    height: 32px;
    color: var(--pink-primary);
}

.step-number {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: var(--gradient-brand);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

.step-card-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.step-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   15. CHECKOUT / OFFER SECTION
   -------------------------------------------------------------------------- */
.checkout-section {
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
}

.promo-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.12);
    color: var(--pink-light);
    border: 1px solid var(--border-pink);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.checkout-card {
    border: 1px solid var(--border-pink);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.15), var(--shadow-card);
    background: linear-gradient(180deg, rgba(22, 18, 36, 0.8) 0%, rgba(10, 8, 20, 0.98) 100%);
    padding: 2.5rem;
}

.checkout-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.checkout-product-img {
    max-height: 260px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.checkout-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.checkout-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.check-icon-wrapper {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid var(--border-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.check-icon {
    width: 11px;
    height: 11px;
    color: var(--pink-primary);
}

.pricing-container {
    margin: 2rem 0;
}

.price-prefix {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-main {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0.25rem 0;
    text-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.price-installments {
    font-size: 1.15rem;
    color: var(--pink-light);
    font-weight: 600;
}

.payment-badges-wrapper {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.25rem;
}

.badge-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-svg {
    color: #32bcad; /* Pix color style */
    margin-right: 0.5rem;
}

.mini-card {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-transform: uppercase;
}

.mini-card.visa { color: #1a1f71; background: #fff; }
.mini-card.master { color: #eb001b; background: #fff; }
.mini-card.elo { color: #f26622; background: #fff; }
.mini-card.pix { color: #32bcad; background: rgba(50, 188, 173, 0.08); border-color: rgba(50, 188, 173, 0.3); }

/* --------------------------------------------------------------------------
   16. GUARANTEE SECTION
   -------------------------------------------------------------------------- */
.guarantee-section {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.guarantee-badge-container {
    display: flex;
    justify-content: center;
}

.badge-30-days {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    border: 3px solid rgba(255,255,255,0.15);
}

.badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.badge-label-days {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0.15rem 0;
}

.badge-stars {
    color: #fbbf24; /* gold color */
    font-size: 0.8rem;
}

.guarantee-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   17. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-icon-arrow {
    font-size: 1.25rem;
    color: var(--pink-primary);
    transition: transform var(--transition-normal);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-content p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Active FAQ states */
.faq-item.active {
    border-color: var(--border-pink);
    background: rgba(236, 72, 153, 0.02);
}

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

/* --------------------------------------------------------------------------
   18. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer-section {
    padding: 4rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--pink-light);
}

.footer-link-divider {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.05);
}

/* --------------------------------------------------------------------------
   19. SCROLL ANIMATION STATES
   -------------------------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate="slide-left"] {
    transform: translateX(-40px);
}

[data-animate="slide-right"] {
    transform: translateX(40px);
}

[data-animate="slide-up"] {
    transform: translateY(40px);
}

[data-animate="scale-up"] {
    transform: scale(0.92);
}

/* Active animation state (triggered by IntersectionObserver in script.js) */
.animated {
    opacity: 1;
    transform: translate(0) scale(1) !important;
}

/* --------------------------------------------------------------------------
   20. MOBILE RESPONSIVE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    /* Section and Hero Spacings */
    section {
        padding: 3.5rem 0;
    }
    
    .hero-section {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    /* Layout structural paddings/gaps */
    .results-layout-wrapper {
        gap: 1.25rem;
    }
    
    .steps-section .grid-3-cols {
        gap: 1.25rem;
    }
    
    /* Responsive Spacers */
    .mb-lg {
        margin-bottom: 2.5rem;
    }
    .mt-lg {
        margin-top: 2.5rem;
    }
    .mb-md {
        margin-bottom: 1.75rem;
    }
    .mt-md {
        margin-top: 1.75rem;
    }
    .gap-lg {
        gap: 2.5rem;
    }
    .gap-md {
        gap: 1.75rem;
    }
    
    /* Element adjustments */
    .btn {
        font-size: 0.95rem;
        padding: 0.95rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .checkout-card {
        padding: 1.25rem;
    }
    
    .puzzle-card {
        padding: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.25rem;
    }
    
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .vsl-player-container {
        border-radius: 16px;
    }
}

