/* ══════════════════════════════════════════════════════
   TIENDA ERP - LANDING PAGE STYLESHEET (DIVI THEME AESTHETICS)
   ══════════════════════════════════════════════════════ */

:root {
    /* Color Palette (Cooler Themes) */
    --primary: #ea580c;       /* Naranja Marca */
    --primary-hover: #c2410c;
    --primary-light: #f0f7ff;  /* Azul claro frío */
    --orange-light: #fff7ed;   /* Naranja claro cálido */
    --orange-gradient: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    --secondary: #14a34a;     /* Verde Éxito / WhatsApp */
    --secondary-hover: #15803d;
    --bg-main: #f8fafc;       /* Slate-50 frío */
    --bg-alt: #f1f5f9;        /* Slate-100 frío */
    --bg-dark: #0f172a;       /* Slate-900 azul profundo */
    --text-main: #1e293b;     /* Slate-800 */
    --text-muted: #475569;    /* Slate-600 */
    --text-light: #94a3b8;    /* Slate-400 */
    --border: #e2e8f0;        /* Slate-200 */
    --shadow-sm: 0 4px 10px rgba(59, 130, 246, 0.03);
    --shadow-md: 0 10px 30px rgba(59, 130, 246, 0.06);
    --shadow-lg: 0 20px 50px rgba(59, 130, 246, 0.1);
}

/* ── Reset & General ───────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-bold { font-weight: 800; }
.text-uppercase { text-transform: uppercase; }
.w-full { width: 100%; }

/* ── Typography & Headings ────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: #ffffff;
}

.text-light {
    color: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.text-white .section-title {
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

.text-light .section-subtitle {
    color: var(--text-light);
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.25);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 163, 74, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Navigation Header ──────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 252, 248, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.logo-accent {
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ── Hero Section ───────────────────────────────────── */
.hero-section {
    padding: 180px 0 140px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(234, 88, 12, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Divi Slant / Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Hero Image with 3D slant */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 540px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
    padding: 6px;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.08);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.22);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover .hero-img {
    transform: scale(1.04);
}

/* ── Grid Layouts ──────────────────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ── Benefit Cards ─────────────────────────────────── */
.benefit-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.bg-primary-100 { background-color: var(--primary-light); }
.bg-green-100 { background-color: #e8f5e9; }
.bg-blue-100 { background-color: #e3f2fd; }

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Modules Rows (Visual Layouts) ────────────────── */
.module-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.module-row:last-child {
    margin-bottom: 0;
}

.module-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.module-row.reverse .module-content {
    grid-column: 2;
}

.module-row.reverse .module-visual {
    grid-column: 1;
    grid-row: 1;
}

.module-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(234, 88, 12, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.module-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.module-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.9375rem;
}

.step-list li span {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-list li strong {
    color: var(--text-main);
}

.module-visual {
    display: flex;
    justify-content: center;
}

/* Feature Single Image Container */
.feature-img-container {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 6px;
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-img-container:hover {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.module-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-img-container:hover .module-img {
    transform: scale(1.05);
}

/* Feature Double Image Container (Overlap effect) */
.feature-double-img-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 320px;
}

.feature-double-img-container .module-img-small {
    position: absolute;
    width: 75%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
    padding: 4px;
}

.feature-double-img-container .module-img-small:first-child {
    top: 10px;
    left: 10px;
    z-index: 10;
}

.feature-double-img-container .module-img-small:last-child {
    bottom: 10px;
    right: 10px;
    z-index: 20;
}

.feature-double-img-container:hover .module-img-small:first-child {
    transform: translate(-25px, -20px) scale(1.08);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.18);
    z-index: 30;
}

.feature-double-img-container:hover .module-img-small:last-child {
    transform: translate(25px, 20px) scale(1.08);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.18);
}

/* ── Reports Grid Section ─────────────────────────── */
.reports-grid {
    gap: 20px;
}

.report-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.report-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.08);
    border-color: var(--primary);
    background: linear-gradient(to bottom right, #ffffff, var(--orange-light));
}

.report-box h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--primary);
}

.report-box p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Technical Specs Section ──────────────────────── */
.tech-grid {
    gap: 48px;
}

.tech-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 40px;
}

.text-primary-400 {
    color: #f97316;
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.tech-card ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-card li {
    font-size: 0.9375rem;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.tech-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1;
}

.tech-card li strong {
    color: #ffffff;
}

/* ── Contact Section ────────────────────────────────── */
.contact-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.max-w-lg {
    max-width: 600px;
}

.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.08);
}

/* ── Footer ────────────────────────────────────────── */
.footer-area {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Floating Telegram Button (Pulsing Effect) ────── */
.telegram-float-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background-color: #0088cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.telegram-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.6);
}

/* Pulse Keyframes */
@keyframes telegram-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 136, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
    }
}

.telegram-float-btn {
    animation: telegram-pulse 2s infinite;
}

/* ── Responsive Queries ────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-graphic {
        order: -1;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-row, .module-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .module-row.reverse .module-content {
        grid-column: 1;
    }

    .step-list {
        align-items: center;
    }

    .step-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none; /* Mobile layout toggleable in script */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 24px;
    }

    .telegram-float-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

/* ── Custom Utilities, Animations and Interactive Components ── */
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.mt-12 {
    margin-top: 48px !important;
}

/* Background Grid Pattern (fading depth mask + slow drift) */
.bg-grid-pattern {
    background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, #000 35%, transparent 100%);
    mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, #000 35%, transparent 100%);
    animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
    0% { background-position: 0 0; }
    100% { background-position: 64px 64px; }
}

