/* =========================================
   LASH AUTHORITY BUNDLE - NEON FUCHSIA VIBE
   ========================================= */

/* Custom Variables */
:root {
    --bg-dark: #000000;
    --bg-darker: #050505;
    --fuchsia-neon: #FF00BF;
    --magenta-electric: #FF00FF;
    --white-pure: #FFFFFF;
    --gray-light: #E0E0E0;
    --gray-dark: #222222;
    --fuchsia-glow: rgba(255, 0, 191, 0.6);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--white-pure);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center !important;
}

.fuchsia-text {
    color: var(--fuchsia-neon);
}

.highlight {
    text-shadow: 0 0 15px var(--fuchsia-glow);
}

.electric-divider {
    height: 4px;
    width: 60px;
    background: var(--fuchsia-neon);
    box-shadow: 0 0 10px var(--fuchsia-glow), 0 0 20px var(--fuchsia-glow);
    margin: 20px 0;
    border-radius: 2px;
}

.electric-divider.center {
    margin: 20px auto 40px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--fuchsia-neon), var(--magenta-electric));
    color: var(--white-pure);
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
}

.btn-giant {
    padding: 25px 40px;
    font-size: 1.4rem;
    border-radius: 4px;
    box-shadow: 0 0 30px var(--fuchsia-glow);
}

.btn-high-contrast {
    background: linear-gradient(90deg, #CCFF00, #AEE000) !important;
    color: #111 !important;
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.4) !important;
}

.btn-high-contrast:hover {
    box-shadow: 0 0 50px rgba(204, 255, 0, 0.8) !important;
}

.btn-final {
    padding: 30px 45px;
    font-size: 1.6rem;
    border-radius: 4px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 0 40px var(--fuchsia-glow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.8);
}

.btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-dark);
    /* High-impact background */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.3rem);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--gray-light);
    margin-bottom: 50px;
    font-family: var(--font-body);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-container {
    animation: zoomIn 1s ease-out 0.6s backwards;
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Stack Section */
.stack-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a000a 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stack-item {
    background: rgba(15, 0, 15, 0.6);
    border: 1px solid rgba(255, 0, 191, 0.2);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.stack-item:hover {
    transform: translateY(-10px);
    border-color: var(--fuchsia-neon);
    box-shadow: 0 10px 30px rgba(255, 0, 191, 0.15);
}

.placeholder-mockup {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #1a001a, #330033);
    border: 2px solid var(--fuchsia-neon);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 191, 0.2);
}

.mockup-number {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.stack-item-title {
    font-size: 1.5rem;
    color: var(--fuchsia-neon);
    margin-bottom: 15px;
}

.stack-item-desc {
    color: var(--gray-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #666;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.stack-total {
    margin-top: 80px;
    text-align: center;
    background: rgba(255, 0, 191, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px dashed var(--fuchsia-neon);
}

.high-contrast-offer {
    display: inline-block;
    background: #0a000a;
    border: 2px solid var(--fuchsia-neon);
    padding: 14px 50px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 191, 0.3), inset 0 0 20px rgba(255, 0, 191, 0.08);
}

.loud-price {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 5px;
    color: var(--fuchsia-neon) !important;
    text-shadow: 0 0 25px rgba(255, 0, 191, 0.8);
    letter-spacing: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 4px;
    border-left: 4px solid var(--fuchsia-neon);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(255, 0, 191, 0.1);
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.placeholder-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    background: #333;
    border: 2px solid var(--fuchsia-neon);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white-pure);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--fuchsia-neon);
}

.testimonial-stars {
    color: #FFD700;
    width: 100%;
    margin-top: 10px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-light);
    font-size: 1.05rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(0deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.lifetime-access {
    margin-top: 20px;
    font-family: var(--font-heading);
    color: var(--fuchsia-neon);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Policies */
.policies-section {
    padding: 60px 0;
    background: var(--bg-darker);
    border-top: 1px solid #1a1a1a;
}

.policy-box {
    background: #050505;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.policy-icon {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 20px;
}

.policy-title {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 15px;
}

.policy-text {
    color: #666;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    color: #444;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- New Sections: Top Bar, Navbar, Authority, FAQ --- */

/* Top Bar */
.top-bar {
    background-color: #1a001a;
    border-bottom: 1px solid var(--fuchsia-neon);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1000;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 191, 0.2);
    padding: 15px 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.glow-text {
    text-shadow: 0 0 10px var(--fuchsia-glow);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 4px;
}

/* Authority Section */
.authority-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a000a 0%, var(--bg-dark) 100%);
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pic-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.glow-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--fuchsia-neon);
    border-radius: 8px;
    box-shadow: inset 0 0 20px var(--fuchsia-glow), 0 0 20px var(--fuchsia-glow);
    pointer-events: none;
}

.authority-bio {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.authority-list {
    list-style: none;
    margin-top: 30px;
}

.authority-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 191, 0.3);
    border-radius: 8px;
    background: rgba(15, 0, 15, 0.4);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--white-pure);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--fuchsia-neon);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--fuchsia-neon);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.show {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--gray-light);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Pain Points Section */
