:root {
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --color-primary: #ffffff;
    --color-bg-dark: #000000;
    --color-text-muted: #86868b;
    /* Colores basados en el logo JLF */
    --color-logo-blue: #0054a6;
    --color-logo-green: #6cc24a;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
    --color-bg-dark: #f5f5f7;
    --color-text-muted: #515154;
}

[data-theme="light"] body {
    color: #1d1d1f;
}

[data-theme="light"] .bg-vertical-img {
    background: radial-gradient(circle at top, #ffffff 0, #e0e5ec 55%, #c8d0d8 100%);
    filter: brightness(1);
}

[data-theme="light"] .site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-link { color: #333; }
[data-theme="light"] .nav-link:hover { color: var(--color-logo-blue); }

[data-theme="light"] .hero-title,
[data-theme="light"] .section-title,
[data-theme="light"] h1, [data-theme="light"] h2, [data-theme="light"] h3, [data-theme="light"] h4 {
    color: #111;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

[data-theme="light"] .hero-subtitle,
[data-theme="light"] .section-subtitle,
[data-theme="light"] .about-content p,
[data-theme="light"] .catalog-info p,
[data-theme="light"] .video-desc {
    color: #444;
    text-shadow: none;
}

[data-theme="light"] .service-card, 
[data-theme="light"] .video-info-block, 
[data-theme="light"] .showcase-box, 
[data-theme="light"] .elite-form, 
[data-theme="light"] .step, 
[data-theme="light"] .faq-container, 
[data-theme="light"] .elite-contact-wrapper, 
[data-theme="light"] .transformation-content, 
[data-theme="light"] .about-content, 
[data-theme="light"] .referral-content,
[data-theme="light"] .catalog-banner,
[data-theme="light"] .ba-frame {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    color: #333;
}

[data-theme="light"] .service-card p,
[data-theme="light"] .service-card h3,
[data-theme="light"] .faq-question,
[data-theme="light"] .faq-answer p,
[data-theme="light"] .step-content h4,
[data-theme="light"] .step-content p,
[data-theme="light"] .impact-list li,
[data-theme="light"] .elite-desc,
[data-theme="light"] .feature-item {
    color: #333;
    text-shadow: none;
}

[data-theme="light"] .elite-input-group input, 
[data-theme="light"] .elite-input-group select {
    background: rgba(0,0,0,0.05);
    color: #000;
    border-color: rgba(0,0,0,0.2);
}
[data-theme="light"] .elite-input-group select option { background: #fff; color: #000; }

[data-theme="light"] .footer {
    background: rgba(255, 255, 255, 0.8);
    border-top-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .footer p { color: #555; }
[data-theme="light"] .social-icon svg { fill: #333; }
[data-theme="light"] .social-icon:hover svg { fill: var(--color-logo-blue); }

[data-theme="light"] .nav-toggle-bar { background: #333; }
[data-theme="light"] body.nav-open .nav-menu { background: rgba(255, 255, 255, 0.98); }
[data-theme="light"] body.nav-open .nav-menu li a { color: #333; text-shadow: none; }
[data-theme="light"] .theme-btn { color: #333; border-color: rgba(0,0,0,0.2); }
[data-theme="light"] body.nav-open .theme-btn { color: #333; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: #f5f5f7;
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
    position: relative;
}

/* Vertical Background Flow */
.bg-vertical {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: -2;
    pointer-events: none;
}

.bg-vertical-img {
    flex: 1;
    width: 100%;
    background: radial-gradient(circle at top, #222 0, #000 55%, #000 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.9);
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
    pointer-events: none;
}

/* Typography & Layout Reset */
h1, h2, h3, h4, p { margin: 0; }
.about-content p { margin-bottom: 1.5rem; font-size: 1.15rem; font-weight: 500; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.about-content p:last-child { margin-bottom: 0; }
.about-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 2.5rem;
    border: 3px solid rgba(255,255,255,0.8);
    object-fit: cover;
}
.elite-logo {
    box-shadow:
        0 0 22px rgba(108,194,74,0.7),
        0 0 38px rgba(0,84,166,0.5),
        0 0 70px rgba(255,255,255,0.15);
    animation: elitePulse 4s ease-in-out infinite;
}
@keyframes elitePulse {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 18px rgba(108,194,74,0.5),
            0 0 30px rgba(0,84,166,0.4),
            0 0 50px rgba(255,255,255,0.1);
    }
    50% {
        transform: scale(1.03);
        box-shadow:
            0 0 32px rgba(108,194,74,0.9),
            0 0 55px rgba(0,84,166,0.7),
            0 0 90px rgba(255,255,255,0.18);
    }
    100% {
        transform: scale(1);
        box-shadow:
            0 0 18px rgba(108,194,74,0.5),
            0 0 30px rgba(0,84,166,0.4),
            0 0 50px rgba(255,255,255,0.1);
    }
}

.word-anim-container .letter-anim {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}
.word-anim-container.visible .letter-anim {
    animation: fadeInUpLetter 0.5s forwards;
}
@keyframes fadeInUpLetter {
    to { opacity: 1; transform: translateY(0); }
}

.theme-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: var(--transition);
}
.theme-btn:hover {
    background: rgba(255,255,255,0.1);
}

.service-ul {
    list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem;
}
.service-list-item {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.8rem 1rem; border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}
.service-list-item:hover {
    background: rgba(108,194,74,0.1);
    border-color: rgba(108,194,74,0.3);
    transform: translateX(10px);
}
.service-check {
    color: var(--color-logo-green);
    font-weight: bold;
    font-size: 1.2rem;
}
[data-theme="light"] .service-list-item {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.05);
}
[data-theme="light"] .service-list-item:hover {
    background: rgba(108,194,74,0.1);
    border-color: rgba(108,194,74,0.3);
}
.about-social-callout {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.about-social-callout .social-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* Sticky Header */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
}

.header-logo-link { display: block; }
.header-logo { height: 44px; width: auto; border-radius: 8px; transition: var(--transition); }

.nav-menu {
    display: flex; list-style: none; gap: 2.5rem; margin: 0; padding: 0;
}

.nav-link {
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.8); transition: var(--transition);
}

.nav-link:hover { color: #ffffff; }

.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle-bar { width: 24px; height: 2px; background: #fff; transition: var(--transition); border-radius: 2px; }

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
        background: rgba(10, 10, 12, 0.98); backdrop-filter: saturate(180%) blur(30px);
        flex-direction: column; gap: 1rem; align-items: center; justify-content: center;
        clip-path: circle(0px at calc(100% - 40px) 40px);
        transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }
    body.nav-open .nav-menu { clip-path: circle(150vh at calc(100% - 40px) 40px); }
    
    .nav-menu li { width: 100%; text-align: center; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
    body.nav-open .nav-menu li { opacity: 1; transform: translateY(0); }
    body.nav-open .nav-menu li:nth-child(1) { transition-delay: 0.2s; }
    body.nav-open .nav-menu li:nth-child(2) { transition-delay: 0.3s; }
    body.nav-open .nav-menu li:nth-child(3) { transition-delay: 0.4s; }
    body.nav-open .nav-menu li:nth-child(4) { transition-delay: 0.5s; }
    body.nav-open .nav-menu li:nth-child(5) { transition-delay: 0.6s; }

    .nav-menu li a { display: block; padding: 1.5rem; font-size: 1.5rem; border-bottom: none; font-weight: 700; color: #fff; text-shadow: 0 4px 12px rgba(0,0,0,0.5); }
    
    .nav-toggle { display: flex; z-index: 1000; position: relative; }
    .nav-toggle-bar { transform-origin: center; }
    body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background-color: var(--color-logo-green); }
    body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background-color: var(--color-logo-green); }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-content {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.hero-title,
.hero-subtitle {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

.hero-content {
    max-width: 900px; padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto; margin-right: auto;
    line-height: 1.5;
}

.hero-actions {
    display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
}

/* Buttons */
.cta-button {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--color-logo-green), var(--color-logo-blue));
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.cta-highlight {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 1.6s ease-in-out infinite;
    box-shadow: 0 0 0 rgba(108,194,74,0.0);
}

.cta-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.3), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cta-highlight:hover::after {
    opacity: 1;
}

@keyframes pulseGlow {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(108,194,74,0.0);
    }
    50% {
        transform: translateY(-1px);
        box-shadow: 0 0 20px rgba(108,194,74,0.7);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(108,194,74,0.0);
    }
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-logo-green);
}

.cta-button.secondary:hover {
    background: rgba(108,194,74,0.12);
}

/* General Sections */
.section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: transparent !important;
}

.section-header { margin-bottom: 4rem; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
    font-size: 1.2rem; color: #e0e0e0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Glassmorphic Cards */
.service-card, .video-info-block, .showcase-box, .elite-form, .step, .faq-container, .elite-contact-wrapper, .transformation-content, .about-content, .referral-content {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px !important;
    transition: var(--transition);
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.service-card { padding: 2.5rem; text-align: center; }
.service-card:hover { 
    background: rgba(255,255,255,0.03) !important; 
    border-color: rgba(255,255,255,0.12) !important; 
    transform: translateY(-5px);
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.service-card p { color: #f5f5f7; font-weight: 500; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.service-image { width: 100%; aspect-ratio: 16/9; border-radius: 12px; margin-bottom: 1.5rem; object-fit: contain; background-color: transparent; }
.service-video video { width: 100%; border-radius: 12px; display: block; }

.services-grid, .referral-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
}

/* Elite Referral Styling */
.elite-referral {
    background: linear-gradient(145deg, rgba(0, 84, 166, 0.15), rgba(108, 194, 74, 0.1)) !important;
    border: 1px solid rgba(108, 194, 74, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 84, 166, 0.2), inset 0 0 20px rgba(108, 194, 74, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.elite-referral::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(108,194,74,0.1) 0%, transparent 60%);
    animation: rotateGlow 15s linear infinite; pointer-events: none;
}
@keyframes rotateGlow { 100% { transform: rotate(360deg); } }

.gradient-text-anim {
    font-size: 2.2rem; margin-bottom: 0.5rem; font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--color-logo-green), var(--color-logo-blue), #fff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: none;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.referral-hero p { font-size: 1.2rem; color: #e0e0e0; margin-bottom: 3rem; text-shadow: 0 2px 8px rgba(0,0,0,0.8); font-weight: 500; }

.step {
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 2.5rem 2rem !important;
}
.step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-logo-green) !important;
    box-shadow: 0 15px 30px rgba(108,194,74,0.2);
    background: rgba(255,255,255,0.05) !important;
}

.step-number-glow {
    width: 60px; height: 60px; margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 1.8rem; font-weight: 800; color: #fff;
    background: linear-gradient(135deg, var(--color-logo-blue), var(--color-logo-green));
    box-shadow: 0 0 20px rgba(108,194,74,0.5);
    position: relative; z-index: 2;
}
.step-number-glow::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: inherit; filter: blur(8px); opacity: 0.6; z-index: -1;
    animation: pulseGlow 2s infinite alternate;
}

.step-content h4 { font-size: 1.3rem; margin-bottom: 0.8rem; text-shadow: 0 2px 6px rgba(0,0,0,0.8); font-weight: 700; color: #fff; }
.step-content p { color: #d0d0d5; font-weight: 500; font-size: 0.95rem; line-height: 1.5; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

.referral-note { margin: 2rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Before/After Slider */
.quantum-slider-container { max-width: 1000px; margin: 0 auto; }

.ba-frame {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    background-color: transparent;
}

@media (max-width: 768px) { .ba-frame { height: 350px; } }

.ba-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain;
}

.ba-after-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 2px; background: #fff; transform: translateX(-50%);
    pointer-events: none; z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.ba-handle-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center; color: #fff;
}

.ba-slider-input {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize; z-index: 20;
}

.ba-controls {
    display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem;
}

.ba-pair-btn {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 0.8rem 1.5rem; border-radius: 99px;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 0.5rem; font-weight: 500;
}

.ba-pair-btn:hover { background: rgba(255,255,255,0.15); }
.ba-pair-btn svg { width: 18px; height: 18px; }
.ba-pair-indicator { font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }

/* Transformation Showcase */
.transformation-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.impact-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; text-shadow: 0 4px 12px rgba(0,0,0,0.8); }
.impact-subtitle { color: #e0e0e0; font-size: 1.2rem; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.impact-list { list-style: none; padding: 0; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.impact-list li { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; font-weight: 500; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }

.transformation-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trans-img-wrapper { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 1; position: relative; background-color: transparent; }
.trans-img-wrapper img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.4s ease; cursor: zoom-in; }
.trans-img-wrapper:hover img { opacity: 0.85; }

.trans-badge {
    position: absolute; top: 15px; left: 15px; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
    padding: 0.4rem 1rem; border-radius: 99px; font-weight: 600; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.2);
}

/* Showcase Box */
.showcase-content { max-width: 800px; margin: 0 auto 3rem; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.showcase-description { font-weight: 500; font-size: 1.05rem; }
.showcase-description strong { color: #fff; display: block; margin-bottom: 0.5rem; font-size: 1.15rem; font-weight: 700; }
.showcase-gallery { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.showcase-gallery::-webkit-scrollbar { display: none; }
.showcase-gallery img { height: 350px; min-width: 280px; object-fit: contain; background-color: transparent; border-radius: 16px; scroll-snap-align: center; border: 1px solid rgba(255,255,255,0.1); }

/* Elite Contact */
.elite-contact-wrapper { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: 4rem; padding: 4rem; align-items: center; }
.elite-subtitle { color: #e0e0e0; font-weight: 700; letter-spacing: 0.1em; display: block; margin-bottom: 1rem; text-transform: uppercase; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.elite-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 4px 12px rgba(0,0,0,0.8); }
.elite-desc { color: #f5f5f7; font-size: 1.1rem; line-height: 1.6; font-weight: 500; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }

/* Hero Gallery Cards */
.hero-gallery-section { padding: 4rem 0 0; border-top: none; }
.hero-gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hero-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.hero-gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6);
}
.hero-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15), rgba(0,0,0,0.0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem 1.5rem;
}
.hero-gallery-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    background: radial-gradient(circle at left, var(--color-logo-green), var(--color-logo-blue));
    border: 1px solid rgba(0,0,0,0.5);
    margin-bottom: 0.4rem;
}
.hero-gallery-title {
    font-size: 1.05rem;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0,0,0,0.9);
    transform: translateY(15px);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-gallery-card:hover .hero-gallery-title {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(108,194,74,0.4);
    color: #fff;
}
.hero-gallery-sub {
    font-size: 0.9rem;
    margin-top: 0.15rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}
.hero-gallery-card:hover .hero-gallery-sub {
    transform: translateY(0);
    opacity: 0.9;
}
.hero-gallery-card:nth-child(1) .hero-gallery-tag { background: radial-gradient(circle at left, var(--color-logo-green), var(--color-logo-blue)); }
.hero-gallery-card:nth-child(2) .hero-gallery-tag { background: radial-gradient(circle at left, var(--color-logo-green), var(--color-logo-blue)); }
.hero-gallery-card:nth-child(3) .hero-gallery-tag { background: radial-gradient(circle at left, var(--color-logo-green), var(--color-logo-blue)); }
.hero-gallery-card:nth-child(4) .hero-gallery-tag { background: radial-gradient(circle at left, var(--color-logo-green), var(--color-logo-blue)); }

.hero-gallery-card.slider-card .slider-stack {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}
.hero-gallery-card.slider-card .slider-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: sliderSwap 4s infinite ease-in-out;
}
.hero-gallery-card.slider-card .slider-stack img:nth-child(2) {
    animation-delay: 2s;
}

@keyframes sliderSwap {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}


.elite-form h3 { font-size: 1.8rem; margin-bottom: 2rem; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.elite-input-group { margin-bottom: 1.5rem; }
.elite-input-group input, .elite-input-group select {
    width: 100%; padding: 1.2rem; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    font-family: var(--font-main); font-size: 1.05rem; color: #fff; transition: var(--transition);
}
.elite-input-group input:focus, .elite-input-group select:focus {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); outline: none;
}
.elite-input-group select option { background: #111; color: #fff; }

.elite-submit-btn {
    width: 100%; padding: 1.2rem; background: #fff; color: #000; border: none; border-radius: 12px;
    font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    transition: var(--transition); margin-top: 1rem; font-family: var(--font-main);
}
.elite-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }
.elite-submit-btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.elite-submit-btn:hover svg { transform: translateX(5px); }

/* Video Info Block */
.video-showcase .container { max-width: 900px; }
.video-title { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.video-desc { color: #f5f5f7; margin-bottom: 2rem; font-weight: 500; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.video-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; font-weight: 500; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.feature-item { display: flex; align-items: center; gap: 0.8rem; }
.feature-icon { color: #fff; font-weight: bold; }
.video-container { border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.showcase-video { width: 100%; display: block; }

/* FAQ */
.faq-container { padding: 2rem 3rem; }
.faq-question {
    width: 100%; text-align: left; padding: 1.5rem 0; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-main); font-size: 1.1rem; font-weight: 600; color: #fff; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; transition: var(--transition);
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
.faq-item:last-child .faq-question { border-bottom: none; }
.faq-icon { font-size: 1.5rem; transition: transform 0.3s ease; font-weight: 300; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 1.5rem 0; color: #f5f5f7; font-weight: 500; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Footer */
.footer {
    padding: 4rem 1rem 2rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
}
.footer-socials { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2rem; }
.social-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.social-icon:hover { background: #fff; transform: translateY(-3px); }
.social-icon svg { width: 22px; height: 22px; fill: #fff; transition: var(--transition); }
.social-icon:hover svg { fill: #000; }
.footer p { color: var(--color-text-muted); font-size: 0.9rem; }

/* Image Modal */
.image-modal {
    visibility: hidden; position: fixed; z-index: 2000; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); opacity: 0; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.image-modal.show { visibility: visible; opacity: 1; }
.modal-content { margin: auto; display: block; max-width: 90%; max-height: 80vh; border-radius: 12px; transform: scale(0.95); transition: transform 0.3s ease; object-fit: contain; }
.image-modal.show .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 20px; right: 35px; color: #fff; font-size: 40px; font-weight: 300; cursor: pointer; z-index: 2001; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); }
.whatsapp-float svg { width: 34px; height: 34px; }

/* Animations */
.animate-on-scroll {
    opacity: 0; transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.loading-screen {
    position: fixed; inset: 0; background: radial-gradient(circle at top, #050816 0, #000 55%, #000 100%); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}
.loading-screen::before,
.loading-screen::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid transparent;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.65;
    filter: blur(1px);
}
.loading-screen::before {
    border-image: radial-gradient(circle, rgba(108,194,74,0.4), transparent 60%) 1;
    box-shadow: 0 0 40px rgba(108,194,74,0.4);
    animation: quantumOrbit 9s linear infinite;
}
.loading-screen::after {
    border-image: conic-gradient(from 0deg, rgba(0,84,166,0.5), rgba(108,194,74,0.2), rgba(0,84,166,0.5)) 1;
    animation: quantumOrbit 14s linear infinite reverse;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo {
    width: 140px;
    border-radius: 18px;
    margin-bottom: 16px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.12),
        0 18px 40px rgba(0,0,0,0.85),
        0 0 60px rgba(108,194,74,0.6),
        0 0 100px rgba(0,84,166,0.4);
    animation:
        logoFloat 2.4s ease-in-out infinite,
        elitePulseLoading 2.2s ease-in-out infinite,
        logoTilt 4.2s ease-in-out infinite,
        logoGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    filter: brightness(1.05);
}
.loading-subtitle {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}
.loading-text { color: #fff; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.06); opacity: 1; }
}

@keyframes elitePulseLoading {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.12),
            0 18px 40px rgba(0,0,0,0.85),
            0 0 60px rgba(108,194,74,0.6),
            0 0 100px rgba(0,84,166,0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow:
            0 0 0 2px rgba(255,255,255,0.2),
            0 25px 50px rgba(0,0,0,0.9),
            0 0 90px rgba(108,194,74,0.9),
            0 0 140px rgba(0,84,166,0.7);
    }
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.12),
            0 18px 40px rgba(0,0,0,0.85),
            0 0 60px rgba(108,194,74,0.6),
            0 0 100px rgba(0,84,166,0.4);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1.05) drop-shadow(0 0 10px rgba(108,194,74,0.5));
    }
    50% {
        filter: brightness(1.15) drop-shadow(0 0 25px rgba(108,194,74,0.8)) drop-shadow(0 0 40px rgba(0,84,166,0.6));
    }
}

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

@keyframes logoTilt {
    0% { transform: perspective(600px) rotateX(0deg) rotateY(0deg); }
    25% { transform: perspective(600px) rotateX(4deg) rotateY(-4deg); }
    50% { transform: perspective(600px) rotateX(0deg) rotateY(0deg); }
    75% { transform: perspective(600px) rotateX(-4deg) rotateY(4deg); }
    100% { transform: perspective(600px) rotateX(0deg) rotateY(0deg); }
}

@keyframes quantumOrbit {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); top: 50%; left: 50%; }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.08); top: 50%; left: 50%; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); top: 50%; left: 50%; }
}

.phone-link {
    color: #fff;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--color-logo-blue);
    width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.phone-link:hover {
    background: linear-gradient(135deg, var(--color-logo-green), var(--color-logo-blue));
    color: #000;
    transform: scale(1.05);
}

.highlight-green {
    color: var(--color-logo-green);
}
.highlight-blue {
    color: var(--color-logo-blue);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .hero-gallery-inner { padding: 0 1.5rem; }
    .hero-gallery-section { padding-top: 2.5rem; }
    .transformation-grid, .elite-contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .elite-contact-wrapper { padding: 2rem; }
    .section { padding: 5rem 0; }
}
@media (max-width: 768px) {
    .faq-container { padding: 1.5rem; }
    .video-info-block, .transformation-content { padding: 2rem 1.5rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
    .elite-input-group select {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

/* tombstone: Lead form styles moved to lead-form.css */

/* Payment & Catalog Banner */
.payment-banner {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}
.payment-title {
    font-size: 1rem; letter-spacing: 0.15em; color: var(--color-logo-green); font-weight: 700; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.payment-icons {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; align-items: center;
}
.pay-item { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 1.05rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.pay-icon-img { height: 24px; object-fit: contain; filter: brightness(1.1); }

.catalog-banner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    background: linear-gradient(135deg, rgba(0,84,166,0.3), rgba(108,194,74,0.15));
    border-radius: 24px; border: 1px solid var(--color-logo-blue);
    overflow: hidden; align-items: center; padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
}
.catalog-info h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; text-shadow: 0 4px 12px rgba(0,0,0,0.8); font-weight: 800; }
.catalog-info p { font-size: 1.2rem; margin-bottom: 2rem; color: #e0e0e0; font-weight: 500; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.wa-catalog-btn {
    background: #25D366; color: white; border: none; font-size: 1.15rem; padding: 1rem 2rem;
    display: inline-flex; align-items: center; gap: 0.8rem; border-radius: 99px;
    text-decoration: none; font-weight: 700; transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.wa-catalog-btn:hover { background: #1ebe57; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }
.wa-logo { width: 28px; height: 28px; }

.catalog-slider-container {
    position: relative; width: 100%; aspect-ratio: 4/3;
    border-radius: 16px; overflow: hidden; border: 2px solid rgba(255,255,255,0.2);
    background: #000; box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.catalog-slider img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; animation: catalogSlide 18s infinite;
}
.catalog-slider img:nth-child(1) { animation-delay: 0s; }
.catalog-slider img:nth-child(2) { animation-delay: 2s; }
.catalog-slider img:nth-child(3) { animation-delay: 4s; }
.catalog-slider img:nth-child(4) { animation-delay: 6s; }
.catalog-slider img:nth-child(5) { animation-delay: 8s; }
.catalog-slider img:nth-child(6) { animation-delay: 10s; }
.catalog-slider img:nth-child(7) { animation-delay: 12s; }
.catalog-slider img:nth-child(8) { animation-delay: 14s; }
.catalog-slider img:nth-child(9) { animation-delay: 16s; }

@keyframes catalogSlide {
    0%, 8.33% { opacity: 1; z-index: 1; }
    11.11%, 100% { opacity: 0; z-index: 0; }
}

@media (max-width: 768px) {
    .catalog-banner { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
}

.sticker-3d-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    color: #111 !important;
    background: #fff;
    border: 3px solid #111;
    border-radius: 16px;
    box-shadow: 
        6px 6px 0 #111,
        12px 12px 20px rgba(0,0,0,0.4);
    text-transform: uppercase;
    transform: rotate(-3deg);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-shadow: none;
    text-decoration: none;
}
.sticker-3d-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: stickerShine 3s infinite;
}
@keyframes stickerShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.sticker-3d-btn:hover {
    transform: rotate(2deg) translate(-2px, -2px) scale(1.05);
    box-shadow: 
        8px 8px 0 #111,
        15px 15px 25px rgba(0,0,0,0.5);
    background: #fbc531;
}
.sticker-3d-btn:active {
    transform: translate(4px, 4px) rotate(0deg);
    box-shadow: 
        2px 2px 0 #111,
        4px 4px 10px rgba(0,0,0,0.4);
}

/* Unique Referral Colors */
.referral-steps .step:nth-child(1) {
    border-color: rgba(0,84,166,0.6) !important;
    background: linear-gradient(180deg, rgba(0,84,166,0.15) 0%, rgba(0,0,0,0.4) 100%) !important;
}
.referral-steps .step:nth-child(2) {
    border-color: rgba(108,194,74,0.6) !important;
    background: linear-gradient(180deg, rgba(108,194,74,0.15) 0%, rgba(0,0,0,0.4) 100%) !important;
}
.referral-steps .step:nth-child(3) {
    border-color: rgba(0,84,166,0.6) !important;
    background: linear-gradient(180deg, rgba(0,84,166,0.15) 0%, rgba(0,0,0,0.4) 100%) !important;
}