/* ==========================================================================
   SYSTEM DESIGN SYSTEM & RESET
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-navy: #050505;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    
    /* Text Palette */
    --text-light-primary: #f8fafc;
    --text-light-secondary: #94a3b8;
    --text-dark-primary: #0f172a;
    --text-dark-secondary: #475569;
    --text-muted: #64748b;
    
    /* Neon Accents & Gradients */
    --accent-cyan: #00f2fe;
    --accent-blue: #0072ff;
    --accent-violet: #8b5cf6;
    --accent-pink: #d946ef;
    --gradient-hero-btn: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-violet) 100%);
    
    /* UI Glass Elements */
    --glass-bg: rgba(15, 15, 15, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Fonts & Radii */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Utility Layouts */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px; /* Capsule shape matching the mockup buttons */
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-hero-btn);
    color: var(--text-light-primary);
    border: none;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light-primary);
    transform: translateY(-2px);
}

.btn-hero-primary {
    background: linear-gradient(#000000, #000000) padding-box,
                linear-gradient(135deg, var(--accent-violet), var(--accent-blue), var(--accent-cyan)) border-box;
    border: 2px solid transparent;
    color: var(--text-light-primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 50%, var(--accent-cyan) 100%);
}

/* ==========================================================================
   NAVIGATION NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.85)) drop-shadow(0 0 4px rgba(0, 242, 254, 0.4));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-light-primary);
    letter-spacing: -0.5px;
}

.logo-accent-l {
    color: var(--accent-cyan);
    font-weight: 700;
}

.logo-accent-ine {
    color: var(--accent-violet);
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none !important;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.special-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-new {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-violet));
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.4);
}

.btn-nav {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(139, 92, 246, 0.2));
    border-color: var(--accent-cyan);
    color: var(--text-light-primary);
}

.btn-nav::after {
    display: none;
}

/* ==========================================================================
   HERO SECTION (SPLIT TWO-COLUMNS W/ BUBBLE FRAME CLUSTER)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    filter: saturate(1.1) contrast(1.1) brightness(0.95);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 60%, var(--bg-darker) 100%),
        radial-gradient(circle at center, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}


.hero-radial-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.15) 0%, rgba(139, 92, 246, 0) 70%);
    top: 30%;
    right: 10%;
    pointer-events: none;
    z-index: 2;
}

/* Removed grid pattern as requested by user */
.hero-grid-pattern {
    display: none;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-left-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 114, 255, 0.12);
    border: 1px solid rgba(0, 114, 255, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--text-light-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light-secondary);
}

.stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 24px;
}

/* Overlapping bubble cluster grid */
.hero-right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.bubble-cluster-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.bubble-frame {
    position: absolute;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s;
    pointer-events: auto;
    --sphere-scale: 1;
    --halo-scale: 1;
}

.bubble-frame:hover {
    --sphere-scale: 1.08;
    --halo-scale: 1.05;
    z-index: 20 !important;
}

.bubble-sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: var(--bg-darker);
    z-index: 3;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, box-shadow 0.5s;
    transform: scale(var(--sphere-scale));
}

.bubble-frame:hover .bubble-sphere {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px var(--glow-bubble-hover);
}

.bubble-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bubble-frame:hover .bubble-img {
    transform: scale(1.08);
}

.bubble-glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 25%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2),
                inset -10px -10px 25px rgba(0, 0, 0, 0.8),
                inset 10px 10px 20px rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 4;
}

/* Anillos Orbitales Holográficos (Halos) */
.bubble-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

.bubble-halo.h-outer {
    width: 118%;
    height: 118%;
    border: 1px dashed var(--accent-bubble);
    box-shadow: 0 0 12px var(--glow-bubble), inset 0 0 12px var(--glow-bubble);
    animation: rotate-clockwise 18s linear infinite;
}

.bubble-halo.h-inner {
    width: 109%;
    height: 109%;
    border: 1.5px solid transparent;
    border-top-color: var(--accent-bubble);
    border-bottom-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 8px var(--glow-bubble);
    animation: rotate-counter 14s linear infinite;
}

.bubble-frame:hover .bubble-halo.h-outer {
    border-style: solid;
    border-color: var(--accent-bubble);
    box-shadow: 0 0 25px var(--glow-bubble-hover), inset 0 0 15px var(--glow-bubble-hover);
    animation-duration: 6s;
}