.pain-points-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pain-item {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--fuchsia-neon);
    text-align: center;
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
}

.fuchsia-glow-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 0 15px var(--fuchsia-glow);
}

.pain-item p {
    color: var(--gray-light);
    font-size: 1.05rem;
}

.pain-outro {
    margin-top: 50px;
    padding: 30px;
    background: rgba(15, 0, 15, 0.5);
    border: 1px dashed var(--fuchsia-neon);
    border-radius: 8px;
}

.pain-conclusion {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

/* Product Showcase Section */
.showcase-section {
    padding: 100px 0 60px;
    background: var(--bg-dark);
}

.showcase-subtitle {
    color: var(--gray-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: -10px;
}

.bundle-showcase-container {
    position: relative;
    max-width: 650px;
    height: 480px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mockup-side {
    position: absolute;
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    top: 50px;
    opacity: 0.5;
    filter: blur(2px) grayscale(0.4);
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    border: 3px solid rgba(255, 0, 191, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.bundle-showcase-container:hover .mockup-side {
    opacity: 1;
    filter: blur(0) grayscale(0);
}

.mockup-left {
    left: 10px;
    transform: rotateY(15deg) rotateZ(-10deg) translateZ(-50px);
    z-index: 1;
}

.mockup-right {
    right: 10px;
    transform: rotateY(-15deg) rotateZ(10deg) translateZ(-50px);
    z-index: 1;
}

.mockup-center {
    position: relative;
    z-index: 3;
    width: 320px;
    height: auto;
    max-width: 100%;
    transform: translateZ(20px);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(255, 0, 191, 0.5)) grayscale(0.2) blur(1px);
    opacity: 0.8;
}

.bundle-showcase-container:hover .mockup-center {
    transform: translateZ(50px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(255, 0, 191, 0.8)) grayscale(0) blur(0);
    opacity: 1;
}

@media (max-width: 650px) {
    .bundle-showcase-container {
        height: 350px;
    }

    .mockup-side {
        width: 150px;
        height: 210px;
        top: 60px;
    }

    .mockup-center {
        width: 220px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(0deg, #110011 0%, var(--bg-dark) 100%);
}

/* White Theme Modifiers */
.light-theme {
    background: #ffffff !important;
}

.light-theme .benefit-card {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.light-theme .benefit-card:hover {
    border-color: var(--fuchsia-neon);
    box-shadow: 0 10px 30px rgba(255, 0, 191, 0.15);
}

.light-theme .benefit-title {
    color: #222;
}

.light-theme .benefit-card p {
    color: #666;
}

.text-dark {
    color: #111 !important;
}

.results-img {
    max-width: 100%;
    width: 700px;
    border-radius: 12px;
    margin-top: 20px;
}

.glow-border-fuchsia {
    box-shadow: 0 15px 50px rgba(255, 0, 191, 0.3);
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 2rem;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    border: 1px solid #222;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--fuchsia-neon);
    box-shadow: 0 10px 30px rgba(255, 0, 191, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white-pure);
}

.benefit-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Learn Section */
.learn-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.subtitle-learn {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-top: -10px;
}

.learn-content {
    max-width: 800px;
    margin: 40px auto 0;
    background: #050505;
    border: 1px solid var(--fuchsia-neon);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 0, 191, 0.1);
}

.module-list ul {
    list-style: none;
}

.module-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--white-pure);
}

.module-list li i {
    margin-top: 5px;
}

.loud-focus {
    font-size: 1.3rem;
    margin-top: 30px;
    text-align: center;
    justify-content: center;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: #0a0a0a;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    border: 1px solid #222;
}

.our-card {
    border-color: var(--fuchsia-neon);
    box-shadow: 0 0 30px rgba(255, 0, 191, 0.15);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fuchsia-neon);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.dark-badge {
    background: #444;
}

.comparison-card h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--gray-light);
    font-size: 1.05rem;
}

.comparison-card li i {
    margin-top: 4px;
    font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navbar {
        display: none !important;
    }

    .btn-giant {
        padding: 20px 20px;
        font-size: 1.1rem;
    }

    .btn-final {
        padding: 20px 20px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .loud-price {
        font-size: 2.2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .learn-content {
        padding: 20px;
    }

    .module-list li {
        font-size: 1rem;
    }
}

/* === WHITE STACK SECTION === */
.stack-white {
    background: #f9f9f9 !important;
    padding: 100px 0;
}

.dark-title {
    color: #111 !important;
}

.stack-intro-text {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.stack-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 20px;
}

/* El 5to módulo se centra solo */
.stack-card-wide {
    grid-column: 2 / 4;
}

@media (max-width: 1100px) {
    .stack-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .stack-card-wide {
        grid-column: 1 / 3;
    }
}

@media (max-width: 600px) {
    .stack-grid-new {
        grid-template-columns: 1fr;
    }

    .stack-card-wide {
        grid-column: auto;
    }
}

.stack-card-new {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stack-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 191, 0.18);
}

.stack-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.stack-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stack-card-new:hover .stack-card-img img {
    transform: scale(1.06);
}

.stack-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--fuchsia-neon);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.stack-card-body {
    padding: 22px;
}

.stack-card-body h3 {
    font-size: 1rem;
    color: #111;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stack-card-body p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
}

.stack-card-value {
    color: #aaa !important;
    font-size: 0.82rem !important;
    margin-top: 10px !important;
}

/* === WHITE TESTIMONIALS === */
.testimonials-white {
    background: #f9f9f9 !important;
    padding: 100px 0;
}

.testimonial-white-card {
    background: #fff !important;
    border: 1px solid #ececec !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07) !important;
    border-radius: 16px !important;
}

.testimonial-photo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fuchsia-neon);
    flex-shrink: 0;
}

