
    /* 
       SISTEMA DE DISEÑO ELITE - AGENCIA DM WEBS
       COMPONENTE DE CHATBOT & SECCIONES DE AUTORIDAD
    */
    :root {
      --bg: #050505;
      --bg-card: #0a0a0a;
      --fg: #ffffff;
      --fg-muted: #a0a0a0;
      --accent: #00A8E8;
      --accent-glow: rgba(0, 168, 232, 0.4);
      --border: rgba(255, 255, 255, 0.08);
      --glass: rgba(255, 255, 255, 0.04);
      --gradient-blue: linear-gradient(135deg, #00A8E8 0%, #005FA3 100%);
      --smooth: cubic-bezier(0.2, 1, 0.3, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--fg); overflow-x: hidden; line-height: 1.6; }

    /* Custom Cursor (Safe Desktop Only) */
    .cursor { width: 8px; height: 8px; background: white; border-radius: 50%; position: fixed; z-index: 10001; pointer-events: none; mix-blend-mode: difference; display: none; }
    .cursor-trail { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; position: fixed; z-index: 10000; pointer-events: none; transition: transform 0.1s; display: none; }
    @media (min-width: 1025px) { .cursor, .cursor-trail { display: block; } }

    /* Background Orbs */
    .bg-mesh { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
    .mesh-orb { position: absolute; filter: blur(120px); border-radius: 50%; animation: floatOrb 20s infinite alternate; }
    .mesh-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -100px; opacity: 0.2; }
    .mesh-2 { width: 400px; height: 400px; background: #003057; bottom: -100px; left: -100px; opacity: 0.15; }
    @keyframes floatOrb { 0% { transform: translate(0,0); } 100% { transform: translate(100px, 100px); } }

    /* NAVIGATION (Senior Logic) */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 2000; height: 80px; display: flex; align-items: center; transition: 0.4s var(--smooth); padding: 0 5%; }
    .nav.scrolled { height: 75px; background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
    .nav-inner { width: 100%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .nav-logo { height: 40px; display: flex; align-items: center; text-decoration: none; }
    .logo-svg { height: 100%; width: auto; filter: drop-shadow(0 0 10px var(--accent-glow)); }
    .logo-img { height: 38px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(0,168,232,0.3)); transition: 0.3s; }
    .nav-logo:hover .logo-img { filter: drop-shadow(0 4px 20px rgba(0,168,232,0.5)); transform: scale(1.03); }
    .nav-links { display: flex; gap: 3rem; list-style: none; }
    .nav-links a { color: var(--fg-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
    .nav-links a:hover { color: white; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
    .nav-cta { padding: 0.75rem 1.6rem; background: var(--accent); color: white; border-radius: 100px; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: 0.4s; }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow); }

    .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; cursor: pointer; padding: 8px 10px; z-index: 3000; transition: 0.3s; }
    .mobile-toggle:hover { background: rgba(255,255,255,0.1); }
    .mobile-toggle span { width: 20px; height: 2px; background: white; border-radius: 2px; transition: 0.4s var(--smooth); display: block; }
    .mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu { position: fixed; inset: 0; background: rgba(3, 3, 3, 0.98); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); z-index: 2500; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s var(--smooth); }
    .mobile-menu.active { opacity: 1; visibility: visible; }
    .mobile-close { position: absolute; top: 25px; right: 25px; background: var(--glass); border: 1px solid var(--border); color: white; font-size: 2.2rem; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; z-index: 3100; }
    .mobile-menu-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 2.5rem; }
    .mobile-menu-links a { color: white; text-decoration: none; font-size: 1.6rem; font-weight: 800; transition: 0.3s; }
    .mobile-menu-links a:hover { color: var(--accent); }
    
    .mobile-cta-menu { 
        margin-top: 2.5rem; 
        padding: 1rem 2rem; 
        background: var(--gradient-blue); 
        color: white !important; 
        border-radius: 100px; 
        font-weight: 800; 
        text-decoration: none; 
        font-size: 1rem; 
        text-transform: uppercase;
        letter-spacing: 1.5px;
        box-shadow: 0 15px 40px rgba(0, 168, 232, 0.4);
        display: inline-block;
        transition: 0.4s var(--smooth);
    }
    .mobile-cta-menu:active { transform: scale(0.95); }
    section { padding: 10rem 5%; position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; }
    .section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4em; color: var(--accent); margin-bottom: 1.5rem; display: block; }
    .section-title { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 800; line-height: 1.1; margin-bottom: 4rem; letter-spacing: -0.04em; }

    /* HERO MODULE */
    .hero { min-height: 100vh; display: flex; align-items: center; padding-top: 7rem; }
    .hero-inner { display: flex; align-items: center; gap: 4rem; width: 100%; justify-content: space-between; }
    .hero-content { flex: 1.2; }
    .hero-visual { flex: 0.8; display: flex; justify-content: flex-end; }
    .hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 0.6rem 1.25rem; background: var(--glass); border: 1px solid var(--border); border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-bottom: 2.5rem; color: #bababa; }
    .hero-badge .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }
    .hero-title .accent { background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .hero-tagline { font-size: 1.25rem; color: var(--fg-muted); margin-bottom: 4rem; max-width: 600px; font-weight: 300; line-height: 1.6; }
    .btn { padding: 1.2rem 3rem; border-radius: 100px; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: 0.4s var(--smooth); display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
    .btn-primary { background: var(--accent); color: white; box-shadow: 0 20px 40px rgba(0, 168, 232, 0.2); }
    .btn-secondary { border: 1px solid var(--border); color: white; backdrop-filter: blur(10px); }
    .hero-buttons { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
    .hero-mockup { width: 110%; height: auto; transform: perspective(1000px) rotateY(-10deg); filter: drop-shadow(0 50px 100px rgba(0,0,0,0.8)); transition: 0.8s var(--smooth); }

    /* PAIN GRID */
    .pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
    .pain-card { padding: 4rem 3rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 32px; transition: 0.5s var(--smooth); }
    .pain-card:hover { transform: translateY(-15px); border-color: var(--accent); }
    .pain-icon { font-size: 3rem; margin-bottom: 2rem; display: block; }

    /* SOLUTION MODULE */
    .solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
    .benefit-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
    .benefit-icon { background: var(--accent-dim); padding: 1rem; border-radius: 18px; color: var(--accent); font-size: 1.5rem; border: 1px solid rgba(0, 168, 232, 0.2); }

    /* RESULTS PORTFOLIO */
    .results-grid { display: flex; flex-direction: column; gap: 5rem; width: 100%; }
    .result-card { display: flex; background: var(--bg-card); border: 1px solid var(--border); border-radius: 40px; overflow: hidden; transition: 0.6s var(--smooth); width: 100%; min-height: 450px; }
    .result-card:hover { border-color: var(--accent); transform: scale(1.02); }
    .result-visual { flex: 0.35; background: #000; padding: 1.8rem; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border); overflow: hidden; }
    .result-info { flex: 0.65; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
    .result-img-full { width: 70%; height: auto; border-radius: 12px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)); transition: transform 0.6s var(--smooth); }
    .result-card:hover .result-img-full { transform: scale(1.1) rotate(1deg); }
    .result-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); background: rgba(0,168,232,0.08); border: 1px solid rgba(0,168,232,0.2); border-radius: 100px; padding: 0.3rem 0.8rem; margin-bottom: 0.8rem; align-self: flex-start; width: fit-content; }
    .result-info h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.6rem; color: white; line-height: 1.2; }
    .result-info p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

    /* Master Buttons */
    .btn { 
        padding: 1.1rem 2.6rem !important; 
        border-radius: 100px !important; 
        font-weight: 800 !important; 
        text-decoration: none !important; 
        font-size: 0.9rem !important; 
        transition: 0.4s var(--smooth) !important; 
        display: inline-flex !important; 
        align-items: center; 
        justify-content: center; 
        gap: 12px;
        cursor: pointer;
        border: none !important;
        text-align: center;
    }
    .btn-primary { 
        background: var(--accent) !important; 
        color: white !important; 
        box-shadow: 0 20px 40px rgba(0, 168, 232, 0.3) !important; 
    }
    .btn-primary:hover { transform: translateY(-5px); box-shadow: 0 30px 60px var(--accent-glow) !important; }
    
    .btn-secondary { 
        background: rgba(255, 255, 255, 0.05) !important; 
        border: 1px solid var(--border) !important; 
        color: white !important; 
        backdrop-filter: blur(10px); 
    }
    .btn-secondary:hover { background: rgba(255, 255, 255, 0.1) !important; color: white !important; }

    /* Results Project Links (Compact Pills) */
    .result-info .result-link { 
        margin-top: 1rem !important; 
        padding: 0.6rem 1.4rem !important; 
        background: rgba(0, 168, 232, 0.1) !important; 
        border: 1px solid rgba(0, 168, 232, 0.2) !important; 
        border-radius: 100px !important; 
        color: var(--accent) !important; 
        text-decoration: none !important; 
        font-weight: 700 !important; 
        display: inline-flex !important; 
        align-items: center; 
        align-self: flex-start;
        transition: 0.3s;
    }
    .result-info .result-link:hover { background: var(--accent) !important; color: white !important; transform: translateY(-3px); }

    /* LIKE BUTTON ENGINE */
    .result-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; width: 100%; }
    .like-btn { background: transparent; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--fg-muted); transition: 0.3s var(--smooth); padding: 5px 12px; border-radius: 100px; }
    .like-btn .heart-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), fill 0.4s; }
    .like-btn:hover { background: rgba(255, 59, 48, 0.1); color: #ff3b30; }
    .like-btn.liked { color: #ff3b30; }
    .like-btn.liked .heart-icon { fill: #ff3b30; stroke: #ff3b30; transform: scale(1.1); }
    .like-count { font-size: 0.85rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }

    @keyframes heartPop {
        0% { transform: scale(1); }
        50% { transform: scale(1.4); }
        100% { transform: scale(1.1); }
    }
    .like-btn.liked .heart-icon { animation: heartPop 0.4s forwards; }

    /* AUTHORITY SECTION (Authority Logic) */
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 4rem; }
    .stat-card { text-align: center; padding: 4rem 2rem; border-radius: 32px; background: var(--glass); border: 1px solid var(--border); transition: 0.5s; display: flex; flex-direction: column; gap: 10px; }
    .stat-card:hover { transform: translateY(-10px); border-color: var(--accent); background: rgba(0, 168, 232, 0.05); }
    .stat-value { font-size: clamp(2.2rem, 1.5vw, 2rem); font-weight: 800; color: white; display: block; margin-bottom: 0.5rem; line-height: 1; word-break: break-word; }
    .stat-label { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; margin-bottom: 1rem; display: block; }
    .stat-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; max-width: 250px; margin: 0 auto; }

    /* FAQ SECTION (Strategic Consultation) */
    .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
    .faq-item { padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; transition: 0.3s; }
    .faq-item:hover { border-color: var(--accent); }
    .faq-item h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--accent); }
    .faq-item p { font-size: 0.95rem; color: var(--fg-muted); }

    /* OFFER MODULE */
    .offer-card { padding: 7rem 4rem; background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%); border: 1px solid var(--accent); border-radius: 48px; text-align: center; box-shadow: 0 40px 100px rgba(0, 168, 232, 0.15); }
    .urgency-badge { color: #ff4444; font-weight: 800; letter-spacing: 2px; margin-top: 3rem; display: block; font-size: 0.85rem; }

    /* CHATBOT TOGGLE - Premium Pill Design */
    .chatbot-toggle {
        position: fixed;
        bottom: 28px;
        right: 28px;
        height: 56px;
        padding: 0 1.4rem;
        background: var(--gradient-blue);
        border-radius: 100px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 2500;
        cursor: pointer;
        transition: 0.4s var(--smooth);
        box-shadow: 0 8px 30px rgba(0, 168, 232, 0.45), 0 2px 8px rgba(0,0,0,0.4);
        animation: chatPulse 3.5s infinite;
        border: 1px solid rgba(255,255,255,0.15);
    }
    .chatbot-toggle-label {
        color: white;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        white-space: nowrap;
        letter-spacing: 0.01em;
    }
    @keyframes chatPulse {
        0%, 100% { box-shadow: 0 8px 30px rgba(0, 168, 232, 0.45), 0 2px 8px rgba(0,0,0,0.4); }
        50% { box-shadow: 0 12px 40px rgba(0, 168, 232, 0.7), 0 2px 8px rgba(0,0,0,0.4); transform: translateY(-2px); }
    }
    .chatbot-toggle svg { width: 22px; color: white; flex-shrink: 0; transition: 0.3s; }
    .chatbot-toggle:hover { animation: none; transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 48px rgba(0, 168, 232, 0.6); }
    @media (max-width: 480px) {
        .chatbot-toggle { height: 50px; padding: 0 1.1rem; gap: 8px; }
        .chatbot-toggle-label { font-size: 0.78rem; }
        .chatbot-toggle svg { width: 18px; }
    }

    .chatbot-window {
        position: fixed;
        bottom: 90px;
        right: 28px;
        width: 460px;
        height: auto;
        max-height: calc(100vh - 110px);
        min-height: 360px;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 28px;
        z-index: 2501;
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.97);
        transition: 0.45s var(--smooth);
        box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,168,232,0.08);
        overflow: hidden;
    }
    .chatbot-window.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

    /* CHATBOT: Full-screen on mobile */
    @media (max-width: 600px) {
        .chatbot-window {
            bottom: 0 !important;
            right: 0 !important;
            left: 0 !important;
            top: 0 !important;
            width: 100% !important;
            height: 100% !important;
            border-radius: 0 !important;
            max-height: none !important;
        }
        .chatbot-window .chatbot-header { border-radius: 0 !important; }
        .chatbot-toggle { bottom: 16px; right: 16px; }
    }

    .chatbot-header { 
        padding: 1.25rem 1.5rem; 
        background: linear-gradient(135deg, rgba(0,168,232,0.12) 0%, rgba(0,60,100,0.15) 100%);
        border-bottom: 1px solid rgba(255,255,255,0.08); 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        border-radius: 28px 28px 0 0; 
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    .chatbot-close { 
        background: rgba(255,255,255,0.07); 
        border: 1px solid rgba(255,255,255,0.12); 
        color: white; 
        font-size: 1.1rem; 
        width: 34px; 
        height: 34px; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        cursor: pointer; 
        opacity: 0.8; 
        transition: 0.3s; 
        flex-shrink: 0;
        line-height: 1;
    }
    .chatbot-close:hover { opacity: 1; background: rgba(255,80,80,0.25); border-color: rgba(255,80,80,0.4); color: #ff5050; }

    .chatbot-messages { flex: 1; min-height: 0; padding: 1.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.25rem; scroll-behavior: smooth; }

    .message { display: flex; gap: 12px; max-width: 85%; }
    .bot { align-self: flex-start; }
    .user { align-self: flex-end; flex-direction: row-reverse; }

    .message-avatar { width: 32px; height: 32px; border-radius: 8px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
    .message-bubble { padding: 1rem 1.25rem; border-radius: 20px; font-size: 0.95rem; line-height: 1.5; position: relative; }
    .bot .message-bubble { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-bottom-left-radius: 2px; }
    .user .message-bubble { background: var(--accent); color: white; font-weight: 600; border-bottom-right-radius: 2px; }
    .message-time { font-size: 0.7rem; color: #555; margin-top: 5px; }
    
    .quick-replies { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; margin-left: 44px; }
    .quick-reply-btn { 
        padding: 0.75rem 1.4rem; 
        border-radius: 100px; 
        background: rgba(255, 255, 255, 0.03); 
        border: 1px solid var(--border); 
        color: white; 
        font-size: 0.85rem; 
        font-weight: 600; 
        cursor: pointer; 
        transition: 0.4s var(--smooth); 
    }
    .quick-reply-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
    
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 1.1rem 1.8rem;
        background: var(--gradient-blue);
        color: white !important;
        text-decoration: none;
        border-radius: 100px;
        font-weight: 800;
        font-size: 0.95rem;
        margin-top: 15px;
        box-shadow: 0 15px 40px rgba(0, 168, 232, 0.3);
        transition: 0.4s var(--smooth);
    }
    .cta-button:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 168, 232, 0.5); }
    .cta-button svg { width: 22px; height: 22px; }
    .typing-indicator span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: typing 1s infinite alternate; }
    .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
    .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes typing { 0% { opacity: 0.3; transform: translateY(0); } 100% { opacity: 1; transform: translateY(-3px); } }
    
    .chatbot-input-area { padding: 1.2rem; background: rgba(0,0,0,0.3); border-top: 1px solid var(--border); display: flex; align-items: flex-end; gap: 10px; }
    #chatbotInput { flex: 1; background: transparent; border: none; color: white; font-family: inherit; font-size: 0.95rem; resize: none; overflow-y: auto; max-height: 120px; outline: none; padding: 5px; }

    /* RESPONSIVE DESIGN - MASTER */
    @media (max-width: 1100px) {
        .btn { padding: 0.9rem 1.8rem !important; font-size: 0.85rem !important; }
        .nav-links { display: none !important; }
        .nav { background: rgba(5,5,5,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0 2%; }
        .nav-inner { justify-content: space-around !important; }
        .nav-cta { 
            display: inline-flex !important; 
            padding: 0.55rem 1rem !important; 
            font-size: 0.72rem !important; 
            margin: 0 !important;
            white-space: nowrap;
        }
        .mobile-toggle { display: flex !important; margin-right: 0 !important; }
        .logo-img { height: 30px !important; }
        .hero-inner { flex-direction: column; text-align: center; gap: 3rem; }
        .hero-buttons { justify-content: center; gap: 1rem; }
        .hero-mockup { transform: none; width: 100%; max-width: 500px; margin: 0 auto; }
        .solution-grid { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
        .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
        .stat-card { padding: 3rem 1.5rem; }
        .stat-value { font-size: 2.5rem !important; }
        .faq-grid { grid-template-columns: 1fr; }
        .result-card { flex-direction: column; min-height: auto; }
        .result-visual { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; }
        .result-info { padding: 1.8rem 1.2rem; text-align: center; align-items: center; }
        .result-info .result-link, .result-info .result-badge { align-self: center !important; }
        /* chatbot handled by dedicated media queries above */
    }

    @media (max-width: 480px) {
        .nav-cta { padding: 0.5rem 0.8rem !important; font-size: 0.65rem !important; margin-right: 0 !important; }
        .logo-img { height: 26px !important; }
    }

    /* ELITE FOOTER ENGINE */
    .elite-footer { background: #030303; padding: 10rem 5% 5rem; border-top: 1px solid var(--border); position: relative; z-index: 50; }
    .footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 5rem; margin-bottom: 8rem; }
    .footer-col h4 { font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2.5rem; color: #bababa; }
    .footer-desc { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.7; max-width: 320px; }
    .footer-links, .footer-info { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
    .footer-links a { color: var(--fg-muted); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
    .footer-links a:hover { color: white; transform: translateX(5px); display: inline-block; }
    .footer-info li { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.5; }
    .footer-info strong { color: white; display: block; margin-bottom: 3px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

    /* System Status Engine */
    .system-status { display: flex; align-items: center; gap: 12px; margin-top: 2.5rem; padding: 1rem 1.5rem; background: rgba(0, 255, 100, 0.03); border: 1px solid rgba(0, 255, 100, 0.1); border-radius: 12px; width: fit-content; }
    .status-dot { width: 8px; height: 8px; background: #00ff64; border-radius: 50%; box-shadow: 0 0 10px #00ff64; animation: statusFade 2s infinite; }
    @keyframes statusFade { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } }
    .status-text { font-size: 0.75rem; font-weight: 700; color: #00ff64; text-transform: uppercase; letter-spacing: 1px; }

    .footer-cta-btn { padding: 1.1rem 2rem; background: var(--gradient-blue); color: white; border-radius: 100px; font-weight: 800; text-decoration: none; font-size: 0.9rem; display: inline-block; box-shadow: 0 15px 40px rgba(0, 168, 232, 0.3); transition: 0.4s; }
    .footer-cta-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 168, 232, 0.5); }

    .footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 4rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 0.85rem; color: #555; }
    .footer-legal { display: flex; gap: 3rem; }
    .footer-legal a { font-size: 0.85rem; color: #555; text-decoration: none; transition: 0.3s; }
    .footer-legal a:hover { color: white; }

    @media (max-width: 1100px) {
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; text-align: left; }
        .footer-bottom { flex-direction: column; gap: 3rem; text-align: center; }
        .footer-legal { justify-content: center; }
    }
    
    .footer-bottom-info { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-contact-links { display: flex; gap: 1rem; font-size: 0.85rem; color: #555; }
    .footer-contact-links a { color: #888; text-decoration: none; transition: 0.3s; }
    .footer-contact-links a:hover { color: var(--accent); }
    .footer-contact-links .sep { color: #333; }

    .footer-social { display: flex; gap: 1.5rem; }
    .social-link { color: #555; transition: 0.4s var(--smooth); display: flex; align-items: center; justify-content: center; }
    .social-link svg { width: 22px; height: 22px; }
    .social-link:hover { color: var(--accent); transform: translateY(-3px); filter: drop-shadow(0 0 8px var(--accent-glow)); }

    @media (max-width: 768px) {
        .footer-bottom { align-items: center; }
        .footer-contact-links { justify-content: center; flex-wrap: wrap; }
    }
    @media (max-width: 600px) {
        .footer-grid { grid-template-columns: 1fr; text-align: center; }
        .elite-footer .nav-logo { display: flex !important; justify-content: center; }
        .footer-desc, .system-status { margin-left: auto; margin-right: auto; }
        .footer-legal { flex-direction: column; gap: 1rem; }
    }

    /* REVEAL (Ultra-Stable High-Performance Visibility) */
    .reveal { 
        opacity: 0; /* Changed to 0 only for observing, but in app.js I need to ensure it works */
        transform: translateY(30px); 
        transition: 1.2s var(--smooth); 
        backface-visibility: hidden;
    }
    .reveal.active { opacity: 1 !important; transform: translateY(0); }
    
    /* Fallback for visibility (If JS fails or for instant load) */
    @media (max-width: 1024px) { .reveal { opacity: 1 !important; transform: none !important; } }