.bubble-frame:hover .bubble-halo.h-inner {
    border-top-color: #ffffff;
    border-bottom-color: var(--accent-bubble);
    box-shadow: 0 0 20px var(--glow-bubble-hover);
    animation-duration: 5s;
}

/* Badges Técnicos Glassmorphic */
.bubble-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--glow-bubble);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s;
}

.bubble-frame:hover .bubble-badge {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px var(--glow-bubble-hover);
}

.badge-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.badge-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.pulse-cyan {
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}
.pulse-cyan::after {
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

.pulse-purple {
    background-color: var(--accent-violet);
    box-shadow: 0 0 8px var(--accent-violet);
}
.pulse-purple::after {
    border: 1px solid var(--accent-violet);
    box-shadow: 0 0 8px var(--accent-violet);
}

.pulse-pink {
    background-color: var(--accent-pink);
    box-shadow: 0 0 8px var(--accent-pink);
}
.pulse-pink::after {
    border: 1px solid var(--accent-pink);
    box-shadow: 0 0 8px var(--accent-pink);
}

.badge-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light-primary);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.badge-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-light-secondary);
    line-height: 1.2;
    margin-top: 1px;
}

/* Exact layout proportions for the overlapping circles */
.b-1 {
    width: 180px;
    height: 180px;
    top: 2%;
    left: calc(54% - 90px);
    z-index: 1;
    --accent-bubble: var(--accent-cyan);
    --glow-bubble: rgba(0, 242, 254, 0.25);
    --glow-bubble-hover: rgba(0, 242, 254, 0.7);
    animation: float-slow 18s infinite ease-in-out;
}

.b-2 {
    width: 260px;
    height: 260px;
    top: 22%;
    left: 2%;
    z-index: 3;
    --accent-bubble: var(--accent-violet);
    --glow-bubble: rgba(139, 92, 246, 0.25);
    --glow-bubble-hover: rgba(139, 92, 246, 0.7);
    animation: float-medium 22s infinite ease-in-out;
}

.b-3 {
    width: 190px;
    height: 190px;
    top: 32%;
    right: 4%;
    z-index: 2;
    --accent-bubble: var(--accent-pink);
    --glow-bubble: rgba(217, 70, 239, 0.25);
    --glow-bubble-hover: rgba(217, 70, 239, 0.7);
    animation: float-fast 20s infinite ease-in-out;
}

.b-4 {
    width: 160px;
    height: 160px;
    bottom: 2%;
    left: calc(52% - 80px);
    z-index: 4;
    --accent-bubble: var(--accent-cyan);
    --glow-bubble: rgba(0, 242, 254, 0.25);
    --glow-bubble-hover: rgba(0, 242, 254, 0.7);
    animation: float-slow 26s infinite ease-in-out;
}

/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}
@keyframes float-medium {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(-3deg); }
}
@keyframes float-fast {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes rotate-clockwise {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(var(--halo-scale)); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(var(--halo-scale)); }
}

@keyframes rotate-counter {
    0% { transform: translate(-50%, -50%) rotate(360deg) scale(var(--halo-scale)); }
    100% { transform: translate(-50%, -50%) rotate(0deg) scale(var(--halo-scale)); }
}

@keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