.testimonial-white-card .testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

.testimonial-name.dark {
    color: #111 !important;
}

.dark-text {
    color: #444 !important;
}

.testimonial-biz {
    font-size: 0.78rem;
    color: #999;
    margin-top: 3px;
    font-style: italic;
}

.fuchsia-stars {
    color: var(--fuchsia-neon) !important;
    margin-left: auto;
    font-size: 0.9rem;
    white-space: nowrap;
}

.testimonial-stars i,
.fuchsia-stars i {
    color: var(--fuchsia-neon);
}

/* Value Driven Learn List */
.value-driven-list ul li {
    padding: 15px 20px;
    background: rgba(255, 0, 191, 0.05);
    border: 1px solid rgba(255, 0, 191, 0.15);
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.value-driven-list ul li strong {
    color: var(--white-pure);
}

.badge-value {
    margin-left: auto;
    background: var(--fuchsia-neon);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 4px;
    font-family: var(--font-heading);
    box-shadow: 0 0 10px rgba(255, 0, 191, 0.3);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .badge-value {
        margin-left: 30px;
        margin-top: 5px;
    }
}

/* === GOLDEN TRUST BADGES === */
.trust-badges-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #050505 0%, #000 100%);
    border-top: 1px dashed rgba(191, 149, 63, 0.3);
    border-bottom: 1px dashed rgba(191, 149, 63, 0.3);
    margin: 40px 0;
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    padding: 15px;
}

.trust-badge-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(191, 149, 63, 0.3));
}

.trust-badge-title {
    font-family: var(--font-heading);
    color: #fcf6ba;
    /* Gold text */
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.5);
    text-transform: uppercase;
}

.trust-badge-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* ===========================
   STATS COUNTER SECTION