/* Ambient Glowing Blobs Animation */
@keyframes blob-float {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.12);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.animate-blob {
    animation: blob-float 15s infinite ease-in-out;
}

.animation-delay-2000 {
    animation-delay: 3s;
}

.animation-delay-4000 {
    animation-delay: 6s;
}

/* Hamburger Icon Transformation into 'X' */
.mobile-menu-toggle .bar.rotate-down {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-toggle .bar.fade-out {
    opacity: 0;
}

.mobile-menu-toggle .bar.rotate-up {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu Fullscreen Drawer Overrides */
@media (max-width: 768px) {
    .header.nav-open {
        height: 100vh !important;
        background-color: var(--bg-main) !important;
        overflow-y: auto;
    }
    
    .header.nav-open nav {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        gap: 32px;
        padding: 40px 24px;
        background-color: var(--bg-main);
        z-index: 999;
    }
    
    .header.nav-open nav a {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
    }
}

/* FAQ Accordion Styling */
.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.faq-active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.06);
}
.faq-content {
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon {
    transition: transform 0.3s ease;
}

/* Range Inputs Premium Aesthetics */
input[type="range"]::-webkit-slider-thumb {
    transition: transform 0.1s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.3);
}

/* ── High Contrast Dark Sections Override ── */
.bg-dark-contrast {
    background-color: var(--bg-dark) !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-dark-contrast h2,
.bg-dark-contrast h3,
.bg-dark-contrast h4 {
    color: #ffffff !important;
}

.bg-dark-contrast p,
.bg-dark-contrast li p {
    color: var(--text-light) !important;
}

.bg-dark-contrast li strong {
    color: #ffffff !important;
}

.bg-dark-contrast .feature-img-container,
.bg-dark-contrast .module-img-small {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
}

/* Glassmorphic Form on Dark background override */
#contacto.bg-dark-contrast .bg-app-card {
    background-color: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

#contacto.bg-dark-contrast .form-input {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

#contacto.bg-dark-contrast .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

#contacto.bg-dark-contrast .form-input:focus {
    border-color: var(--primary) !important;
    background-color: rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.15) !important;
}

/* ── Section Numbers (Watermarks) Enhancements ── */
#modulos .text-primary-500\/20 {
    color: rgba(249, 115, 22, 0.28) !important;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.12);
    letter-spacing: -0.04em;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#modulos .grid:hover .text-primary-500\/20 {
    color: rgba(249, 115, 22, 0.55) !important;
    text-shadow: 0 0 25px rgba(249, 115, 22, 0.35);
    transform: translateY(-3px) scale(1.06);
}

/* ══════════════════════════════════════════════════════
   INTERACTIVE MOTION SYSTEM (shimmer / floatY / rise / pulse-dot)
   ══════════════════════════════════════════════════════ */

/* ── Shimmer sweep (badges, highlighted labels) ────── */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: skewX(-20deg);
    animation: shimmer-sweep 3.2s ease-in-out infinite;
}

@keyframes shimmer-sweep {
    0% { left: -150%; }
    55%, 100% { left: 150%; }
}

/* ── FloatY ambient motion (hero visual, imagery) ──── */
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

.float-y {
    animation: floatY 4.5s ease-in-out infinite;
}

/* ── Rise entrance (badges/pills revealed on load) ─── */
@keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.rise {
    animation: rise 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Pulse dot (live/online status indicator) ──────── */
.pulse-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse-dot-anim 1.8s infinite;
}

@keyframes pulse-dot-anim {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ══════════════════════════════════════════════════════
   STATS / LIVE COUNTERS SECTION (GSAP + ScrollTrigger)
   ══════════════════════════════════════════════════════ */
.stat-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(249, 115, 22, 0.4);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
    color: #ffffff;
}

@media (max-width: 640px) {
    .stat-number {
        font-size: 2rem;
    }
}

/* ══════════════════════════════════════════════════════
   FEATURE SWAP PANEL (GSAP crossfade)
   ══════════════════════════════════════════════════════ */
.feature-swap-panel {
    position: relative;
    min-height: 190px;
}

@media (max-width: 640px) {
    .feature-swap-panel {
        min-height: 240px;
    }
}

.feature-swap-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.feature-swap-slide.active {
    pointer-events: auto;
}

.feature-swap-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.feature-swap-dot.active {
    width: 26px;
    border-radius: 4px;
    background-color: var(--primary);
}

/* ══════════════════════════════════════════════════════
   HERO AMBIENT BACKDROP (radial glows + particles + scroll indicator)
   ══════════════════════════════════════════════════════ */

/* Animated aurora gradient: cool blues/indigo with a desaturated "cool orange" accent */
.hero-aurora-bg {
    background: linear-gradient(125deg, #e0f2fe 0%, #dbeafe 22%, #c7d2fe 45%, #fbcfa0 68%, #bae6fd 100%);
    background-size: 220% 220%;
    animation: aurora-shift 16s ease-in-out infinite;
}

@keyframes aurora-shift {
    0% { background-position: 0% 30%; }
    50% { background-position: 100% 70%; }
    100% { background-position: 0% 30%; }
}

.radial-glow {
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    animation: glow-pulse 9s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.18); }
}

#particlesCanvas {
    opacity: 0.7;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    70% { opacity: 0.4; }
    100% { transform: translateY(10px); opacity: 0; }
}

.scroll-wheel-dot {
    animation: scroll-wheel 1.6s ease-in-out infinite;
}