/* Mobile responsiveness adjustments */
@media (max-width: 768px) {
    .bubble-halo {
        transform: translate(-50%, -50%) scale(0.9);
    }
    .bubble-badge {
        padding: 6px 12px;
        bottom: -20px;
    }
    .badge-title {
        font-size: 0.75rem;
    }
    .badge-tag {
        font-size: 0.6rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 1.5s infinite;
}

@keyframes scroll-anim {
    0% { transform: translate(-50%, 0); opacity: 1; }
    80% { transform: translate(-50%, 8px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ==========================================================================
   SERVICES SECTION (LIGHT BACKGROUND DESIGN SYSTEM)
   ========================================================================== */
.services {
    padding: 120px 0;
    background-color: var(--bg-dark);
    color: var(--text-light-primary);
    position: relative;
    z-index: 5;
}

.services .section-label {
    color: var(--text-light-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

.services .section-title {
    font-size: 2.6rem;
    color: var(--text-light-primary);
    margin-bottom: 16px;
    text-align: center;
}

.services .section-description {
    color: var(--text-light-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Carousel Structural Layout - Horizontal Rows */
.carousel-outer-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: visible;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 60px 0 60px 0; /* Increased padding to prevent crop */
    margin-top: -30px; /* Offset the padding visually */
    cursor: grab;
}

.carousel-viewport:active {
    cursor: grabbing;
}

.carousel-container {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    will-change: transform;
}

/* Custom Carousel Navigation UI */
.carousel-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-light-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
    
    /* Position on the sides */
    position: absolute;
    top: 45%; /* Slightly above center to account for indicators */
    transform: translateY(-50%);
    z-index: 20;
}

.carousel-nav-btn.prev {
    left: -20px;
}

.carousel-nav-btn.next {
    right: -20px;
}

.carousel-nav-btn:hover {
    background: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-cyan);
    box-shadow: 0 6px 18px rgba(0, 242, 254, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Card Styling - Pure White as in Mockup */
.white-card {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text-light-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    flex: 0 0 calc(33.333% - 21.3px);
}

.white-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.15) !important;
}

.white-card.featured-card {
    border-top: 4px solid var(--accent-cyan) !important;
}

.featured-badge-gold {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.light-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 242, 254, 0.05) !important;
    color: var(--accent-cyan) !important;
    border: 1px solid rgba(0, 242, 254, 0.1) !important;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.light-icon svg {
    width: 26px;
    height: 26px;
}

.white-card .service-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-light-primary);
}

.white-card .service-description {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
    min-height: 50px;
    margin-bottom: 24px;
}

.white-card .service-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.white-card .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light-secondary);
}

.green-check {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
}

.white-card .service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-bottom: 28px;
}

.white-card .tech-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light-secondary);
    font-weight: 500;
}

/* details link matching mockup */
.btn-card-details {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient-hero-btn);
    color: var(--bg-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
    transition: var(--transition-fast);
}

.btn-card-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    filter: brightness(1.1);
}

/* ==========================================================================
   ABOUT US SECTION (DARK NAVY WITH PROFESSIONAL PHOTO)
   ========================================================================== */
.about-us-section {
    padding: 120px 0;
    background-color: var(--bg-navy);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.about-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light-primary);
}

.about-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.about-logo svg {
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.8));
}

.logo-text-about {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light-primary);
}

.logo-accent-about {
    color: var(--accent-cyan);
    font-weight: 300;
}

.about-main-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-light-primary);
}

.about-main-desc {
    color: var(--text-light-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.about-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-value-item {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light-secondary);
}

.about-value-item strong {
    color: var(--text-light-primary);
}

.about-val-bullet {
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Premium image frame showing generated team */
.about-us-visual {
    display: flex;
    justify-content: center;
}

.team-photo-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    border: 4px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.team-photo-img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform var(--transition-smooth);
}

.team-photo-frame:hover .team-photo-img {
    transform: scale(1.05);
}

.team-frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 60%);
    pointer-events: none;
}

/* ==========================================================================
   BOTTOM VALUE CARD GRID (WHITE BACKGROUND)
   ========================================================================== */
.bottom-values-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
    color: var(--text-light-primary);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.bottom-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-align: left;
}

.value-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 242, 254, 0.15);
}

.value-feature-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(0, 242, 254, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.value-feature-icon-box svg {
    width: 24px;
    height: 24px;
}

.value-feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light-primary);
}

.value-feature-desc {
    font-size: 0.85rem;
    color: var(--text-light-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   TECHNOLOGY STACK GRID
   ========================================================================== */
.technologies {
    padding: 120px 0;
    position: relative;
    background-color: var(--bg-darker);
}

.tech-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
}

.tech-marquee-container::before,
.tech-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.tech-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-darker) 0%, transparent 100%);
}

.tech-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-darker) 0%, transparent 100%);
}

.tech-marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.tech-marquee-content {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    padding: 10px 0;
}

.tech-marquee-scroll-left {
    animation: marqueeLeft 35s linear infinite;
}

.tech-marquee-scroll-right {
    animation: marqueeRight 35s linear infinite;
}

.tech-marquee-container:hover .tech-marquee-content {
    animation-play-state: paused;
}