=========================== */
.stats-section {
    background: linear-gradient(135deg, #0d000d 0%, #1a001a 50%, #0d000d 100%);
    border-top: 1px solid rgba(255, 0, 191, 0.3);
    border-bottom: 1px solid rgba(255, 0, 191, 0.3);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 0, 191, 0.3);
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--fuchsia-neon);
    text-shadow: 0 0 20px rgba(255, 0, 191, 0.5);
    line-height: 1;
}

.stat-suffix,
.stat-prefix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--fuchsia-neon);
}

.stat-label {
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(4)::after {
        display: none;
    }
}

/* ===========================
   FOR WHO SECTION
=========================== */
.for-who-section {
    padding: 90px 0;
    background: var(--bg-darker);
}

.for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.for-who-card {
    border-radius: 16px;
    padding: 35px;
    transition: transform 0.3s ease;
}

.for-who-card:hover {
    transform: translateY(-5px);
}

.for-who-yes {
    background: rgba(0, 200, 83, 0.06);
    border: 1px solid rgba(0, 200, 83, 0.4);
}

.for-who-no {
    background: rgba(255, 50, 50, 0.06);
    border: 1px solid rgba(255, 50, 50, 0.4);
}

.for-who-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.for-who-header i {
    font-size: 1.8rem;
}

.for-who-yes .for-who-header i {
    color: #00c853;
}

.for-who-no .for-who-header i {
    color: #ff3232;
}

.for-who-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white-pure);
}

.for-who-card ul {
    list-style: none;
    padding: 0;
}

.for-who-card ul li {
    color: var(--gray-light);
    font-size: 1rem;
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.for-who-yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: 800;
}

.for-who-no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff3232;
    font-weight: 800;
}

@media (max-width: 768px) {
    .for-who-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   BONUS SECTION
=========================== */
.bonus-section {
    padding: 60px 30px;
    background: linear-gradient(135deg, #0a000a 0%, #170017 100%);
    border-radius: 16px;
    margin: 50px 0;
    border: 1px dashed rgba(255, 0, 191, 0.5);
}

.bonus-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white-pure);
    margin-bottom: 10px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 0, 191, 0.25);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--fuchsia-neon);
    box-shadow: 0 0 25px rgba(255, 0, 191, 0.15);
    transform: translateY(-4px);
}

.bonus-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fuchsia-neon);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.bonus-card h4 {
    color: var(--white-pure);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.bonus-card p {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.bonus-value {
    font-size: 0.9rem !important;
    color: #ccc !important;
}

@media (max-width: 900px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   WHATSAPP TESTIMONIALS
=========================== */
.whatsapp-section {
    background: #f0f2f5;
    border-radius: 16px;
    padding: 40px 30px;
    margin: 40px 0 0;
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.whatsapp-chat {
    background: #e5ddd5;
    border-radius: 12px;
    padding: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect fill='%23e5ddd5' width='200' height='200'/%3E%3C/svg%3E");
}

.wapp-msg {
    background: #fff;
    border-radius: 0 10px 10px 10px;
    padding: 10px 14px;
    margin-bottom: 10px;
    max-width: 95%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.wapp-name {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--fuchsia-neon);
    margin-bottom: 4px;
}

.wapp-msg p {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.wapp-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #999;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .whatsapp-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   GUARANTEE SECTION
=========================== */
.guarantee-section {
    padding: 80px 0;
    background: #0a000a;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 191, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 2px solid rgba(255, 0, 191, 0.4);
    border-radius: 20px;
    padding: 50px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 0, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 0, 191, 0.3);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--fuchsia-neon);
}

.guarantee-content h3 {
    font-size: 1.8rem;
    color: var(--white-pure);
    margin-bottom: 15px;
    font-weight: 900;
}

.guarantee-content p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.guarantee-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.guarantee-badges span {
    background: rgba(255, 0, 191, 0.1);
    border: 1px solid rgba(255, 0, 191, 0.3);
    color: #ddd;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .guarantee-badges {
        justify-content: center;
    }
}

/* ===========================
   URGENCY SECTION
=========================== */
.urgency-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0010 0%, #0d000d 100%);
    border-top: 1px solid rgba(255, 0, 191, 0.2);
    border-bottom: 1px solid rgba(255, 0, 191, 0.2);
}

.urgency-label {
    font-size: 1.3rem;
    color: var(--white-pure);
    font-weight: 700;
    margin-bottom: 25px;
}

.urgency-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
}

