/* ============================================
   VARIABLES Y RESET - DISEÑO FUTURISTA 2026
   ============================================ */
:root {
    /* Colores principales futuristas */
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --primary-light: #33ddff;
    --secondary-color: #7c3aed;
    --accent-color: #ff006e;
    --accent-gold: #ffd700;
    
    /* Colores de texto */
    --text-dark: #0a0e27;
    --text-light: #64748b;
    --text-white: #ffffff;
    
    /* Fondos futuristas */
    --bg-dark: #0a0e27;
    --bg-darker: #050812;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-dark: rgba(10, 14, 39, 0.8);
    
    /* Bordes */
    --border-color: rgba(0, 212, 255, 0.2);
    --border-glow: rgba(0, 212, 255, 0.5);
    
    /* Gradientes futuristas 2026 */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff006e 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #050812 100%);
    --gradient-cyber: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-neon: linear-gradient(135deg, #ff006e 0%, #ffd700 100%);
    
    /* Sombras futuristas con glow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 212, 255, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 212, 255, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 212, 255, 0.3), 0 0 30px rgba(0, 212, 255, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
    --shadow-neon: 0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3);
    
    /* Bordes redondeados modernos */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Efectos glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --backdrop-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
}

/* Skip link para accesibilidad - Oculto hasta focus */
.skip-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.skip-link:focus {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading para imágenes */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Optimización de fuentes - Las fuentes se cargan desde Google Fonts */
/* font-display: swap está configurado en el link de Google Fonts */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-gradient {
    background: var(--gradient-primary);
    color: white;
}

/* ============================================
   HEADER Y NAVEGACIÓN - FUTURISTA 2026
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 212, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
}

.header:hover {
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15), 0 0 60px rgba(124, 58, 237, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.navbar-brand:hover::before {
    opacity: 0.4;
}

.logo-img {
    width: auto;
    height: 85px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5)) 
            drop-shadow(0 0 30px rgba(124, 58, 237, 0.3))
            brightness(1.1) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5)) 
                drop-shadow(0 0 30px rgba(124, 58, 237, 0.3))
                brightness(1.1) contrast(1.1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7)) 
                drop-shadow(0 0 40px rgba(124, 58, 237, 0.5))
                brightness(1.15) contrast(1.15);
    }
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1.15) rotate(8deg);
    }
    50% {
        transform: scale(1.2) rotate(8deg);
    }
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 80%;
}

.btn-nav-cta {
    background: var(--gradient-cyber);
    color: white;
    padding: 0.625rem 1.75rem;
    border-radius: var(--radius-full);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    font-weight: 600;
    transition: box-shadow 0.3s ease;
}

.btn-nav-cta:hover {
    box-shadow: 
        0 6px 20px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Mega Menu Styles */
.mega-menu {
    position: static;
}

.mega-menu-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    min-width: 900px;
    max-width: 1200px;
    width: calc(100vw - 4rem);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.mega-menu:hover .mega-menu-content,
.dropdown.mega-menu:hover .mega-menu-content {    
    opacity: 1 !important;
    visibility: visible !important;
    /* transform: translateX(-50%) translateY(0) !important; */
    display: block !important;
    z-index: 9999;
    height: auto !important;
    max-height: 1000px !important;

}

/* Evitar hover en móvil y mostrar cuando está activo */
@media (max-width: 968px) {
    /* Ocultar en hover para evitar que se muestre accidentalmente */
    .mega-menu:hover .mega-menu-content,
    .dropdown.mega-menu:hover .mega-menu-content {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    /* Ocultar cuando NO está activo */
    .mega-menu:not(.active) .mega-menu-content,
    .dropdown.mega-menu:not(.active) .mega-menu-content {
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Mostrar mega menu cuando está activo - Mayor especificidad */
    .mega-menu.active .mega-menu-content,
    .dropdown.mega-menu.active .mega-menu-content,
    li.mega-menu.active .mega-menu-content,
    li.dropdown.mega-menu.active .mega-menu-content,
    .navbar-menu .mega-menu.active .mega-menu-content,
    .navbar-menu .dropdown.mega-menu.active .mega-menu-content {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 3000px !important;
        padding: 1.25rem 1rem !important;
        margin: 0.5rem 0 !important;
        display: block !important;
        overflow: visible !important;
        height: auto !important;
    }
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-list li a {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 0.25rem;
}

.mega-menu-list li a:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    transform: translateX(4px);
}

.mega-menu-item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.mega-menu-item-desc {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.4;
}

.mega-menu-view-all {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.mega-menu-view-all .mega-menu-item-title {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.navbar-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(0, 212, 255, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    text-transform: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.5),
        0 0 80px rgba(124, 58, 237, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

.btn-white {
    background: white;
    color: #1a1a2e;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 3rem 0 4rem;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: visible;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.15) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    word-wrap: normal;
    overflow-wrap: normal;
    /*hyphens: manual;*/
    word-break: normal;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    min-height: 400px;
    width: 100%;
    overflow: visible;
    contain: layout style paint;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.7) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    max-width: 220px;
    white-space: normal;
    overflow: hidden;
    color: white;
    transform-style: preserve-3d;
    will-change: transform;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-cyber);
    border-radius: var(--radius-xl);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.5s ease;
}

.floating-card:hover::before {
    opacity: 0.6;
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 15px 50px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(124, 58, 237, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.85) 100%);
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
    z-index: 10;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
    animation-name: float-card2;
}

.card-3 {
    bottom: 10%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-15px);
    }
}

@keyframes float-card2 {
    0%, 100% { 
        transform: translateY(-50%) translateY(0px);
    }
    50% { 
        transform: translateY(-50%) translateY(-15px);
    }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    text-align: center;
}

.card-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: var(--gradient-dark);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
}

.page-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.7;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem 0;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.2),
        0 0 80px rgba(124, 58, 237, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 8px 16px rgba(0, 212, 255, 0.3));
}