.tech-marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    cursor: default;
}

.tech-marquee-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.15);
}

.tech-svg {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform var(--transition-smooth);
}

.tech-marquee-item:hover .tech-svg {
    transform: rotate(8deg) scale(1.1);
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ==========================================================================
   CONTACT FORM & WRAPPER
   ========================================================================== */
.contact {
    padding: 140px 0;
    position: relative;
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.contact-icon-box svg {
    width: 24px;
    height: 24px;
}

.contact-item-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-cyan);
}

/* Form Styling */
.glass-form {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light-secondary);
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-light-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group select option {
    background: var(--bg-darker);
    color: var(--text-light-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 242, 254, 0.5);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: var(--transition-fast);
}

.form-group input:focus ~ .input-focus-line,
.form-group select:focus ~ .input-focus-line,
.form-group textarea:focus ~ .input-focus-line {
    width: 100%;
}

.btn-submit {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.form-message {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    border-radius: var(--radius-sm);
}

.form-message.success {
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.08);
    padding: 10px;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.form-message.error {
    color: var(--accent-pink);
    background: rgba(217, 70, 239, 0.08);
    padding: 10px;
    border: 1px solid rgba(217, 70, 239, 0.2);
}

/* Loader Overlay */
.sending-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.sending-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.sending-modal-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sending-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light-primary);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-description {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
    margin: 24px 0;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-secondary);
    transition: var(--transition-fast);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light-primary);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pulse-heart {
    display: inline-block;
    color: var(--accent-pink);
    animation: heart-pulse 1.5s infinite;
}

@keyframes heart-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-fast);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   SCROLL-REVEAL SYSTEM (JS CONTROLLED INTERSECTION OBSERVER)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    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;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations for active fade-in items */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: simpleFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#heroBadge { animation-delay: 0.1s; }
#heroTitle { animation-delay: 0.2s; }
#heroSubtitle { animation-delay: 0.3s; }
#heroCta { animation-delay: 0.4s; }
#heroStats { animation-delay: 0.5s; }

@keyframes simpleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   NATIVE CSS SCROLL-DRIVEN ANIMATIONS
   (For browsers that support it. Safe fallback handled via JS)
   ========================================================================== */