.countdown-block {
    background: #0d000d;
    border: 2px solid var(--fuchsia-neon);
    border-radius: 10px;
    padding: 18px 28px;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 191, 0.3);
}

.countdown-block span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--fuchsia-neon);
    line-height: 1;
}

.countdown-block small {
    display: block;
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.countdown-sep {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--fuchsia-neon);
    opacity: 0.7;
}

.urgency-subtext {
    margin-top: 20px;
    color: #aaa;
    font-size: 1rem;
}

@media (max-width: 500px) {
    .countdown-block {
        min-width: 70px;
        padding: 14px 18px;
    }

    .countdown-block span {
        font-size: 2rem;
    }
}

/* ===========================
   VIDEO SOLO — PROTAGONISTA SUTIL
=========================== */
.video-solo-section {
    padding: 60px 0 20px;
    background: var(--bg-dark);
}

.video-solo-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 191, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    line-height: 0;
}

.video-solo-bg {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.video-solo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--fuchsia-neon);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 0, 191, 0.5);
}

.video-solo-caption-new {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-light);
}

/* ===========================
   ANTES Y DESPUÉS GALLERY
=========================== */
.antesdespues-section {
    padding: 90px 0;
    background: var(--bg-dark);
}

.antesdespues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.ad-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 0, 191, 0.3);
    transition: all 0.3s ease;
    background: #000;
}

.ad-card:hover {
    border-color: var(--fuchsia-neon);
    box-shadow: 0 0 30px rgba(255, 0, 191, 0.3);
    transform: translateY(-6px);
}

.ad-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.ad-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.ad-label.before {
    background: rgba(0, 0, 0, 0.7);
    color: #aaa;
    border: 1px solid #555;
}

.ad-label.after {
    background: var(--fuchsia-neon);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 191, 0.5);
}

.ad-img,
.ad-img-tall {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ad-img {
    height: 320px;
}

.ad-img-tall {
    height: 450px;
    /* Más altas y editoriales */
}

.ad-card:hover .ad-img,
.ad-card-tall:hover .ad-img-tall {
    transform: scale(1.04);
}

.ad-stat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding: 30px 20px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.ad-stat-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.ad-stat-text {
    font-size: 0.9rem;
    color: var(--fuchsia-neon);
    font-weight: 600;
}

@media (max-width: 768px) {
    .antesdespues-grid {
        grid-template-columns: 1fr;
    }

    .ad-img {
        height: 250px;
    }

    .ad-img-tall {
        height: 350px;
    }
}

/* Video protagonista */
.ad-card-video {
    margin-bottom: 30px;
}

.ad-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ad-card-video:hover .ad-video {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .ad-video {
        height: 280px;
    }
}

/* ===========================
   STICKY BOTTOM CTA BAR
=========================== */
.sticky-cta-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0d000d 0%, #1a0018 100%);
    border-top: 2px solid var(--fuchsia-neon);
    box-shadow: 0 -5px 30px rgba(255, 0, 191, 0.3);
    padding: 14px 20px;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-cta-bar.visible {
    bottom: 0;
}

.sticky-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-cta-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.sticky-cta-price {
    font-size: 0.9rem;
    color: var(--fuchsia-neon);
    font-weight: 700;
}

.sticky-btn {
    padding: 12px 30px;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.sticky-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.sticky-close:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .sticky-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .sticky-btn {
        width: 100%;
    }

    .sticky-close {
        position: absolute;
        top: 8px;
        right: 12px;
    }
}

/* ===========================
   PAYMENT TRUST ICONS
=========================== */
.payment-trust-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px auto 10px;
}

.payment-trust-icons i {
    font-size: 2.2rem;
    color: #666;
    transition: color 0.3s ease;
}

.payment-trust-icons .mp-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.cta-container:hover .payment-trust-icons i,
.payment-trust-icons:hover i {
    color: #fff;
}

.cta-container:hover .payment-trust-icons .mp-icon,
.payment-trust-icons:hover .mp-icon {
    filter: grayscale(0%) opacity(1);
}