@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #a2ff00;
    --primary-dim: rgba(162, 255, 0, 0.15);
    --secondary: #7b2cbf;
    --secondary-glow: rgba(123, 44, 191, 0.5);
    --bg-color: #060608;
    --bg-alt: #0a0a0e;
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.05);
    --card-border-radius: 20px;
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Background Gradients & Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* Base Utility Classes */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.bg-darker {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
    position: relative;
}

/* Premium Gradients */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-dim);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 10px 30px var(--primary-dim);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(162, 255, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-dim);
}

/* Modern Pill Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 15px 30px;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    transition: var(--transition-bounce);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition-bounce);
}

.nav-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1.5);
}

.btn-nav {
    padding: 10px 24px;
    background: rgba(162, 255, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-bounce);
}

.btn-nav:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(162, 255, 0, 0.3);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: #fff;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(162, 255, 0, 0.05) 0%, transparent 60%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
}

.hero-overlay {
    display: none; /* removed overlay to show pure dark gradient */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: shineBadge 4s infinite;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    animation: fadeInUp 1s 0.2s both cubic-bezier(0.16, 1, 0.3, 1);
}

.typing-container {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 30px;
    animation: fadeInUp 1s 0.4s both cubic-bezier(0.16, 1, 0.3, 1);
}

.typing-text {
    color: var(--primary);
    font-weight: 700;
}

.typing-cursor {
    color: var(--primary);
    animation: blinkCursor 0.8s infinite;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s 0.6s both cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s 0.8s both cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shineBadge {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.grid-card-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Premium Glass Cards */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--card-border-radius);
    transition: var(--transition-bounce);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(162, 255, 0, 0.3);
    background: var(--glass-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--card-border-radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(120px);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    opacity: 0;
    transition: 0.6s ease;
    z-index: -2;
}

.card:hover::after {
    opacity: 0.15;
}

/* Services */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(162, 255, 0, 0.1);
    border: 1px solid rgba(162, 255, 0, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition-bounce);
}

.card:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: #000;
    box-shadow: 0 10px 20px rgba(162, 255, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.highlighted-card {
    border-color: rgba(162, 255, 0, 0.4);
    background: linear-gradient(180deg, rgba(162, 255, 0, 0.05) 0%, transparent 100%);
}

.highlighted-card::after {
    content: 'Recomendado';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1;
    filter: none;
    width: auto;
    height: auto;
    z-index: 5;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-item {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: var(--card-border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
}

.process-item:hover {
    background: rgba(255,255,255,0.02);
    border-color: rgba(162,255,0,0.3);
    transform: translateY(-5px);
}

.process-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: rgba(162, 255, 0, 0.1);
    margin-bottom: 10px;
    line-height: 1;
    transition: 0.4s;
}

.process-item:hover .process-number {
    color: rgba(162, 255, 0, 0.8);
    transform: scale(1.1);
}

.process-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.process-item p {
    color: var(--text-muted);
}

/* Projects & Ecosystem */
.project-card {
    border-radius: var(--card-border-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    transition: var(--transition-bounce);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.8;
}

.project-card:hover {
    border-color: rgba(162, 255, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transform: translateY(-8px);
}

.project-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.project-info {
    position: absolute;
    inset: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: 0.4s 0.1s;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    transform: translateY(10px);
    transition: 0.4s 0.2s;
    margin-bottom: 15px;
}

.project-card:hover h3, .project-card:hover p, .project-card:hover .link-arrow {
    transform: translateY(0);
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: 0.4s 0.3s;
}

.link-arrow i {
    transition: 0.3s;
}

.project-card:hover .link-arrow i {
    transform: translateX(5px);
}

/* Testimonials */
.testimonial-card {
    padding: 40px;
}

.stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    gap: 5px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.client-info strong {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #030304;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .typing-container { font-size: 2rem; }
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
        padding: 15px 20px;
        border-left: none;
        border-right: none;
        border-top: none;
        background: rgba(10, 10, 15, 0.9);
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        overflow: hidden;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu.active {
        height: calc(100vh - 60px);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .typing-container {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col p {
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .btn-outline {
        margin-left: 0;
    }
}

/* --- Premium Centralized Hero --- */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background-color: var(--bg-color);
    overflow: hidden;
    z-index: 1;
}

/* 3D Glowing Meshes */
.hero-glow-1, .hero-glow-2, .hero-glow-3 {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    animation: floatingMesh 10s ease-in-out infinite alternate;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(162, 255, 0, 0.18);
    top: -10%;
    left: -10%;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(123, 44, 191, 0.25);
    bottom: -10%;
    right: -10%;
    animation-delay: -3s;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    background: rgba(0, 150, 255, 0.12);
    top: 40%;
    left: 40%;
    animation-delay: -5s;
}

/* Abstract Floating Shapes */
.floating-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    transform: rotate(45deg);
    animation: floatShape 8s infinite alternate ease-in-out;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 10%;
    border-radius: 50%;
    animation: floatShape 6s infinite alternate-reverse ease-in-out;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 25%;
    border-radius: 30px;
    transform: rotate(-15deg);
    animation: floatShape 9s infinite alternate ease-in-out;
}

/* Glass Presentation Box */
.hero-container-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-glass-box {
    background: rgba(10, 10, 14, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 80px 40px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpFade 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-glass-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(162,255,0,0.4), rgba(123,44,191,0.4), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.trust-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(162, 255, 0, 0.05);
    border: 1px solid rgba(162, 255, 0, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: inset 0 0 20px rgba(162, 255, 0, 0.05);
    position: relative;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulseGlow 2s infinite;
}

.hero-glass-box h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hover-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-glass-box .typing-container-inline {
    font-size: 3rem;
    color: #f8f9fa;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    display: inline-block;
}

.hero-glass-box p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-btns-premium {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #b8ff33 100%);
    color: #050505;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(162, 255, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(162, 255, 0, 0.5);
}

.btn-premium:hover::after {
    left: 100%;
}

@keyframes slideUpFade {
    to { transform: translateY(0); opacity: 1; }
}
@keyframes floatingMesh {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.05); }
}
@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(10deg); }
}
@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(162, 255, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(162, 255, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(162, 255, 0, 0); }
}

@media (max-width: 1024px) {
    .hero-glass-box {
        padding: 60px 30px;
    }
    .hero-glass-box h1 {
        font-size: 3.8rem !important;
    }
}

@media (max-width: 768px) {
    .hero-glass-box {
        padding: 50px 20px;
        border-radius: 24px;
        width: 95%;
    }
    .hero-glass-box h1 {
        font-size: 2.8rem !important;
    }
    .hero-glass-box .typing-container {
        font-size: 1.6rem !important;
    }
    .hero-glass-box p {
        font-size: 1.1rem;
    }
    .hero-glow-1 { width: 300px; height: 300px; }
    .hero-glow-2 { width: 250px; height: 250px; }
    .btn-premium { width: 100%; }
}