@supports (animation-timeline: scroll()) {
    .navbar {
        animation: shrinkNavbar linear both;
        animation-timeline: scroll();
        animation-range: 0px 100px;
    }
    
    @keyframes shrinkNavbar {
        to {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 14px 0;
        }
    }
    
    .hero-video {
        animation: scaleVideo linear both;
        animation-timeline: scroll();
        animation-range: 0vh 100vh;
    }
    
    @keyframes scaleVideo {
        to {
            transform: scale(1.15);
            opacity: 0.15;
        }
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */

/* Tablet Viewport (1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-split-container {
        grid-template-columns: 1.25fr 0.75fr;
        gap: 24px;
    }
    
    .hero-left-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-right-content {
        height: 420px;
        transform: scale(0.85);
        transform-origin: center right;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 16px);
    }
    
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-us-visual {
        order: -1;
    }
    
    .bottom-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        width: 30px;
        height: 24px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-light-primary);
        position: absolute;
        transition: var(--transition-fast);
        border-radius: 2px;
    }
    
    .mobile-menu-toggle span:nth-child(1) { top: 0; }
    .mobile-menu-toggle span:nth-child(2) { top: 10px; }
    .mobile-menu-toggle span:nth-child(3) { top: 20px; }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        padding: 100px 40px;
        display: flex;
        flex-direction: column;
        transition: var(--transition-smooth);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .hero {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-radial-glow {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        border-radius: 0 !important;
        background: radial-gradient(circle at 50% 55%, rgba(0, 114, 255, 0.22) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 100%) !important;
    }

    .hero-split-container {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        align-items: center !important;
    }

    .hero-left-content {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    .hero-badge {
        margin-bottom: 16px !important;
        font-size: 0.8rem !important;
        padding: 5px 14px !important;
    }

    .hero-title {
        font-size: 2.6rem !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.02em !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 28px !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }
    
    .hero-cta {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: flex-start !important;
        margin-bottom: 36px !important;
    }
    
    .hero-cta .btn {
        padding: 13px 12px !important;
        font-size: 0.8rem !important;
        flex: 1 !important;
        white-space: nowrap !important;
        border-radius: 50px !important;
        gap: 6px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }
    
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 16px 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: space-between !important;
        border-radius: var(--radius-md) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
        background: rgba(10, 10, 15, 0.5) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(20px) !important;
    }
    
    .stat-item {
        flex: 1 !important;
        text-align: center !important;
    }
    
    .stat-number {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
    }
    
    .stat-label {
        font-size: 0.6rem !important;
        line-height: 1.2 !important;
        color: rgba(255, 255, 255, 0.5) !important;
        margin-top: 2px !important;
    }
    
    .stat-divider {
        display: block !important;
        width: 1px !important;
        height: 28px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        margin: 0 !important;
    }
    
    .hero-right-content {
        display: none !important;
    }
    
    .service-card {
        flex: 0 0 100%;
    }
    
    .bottom-values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form Mobile Enhancements */
    .contact {
        padding: 80px 0 !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
    
    .contact-info {
        text-align: left !important;
    }
    
    .contact-methods {
        margin-top: 32px !important;
        gap: 20px !important;
    }
    
    .contact-item {
        gap: 16px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .glass-form {
        padding: 32px 24px !important; /* Premium tighter spacing on mobile viewports */
        border-radius: var(--radius-md) !important;
        background: rgba(15, 15, 15, 0.8) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
    }
    
    .form-group {
        margin-bottom: 20px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        border-radius: var(--radius-sm) !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }
    
    .btn-submit {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-copyright {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   3D INTRO PRELOADER (HYPER SCROLL SYSTEM)
   ========================================================================== */
.intro-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    perspective: 1000px;
    perspective-origin: 50% 50%;
}

.intro-preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-tunnel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-out;
}

.intro-logo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 260px;
    transform: translateZ(-200px);
    z-index: 10;
    opacity: 0;
    animation: fadeInPreloader 1.5s ease-out 0.2s forwards;
    pointer-events: none;
}

.intro-logo .logo-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-logo svg {
    position: absolute;
    /* ==========================================================================
       MANUAL GLOW / BRIGHTNESS CONTROL FOR THE INTRO LOGO SVG
       - To make the logo glow brighter, change 'filter: none;' to:
         filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 5px rgba(139, 92, 246, 0.4));
       ========================================================================== */
    filter: none;
}

.intro-tunnel-content {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.intro-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    white-space: nowrap;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0;
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Arrange words in 3D depth and spiral rotation */
.w-1 {
    transform: translate3d(-50%, -150%, -400px) rotateX(15deg);
    animation: wordShow 1.8s ease-out 0.4s forwards;
}
.w-2 {
    transform: translate3d(20%, -30%, -700px) rotateY(-20deg);
    animation: wordShow 1.8s ease-out 0.6s forwards;
}
.w-3 {
    transform: translate3d(-120%, 30%, -1000px) rotateY(20deg);
    animation: wordShow 1.8s ease-out 0.8s forwards;
}
.w-4 {
    transform: translate3d(-40%, 120%, -1300px) rotateX(-15deg);
    animation: wordShow 1.8s ease-out 1.0s forwards;
}
.w-5 {
    transform: translate3d(-50%, -50%, -1600px);
    animation: wordShow 1.8s ease-out 1.2s forwards;
}

@keyframes fadeInPreloader {
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes wordShow {
    to {
        opacity: 0.65;
        filter: blur(0);
    }
}

/* Sci-fi HUD overlay */
.intro-hud {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    z-index: 100;
    box-sizing: border-box;
}

.hud-item {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
}

.hud-glow {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px var(--accent-cyan);
}

/* Scroll Hint */
.intro-scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    color: var(--text-light-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    animation: hintFloat 2s infinite ease-in-out;
}

.hint-icon svg {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 5px var(--accent-cyan));
    animation: arrowDown 1.5s infinite;
}

@keyframes hintFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -6px); }
}

@keyframes arrowDown {
    0% { transform: translateY(-4px); opacity: 0.3; }
    50% { transform: translateY(4px); opacity: 1; }
    100% { transform: translateY(-4px); opacity: 0.3; }
}

/* Warp Speed speedline tunnel transition classes */
.intro-preloader.warping {
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.3) 0%, #000000 75%);
}