.service-title {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--text-dark);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   SERVICES LIST
   ============================================ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-cyber);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 
        0 12px 48px rgba(0, 212, 255, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-item-content {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.service-item-icon {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.service-item:hover .service-item-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 212, 255, 0.3));
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-color: rgba(0, 212, 255, 0.4);
}

.service-item-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-item-title a {
    color: var(--text-dark);
}

.service-item-title a:hover {
    color: var(--primary-color);
}

.service-item-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-item-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-item-features {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

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

.service-item-features li {
    color: var(--text-light);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.service-detail-section:hover {
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.service-detail-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.service-detail-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
}

.service-detail-section p {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 0.875rem;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.6;
    font-weight: 500;
}

.benefits-list li:hover {
    background: #f1f5f9;
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.1);
}

.check-icon {
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.2);
    line-height: 1;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.05);
}

.use-case-text {
    color: #4a5568;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.why-us-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.why-us-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.1);
}

.why-us-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.3;
}

.why-us-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

.service-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
    border: 3px solid #00d4ff;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 212, 255, 0.25);
    }
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 20px 20px 0 0;
}

.cta-card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.cta-card-description {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.cta-card-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.cta-card-features .cta-feature {
    font-size: 0.9375rem;
}

.cta-card-features .cta-feature strong {
    color: #1a1a2e;
    font-weight: 700;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
    color: #4a5568;
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.cta-feature:last-child {
    margin-bottom: 0;
}

.cta-feature-icon {
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    line-height: 1;
}

.related-services {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.related-services h4 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: #1a1a2e;
    font-weight: 700;
}

.related-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.related-services-list li {
    margin-bottom: 0;
}

.related-services-list a {
    color: #4a5568;
    display: block;
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 0.9375rem;
}

.related-services-list a:hover {
    color: #00d4ff;
    background: #f8fafc;
    transform: translateX(4px);
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 212, 255, 0.4);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.industry-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
}

.industry-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.industry-features li::before {
    content: '';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.industries-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.industry-detailed {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.industry-detailed:hover::before {
    transform: scaleX(1);
}

.industry-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.industry-detailed-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.industry-detailed-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.industry-detailed-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.industry-detailed-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.industry-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.industry-feature {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.industry-feature:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
}

.industry-feature h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.industry-feature ul {
    list-style: none;
}

.industry-feature ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.industry-feature ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ============================================
   PROCESS
   ============================================ */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.process-step {
    display: flex;
    gap: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}

.process-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-phase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-cyber);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.process-phase:hover::before {
    transform: scaleY(1);
}

.process-phase:hover {
    transform: translateX(10px);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.phase-number {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 
        0 8px 24px rgba(0, 212, 255, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phase-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-cyber);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.process-phase:hover .phase-number::before {
    opacity: 0.6;
}

.process-phase:hover .phase-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(0, 212, 255, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.phase-title {
    font-size: 2.5rem;
    margin: 0;
}

.phase-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.phase-activities h3,
.phase-deliverables h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.activities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activities-list li {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.activity-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.phase-deliverables ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.phase-deliverables ul li {
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text-light);
}

.methodology-section {
    margin-top: 5rem;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyber);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.3);
}

.methodology-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.methodology-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.methodology-item p {
    color: var(--text-light);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .pricing-grid {
        gap: 4rem;
        max-width: 1100px;
    }
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.pricing-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    border: 3px solid #00d4ff;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #f8faff 100%);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.25), 0 0 0 1px rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured::before {
    opacity: 1;
    height: 6px;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    z-index: 10;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-description {
    color: #64748b;
    font-size: 0.9375rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.pricing-price {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    word-break: break-word;
}

.price-amount:has-text("Desde") {
    font-size: 2.75rem;
}

.pricing-card.featured .price-amount {
    font-size: 2.75rem;
}

.price-period {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 3px 0;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.pricing-features li:hover {
    color: #1a1a2e;
    padding-left: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.pricing-cta .btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.pricing-card.featured .pricing-cta .btn {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    border: none;
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured .pricing-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pricing-card.featured .pricing-cta .btn:hover::before {
    left: 100%;
}

.pricing-card.featured .pricing-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.45);
}

.pricing-btn-action {
    position: relative;
    overflow: hidden;
}

.pricing-btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.25);
}

/* ============================================
   SERVICE PRICING SECTIONS
   ============================================ */
.service-pricing-section {
    margin: 5rem 0;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-pricing-section:last-of-type {
    border-bottom: none;
}

.service-pricing-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.custom-plan-section {
    margin: 4rem 0;
}

.custom-plan-card {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.custom-plan-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.custom-plan-description {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.custom-plan-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.custom-plan-features li {
    opacity: 0.9;
}

.payment-methods-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 2px solid var(--border-color);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-method {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-method h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.payment-method p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.selected-plan,
.selected-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.payment-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.payment-section h3 {
    margin-bottom: 1rem;
}

#stripe-card-element {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

#stripe-card-errors {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

#paypal-button-container {
    margin-top: 1rem;
}

/* ============================================
   TECHNOLOGIES
   ============================================ */
.tech-category {
    margin-bottom: 5rem;
}

.tech-category-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-category-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 16px 48px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 212, 255, 0.4);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

.why-tech-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 2px solid var(--border-color);
}

.why-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.why-tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-tech-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-tech-item p {
    color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.contact-cta-card,
.contact-hours-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info-title,
.contact-cta-title,
.contact-hours-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-content a {
    color: var(--primary-color);
}

.contact-info-content a:hover {
    color: var(--primary-dark);
}

.contact-cta-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-hours-list {
    list-style: none;
    margin-bottom: 1rem;
}

.contact-hours-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.contact-hours-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 5px solid #00d4ff;
    transition: all 0.3s ease;
    margin-bottom: 1.25rem;
    border: 2px solid #e2e8f0;
    border-left: 5px solid #00d4ff;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
    transform: translateX(4px);
    border-left-color: #7c3aed;
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.4;
}

.faq-answer {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    min-width: 250px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 0px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-cyber);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        word-wrap: normal;
        overflow-wrap: normal;
        /*hyphens: manual;*/
        word-break: normal;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .hero-visual {
        height: 350px;
        margin-top: 2rem;
    }
    
    .floating-card {
        min-width: 150px;
        max-width: 180px;
        padding: 1.25rem 1.5rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-text {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            4px 0 40px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(0, 212, 255, 0.1);
        z-index: 999;
        gap: 0;
        align-items: stretch;
        overflow-y: auto;
    }
    
    .navbar-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gradient-cyber);
        opacity: 0.3;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.25rem;
        margin: 0.25rem 0;
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
        font-size: 1.125rem;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 212, 255, 0.1);
        border-left-color: var(--primary-color);
        padding-left: 1.5rem;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .btn-nav-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 212, 255, 0.05);
        border-radius: var(--radius-md);
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        min-width: auto;
        border-left: 3px solid var(--primary-color);
    }
    
    .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        color: var(--text-dark);
    }
    
    .dropdown-menu li a:hover {
        background: rgba(0, 212, 255, 0.1);
        color: var(--primary-color);
    }
    
    /* Mega Menu Mobile */
    .mega-menu {
        position: relative;
        width: 100%;
    }
    
    /* Ocultar dropdown-menu si es mega-menu */
    .mega-menu .dropdown-menu {
        display: none !important;
    }
    
    .mega-menu-content {
        position: static !important;
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        min-width: auto !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none;
        background: rgba(0, 212, 255, 0.05);
        border-left: 3px solid var(--primary-color);
        border-radius: var(--radius-md);
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease, visibility 0.3s ease;
        left: auto !important;
        display: block !important;
    }
    
    .mega-menu.active .mega-menu-content,
    .dropdown.mega-menu.active .mega-menu-content,
    li.mega-menu.active .mega-menu-content,
    li.dropdown.mega-menu.active .mega-menu-content,
    .navbar-menu .mega-menu.active .mega-menu-content,
    .navbar-menu .dropdown.mega-menu.active .mega-menu-content {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 3000px !important;
        padding: 1.25rem 1rem !important;
        margin: 0.5rem 0 !important;
        display: block !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .mega-menu-container {
        display: grid !important;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .mega-menu-column {
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        padding-bottom: 1rem;
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .mega-menu-title {
        font-size: 0.9375rem;
        font-weight: 700;
        margin-bottom: 0.875rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid rgba(0, 212, 255, 0.15);
        color: var(--primary-color);
    }
    
    .mega-menu-list {
        gap: 0.375rem;
    }
    
    .mega-menu-list li a {
        padding: 0.75rem 0.875rem;
        border-radius: 6px;
    }
    
    .mega-menu-item-title {
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    .mega-menu-item-desc {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .mega-menu-view-all {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 212, 255, 0.15);
    }
    
    .mega-menu-list li a:hover {
        transform: none;
        background: rgba(0, 212, 255, 0.1);
    }
    
    .dropdown-arrow {
        float: right;
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }
    
    .dropdown:hover .dropdown-arrow,
    .dropdown.active .dropdown-arrow,
    .mega-menu.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .mega-menu.active .nav-link {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    /* Overlay para cerrar menú */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Dropdown en móvil - siempre visible cuando está activo */
    .dropdown-menu {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-plan-card {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
        word-wrap: normal;
        overflow-wrap: normal;
        /*hyphens: manual;*/
        word-break: normal;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        min-width: 140px;
        max-width: 160px;
        padding: 1rem 1.25rem;
    }
    
    .card-1 {
        top: 10%;
        left: 2%;
    }
    
    .card-2 {
        top: 40%;
        right: 2%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 20%;
    }
    
    .card-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .card-text {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: start;
    }
    
    .service-item-content {
        flex-direction: column;
    }
    
    .process-timeline {
        padding-left: 0rem;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: start;
    }
}

/* ============================================
   NOTIFICACIONES DE ACTIVIDAD EN TIEMPO REAL
   ============================================ */

.activity-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4), 0 0 20px rgba(102, 126, 234, 0.3);
    font-size: 14px;
    font-weight: 600;
    z-index: 9998;
    display: none;
    opacity: 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 90%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.activity-notification.show {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    animation: slideUpNotification 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-notification.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    animation: slideDownNotification 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpNotification {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes slideDownNotification {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(100px) scale(0.9);
    }
}

@media (max-width: 768px) {
    .activity-notification {
        bottom: 80px; /* Arriba del chatbot */
        font-size: 12px;
        padding: 10px 20px;
        max-width: 95%;
    }
}