.intro-preloader.warping .intro-tunnel {
    transform: translateZ(1200px);
}

.intro-preloader.warping .intro-word {
    filter: blur(12px) contrast(1.5);
    opacity: 1;
    text-shadow: 
        -4px -4px 0 rgba(0, 242, 254, 0.8), 
        4px 4px 0 rgba(217, 70, 239, 0.8),
        0 0 25px rgba(139, 92, 246, 0.7);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 50%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Zoom individual layers out of the screen */
.intro-preloader.warping .w-1 { transform: translate3d(-50%, -150%, 700px) scale(2); transition: transform 1.5s cubic-bezier(0.85, 0, 0.15, 1); }
.intro-preloader.warping .w-2 { transform: translate3d(20%, -30%, 1000px) scale(2); transition: transform 1.5s cubic-bezier(0.85, 0, 0.15, 1); }
.intro-preloader.warping .w-3 { transform: translate3d(-120%, 30%, 1300px) scale(2.5); transition: transform 1.5s cubic-bezier(0.85, 0, 0.15, 1); }
.intro-preloader.warping .w-4 { transform: translate3d(-40%, 120%, 1600px) scale(3); transition: transform 1.5s cubic-bezier(0.85, 0, 0.15, 1); }
.intro-preloader.warping .w-5 { transform: translate3d(-50%, -50%, 1900px) scale(4); transition: transform 1.5s cubic-bezier(0.85, 0, 0.15, 1); }

.intro-preloader.warping .intro-logo {
    transform: translateZ(500px) scale(0.1);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease-out;
}

.intro-preloader.warping .intro-scroll-hint {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

/* ==========================================================================
   CAROUSEL CENTER ACTIVE COVER FLOW STYLING
   ========================================================================== */
.service-card {
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
    filter: brightness(0.9);
}

.service-card.active-center {
    transform: scale(1.08) translateY(-15px) !important;
    box-shadow: 0 30px 65px rgba(79, 70, 229, 0.2) !important;
    border-color: rgba(0, 242, 254, 0.35) !important;
    z-index: 10;
    filter: brightness(1);
}

.service-card.active-center .service-title {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card.active-center .light-icon {
    background: rgba(0, 242, 254, 0.08) !important;
    color: var(--accent-blue) !important;
    border-color: rgba(0, 242, 254, 0.25) !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

/* Smooth active dot indicators styling */
.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    width: 24px;
    border-radius: 10px;
    background: #4f46e5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   NOVA POS PRODUCT PAGE STYLES
   ========================================================================== */

/* POS Features Section */
.pos-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.pos-feature-card {
    background: rgba(15,15,15,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition-fast);
}

.pos-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.pos-feature-icon {
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.pos-feature-icon svg {
    width: 40px;
    height: 40px;
}

.pos-feature-card h3 {
    color: var(--text-light-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pos-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pos-feature-card li {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pos-feature-card li .check {
    color: var(--accent-cyan);
    font-weight: bold;
}

.pos-diference-banner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 242, 254, 0.1));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 60px;
}

.pos-diference-banner h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.pos-diference-banner p {
    color: var(--text-light-primary);
    font-size: 1.2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.pos-why-choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(15,15,15,0.4);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pos-why-choose h4 {
    color: var(--text-light-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pos-why-choose .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pos-why-choose .tags span {
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.pos-why-choose .ideal-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pos-why-choose .ideal-list li {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .pos-why-choose {
        grid-template-columns: 1fr;
    }
    .pos-why-choose .ideal-list ul {
        grid-template-columns: 1fr;
    }
}

/* Demo Section */
.demo-section {
    padding: 0 0 100px;
    background-color: var(--bg-darker);
    position: relative;
    z-index: 10;
}

.demo-frame-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 254, 0.1);
    position: relative;
}

.demo-frame-header {
    height: 40px;
    background: rgba(30, 30, 30, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.mac-dots {
    display: flex;
    gap: 8px;
}

.mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.mac-dots span:nth-child(2) { background: #ffbd2e; }
.mac-dots span:nth-child(3) { background: #27c93f; }

.demo-title-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--text-light-secondary);
    font-family: var(--font-body);
}

.demo-frame-body {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.demo-frame-body:hover .demo-image {
    opacity: 0.5;
}

.demo-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.play-btn-circle svg {
    width: 32px;
    height: 32px;
    margin-left: 6px;
}

.demo-frame-body:hover .play-btn-circle {
    background: var(--accent-cyan);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
}

.play-text {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.demo-features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.demo-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light-secondary);
    font-weight: 500;
}

/* Pricing Cards */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.08);
}

.pricing-card.plus {
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0.1), rgba(15, 15, 15, 0.8));
    border: 1px solid var(--accent-violet);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.plus:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light-primary);
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-light-secondary);
    font-weight: 400;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
    min-height: 40px;
}

.pricing-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-light-primary);
    align-items: flex-start;
}

.pricing-list li.excluded {
    color: var(--text-light-secondary);
    opacity: 0.6;
}

.list-icon {
    font-size: 1.1rem;
    min-width: 20px;
}

.pricing-ideal {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
}

.pricing-ideal-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Services Table */
.services-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1px; /* for gradient border effect if needed */
}

.nova-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light-primary);
}

.nova-table th, .nova-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nova-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nova-table tr:last-child td {
    border-bottom: none;
}

.nova-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Promos & Info Banner */
.promo-banner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-md);
    padding: 30px;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.promo-block {
    flex: 1;
    min-width: 280px;
}

.promo-title {
    color: var(--text-light-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-list {
    list-style: none;
    color: var(--text-light-secondary);
}

.promo-list li {
    margin-bottom: 10px;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background: var(--bg-navy);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 24px 0;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-light-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-light-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p {
    padding-bottom: 24px;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.page-title {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Call to Action specific */
.cta-box {
    text-align: center;
    padding: 60px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    margin-top: 80px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light-primary);
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light-secondary);
    font-size: 1.1rem;
}

.cta-contact-item svg {
    color: var(--accent-cyan);
}

/* ==========================================================================
   PORTFOLIO & DEMOS SHOWCASE GRID (From demos.html)
   ========================================================================== */
.demo-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: var(--bg-darker);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    transform: translateY(-1px);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
    padding: 20px 0;
}

.demo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
    will-change: transform, opacity;
}

.demo-card.hidden {
    display: none;
}

.demo-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.12);
}

.demo-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: #111827; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 3;
}

.demo-card:hover .demo-image-overlay {
    opacity: 1;
}

.demo-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.demo-category-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
}

.demo-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.demo-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ==========================================================================
   TERMINAL FOOTER COMPONENT
   ========================================================================== */
.terminal-footer-container {
    background: #060913; 
    border-top: 1px solid rgba(0, 242, 254, 0.15);
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
    margin-top: auto; /* Push to bottom if content is short */
}

.terminal-grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.footer-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo-area svg {
    width: 30px; height: 30px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    transform: translateY(-3px);
    background: rgba(0, 242, 254, 0.05);
}

/* Typing Effect Container */
.terminal-typing-box {
    background: #02040a;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 6px;
    padding: 12px 24px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.95rem;
    color: #a0aec0;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8), 0 0 15px rgba(0, 242, 254, 0.05);
    display: inline-block;
    min-width: 300px;
    text-align: left;
}

.terminal-prompt {
    color: var(--accent-cyan);
    margin-right: 8px;
    font-weight: bold;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: var(--accent-cyan);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

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


@media(max-width: 768px) { .showcase-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   HOMEPAGE NEW SECTIONS (Process, Spotlight, Social Proof, CTA Banner)
   ========================================================================== */

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-violet));
    opacity: 0.3;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
    flex-shrink: 0;
}

.process-icon svg {
    width: 40px;
    height: 40px;
}

.process-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.process-step:hover .process-content {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media(max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    .process-icon {
        width: 60px;
        height: 60px;
    }
    .process-icon svg {
        width: 30px;
        height: 30px;
    }
    .process-step {
        gap: 15px;
    }
}

/* Spotlight Section */
.spotlight-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #0a0e17;
}

.spotlight-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.spotlight-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.15);
    color: #b197fc;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.spotlight-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spotlight-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.spotlight-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.spotlight-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.spotlight-features svg {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.spotlight-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.spotlight-image-wrapper {
    position: relative;
}

.spotlight-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.spotlight-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: var(--accent-cyan);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@media(max-width: 992px) {
    .spotlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .spotlight-features li {
        justify-content: center;
    }
}

/* Social Proof */
.social-proof-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.client-logo-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-logo-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.client-sector {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Banner */
.cta-banner-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #060913 100%);
}

.cta-banner-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media(max-width: 600px) {
    .cta-banner-content h2 { font-size: 2rem; }
    .cta-banner-actions { flex-direction: column; }
}

/* ==========================================================================
   TEAM SECTION (nosotros.html)
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-socials {
    bottom: 0;
}

.team-socials .social-icon {
    width: 35px;
    height: 35px;
    background: var(--accent-cyan);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.team-socials .social-icon:hover {
    transform: scale(1.1);
    background: #fff;
}

.team-socials .social-icon svg {
    width: 18px;
    height: 18px;
}

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-role {
    font-size: 0.95rem;
    color: var(--accent-cyan);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   MISSION / VISION CARDS & STATS (nosotros.html)
   ========================================================================== */
.mission-vision-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    gap: 20px;
    max-width: 500px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.1);
}

.mv-card-offset {
    transform: translateX(-30px);
}

.mv-card:hover.mv-card-offset {
    transform: translate(-30px, -5px);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.mv-icon svg {
    width: 30px;
    height: 30px;
}

.mv-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(139,92,246,0.05) 0%, rgba(0,212,255,0.05) 100%);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media(max-width: 768px) {
    .mv-card-offset { transform: none; }
    .mv-card:hover.mv-card-offset { transform: translateY(-5px); }
    .mv-card { flex-direction: column; text-align: center; align-items: center; }
}

/* ==========================================================================
   SERVICES TABS & BENEFITS (servicios.html)
   ========================================================================== */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(0, 212, 255, 0.5);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

@media(max-width: 900px) {
    .service-split { grid-template-columns: 1fr; }
}

.service-icon-large {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    margin-bottom: 25px;
}

.service-icon-large svg {
    width: 35px;
    height: 35px;
}

.service-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.service-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.premium-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.premium-list li span {
    font-size: 1.2rem;
}

.tech-stack-mini {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-stack-mini .badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}

/* Mockups for Services Tabs */
.glass-mockup {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.web-mockup .mockup-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 6px;
}

.web-mockup .dot { width: 10px; height: 10px; border-radius: 50%; background: #4a5568; }
.web-mockup .dot:nth-child(1) { background: #fc5c65; }
.web-mockup .dot:nth-child(2) { background: #fd9644; }
.web-mockup .dot:nth-child(3) { background: #26de81; }

.mockup-gradient-1 {
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-lines span {
    display: block;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 10px;
}
.mockup-lines span:nth-child(1) { width: 60%; height: 20px; }
.mockup-lines span:nth-child(2) { width: 100%; }
.mockup-lines span:nth-child(3) { width: 80%; }

.saas-mockup {
    display: flex;
}
.saas-mockup .mockup-sidebar {
    width: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.saas-mockup .mockup-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.saas-mockup .mockup-chart {
    height: 100px;
    background: linear-gradient(to top, rgba(0, 212, 255, 0.2), transparent);
    border-bottom: 2px solid var(--accent-cyan);
    border-radius: 4px;
}
.saas-mockup .mockup-cards {
    display: flex;
    gap: 10px;
}
.saas-mockup .mockup-cards span {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.desktop-mockup {
    background: #1a1a2e;
}
.desktop-mockup .mockup-window {
    border: 1px solid #2a2a4a;
    height: 100%;
}
.desktop-mockup .window-title {
    background: #0f0f1a;
    color: #4a4a6a;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-bottom: 1px solid #2a2a4a;
}
.desktop-mockup .window-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.desktop-mockup .window-grid span {
    background: #2a2a4a;
    height: 80px;
    border-radius: 4px;
}

.ia-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}
.ia-mockup .bot-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px dashed var(--accent-purple);
    animation: spin 10s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ia-mockup .bot-circle::after {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-cyan);
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.benefit-card h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}
.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}


@media (max-width: 768px) {
    .terminal-typing-box {
        min-width: unset;
        width: 100%;
        max-width: 320px;
        font-size: 0.65rem;
        padding: 10px;
        white-space: nowrap;
        overflow: hidden;
    }
}
