/* --- SISTEMA DE DISEÑO PREMIUM (Variables) --- */
:root {
    --bg-dark-blue: #020617;       /* Negro azulado ultra-profundo */
    --bg-nav: rgba(2, 6, 23, 0.78); /* Translúcido para glassmorphism */
    --accent-orange: #FF8C00;      /* Naranja vibrante refinado */
    --accent-orange-rgb: 255, 140, 0;
    --accent-hover: #E07800;       /* Tono hover */
    --accent-cyan: #00E5FF;        /* Cian mas saturado */
    --accent-cyan-rgb: 0, 229, 255;
    --text-white: #F1F5F9;         /* Blanco puro suave */
    --text-muted: #94A3B8;         /* Gris slate para textos secundarios */
    --card-dark: rgba(15, 23, 42, 0.45); /* Fondo oscuro para tarjetas de vidrio */
    --card-light: #FFFFFF;         /* Tarjetas blancas de altísimo contraste */
    --card-light-text: #0F172A;    /* Texto de tarjetas blancas */
    --glow-orange: rgba(255, 140, 0, 0.12);
    --glow-cyan: rgba(0, 229, 255, 0.08);
    --font-main: 'DM Sans', sans-serif;
    --font-display: 'Sora', sans-serif;
    --font-tech: 'Space Grotesk', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --rgb-deep: 2, 6, 23;
    --rgb-card: 15, 23, 42;
    --rgb-card-alt: 10, 17, 40;
    --rgb-contrast: 255, 255, 255;
    --rgb-white: 255, 255, 255;
    --rgb-white-soft: 250, 250, 250;
    --clr-footer: #020617;
    --clr-inverse: #0F172A;
}

[data-theme="light"] {
    --bg-dark-blue: #F8FAFC;
    --bg-nav: rgba(248, 250, 252, 0.92);
    --text-white: #0F172A;
    --text-muted: #475569;
    --card-dark: rgba(0, 0, 0, 0.04);
    --glow-orange: rgba(255, 140, 0, 0.06);
    --glow-cyan: rgba(0, 229, 255, 0.04);
    --rgb-deep: 248, 250, 252;
    --rgb-card: 255, 255, 255;
    --rgb-card-alt: 241, 245, 249;
    --rgb-contrast: 15, 23, 42;
    --clr-footer: #F1F5F9;
    --clr-inverse: #F8FAFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-blue);
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-img {
        width: 34px;
        height: 34px;
        display: block;
        object-fit: contain;
    }

    .fallback-whatsapp {
        display: none;
    }
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(var(--rgb-contrast), 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--rgb-contrast), 0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.06;
    pointer-events: none;
}

/* --- SECCIÓN CORE: TARJETAS VERTICALES CON FLIP --- */
.core-grid.vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
}

.stack-item.reverse {
    flex-direction: row-reverse;
}

.stack-image {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-image img,
.stack-image svg {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(3,7,18,0.6);
    display: block;
}

/* Flip card */
.flip-card {
    perspective: 1200px;
    flex: 1;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    min-height: 220px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner,
.flip-card.tapped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 220px;
    backface-visibility: hidden;
    border-radius: 12px;
}

.flip-card-front {
    background: linear-gradient(180deg, rgba(var(--rgb-white),0.98), rgba(var(--rgb-white-soft),0.98));
    color: #0b1220;
    padding: 26px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.5);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.flip-card-back {
    background: linear-gradient(180deg, rgba(3,7,18,0.98), rgba(10,17,40,0.98));
    color: var(--text-white);
    padding: 26px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.flip-card-front h3,
.flip-card-back h4 {
    margin: 0;
}

.flip-card-back p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .stack-item {
        flex-direction: column;
        align-items: stretch;
    }

    .stack-item.reverse {
        flex-direction: column;
    }

    .stack-image {
        flex-basis: auto;
    }

    .stack-image img {
        width: 100%;
        height: 200px;
    }

    .flip-card-inner,
    .flip-card-front,
    .flip-card-back {
        min-height: 200px;
    }
}

/* --- HEADER PRINCIPAL --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: rgba(var(--rgb-deep), 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(var(--rgb-contrast), 0.08);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === NAVBAR SCROLLED: Compact floating pill — versión refinada === */
#main-header.scrolled {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 680px;
    max-width: calc(100% - 48px);
    border-radius: 999px;
    background: rgba(var(--rgb-deep), 0.88);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(var(--rgb-contrast), 0.04) inset,
        0 0 0 1px rgba(var(--accent-orange-rgb), 0.04);
}

#main-header.scrolled .nav-container {
    padding: 8px 18px;
    gap: 16px;
}

#main-header.scrolled .sub {
    display: none;
}

#main-header.scrolled .logo-text {
    font-size: 16px;
    letter-spacing: 0.06em;
}

#main-header.scrolled nav a {
    font-size: 13.5px;
    margin: 0 12px;
}

#main-header.scrolled .btn-nav {
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 999px;
}

#main-header.scrolled .theme-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

[data-theme="light"] #main-header.scrolled {
    background: rgba(248, 250, 252, 0.94);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(var(--accent-orange-rgb), 0.08);
}

@media (max-width: 968px) {
    #main-header.scrolled {
        top: 8px;
        min-width: unset;
        width: calc(100% - 24px);
        border-radius: 20px;
    }
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: padding 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    border-radius: 50%;
    background: var(--accent-orange);
    vertical-align: middle;
}

.sub {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

#nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1300;
}

.menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 999px;
    transition: var(--transition-smooth);
}

@media (max-width: 968px) {
    .nav-container {
        padding: 14px 18px;
    }

    #nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 18px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

nav a:hover, nav a.active {
    color: var(--text-white);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
    transition: var(--transition-smooth);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.theme-toggle {
    background: rgba(var(--rgb-contrast), 0.05);
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.theme-toggle:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: rgba(var(--accent-orange-rgb), 0.08);
    transform: rotate(15deg);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.btn-nav {
    background-color: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 0 0 0 rgba(var(--accent-orange-rgb), 0.1);
}

.btn-nav:hover {
    background-color: var(--accent-orange);
    color: var(--bg-dark-blue);
    box-shadow: 0 0 20px rgba(var(--accent-orange-rgb), 0.4);
    transform: translateY(-2px);
}

/* --- DROPDOWN MENÚ DE SERVICIOS --- */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-trigger::after {
    content: '▼';
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.nav-dropdown:hover .dropdown-trigger::after {
    transform: rotate(-180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(var(--rgb-card), 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: var(--transition-smooth);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    z-index: 1100;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(var(--accent-orange-rgb), 0.12);
    border-left-color: var(--accent-orange);
    padding-left: 24px;
    color: var(--accent-orange);
}

.service-icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- MENÚ HAMBURGUESA MÓVIL --- */
/* --- SLIDER PROFESIONAL FADE --- */
.slider-section {
    width: 100%;
    margin-top: 80px;
    padding: 0;
    position: relative;
    z-index: 10;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 580px;
    overflow: hidden;
    border-bottom: 1px solid rgba(var(--rgb-contrast), 0.06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.slides-container {
    position: absolute;
    inset: 0;
}

/* Cada slide ocupa todo el contenedor */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Imagen de fondo */
.slide-bg {
    position: absolute;
    inset: 0;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.43) contrast(1.05) saturate(0.9);
    transform: scale(1.08);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.slide.active .slide-bg img {
    transform: scale(1.0);
}

/* Overlay degradado dual: horizontal + vertical */
.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.25) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.05) 100%);
}

/* Número decorativo de fondo — identidad editorial */
.slide::before {
    position: absolute;
    bottom: -30px;
    right: 40px;
    font-family: var(--font-display);
    font-size: 230px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.055);
    z-index: 3;
    pointer-events: none;
    user-select: none;
    letter-spacing: -12px;
    opacity: 0;
    transition: opacity 1.2s ease 0.4s;
}
.slide:nth-child(1)::before { content: '01'; }
.slide:nth-child(2)::before { content: '02'; }
.slide.active::before { opacity: 1; }

/* Contenido textual */
.slide-content {
    position: absolute;
    bottom: 100px;
    left: 80px;
    right: 80px;
    max-width: 750px;
    z-index: 5;
}

.slide-tag {
    display: inline-block;
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 140, 0, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    opacity: 0;
    transform: translateY(20px);
}

.slide-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(20px);
}

.text-gradient-orange {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-desc {
    font-size: 17px;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 560px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
    opacity: 0;
    transform: translateY(20px);
}

.btn-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-hover) 100%);
    color: var(--bg-dark-blue);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(var(--accent-orange-rgb), 0.3);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
}

.btn-slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--accent-orange-rgb), 0.5);
}

.btn-slide-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translate(28px, 14px);
}

.btn-slide-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-3px);
}

.cta-slide-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Animación escalonada de entrada para cada slide activo */
.slide.active .slide-tag {
    animation: fadeSlideIn 0.7s 0.15s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.slide.active .slide-title {
    animation: fadeSlideIn 0.75s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.slide.active .slide-desc {
    animation: fadeSlideIn 0.7s 0.46s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.slide.active .btn-slide-cta {
    animation: fadeSlideIn 0.7s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.slide.active .btn-slide-ghost {
    animation: fadeSlideIn 0.7s 0.72s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translate(28px, 14px); }
    to   { opacity: 1; transform: translate(0, 0); }
}

@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Barra de progreso */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(var(--rgb-contrast), 0.06);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-orange), #FBBF24);
    animation: fillProgress 5s linear forwards;
    box-shadow: 0 0 10px rgba(var(--accent-orange-rgb), 0.55), 0 0 3px rgba(255, 191, 36, 0.4);
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Contador estilo premium */
.slider-counter {
    position: absolute;
    bottom: 30px;
    right: 80px;
    z-index: 20;
    display: flex;
    align-items: baseline;
    gap: 0;
}

.counter-current {
    font-family: var(--font-tech);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.counter-separator {
    width: 24px;
    height: 2px;
    background: rgba(var(--accent-orange-rgb), 0.5);
    margin: 0 8px;
    align-self: center;
}

.counter-total {
    font-family: var(--font-tech);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1;
}

/* Flechas de navegación */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(var(--accent-orange-rgb), 0.4);
    transform: translateY(-50%) scale(1.08);
}

.arrow-prev { left: 24px; }
.arrow-next { right: 24px; }

/* Dots generados por JS - estilo barra */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.slider-dot {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: rgba(var(--rgb-contrast), 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.4s ease;
}

.slider-dot:hover {
    background: rgba(var(--rgb-contrast), 0.4);
}

.slider-dot.active {
    background: var(--accent-orange);
    box-shadow: 0 0 10px rgba(var(--accent-orange-rgb), 0.5);
}

/* --- SLIDER ADAPTATIVO: LIGHT MODE --- */
[data-theme="light"] .slide-bg img {
    filter: brightness(0.92) contrast(1.02) saturate(0.95);
}

[data-theme="light"] .slide-overlay {
    background:
        linear-gradient(90deg, rgba(248, 250, 252, 0.88) 0%, rgba(248, 250, 252, 0.5) 45%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(0deg, rgba(248, 250, 252, 0.88) 0%, rgba(255, 255, 255, 0.25) 20%, transparent 100%);
}

[data-theme="light"] .slide-title,
[data-theme="light"] .slide-desc {
    text-shadow: none;
}

[data-theme="light"] .slide-tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 140, 0, 0.4);
}

[data-theme="light"] .slider-arrow {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .slider-arrow:hover {
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(var(--accent-orange-rgb), 0.35);
}

[data-theme="light"] .slider-progress {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .slider-dot {
    background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .slider-dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .slider-dot.active {
    background: var(--accent-orange);
    box-shadow: 0 0 10px rgba(var(--accent-orange-rgb), 0.35);
}

[data-theme="light"] .counter-separator {
    background: rgba(var(--accent-orange-rgb), 0.45);
}

[data-theme="light"] .slider-wrapper {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .slide::before {
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.045);
}

[data-theme="light"] .slide-bg img {
    filter: brightness(0.88) contrast(1.02) saturate(0.95);
}

[data-theme="light"] .btn-slide-ghost {
    color: rgba(15, 23, 42, 0.75);
    border-color: rgba(15, 23, 42, 0.18);
}

[data-theme="light"] .btn-slide-ghost:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.3);
    color: #0F172A;
}

/* --- RESPONSIVE SLIDER --- */
@media (max-width: 1024px) {
    .slider-wrapper {
        min-height: 480px;
    }
    .slide-content {
        bottom: 80px;
        left: 50px;
        right: 50px;
    }
    .slide-title {
        font-size: 38px;
    }
    .slider-counter {
        right: 50px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        margin-top: 72px;
    }
    .slider-wrapper {
        min-height: 420px;
    }
    .slide-content {
        bottom: 60px;
        left: 24px;
        right: 24px;
    }
    .slide-title {
        font-size: 28px;
    }
    .slide-desc {
        font-size: 14px;
    }
    .slide-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
    .btn-slide-cta {
        padding: 12px 24px;
        font-size: 13px;
    }
    .btn-slide-ghost {
        padding: 12px 18px;
        font-size: 13px;
    }
    .slide::before {
        font-size: 140px;
        right: 20px;
        bottom: -10px;
        letter-spacing: -8px;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    .arrow-prev { left: 12px; }
    .arrow-next { right: 12px; }
    .slider-counter {
        right: 24px;
        bottom: 20px;
    }
    .counter-current {
        font-size: 22px;
    }
    .slider-dots {
        bottom: 16px;
        gap: 6px;
    }
    .slider-dot {
        width: 30px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        min-height: 380px;
    }
    .slide-content {
        bottom: 50px;
        left: 18px;
        right: 18px;
    }
    .slide-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }
    .slide-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .btn-slide-cta {
        padding: 10px 20px;
        font-size: 12px;
    }
    .btn-slide-ghost {
        display: none;
    }
    .slide::before {
        font-size: 110px;
        letter-spacing: -6px;
    }
    .slider-counter {
        display: none;
    }
    .slider-arrow {
        width: 34px;
        height: 34px;
    }
}

/* --- SECCIÓN HERO ASIMÉTRICA --- */
.hero-section {
    min-height: auto;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 80px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-orange-rgb), 0.08);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.25);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(var(--accent-orange-rgb), 0.25); box-shadow: 0 0 0 0 rgba(var(--accent-orange-rgb), 0.15); }
    50% { border-color: rgba(var(--accent-orange-rgb), 0.6); box-shadow: 0 0 15px 4px rgba(var(--accent-orange-rgb), 0.1); }
    100% { border-color: rgba(var(--accent-orange-rgb), 0.25); box-shadow: 0 0 0 0 rgba(var(--accent-orange-rgb), 0.15); }
}

h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-orange) 75%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.description {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
}

.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-hover) 100%);
    color: var(--bg-dark-blue);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(var(--accent-orange-rgb), 0.35);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--accent-orange-rgb), 0.5);
    background: linear-gradient(135deg, var(--accent-hover) 0%, #C2740A 100%);
}

.btn-secondary {
    background-color: rgba(var(--rgb-contrast), 0.03);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

..btn-secondary:hover {
    background-color: rgba(var(--rgb-contrast), 0.08);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

/* WhatsApp flotante */
.whatsapp-widget {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.whatsapp-toast {
    position: relative;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--bg-dark-blue);
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-toast::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
}

.whatsapp-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    box-shadow:
        0 8px 32px rgba(37, 211, 102, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    color: #fff;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease;
    pointer-events: auto;
    overflow: visible;
}

/* Anillo de pulso — llama la atención */
.whatsapp-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: wa-pulse-ring 2.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -1;
}

@keyframes wa-pulse-ring {
    0%   { transform: scale(1);    opacity: 0.75; }
    60%  { transform: scale(1.5);  opacity: 0; }
    100% { transform: scale(1.5);  opacity: 0; }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow:
        0 12px 40px rgba(37, 211, 102, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover::before {
    animation-play-state: paused;
}

[data-theme="light"] .whatsapp-button {
    background: #25D366;
    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.38),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .whatsapp-label {
    background: #1faa52;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg,
.whatsapp-icon img {
    width: 34px;
    height: 34px;
    display: block;
    fill: #ffffff;
    stroke: none;
}

.whatsapp-label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #1faa52;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Puntita del tooltip */
.whatsapp-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 7px;
    border-color: transparent transparent transparent #1faa52;
}

.whatsapp-button:hover .whatsapp-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Badge tipo iOS: fuera del círculo, con borde blanco */
.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 11px;
    background: #FF3B30;
    color: #fff;
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.45);
    letter-spacing: -0.2px;
    animation: badge-pop 0.4s 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes badge-pop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

[data-theme="light"] .whatsapp-badge {
    border-color: #F1F5F9;
}

.whatsapp-widget_hidden {
    display: none !important;
}

@media (max-width: 680px) {
    .whatsapp-widget {
        right: 18px;
        bottom: 18px;
    }
    .whatsapp-toast {
        max-width: 220px;
        padding: 12px 14px;
        font-size: 13px;
    }
    .whatsapp-label {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Columna Derecha: Dashboard de Ingeniería Interactiva */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    position: relative;
}

.dashboard-mockup {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 480px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 245, 255, 0.05);
    position: relative;
    animation: float-panel 12s 1 ease-in-out forwards;
}

@keyframes float-panel {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* --- Browser Mockup (Hero Right) --- */
.browser-mockup {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    animation: float-panel 8s ease-in-out infinite;
    filter:
        drop-shadow(0 40px 60px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 80px rgba(255, 140, 0, 0.07));
}

.browser-bar {
    background: rgba(18, 26, 46, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px 16px 0 0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-bar .browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 5px 12px;
    font-family: var(--font-tech);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browser-bar .browser-url svg {
    color: #10B981;
    flex-shrink: 0;
    opacity: 0.9;
}

.browser-screen {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
    position: relative;
    background: #0F172A;
}

.browser-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: object-position 7s cubic-bezier(0.45, 0, 0.55, 1);
}

.browser-mockup:hover .browser-screen img {
    object-position: bottom center;
}

.browser-badge-speed {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow:
        0 0 0 5px rgba(16, 185, 129, 0.12),
        0 0 35px rgba(16, 185, 129, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
}

.badge-score {
    font-family: var(--font-tech);
    font-size: 23px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.badge-label {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.browser-badge-delivery {
    position: absolute;
    top: 56px;
    left: -22px;
    background: rgba(14, 20, 38, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.32);
    border-radius: 100px;
    padding: 8px 14px 8px 10px;
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(var(--accent-orange-rgb), 0.12);
    white-space: nowrap;
    z-index: 10;
}

.browser-badge-delivery svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(var(--rgb-contrast), 0.06);
    padding-bottom: 15px;
}

.dots-container {
    display: flex;
    gap: 6px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background-color: #EF4444; }
.dot-yellow { background-color: #F59E0B; }
.dot-green { background-color: #10B981; }

.system-status {
    font-family: var(--font-tech);
    font-size: 11px;
    color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background: rgba(var(--rgb-contrast), 0.02);
    border: 1px solid rgba(var(--rgb-contrast), 0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-family: var(--font-tech);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.metric-value.speed {
    color: #10B981; /* Verde esmeralda para optimización */
}

.metric-value.latency {
    color: var(--accent-cyan);
}

.circle-progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    position: relative;
    width: 120px;
    height: 120px;
}

.circle-svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(var(--rgb-contrast), 0.05);
    stroke-width: 8;
}

.circle-bar {
    fill: none;
    stroke: url(#speedGrad);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 31.4; /* Representa 90% en arco */
    animation: animate-circle 2s forwards ease-out;
}

@keyframes animate-circle {
    to { stroke-dashoffset: 0; } /* 100/100 cargado */
}

.circle-text-center {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-number {
    font-family: var(--font-tech);
    font-size: 32px;
    font-weight: 700;
    color: #10B981;
    line-height: 1;
}

.circle-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.dashboard-code {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #C0CAF5;
    border-left: 3px solid var(--accent-orange);
    overflow-x: auto;
}

.code-keyword { color: #BB9AF7; }
.code-string { color: #9ECE6A; }
.code-function { color: #7AA2F7; }

/* --- PANEL DE RESULTADOS HERO (reemplaza dashboard técnico) --- */

/* Tarjeta Google #1 */
.google-rank-card {
    background: rgba(var(--rgb-contrast), 0.025);
    border: 1px solid rgba(var(--rgb-contrast), 0.07);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.google-rank-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-tech);
}

.google-result-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rank-number {
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD580 0%, var(--accent-orange) 55%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(var(--accent-orange-rgb), 0.3));
}

.rank-number span {
    font-size: 28px;
    letter-spacing: -1px;
}

.google-result-info {
    flex: 1;
    min-width: 0;
}

.google-result-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.google-result-url {
    font-size: 11px;
    color: #34A853;
    font-weight: 600;
    margin-bottom: 3px;
}

.google-result-desc {
    font-size: 10.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Notificación en vivo (WhatsApp) */
.live-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 211, 102, 0.07);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
}

.notif-wa-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.notif-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.notif-live-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #25D366;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
    animation: notif-pulse 2s ease-in-out infinite;
}

@keyframes notif-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(37, 211, 102, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 18px rgba(37, 211, 102, 0.8), 0 0 30px rgba(37, 211, 102, 0.25); transform: scale(1.15); }
}

/* Light mode */
[data-theme="light"] .google-rank-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .google-result-title { color: #0F172A; }
[data-theme="light"] .google-result-desc { color: #64748B; }
[data-theme="light"] .live-notification { background: rgba(37, 211, 102, 0.05); border-color: rgba(37, 211, 102, 0.18); }
[data-theme="light"] .notif-title { color: #0F172A; }
[data-theme="light"] .notif-sub { color: #64748B; }

/* --- SECCIÓN DETALLES CORE (TARJETAS DE ALTO CONTRASTE) --- */
.core-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--accent-orange);
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* Tarjeta Blanca de Alto Contraste Premium */
.info-card {
    background-color: var(--card-light);
    color: var(--card-light-text);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-hover));
    opacity: 0;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(var(--accent-orange-rgb), 0.25);
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(var(--accent-orange-rgb), 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.info-card:hover .card-icon-container {
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    transform: scale(1.05);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--card-light-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card p {
    color: #475569; /* Color de texto suave y legible en blanco */
    font-size: 15.5px;
    line-height: 1.6;
}

/* --- SECCIÓN PORTAFOLIO: CASO DE ÉXITO DETALLADO (IMPOFER) --- */
.portfolio-section {
    background-color: rgba(var(--rgb-card), 0.3);
    border-top: 1px solid rgba(var(--rgb-contrast), 0.03);
    border-bottom: 1px solid rgba(var(--rgb-contrast), 0.03);
    padding: 100px 24px;
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(var(--accent-orange-rgb), 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Filtros */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(var(--rgb-contrast), 0.03);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-main);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: rgba(var(--accent-orange-rgb), 0.4);
    color: var(--text-white);
    background: rgba(var(--accent-orange-rgb), 0.05);
}

.filter-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-dark-blue);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(var(--accent-orange-rgb), 0.3);
}

/* Grid de proyectos */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Tarjeta de proyecto */
.portfolio-card {
    background: linear-gradient(160deg, rgba(var(--rgb-card), 0.7) 0%, rgba(var(--rgb-card-alt), 0.5) 100%);
    border: 1px solid rgba(var(--rgb-contrast), 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 140, 0, 0.08);
}

.portfolio-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card.hidden {
    display: none;
}

/* Imagen del proyecto */
.portfolio-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(var(--rgb-deep), 0.6);
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.05);
}

/* Placeholder SVG para proyectos sin imagen */
.portfolio-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.15);
}

.portfolio-card-placeholder svg {
    opacity: 0.3;
}

.portfolio-card-placeholder span {
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Badge de categoría */
.portfolio-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Cuerpo de la tarjeta */
.portfolio-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}

.portfolio-card-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Tags de tecnología */
.portfolio-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.portfolio-card-tags span {
    background: rgba(var(--rgb-contrast), 0.04);
    border: 1px solid rgba(var(--rgb-contrast), 0.06);
    color: rgba(var(--rgb-contrast), 0.5);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-family: var(--font-tech);
    font-weight: 500;
}

/* Botón visitar */
.btn-visitar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(var(--accent-orange-rgb), 0.3);
    color: var(--accent-orange);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    width: fit-content;
    margin-top: 6px;
}

.btn-visitar:hover {
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    border-color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(var(--accent-orange-rgb), 0.3);
    transform: translateY(-2px);
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 6px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .portfolio-card-body {
        padding: 16px;
    }

    .portfolio-card-body h3 {
        font-size: 16px;
    }

    .portfolio-section {
        padding: 60px 16px;
    }
}

/* --- SECCIÓN CARRUSEL DE PROYECTOS --- */
.projects-carousel-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
}

.projects-carousel-container {
    background: linear-gradient(135deg, rgba(var(--rgb-card), 0.4) 0%, rgba(var(--rgb-card-alt), 0.2) 100%);
    border: 1px solid rgba(var(--rgb-contrast), 0.06);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.projects-carousel-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-orange-rgb), 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.projects-carousel-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.projects-carousel-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 12px auto 0;
}

.projects-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    background: rgba(var(--rgb-contrast), 0.05);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.projects-carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.projects-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slide {
    min-width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Laptop Mockup */
.laptop-mockup {
    width: 100%;
    max-width: 260px;
    position: relative;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

.laptop-screen {
    background: #1a1a1a;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 4px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    z-index: 5;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--rgb-contrast), 0.02) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    color: rgba(var(--rgb-contrast), 0.2);
}

.project-placeholder svg {
    opacity: 0.4;
}

.project-placeholder span {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    color: rgba(var(--rgb-contrast), 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.laptop-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 50%, #909090 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 0 2px 2px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(180deg, #b0b0b0 0%, #999 100%);
    border-radius: 0 0 4px 4px;
}

/* Botón Visitar Web */
.btn-visitar-project {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-visitar-project:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--accent-orange-rgb), 0.3);
}

/* Dots */
.projects-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.project-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(var(--rgb-contrast), 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.project-dot.active {
    background: var(--accent-orange);
    box-shadow: 0 0 10px rgba(var(--accent-orange-rgb), 0.4);
    transform: scale(1.2);
}

/* CTA Asesoría */
.projects-carousel-cta {
    text-align: center;
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

.btn-asesoria {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-asesoria:hover {
    background: var(--accent-orange);
    color: var(--bg-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-orange-rgb), 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .project-slide {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .projects-carousel-section {
        padding: 60px 16px;
    }

    .projects-carousel-container {
        padding: 40px 20px;
    }

    .project-slide {
        min-width: 100%;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .laptop-mockup {
        max-width: 240px;
    }
}

/* --- SECCIÓN SERVICIOS TEASER --- */
.services-section {
    background-color: rgba(var(--rgb-card), 0.15);
    border-top: 1px solid rgba(var(--rgb-contrast), 0.02);
    padding: 100px 24px;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(var(--rgb-card), 0.45);
    border: 1px solid rgba(var(--rgb-contrast), 0.06);
    border-radius: 18px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-orange-rgb), 0.3);
    background: rgba(var(--rgb-card), 0.65);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    color: var(--accent-orange);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* --- FOOTER Y CONVERSIÓN --- */
footer {
    background-color: var(--clr-footer);
    border-top: 1px solid rgba(var(--rgb-contrast), 0.06);
    padding: 50px 24px 25px 24px;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14.5px;
    max-width: 320px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14.5px;
    transition: var(--transition-smooth);
    width: fit-content;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition-smooth);
    font-size: 15px;
}

.contact-item svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-item:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

/* --- SECCIÓN LEGAL EN FOOTER --- */
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-legal-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    width: fit-content;
}

.footer-legal-links a:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
}

/* Bloque Libro de Reclamaciones */
.footer-reclamaciones-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.footer-reclamaciones-block:hover {
    transform: translateY(-2px);
}

.footer-reclamaciones-block svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.footer-reclamaciones-block span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* Light mode - Legal section */
[data-theme="light"] .footer-legal-links a {
    color: #475569;
}

[data-theme="light"] .footer-legal-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(var(--rgb-contrast), 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13.5px;
}

/* --- SECCIÓN QUIÉNES SOMOS --- */
.about-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(var(--accent-orange-rgb), 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-orange-rgb), 0.15), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.stat-item {
    text-align: center;
    background: rgba(var(--rgb-contrast), 0.02);
    border: 1px solid rgba(var(--rgb-contrast), 0.06);
    border-radius: 16px;
    padding: 24px 28px;
    flex: 1;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    border-color: rgba(var(--accent-orange-rgb), 0.3);
    background: rgba(var(--accent-orange-rgb), 0.03);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-tech);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-badge {
    background: rgba(var(--rgb-contrast), 0.02);
    border: 1px solid rgba(var(--rgb-contrast), 0.06);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition-smooth);
}

.about-badge:hover {
    transform: translateX(6px);
    border-color: rgba(var(--accent-orange-rgb), 0.3);
    background: rgba(var(--accent-orange-rgb), 0.03);
}

.about-badge svg {
    width: 28px;
    height: 28px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.about-badge h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-white);
}

.about-badge p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* --- SECCIÓN FORMULARIO DE COTIZACIÓN --- */
.form-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 245, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.15), transparent);
}

.form-container {
    max-width: 780px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(145deg, rgba(var(--rgb-card), 0.6) 0%, rgba(var(--rgb-card-alt), 0.4) 100%);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(var(--rgb-contrast), 0.03);
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-white);
    font-family: var(--font-main);
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(var(--accent-orange-rgb), 0.1);
    background: rgba(var(--accent-orange-rgb), 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--clr-inverse);
    color: var(--text-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-hover) 100%);
    color: var(--bg-dark-blue);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(var(--accent-orange-rgb), 0.35);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--accent-orange-rgb), 0.5);
    background: linear-gradient(135deg, var(--accent-hover) 0%, #C2740A 100%);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: none;
    text-align: center;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

/* Responsive formulario */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 24px;
    }

    .about-section,
    .form-section {
        padding: 60px 18px;
    }
}

/* --- ANIMACIÓN REVEAL (Aparición con scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVO PARA MÓVILES --- */
@media (max-width: 1024px) {
    h1 {
        font-size: 46px;
    }
    .hero-section {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: rgba(var(--rgb-deep), 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(var(--rgb-contrast), 0.06);
    }

    nav.open {
        right: 0;
    }

    nav a {
        margin: 0;
        font-size: 18px;
    }

    /* Dropdown responsivo en mobile */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: static;
    }

    .dropdown-trigger {
        justify-content: center;
        width: 100%;
        padding: 8px 0;
    }

    .dropdown-trigger::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        padding: 12px 0;
    }

    .dropdown-item {
        justify-content: center;
        padding: 12px 20px;
        border-left: none;
        font-size: 16px;
    }

    .dropdown-item:hover {
        border-left: none;
        padding-left: 20px;
    }

    .nav-actions {
        display: flex; /* Mantener toggle visible en móvil */
    }

    .nav-actions .btn-nav {
        display: none; /* Solo ocultar el botón Cotizar */
    }

    .nav-actions .theme-toggle {
        display: flex;
    }

    /* Hero responsivo */
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 50px; /* Reducido ya que el slider está arriba */
        gap: 50px;
        text-align: center;
    }

    .tagline-badge {
        margin: 0 auto 20px auto;
    }

    .description {
        margin: 0 auto 35px auto;
    }

    .cta-group {
        justify-content: center;
    }

    .dashboard-mockup {
        margin: 0 auto;
    }

    .browser-mockup {
        margin: 0 auto;
        max-width: 100%;
    }

    .browser-badge-delivery {
        left: -10px;
        font-size: 11px;
        padding: 7px 12px 7px 9px;
    }

    .browser-badge-speed {
        right: -10px;
        bottom: -14px;
        width: 68px;
        height: 68px;
    }

    .badge-score {
        font-size: 19px;
    }


    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .payment-flow {
        flex-direction: column;
        gap: 10px;
    }

    .flow-divider {
        width: 2px;
        height: 30px;
    }

    .flow-divider::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

/* --- SECCIÓN TECH STACK MARQUEE DINÁMICO --- */
.tech-stack-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(var(--rgb-card), 0.5) 0%, rgba(30, 58, 138, 0.2) 100%);
    border-top: 1px solid rgba(var(--rgb-contrast), 0.03);
    border-bottom: 1px solid rgba(var(--rgb-contrast), 0.03);
    position: relative;
    overflow: hidden;
}

.tech-stack-container {
    max-width: 1280px;
    margin: 0 auto;
}

.tech-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 24px 0;
}

/* Canvas de partículas */
.tech-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Fade edges para efecto marquee premium */
.tech-carousel-wrapper::before,
.tech-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.tech-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(var(--rgb-card), 0.9) 0%, transparent 100%);
}

.tech-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(var(--rgb-card), 0.9) 0%, transparent 100%);
}

/* Track del marquee */
.tech-carousel {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    position: relative;
    z-index: 1;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.tech-carousel.paused {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Items individuales */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 120px;
    padding: 22px 18px;
    background: rgba(var(--rgb-contrast), 0.02);
    border: 1px solid rgba(var(--rgb-contrast), 0.06);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    animation: tech-float 5s ease-in-out infinite;
}

@keyframes tech-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Delays de flotación escalonados */
.tech-item:nth-child(1)  { animation-delay: 0s; }
.tech-item:nth-child(2)  { animation-delay: 0.4s; }
.tech-item:nth-child(3)  { animation-delay: 0.8s; }
.tech-item:nth-child(4)  { animation-delay: 1.2s; }
.tech-item:nth-child(5)  { animation-delay: 1.6s; }
.tech-item:nth-child(6)  { animation-delay: 2.0s; }
.tech-item:nth-child(7)  { animation-delay: 2.4s; }
.tech-item:nth-child(8)  { animation-delay: 2.8s; }
.tech-item:nth-child(9)  { animation-delay: 3.2s; }
.tech-item:nth-child(10) { animation-delay: 3.6s; }
.tech-item:nth-child(11) { animation-delay: 4.0s; }
.tech-item:nth-child(12) { animation-delay: 4.4s; }
.tech-item:nth-child(13) { animation-delay: 4.8s; }
.tech-item:nth-child(14) { animation-delay: 5.2s; }
.tech-item:nth-child(15) { animation-delay: 5.6s; }

/* Hover con glow de color de marca */
.tech-item:hover {
    background: rgba(var(--rgb-contrast), 0.08);
    border-color: var(--tech-glow, var(--accent-orange));
    transform: translateY(-10px) scale(1.08);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.3),
        0 0 25px var(--tech-glow-soft, rgba(var(--accent-orange-rgb), 0.2)),
        inset 0 1px 0 rgba(var(--tech-glow-rgb, var(--accent-orange-rgb)), 0.15);
    animation-play-state: paused;
}

.tech-item:hover .tech-logo {
    transform: scale(1.15) rotate(-3deg);
    border-color: var(--tech-glow, var(--accent-orange));
    background: rgba(var(--tech-glow-rgb, var(--accent-orange-rgb)), 0.08);
}

.tech-item:hover .tech-logo svg,
.tech-item:hover .tech-logo img {
    filter: drop-shadow(0 0 8px var(--tech-glow, var(--accent-orange)));
    transform: scale(1.05);
}

.tech-item:hover .tech-logo-invert img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--tech-glow, #fff));
}

[data-theme="light"] .tech-item:hover .tech-logo-invert img {
    filter: drop-shadow(0 0 8px var(--tech-glow, var(--accent-orange)));
}

.tech-item:hover .tech-name {
    color: var(--tech-glow, var(--accent-orange));
}

/* Logo container */
.tech-logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(var(--rgb-contrast), 0.03);
    border: 1px solid rgba(var(--rgb-contrast), 0.1);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-logo svg,
.tech-logo img {
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

/* Logos con fondo oscuro (GitHub, Next.js) — se invierten en modo oscuro */
.tech-logo-invert img {
    filter: brightness(0) invert(1);
}

[data-theme="light"] .tech-logo-invert img {
    filter: none;
}

/* Nombre de tecnología */
.tech-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    white-space: nowrap;
    transition: color 0.4s ease;
}

/* Colores de marca por tecnología */
.tech-item[data-tech="html5"]       { --tech-glow: #E34C26; --tech-glow-rgb: 227, 76, 38; }
.tech-item[data-tech="css3"]        { --tech-glow: #1572B6; --tech-glow-rgb: 21, 114, 182; }
.tech-item[data-tech="javascript"]  { --tech-glow: #F7DF1E; --tech-glow-rgb: 247, 223, 30; }
.tech-item[data-tech="typescript"]  { --tech-glow: #3178C6; --tech-glow-rgb: 49, 120, 198; }
.tech-item[data-tech="react"]       { --tech-glow: #61DAFB; --tech-glow-rgb: 97, 218, 251; }
.tech-item[data-tech="nextjs"]      { --tech-glow: #e0e0e0; --tech-glow-rgb: 224, 224, 224; }
.tech-item[data-tech="nodejs"]      { --tech-glow: #68A063; --tech-glow-rgb: 104, 160, 99; }
.tech-item[data-tech="php"]         { --tech-glow: #777BB3; --tech-glow-rgb: 119, 123, 179; }
.tech-item[data-tech="mysql"]       { --tech-glow: #4479A1; --tech-glow-rgb: 68, 121, 161; }
.tech-item[data-tech="postgresql"]  { --tech-glow: #336791; --tech-glow-rgb: 51, 103, 145; }
.tech-item[data-tech="mongodb"]     { --tech-glow: #00ED64; --tech-glow-rgb: 0, 237, 100; }
.tech-item[data-tech="tailwind"]    { --tech-glow: #06B6D4; --tech-glow-rgb: 6, 182, 212; }
.tech-item[data-tech="git"]         { --tech-glow: #F05032; --tech-glow-rgb: 240, 80, 50; }
.tech-item[data-tech="github"]      { --tech-glow: #c0c0c0; --tech-glow-rgb: 192, 192, 192; }
.tech-item[data-tech="figma"]       { --tech-glow: #F24E1E; --tech-glow-rgb: 242, 78, 30; }

/* Responsive */
@media (max-width: 768px) {
    .tech-stack-section {
        padding: 60px 16px;
    }

    .tech-carousel-wrapper::before,
    .tech-carousel-wrapper::after {
        width: 60px;
    }

    .tech-carousel {
        gap: 16px;
        animation-duration: 30s;
    }

    .tech-item {
        min-width: 100px;
        padding: 18px 14px;
    }

    .tech-logo {
        width: 48px;
        height: 48px;
    }

    .tech-name {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .tech-carousel {
        gap: 12px;
        animation-duration: 25s;
    }

    .tech-item {
        min-width: 88px;
        padding: 14px 10px;
    }

    .tech-logo {
        width: 40px;
        height: 40px;
    }
}

/* --- SOPORTE DE ACCESIBILIDAD: prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   PÁGINA DE SERVICIOS — ESTILOS COMPLETOS
============================================================ */

/* --- HERO DE SERVICIOS --- */
.srv-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 24px 80px;
}

.srv-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-orange-rgb), 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(var(--accent-cyan-rgb), 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.srv-hero-content {
    text-align: center;
    max-width: 860px;
    z-index: 2;
    position: relative;
}

.srv-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 16px 0 24px;
}

.srv-hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Pills de navegación de servicios */
.srv-nav-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.srv-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted);
    background: rgba(var(--rgb-contrast), 0.04);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    transition: var(--transition-smooth);
}

.srv-pill:hover {
    color: var(--text-white);
    background: rgba(var(--rgb-contrast), 0.08);
    border-color: rgba(var(--rgb-contrast), 0.15);
    transform: translateY(-2px);
}

.srv-pill.active {
    color: var(--accent-orange);
    background: rgba(var(--accent-orange-rgb), 0.08);
    border-color: rgba(var(--accent-orange-rgb), 0.35);
    box-shadow: 0 0 20px rgba(var(--accent-orange-rgb), 0.1);
}

/* Indicador de scroll */
.srv-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0.5;
}

.srv-hero-scroll span {
    font-family: var(--font-tech);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.srv-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-orange), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- SECCIONES DETALLADAS DE SERVICIOS --- */
.srv-detail-section {
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.srv-alt-bg {
    background: rgba(var(--rgb-card), 0.25);
    border-top: 1px solid rgba(var(--rgb-contrast), 0.04);
    border-bottom: 1px solid rgba(var(--rgb-contrast), 0.04);
}

.srv-detail-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(var(--accent-orange-rgb), 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.srv-alt-bg::before {
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(var(--accent-cyan-rgb), 0.03) 0%, transparent 60%);
}

.srv-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.srv-reverse {
    direction: rtl;
}

.srv-reverse > * {
    direction: ltr;
}

/* Badge de servicio */
.srv-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(var(--accent-orange-rgb), 0.08);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

/* Título */
.srv-detail-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.srv-accent {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descripción */
.srv-detail-desc {
    color: var(--text-muted);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Lista de features */
.srv-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.srv-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.srv-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin-top: 1px;
}

/* Stats */
.srv-stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(var(--rgb-contrast), 0.06);
    border-bottom: 1px solid rgba(var(--rgb-contrast), 0.06);
}

.srv-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.srv-stat-num {
    font-family: var(--font-tech);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-orange);
    white-space: nowrap;
}

.srv-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* CTA */
.srv-cta-btn {
    width: fit-content;
}

/* ===================== MOCKUPS VISUALES ===================== */
.srv-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.srv-mockup {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: visible;
    background: rgba(10, 17, 40, 0.9);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(var(--rgb-contrast), 0.08),
        0 0 60px rgba(var(--accent-orange-rgb), 0.04);
    position: relative;
    animation: mockup-float 6s ease-in-out infinite;
}

@keyframes mockup-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

[data-theme="light"] .srv-mockup {
    background: rgba(15, 23, 42, 0.85);
}

/* Barra del navegador */
.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px 16px 0 0;
}

.browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.b-dot.red { background: #EF4444; }
.b-dot.yellow { background: #F59E0B; }
.b-dot.green { background: #10B981; }

.browser-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 5px 10px;
    font-family: var(--font-tech);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

/* Pantalla del mockup */
.mockup-screen {
    padding: 20px;
    background: linear-gradient(180deg, rgba(15,23,42,0.8) 0%, rgba(5,10,25,0.9) 100%);
    border-radius: 0 0 14px 14px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.dark-screen {
    background: linear-gradient(180deg, rgba(3,7,18,0.95) 0%, rgba(5,8,20,0.98) 100%);
    display: flex;
    gap: 0;
}

/* ===== Mockup Landing Page ===== */
.mock-hero-block {
    margin-bottom: 18px;
}

.mock-tag-bar {
    width: 90px;
    height: 10px;
    background: rgba(var(--accent-orange-rgb), 0.4);
    border-radius: 999px;
    margin-bottom: 12px;
}

.mock-headline {
    height: 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-bottom: 8px;
    width: 85%;
}

.mock-headline.short {
    width: 60%;
    background: rgba(var(--accent-orange-rgb), 0.35);
}

.mock-subtext {
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    width: 75%;
    margin-bottom: 16px;
}

.mock-cta-bar {
    display: flex;
    gap: 8px;
}

.mock-btn {
    height: 28px;
    border-radius: 6px;
}

.mock-btn.primary {
    width: 100px;
    background: linear-gradient(90deg, var(--accent-orange), #FBBF24);
}

.mock-btn.ghost {
    width: 80px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
}

.mock-metrics-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.mock-metric-card {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px;
}

.mock-metric-num {
    height: 16px;
    border-radius: 3px;
    margin-bottom: 6px;
    width: 60%;
}

.mock-metric-num.orange { background: rgba(var(--accent-orange-rgb), 0.6); }
.mock-metric-num.cyan { background: rgba(var(--accent-cyan-rgb), 0.5); }
.mock-metric-num.green { background: rgba(16, 185, 129, 0.6); }

.mock-metric-label {
    height: 7px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    width: 80%;
}

.mock-conversion-bar {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 10px;
}

.mock-conv-label {
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    width: 50%;
    margin-bottom: 8px;
}

.mock-conv-bar-track {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    overflow: hidden;
}

.mock-conv-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), #FBBF24);
    border-radius: 999px;
    animation: conv-fill-anim 2.5s ease-out forwards;
}

@keyframes conv-fill-anim {
    from { width: 0; }
}

/* Score badge */
.mockup-score-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16,185,129,0.4);
    z-index: 10;
}

.score-num {
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.score-label {
    font-size: 7px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Mockup E-commerce ===== */
.mock-product-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 12px 12px 8px;
}

.mock-product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px;
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
}

.mock-product-card.featured {
    border-color: rgba(var(--accent-orange-rgb), 0.25);
    background: rgba(var(--accent-orange-rgb), 0.05);
}

.mock-badge-new {
    position: absolute;
    top: -6px;
    right: 6px;
    background: var(--accent-orange);
    color: #000;
    font-size: 7px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.mock-product-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.mock-product-name {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.mock-product-price {
    height: 10px;
    width: 36px;
    border-radius: 3px;
    flex-shrink: 0;
}

.mock-product-price.orange { background: rgba(var(--accent-orange-rgb), 0.6); }

.mock-product-btn {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    background: rgba(var(--accent-orange-rgb), 0.3);
    flex-shrink: 0;
}

/* Cart sidebar */
.mock-cart-sidebar {
    width: 100px;
    padding: 12px 8px;
    border-left: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-cart-title {
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    width: 70%;
}

.mock-cart-item {
    height: 7px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.mock-cart-total {
    height: 12px;
    border-radius: 3px;
}

.mock-cart-total.orange { background: rgba(var(--accent-orange-rgb), 0.5); }

.mock-checkout-btn {
    height: 22px;
    background: linear-gradient(90deg, var(--accent-orange), #FBBF24);
    border-radius: 6px;
    margin-top: auto;
}

/* WhatsApp badge */
.mockup-whatsapp-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #128C7E;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.4);
    z-index: 10;
}

/* ===== Mockup Corporativo ===== */
.mock-corp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-corp-logo {
    width: 60px;
    height: 12px;
    background: rgba(var(--accent-orange-rgb), 0.5);
    border-radius: 3px;
}

.mock-corp-nav {
    display: flex;
    gap: 8px;
}

.mock-nav-item {
    width: 28px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.mock-nav-item.active {
    background: rgba(var(--accent-orange-rgb), 0.5);
}

.mock-corp-hero {
    background: linear-gradient(90deg, rgba(var(--accent-orange-rgb), 0.08), transparent);
    border-left: 3px solid var(--accent-orange);
    padding: 14px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 14px;
}

.mock-corp-title {
    height: 12px;
    background: rgba(255,255,255,0.25);
    border-radius: 3px;
    width: 80%;
    margin-bottom: 8px;
}

.mock-corp-sub {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    width: 60%;
}

.mock-corp-sections {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.mock-corp-card {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    border-top: 2px solid;
}

.mock-corp-card.blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.mock-corp-card.orange {
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-color: rgba(var(--accent-orange-rgb), 0.4);
}

.mock-corp-card.teal {
    background: rgba(var(--accent-cyan-rgb), 0.1);
    border-color: rgba(var(--accent-cyan-rgb), 0.35);
}

/* Analytics strip */
.mock-analytics-strip {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 36px;
}

.mock-analytics-bar {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(to top, rgba(var(--accent-orange-rgb), 0.6), rgba(var(--accent-orange-rgb), 0.2));
    border-radius: 3px 3px 0 0;
}

/* CMS badge */
.mockup-cms-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, rgba(10,17,42,0.98), rgba(15,23,50,0.98));
    border: 1px solid rgba(var(--accent-orange-rgb), 0.3);
    color: var(--accent-orange);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 10;
}

/* ===== Mockup Web App ===== */
.mock-app-sidebar {
    width: 36px;
    background: rgba(0,0,0,0.3);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 0 0 0 14px;
}

.mock-sidebar-item {
    height: 22px;
    border-radius: 5px;
    background: rgba(255,255,255,0.06);
}

.mock-sidebar-item.active {
    background: rgba(var(--accent-orange-rgb), 0.3);
    border-left: 2px solid var(--accent-orange);
}

.mock-app-main {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-app-title {
    height: 10px;
    width: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.mock-app-actions {
    display: flex;
    gap: 6px;
}

.mock-action-btn {
    width: 28px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.mock-action-btn.filled {
    background: rgba(var(--accent-orange-rgb), 0.4);
    border-color: rgba(var(--accent-orange-rgb), 0.2);
}

.mock-app-kpis {
    display: flex;
    gap: 6px;
}

.mock-kpi {
    flex: 1;
    height: 28px;
    border-radius: 6px;
}

.mock-kpi.cyan { background: rgba(var(--accent-cyan-rgb), 0.15); border: 1px solid rgba(var(--accent-cyan-rgb), 0.2); }
.mock-kpi.orange { background: rgba(var(--accent-orange-rgb), 0.15); border: 1px solid rgba(var(--accent-orange-rgb), 0.2); }
.mock-kpi.green { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.2); }

.mock-app-chart {
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.mock-chart-line {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(var(--accent-cyan-rgb),0.2) 5%,
        rgba(var(--accent-cyan-rgb),0.7) 15%,
        rgba(var(--accent-cyan-rgb),0.3) 30%,
        rgba(var(--accent-cyan-rgb),0.8) 50%,
        rgba(var(--accent-orange-rgb),0.9) 70%,
        rgba(var(--accent-orange-rgb),0.5) 85%,
        transparent 100%
    );
    filter: blur(1px);
}

.mock-app-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-table-row {
    height: 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 3px;
}

.mock-table-row.header {
    background: rgba(255,255,255,0.08);
}

.mock-table-row.alt {
    background: rgba(var(--accent-orange-rgb), 0.05);
}

/* Tech badges */
.mockup-tech-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.tech-tag {
    background: rgba(10,17,42,0.95);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.25);
    color: var(--accent-cyan);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ===================== CTA FINAL ===================== */
.srv-final-cta {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.srv-cta-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.srv-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(var(--accent-orange-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.srv-cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 16px 0 20px;
}

.srv-cta-desc {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.srv-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.srv-wa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .srv-detail-container {
        gap: 50px;
    }
}

@media (max-width: 860px) {
    .srv-detail-section {
        padding: 80px 20px;
    }

    .srv-detail-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .srv-reverse {
        direction: ltr;
    }

    .srv-detail-visual {
        order: -1;
    }

    .srv-mockup {
        max-width: 100%;
    }

    .mockup-score-badge,
    .mockup-whatsapp-badge,
    .mockup-cms-badge,
    .mockup-tech-badge {
        display: none;
    }

    .srv-stats-row {
        gap: 20px;
    }

    .srv-hero-title {
        letter-spacing: -1px;
    }
}

@media (max-width: 600px) {
    .srv-nav-pills {
        gap: 8px;
    }

    .srv-pill {
        padding: 10px 14px;
        font-size: 13px;
    }

    .srv-stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .dark-screen {
        flex-direction: column;
    }

    .mock-app-sidebar {
        flex-direction: row;
        width: auto;
        height: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .mock-cart-sidebar {
        display: none;
    }
}

/* ============================================================
   LIGHT MODE — CORRECCIONES COMPLETAS DE VISIBILIDAD
============================================================ */

[data-theme="light"] {
    --card-light: #FFFFFF;
    --card-light-text: #0F172A;
}

/* --- Portfolio Cards en Light --- */
[data-theme="light"] .portfolio-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .portfolio-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 140, 0, 0.08);
}

[data-theme="light"] .portfolio-card-body h3 {
    color: #0F172A;
}

[data-theme="light"] .portfolio-card-body p {
    color: #475569;
}

[data-theme="light"] .portfolio-card-tags span {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #475569;
}

[data-theme="light"] .portfolio-card-placeholder {
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(255,140,0,0.04) 100%);
    color: rgba(15, 23, 42, 0.25);
}

[data-theme="light"] .portfolio-card-placeholder span {
    color: rgba(15, 23, 42, 0.35);
}

[data-theme="light"] .portfolio-card-placeholder svg {
    opacity: 0.4;
    color: #94A3B8;
}

[data-theme="light"] .portfolio-card-img {
    background: #F1F5F9;
}

/* --- Portfolio Section en Light --- */
[data-theme="light"] .portfolio-section {
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .portfolio-section::before {
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
}

/* --- Filter Buttons en Light --- */
[data-theme="light"] .filter-btn {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #475569;
}

[data-theme="light"] .filter-btn:hover {
    border-color: rgba(255, 140, 0, 0.3);
    color: #0F172A;
    background: rgba(255, 140, 0, 0.06);
}

[data-theme="light"] .filter-btn.active {
    background: var(--accent-orange);
    color: #FFFFFF;
    border-color: var(--accent-orange);
}

/* --- Service Cards en Light --- */
[data-theme="light"] .service-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
}

[data-theme="light"] .service-card h4 {
    color: #0F172A;
}

[data-theme="light"] .service-card p {
    color: #475569;
}

/* --- Services Section en Light --- */
[data-theme="light"] .services-section {
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}


/* --- Browser Mockup en Light --- */
[data-theme="light"] .browser-mockup {
    filter:
        drop-shadow(0 30px 50px rgba(0, 0, 0, 0.12))
        drop-shadow(0 0 60px rgba(255, 140, 0, 0.06));
}

[data-theme="light"] .browser-bar {
    background: #E2E8F0;
    border-color: rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .browser-bar .browser-url {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748B;
}

[data-theme="light"] .browser-screen {
    border-color: rgba(0, 0, 0, 0.08);
    background: #F1F5F9;
}

[data-theme="light"] .browser-badge-delivery {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(var(--accent-orange-rgb), 0.28);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 14px rgba(var(--accent-orange-rgb), 0.1);
}

/* --- Dashboard Mockup en Light --- */
[data-theme="light"] .dashboard-mockup {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .dashboard-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .system-status {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: #0891B2;
}

[data-theme="light"] .metric-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .metric-label {
    color: #64748B;
}

[data-theme="light"] .metric-value {
    color: #0F172A;
}

[data-theme="light"] .metric-value.latency {
    color: #0891B2;
}

[data-theme="light"] .metric-value.speed {
    color: #059669;
}

[data-theme="light"] .circle-bg {
    stroke: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .circle-number {
    color: #059669;
}

[data-theme="light"] .circle-label {
    color: #64748B;
}

[data-theme="light"] .dashboard-code {
    background: rgba(0, 0, 0, 0.04);
    color: #334155;
}

[data-theme="light"] .code-keyword { color: #7C3AED; }
[data-theme="light"] .code-string { color: #059669; }
[data-theme="light"] .code-function { color: #2563EB; }

/* --- Stat Items en Light --- */
[data-theme="light"] .stat-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .stat-item:hover {
    background: rgba(255, 140, 0, 0.04);
    border-color: rgba(255, 140, 0, 0.3);
}

[data-theme="light"] .stat-label {
    color: #64748B;
}

/* --- About Badges en Light --- */
[data-theme="light"] .about-badge {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .about-badge:hover {
    background: rgba(255, 140, 0, 0.04);
    border-color: rgba(255, 140, 0, 0.3);
}

[data-theme="light"] .about-badge h4 {
    color: #0F172A;
}

[data-theme="light"] .about-badge p {
    color: #475569;
}

/* --- Tech Stack en Light --- */
[data-theme="light"] .tech-stack-section {
    background: rgba(0, 0, 0, 0.015);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .tech-carousel-wrapper::before {
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.95) 0%, transparent 100%);
}

[data-theme="light"] .tech-carousel-wrapper::after {
    background: linear-gradient(-90deg, rgba(248, 250, 252, 0.95) 0%, transparent 100%);
}

[data-theme="light"] .tech-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .tech-item:hover {
    background: #FFFFFF;
    border-color: var(--tech-glow, var(--accent-orange));
    transform: translateY(-10px) scale(1.08);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.08),
        0 0 20px var(--tech-glow-soft, rgba(var(--accent-orange-rgb), 0.15));
}

[data-theme="light"] .tech-logo {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .tech-name {
    color: #0F172A;
}

[data-theme="light"] .tech-item:hover .tech-name {
    color: var(--tech-glow, var(--accent-orange));
}

/* --- Contact Form en Light --- */
[data-theme="light"] .contact-form {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-group label {
    color: #0F172A;
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #0F172A;
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
    background: rgba(255, 140, 0, 0.04);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: rgba(100, 116, 139, 0.6);
}

[data-theme="light"] .form-group select option {
    background: #FFFFFF;
    color: #0F172A;
}

[data-theme="light"] .form-message.success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #059669;
}

[data-theme="light"] .form-message.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #DC2626;
}

/* --- Footer en Light --- */
[data-theme="light"] footer {
    background-color: #E2E8F0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-title {
    color: #0F172A;
}

[data-theme="light"] .footer-links a {
    color: #475569;
}

[data-theme="light"] .footer-links a:hover {
    color: var(--accent-orange);
}

[data-theme="light"] .contact-item {
    color: #0F172A;
}

[data-theme="light"] .contact-item:hover {
    color: var(--accent-orange);
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-bottom p {
    color: #64748B;
}

/* --- Hero Section en Light --- */
[data-theme="light"] .hero-section {
    color: #0F172A;
}

[data-theme="light"] .description {
    color: #475569;
}

[data-theme="light"] .tagline-badge {
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
    color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, #0F172A 30%, var(--accent-orange) 75%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Info Cards en Light --- */
[data-theme="light"] .info-card {
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .info-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .info-card h3 {
    color: #0F172A;
}

[data-theme="light"] .info-card p {
    color: #475569;
}

[data-theme="light"] .card-icon-container {
    background: rgba(255, 140, 0, 0.08);
    color: var(--accent-orange);
}

[data-theme="light"] .info-card:hover .card-icon-container {
    background: var(--accent-orange);
    color: #FFFFFF;
}

/* --- Core Section en Light --- */
[data-theme="light"] .core-section {
    background: transparent;
}


/* --- About Section en Light --- */
[data-theme="light"] .about-section {
    background: transparent;
}

[data-theme="light"] .about-section::before {
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 140, 0, 0.03) 0%, transparent 60%);
}

[data-theme="light"] .about-section::after {
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.12), transparent);
}

[data-theme="light"] .about-text p {
    color: #475569;
}

/* --- Form Section en Light --- */
[data-theme="light"] .form-section {
    background: transparent;
}

[data-theme="light"] .form-section::before {
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 229, 255, 0.03) 0%, transparent 60%);
}

[data-theme="light"] .form-section::after {
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
}

/* --- Portfolio Section Background en Light --- */
[data-theme="light"] .portfolio-section {
    background-color: rgba(0, 0, 0, 0.015);
}

/* --- Services Section Background en Light --- */
[data-theme="light"] .services-section {
    background-color: rgba(0, 0, 0, 0.015);
}

/* --- Cyber Grid en Light --- */
[data-theme="light"] .cyber-grid {
    opacity: 0.03;
}

/* --- Glow Orbs en Light --- */
[data-theme="light"] .glow-orb {
    opacity: 0.15;
}

/* --- WhatsApp Toast en Light --- */
[data-theme="light"] .whatsapp-toast {
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .whatsapp-toast::after {
    background: #FFFFFF;
}

/* --- Btn Secondary en Light --- */
[data-theme="light"] .btn-secondary {
    background-color: rgba(0, 0, 0, 0.04);
    color: #0F172A;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
}

/* --- Nav Dropdown en Light --- */
[data-theme="light"] .dropdown-menu {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dropdown-item {
    color: #0F172A;
}

[data-theme="light"] .dropdown-item:hover {
    background: rgba(255, 140, 0, 0.08);
    color: var(--accent-orange);
}

/* --- Mobile Nav en Light --- */
[data-theme="light"] nav {
    background-color: rgba(248, 250, 252, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* --- Service Detail Sections en Light --- */
[data-theme="light"] .srv-detail-section {
    background: transparent;
}

[data-theme="light"] .srv-alt-bg {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .srv-detail-section::before {
    background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255, 140, 0, 0.03) 0%, transparent 60%);
}

[data-theme="light"] .srv-alt-bg::before {
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 229, 255, 0.03) 0%, transparent 60%);
}

[data-theme="light"] .srv-hero-bg {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 140, 0, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
}

[data-theme="light"] .srv-hero-desc {
    color: #475569;
}

[data-theme="light"] .srv-pill {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #475569;
}

[data-theme="light"] .srv-pill:hover {
    color: #0F172A;
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .srv-pill.active {
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.3);
    color: var(--accent-orange);
}

[data-theme="light"] .srv-hero-scroll span {
    color: #64748B;
}

[data-theme="light"] .srv-detail-desc {
    color: #475569;
}

[data-theme="light"] .srv-features-list li {
    color: #475569;
}

[data-theme="light"] .srv-feature-icon {
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

[data-theme="light"] .srv-stats-row {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .srv-stat-label {
    color: #64748B;
}

[data-theme="light"] .srv-detail-badge {
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

/* --- Mockups en Light --- */
[data-theme="light"] .srv-mockup {
    background: #FFFFFF;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mockup-browser-bar {
    background: rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .browser-url {
    background: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .mockup-screen {
    background: linear-gradient(180deg, rgba(248,250,252,0.9) 0%, rgba(241,245,249,0.95) 100%);
}

[data-theme="light"] .dark-screen {
    background: linear-gradient(180deg, rgba(248,250,252,0.95) 0%, rgba(241,245,249,0.98) 100%);
}

[data-theme="light"] .mock-headline {
    background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .mock-headline.short {
    background: rgba(255, 140, 0, 0.3);
}

[data-theme="light"] .mock-subtext {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-btn.ghost {
    border: 1px solid rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mock-metric-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-metric-label {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-conversion-bar {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .mock-conv-label {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mock-conv-bar-track {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .mock-product-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-product-card.featured {
    border-color: rgba(255, 140, 0, 0.2);
    background: rgba(255, 140, 0, 0.04);
}

[data-theme="light"] .mock-product-img {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-product-name {
    background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .mock-product-btn {
    background: rgba(255, 140, 0, 0.25);
}

[data-theme="light"] .mock-cart-sidebar {
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-cart-title {
    background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mock-cart-item {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-corp-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-corp-nav .mock-nav-item {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-corp-nav .mock-nav-item.active {
    background: rgba(255, 140, 0, 0.4);
}

[data-theme="light"] .mock-corp-hero {
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.06), transparent);
}

[data-theme="light"] .mock-corp-title {
    background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mock-corp-sub {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-corp-card.blue {
    background: rgba(59, 130, 246, 0.08);
}

[data-theme="light"] .mock-corp-card.orange {
    background: rgba(255, 140, 0, 0.08);
}

[data-theme="light"] .mock-corp-card.teal {
    background: rgba(0, 229, 255, 0.08);
}

[data-theme="light"] .mock-analytics-bar {
    background: linear-gradient(to top, rgba(255, 140, 0, 0.5), rgba(255, 140, 0, 0.15));
}

[data-theme="light"] .mockup-cms-badge {
    background: linear-gradient(135deg, rgba(248,250,252,0.98), rgba(241,245,249,0.98));
    border: 1px solid rgba(255, 140, 0, 0.25);
    color: var(--accent-orange);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-app-sidebar {
    background: rgba(0, 0, 0, 0.04);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-sidebar-item {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .mock-sidebar-item.active {
    background: rgba(255, 140, 0, 0.2);
}

[data-theme="light"] .mock-app-title {
    background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mock-action-btn {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-action-btn.filled {
    background: rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.2);
}

[data-theme="light"] .mock-kpi.cyan { background: rgba(0, 229, 255, 0.1); border: 1px solid rgba(0, 229, 255, 0.15); }
[data-theme="light"] .mock-kpi.orange { background: rgba(255, 140, 0, 0.1); border: 1px solid rgba(255, 140, 0, 0.15); }
[data-theme="light"] .mock-kpi.green { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.15); }

[data-theme="light"] .mock-app-chart {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-table-row {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .mock-table-row.header {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mock-table-row.alt {
    background: rgba(255, 140, 0, 0.04);
}

[data-theme="light"] .tech-tag {
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: #0891B2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* --- CTA Final en Light --- */
[data-theme="light"] .srv-cta-glow {
    background: radial-gradient(ellipse, rgba(255, 140, 0, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .srv-cta-desc {
    color: #475569;
}

/* --- Reveal Animation en Light --- */
[data-theme="light"] .reveal {
    opacity: 0;
    transform: translateY(30px);
}

[data-theme="light"] .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-reclamaciones-block {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, opacity 0.3s ease, background 0.3s ease;
    mix-blend-mode: normal;
}
.cursor-outline {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255, 140, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
}
.cursor-dot.hovering { transform: translate(-50%, -50%) scale(2.5); background: var(--accent-cyan); }
.cursor-outline.hovering { width: 54px; height: 54px; border-color: rgba(0, 229, 255, 0.45); }
@media (max-width: 968px) { .cursor-dot, .cursor-outline { display: none; } }

/* ============================================================
   TYPEWRITER ANIMATION
   ============================================================ */
.typewriter-wrap {
    display: inline-block;
    position: relative;
}
.typewriter-wrap::after {
    content: '|';
    color: var(--accent-orange);
    animation: blink-cursor 0.75s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}
.typewriter-wrap.done::after {
    display: none;
}
@keyframes blink-cursor {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================================
   RIPPLE EFFECT EN BOTONES
   ============================================================ */
.btn-primary { position: relative; overflow: hidden; }
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: ripple-expand 0.6s linear;
    pointer-events: none;
}
@keyframes ripple-expand {
    to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL — VARIANTES DE DIRECCIÓN
   ============================================================ */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   SECCIÓN: ¿POR QUÉ ELEGIRNOS?
   ============================================================ */
.why-us-section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}
.why-us-section .section-header {
    text-align: center;
    margin-bottom: 64px;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.why-us-card {
    background: rgba(var(--rgb-card), 0.5);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}
.why-us-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255,140,0,0.2), transparent 60%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.why-us-card:hover {
    transform: translateY(-6px);
    background: rgba(var(--rgb-card), 0.75);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,140,0,0.15);
}
.why-us-card:hover::before { opacity: 1; }
.why-us-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}
.why-us-card:hover .why-us-card-icon {
    background: rgba(var(--accent-orange-rgb), 0.18);
    box-shadow: 0 0 20px rgba(var(--accent-orange-rgb), 0.25);
}
.why-us-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}
.why-us-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.why-us-card-num {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}
@media (max-width: 1024px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-us-grid { grid-template-columns: 1fr; } }
[data-theme="light"] .why-us-card { background: rgba(255,255,255,0.8); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
[data-theme="light"] .why-us-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,140,0,0.2); }

/* ============================================================
   SECCIÓN: STATS CONTADORES ANIMADOS
   ============================================================ */
.stats-section {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}
.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(var(--rgb-card), 0.4);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.stat-counter-item {
    text-align: center;
    padding: 52px 32px;
    position: relative;
    transition: background 0.3s ease;
}
.stat-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background: rgba(var(--rgb-contrast), 0.08);
}
.stat-counter-item:hover { background: rgba(var(--accent-orange-rgb), 0.04); }
.stat-counter-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -2px;
}
.stat-counter-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: block;
}
@media (max-width: 640px) { .stats-inner { grid-template-columns: 1fr; border-radius: 16px; } .stat-counter-item:not(:last-child)::after { display: none; } .stat-counter-num { font-size: 44px; } }
[data-theme="light"] .stats-inner { background: rgba(255,255,255,0.8); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

/* ============================================================
   SECCIÓN: TESTIMONIOS
   ============================================================ */
.testimonials-section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 64px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: rgba(var(--rgb-card), 0.5);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 28px;
    font-size: 100px;
    line-height: 1;
    font-family: var(--font-display);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.18;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,140,0,0.12); }
.testimonial-card:hover::before { opacity: 0.28; }
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #FBBF24;
    font-size: 16px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(var(--rgb-contrast), 0.07);
}
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark-blue);
    flex-shrink: 0;
}
.testimonial-avatar.av-a { background: linear-gradient(135deg, var(--accent-orange), #FBBF24); }
.testimonial-avatar.av-b { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.testimonial-avatar.av-c { background: linear-gradient(135deg, #10B981, #06B6D4); }
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--text-white); }
.testimonial-company { font-size: 13px; color: var(--accent-orange); font-weight: 500; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; } }
@media (min-width: 601px) and (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; } }
[data-theme="light"] .testimonial-card { background: rgba(255,255,255,0.85); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
[data-theme="light"] .testimonial-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,140,0,0.15); }
[data-theme="light"] .testimonial-text { color: #475569; }

/* ============================================================
   SECCIÓN: PLANES / PRECIOS — PREMIUM
   ============================================================ */
.pricing-section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.pricing-section::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 560px;
    background: radial-gradient(ellipse at center, rgba(var(--accent-orange-rgb), 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.pricing-section .section-header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.pricing-section .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 64px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}
.pricing-card {
    background: rgba(var(--rgb-card), 0.50);
    border: 1px solid rgba(var(--rgb-contrast), 0.08);
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-orange-rgb), 0.55), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 72px rgba(0,0,0,0.25), 0 0 32px rgba(var(--accent-orange-rgb), 0.08);
    border-color: rgba(var(--accent-orange-rgb), 0.22);
}
.pricing-card.featured {
    background: rgba(8, 15, 35, 0.90);
    border: 1.5px solid rgba(var(--accent-orange-rgb), 0.7);
    box-shadow:
        0 0 0 3px rgba(var(--accent-orange-rgb), 0.12),
        0 0 60px rgba(var(--accent-orange-rgb), 0.13),
        0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(1.04) translateY(-8px);
    padding-top: 60px;
    animation: featured-pulse 3.5s ease-in-out infinite;
}
@keyframes featured-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 3px rgba(var(--accent-orange-rgb), 0.12),
            0 0 50px rgba(var(--accent-orange-rgb), 0.10),
            0 30px 80px rgba(0, 0, 0, 0.4);
        border-color: rgba(var(--accent-orange-rgb), 0.65);
    }
    50% {
        box-shadow:
            0 0 0 4px rgba(var(--accent-orange-rgb), 0.22),
            0 0 90px rgba(var(--accent-orange-rgb), 0.22),
            0 30px 80px rgba(0, 0, 0, 0.4);
        border-color: rgba(var(--accent-orange-rgb), 1);
    }
}
.pricing-card.featured::before {
    top: -1px;
    left: 8%;
    right: 8%;
    opacity: 1;
    background: linear-gradient(90deg, transparent, #FBBF24 40%, var(--accent-orange) 60%, transparent);
}
.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-15px);
    box-shadow:
        0 0 0 4px rgba(var(--accent-orange-rgb), 0.22),
        0 0 100px rgba(var(--accent-orange-rgb), 0.24),
        0 42px 100px rgba(0, 0, 0, 0.45);
    animation-play-state: paused;
}
.pricing-featured-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, var(--accent-orange) 0%, #FBBF24 40%, var(--accent-orange) 80%, #FBBF24 100%);
    background-size: 200% 100%;
    animation: badge-shimmer 3s linear infinite;
    color: #020617;
    text-align: center;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--font-tech);
    border-radius: 22px 22px 0 0;
}
@keyframes badge-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}
.pricing-header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pricing-from {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-tech);
    margin-right: 2px;
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD580 0%, var(--accent-orange) 55%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -3px;
    filter: drop-shadow(0 0 18px rgba(var(--accent-orange-rgb), 0.22));
}
.pricing-currency {
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-orange);
    align-self: flex-start;
    margin-top: 10px;
}
.pricing-divider {
    height: 1px;
    background: rgba(var(--rgb-contrast), 0.08);
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}
.pricing-features li.included { color: var(--text-white); }
.pricing-features li.included .pf-icon { color: var(--accent-orange); }
.pricing-features li:not(.included) .pf-icon { color: rgba(var(--rgb-contrast), 0.2); }
.pf-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-cta { margin-top: auto; }
.btn-pricing-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-hover) 100%);
    color: var(--bg-dark-blue);
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(var(--accent-orange-rgb), 0.4);
    letter-spacing: 0.3px;
}
.btn-pricing-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(var(--accent-orange-rgb), 0.55); }
.btn-pricing-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid rgba(var(--accent-orange-rgb), 0.5);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.btn-pricing-outline:hover { border-color: var(--accent-orange); background: rgba(var(--accent-orange-rgb), 0.08); transform: translateY(-2px); }
.pricing-note {
    font-size: 12px;
    color: rgba(var(--accent-orange-rgb), 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); animation: none; }
    .pricing-card.featured:hover { transform: translateY(-5px); }
}
@media (min-width: 601px) and (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; } }
[data-theme="light"] .pricing-card { background: rgba(255,255,255,0.88); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
[data-theme="light"] .pricing-card.featured { background: rgba(255,255,255,0.97); border-color: rgba(var(--accent-orange-rgb), 0.55); box-shadow: 0 0 0 3px rgba(255,140,0,0.12), 0 0 50px rgba(255,140,0,0.10), 0 20px 60px rgba(0,0,0,0.08); }

/* ============================================================
   PORTFOLIO CARD — HOVER OVERLAY
   ============================================================ */
.portfolio-card-img {
    position: relative;
    overflow: hidden;
}
.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-overlay-label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.portfolio-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: var(--bg-dark-blue);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(var(--accent-orange-rgb), 0.4);
}
.portfolio-overlay-btn:hover { transform: scale(1.04); box-shadow: 0 10px 28px rgba(var(--accent-orange-rgb), 0.5); }

/* ============================================================
   TECH STACK MEJORADO — COLORES DE MARCA + GLOW EN HOVER
   ============================================================ */
.tech-item {
    transition: var(--transition-smooth);
}
.tech-item:hover {
    transform: translateY(-6px) scale(1.08);
}
.tech-item:hover .tech-logo {
    filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.5));
}
.tech-item:hover .tech-name {
    color: var(--text-white);
}

/* ============================================================
   RESPONSIVE MOBILE NAV DROPDOWN
   ============================================================ */
@media (max-width: 968px) {
    .nav-dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        min-width: unset;
    }
}

/* ============================================================
   TYPEWRITER — CURSOR BLOCK (arregla visibilidad en gradient)
   ============================================================ */
.typewriter-wrap::after {
    content: '' !important;
    display: inline-block;
    width: 3px;
    height: 0.82em;
    background: var(--accent-orange);
    border-radius: 2px;
    margin-left: 5px;
    vertical-align: text-bottom;
    animation: blink-cursor 0.75s step-end infinite;
}

/* ============================================================
   WHY-US CARDS — 3D FLIP COMPLETO
   ============================================================ */
.why-us-card {
    perspective: 1200px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    min-height: 400px;
    cursor: pointer;
}
.why-us-card::before { display: none !important; }
.why-us-card:hover { transform: none !important; }

.why-us-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.why-us-card:hover .why-us-card-inner {
    transform: rotateY(180deg);
}

.why-us-card-front,
.why-us-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    backdrop-filter: blur(12px);
}
.why-us-card-front {
    background: rgba(var(--rgb-card), 0.55);
    border: 1px solid rgba(var(--rgb-contrast), 0.09);
    z-index: 2;
}
.why-us-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(148deg, rgba(255,140,0,0.15) 0%, rgba(var(--rgb-card), 0.9) 55%);
    border: 1px solid rgba(255,140,0,0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.why-us-back-stat {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 4px;
}
.why-us-card-back h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--text-white) !important;
    -webkit-text-fill-color: var(--text-white) !important;
}
.why-us-card-back p {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    line-height: 1.65 !important;
    -webkit-text-fill-color: var(--text-muted) !important;
}
.why-us-back-cta {
    margin-top: 10px;
    padding: 10px 22px;
    background: rgba(255,140,0,0.15);
    border: 1px solid rgba(255,140,0,0.35);
    border-radius: 10px;
    color: var(--accent-orange) !important;
    -webkit-text-fill-color: var(--accent-orange) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.why-us-back-cta:hover {
    background: rgba(255,140,0,0.25);
    border-color: rgba(255,140,0,0.55);
}
.why-us-card-hint {
    font-size: 11px;
    color: rgba(var(--rgb-contrast), 0.3);
    letter-spacing: 1px;
    font-style: italic;
    margin-top: auto;
    font-family: var(--font-tech);
    text-transform: uppercase;
}

/* --- ILUSTRACIONES MINIMALISTAS PARA WHY-US --- */
.why-us-illustration {
    width: 100%;
    height: 120px;
    margin: 8px 0 16px 0;
    display: block;
    transition: var(--transition-smooth);
}

/* Hover Animations inside SVGs */
.why-us-card:hover .why-us-illustration {
    transform: scale(1.04);
}

.why-us-card:hover .bracket-glow {
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.7));
    transition: var(--transition-smooth);
}

.why-us-card:hover .lock-graphic {
    transform: translateY(-2px);
    transition: var(--transition-smooth);
}

@keyframes lockPulse {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.25)); }
    50% { filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.65)); }
}

.why-us-card:hover .lock-graphic rect {
    animation: lockPulse 2s infinite ease-in-out;
}

@keyframes cdnPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.why-us-card:hover .cdn-node.active circle:first-child {
    animation: cdnPulse 1.5s infinite ease-in-out;
}

[data-theme="light"] .why-us-card-front {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
[data-theme="light"] .why-us-card-back {
    background: linear-gradient(148deg, rgba(255,140,0,0.08) 0%, rgba(255,255,255,0.95) 55%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* Mobile: touch tap para girar */
@media (max-width: 768px) {
    .why-us-card-inner { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
    .why-us-card.flipped .why-us-card-inner { transform: rotateY(180deg); }
}

/* ============================================================
   CURSOR — GLOW SPOTLIGHT (reemplaza dot + outline)
   ============================================================ */
.cursor-outline { display: none !important; }

.cursor-dot {
    width: 7px !important;
    height: 7px !important;
    background: var(--accent-orange) !important;
    z-index: 9999;
    mix-blend-mode: normal !important;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center,
        rgba(255, 140, 0, 0.10) 0%,
        rgba(255, 140, 0, 0.04) 35%,
        transparent 65%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease, width 0.6s ease, height 0.6s ease;
}
.cursor-glow.active { opacity: 1; }
.cursor-glow.on-card {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center,
        rgba(0, 229, 255, 0.08) 0%,
        rgba(255, 140, 0, 0.05) 30%,
        transparent 60%
    );
}
@media (max-width: 968px) { .cursor-glow { display: none !important; } }

/* ============================================================
   OPTIMIZACIÓN MOBILE COMPACTA — Reducir scroll excesivo
   ============================================================ */

/* --- Mobile general: reducir spacing --- */
@media (max-width: 768px) {
    /* Hero más compacto */
    .hero-section {
        padding: 40px 18px 50px;
        gap: 30px;
    }
    h1 {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    .description {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    .tagline-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    .btn-primary {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    /* Browser mockup más pequeño */
    .browser-mockup {
        max-width: 100%;
        animation: none;
    }
    .browser-bar {
        padding: 8px 12px;
    }
    .browser-bar .browser-url {
        font-size: 10px;
    }
    .browser-badge-speed {
        width: 60px;
        height: 60px;
        bottom: -14px;
        right: -10px;
    }
    .badge-score {
        font-size: 18px;
    }
    .badge-label {
        font-size: 7px;
    }
    .browser-badge-delivery {
        font-size: 10px;
        padding: 6px 10px 6px 8px;
        top: 44px;
        left: -10px;
    }
    .browser-badge-delivery svg {
        width: 10px;
        height: 10px;
    }

    /* Slider más compacto */
    .slider-section {
        margin-top: 64px;
    }
    .slider-wrapper {
        min-height: 320px;
    }
    .slide-content {
        bottom: 44px;
        left: 16px;
        right: 16px;
        max-width: 100%;
    }
    .slide-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .slide-desc {
        font-size: 12px;
        margin-bottom: 14px;
        line-height: 1.4;
    }
    .slide-tag {
        font-size: 9px;
        padding: 4px 8px;
        margin-bottom: 10px;
    }
    .btn-slide-cta {
        padding: 10px 18px;
        font-size: 12px;
    }
    .cta-slide-group {
        gap: 10px;
    }

    /* Tech stack: simplificar */
    .tech-stack-section {
        padding: 40px 0;
    }
    .tech-stack-section .section-title {
        font-size: 22px;
        margin-bottom: 30px;
        padding: 0 18px;
    }
    .tech-item {
        min-width: 80px !important;
    }
    .tech-logo img {
        width: 28px !important;
        height: 28px !important;
    }
    .tech-name {
        font-size: 10px;
    }

    /* Projects carousel compacto */
    .projects-carousel-section {
        padding: 30px 12px;
    }
    .projects-carousel-container {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .projects-carousel-header {
        margin-bottom: 24px;
    }
    .section-title {
        font-size: 24px;
    }
    .projects-carousel-desc {
        font-size: 13px;
    }
    .section-tag {
        font-size: 11px;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .laptop-mockup {
        max-width: 200px;
    }
    .project-slide {
        gap: 12px;
    }
    .btn-visitar-project {
        padding: 8px 16px;
        font-size: 12px;
    }
    .projects-carousel-cta {
        margin-top: 20px;
    }
    .btn-asesoria {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* ========================================
       WHY-US: HORIZONTAL COVER FLOW CAROUSEL
       ======================================== */
    .why-us-section {
        padding: 30px 0 40px;
        overflow: hidden;
    }
    .why-us-section .section-header {
        margin-bottom: 20px;
        padding: 0 18px;
    }
    .why-us-grid {
        display: flex;
        flex-direction: row;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0 20px;
        /* Ocultar scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .why-us-grid::-webkit-scrollbar {
        display: none;
    }
    .why-us-card {
        flex: 0 0 78%;
        max-width: 78%;
        scroll-snap-align: center;
        min-height: 320px;
        margin: 0 8px;
        opacity: 0.45;
        transform: scale(0.88);
        transition: opacity 0.4s ease, transform 0.4s ease;
        filter: blur(1px);
    }
    .why-us-card.active {
        opacity: 1;
        transform: scale(1);
        filter: none;
    }
    .why-us-card-inner {
        min-height: 320px;
    }
    .why-us-card-front,
    .why-us-card-back {
        padding: 22px 20px;
    }
    .why-us-card-front h3 {
        font-size: 16px;
        margin-top: 6px;
    }
    .why-us-card-front p {
        font-size: 13px;
        line-height: 1.4;
    }
    .why-us-card-num {
        font-size: 13px;
    }
    .why-us-illustration {
        max-height: 70px;
        margin: 4px 0 10px 0;
    }
    .why-us-card-hint {
        font-size: 9px;
    }
    .why-us-back-stat {
        font-size: 32px;
    }
    .why-us-card-back h3 {
        font-size: 15px;
    }
    .why-us-card-back p {
        font-size: 12px;
    }
    .why-us-back-cta {
        font-size: 12px;
        padding: 8px 14px;
    }
    /* Indicador de dots para why-us */
    .why-us-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }
    .why-us-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(var(--rgb-contrast), 0.15);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .why-us-dot.active {
        background: var(--accent-orange);
        box-shadow: 0 0 8px rgba(var(--accent-orange-rgb), 0.5);
        transform: scale(1.2);
    }

    /* Stats más compactos */
    .stats-section {
        padding: 24px 18px;
    }
    .stat-counter-num {
        font-size: 36px;
    }
    .stat-counter-label {
        font-size: 12px;
    }

    /* Testimonios compactos */
    .testimonials-section {
        padding: 40px 18px;
    }
    .testimonials-section .section-header {
        margin-bottom: 30px;
    }
    .testimonials-grid {
        gap: 16px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
        /* Truncar texto largo */
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .testimonial-name {
        font-size: 13px;
    }
    .testimonial-company {
        font-size: 11px;
    }
    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    /* ========================================
       PRICING: HORIZONTAL COVER FLOW CAROUSEL
       ======================================== */
    .pricing-section {
        padding: 30px 0 40px;
        overflow: hidden;
    }
    .pricing-section .section-header {
        margin-bottom: 16px;
        padding: 0 18px;
    }
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 20px !important;
        padding: 0 18px;
    }
    .pricing-grid {
        display: flex;
        flex-direction: row;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    .pricing-card {
        flex: 0 0 78%;
        max-width: 78%;
        scroll-snap-align: center;
        margin: 0 8px;
        padding: 22px 18px;
        opacity: 0.45;
        transform: scale(0.88);
        transition: opacity 0.4s ease, transform 0.4s ease;
        filter: blur(1px);
    }
    .pricing-card.active {
        opacity: 1;
        transform: scale(1);
        filter: none;
    }
    .pricing-card.featured {
        border-color: rgba(var(--accent-orange-rgb), 0.4);
    }
    .pricing-card.featured.active {
        border-color: rgba(var(--accent-orange-rgb), 0.6);
        box-shadow: 0 0 40px rgba(var(--accent-orange-rgb), 0.15);
    }
    .pricing-header h3 {
        font-size: 18px;
    }
    .pricing-header p {
        font-size: 12px;
        line-height: 1.4;
    }
    .pricing-amount {
        font-size: 36px;
    }
    .pricing-currency {
        font-size: 18px;
    }
    .pricing-from {
        font-size: 11px;
    }
    .pricing-features {
        gap: 6px;
    }
    .pricing-features li {
        font-size: 12px;
        padding: 3px 0;
    }
    .pf-icon svg {
        width: 12px;
        height: 12px;
    }
    .pricing-cta .btn-pricing-outline,
    .pricing-cta .btn-pricing-primary {
        padding: 12px 18px;
        font-size: 13px;
    }
    .pricing-featured-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    /* Indicador de dots para pricing */
    .pricing-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }
    .pricing-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(var(--rgb-contrast), 0.15);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .pricing-dot.active {
        background: var(--accent-orange);
        box-shadow: 0 0 8px rgba(var(--accent-orange-rgb), 0.5);
        transform: scale(1.2);
    }

    /* Footer más compacto */
    .footer-section {
        padding: 40px 18px 20px;
    }
    .footer-grid {
        gap: 24px;
    }
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .footer-col a,
    .footer-col p {
        font-size: 12px;
    }
    .footer-bottom {
        padding-top: 16px;
        font-size: 11px;
    }
}

/* --- Mobile pequeño: ultra compacto --- */
@media (max-width: 480px) {
    .hero-section {
        padding: 30px 14px 36px;
        gap: 24px;
    }
    h1 {
        font-size: 26px;
    }
    .description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Slider mínimo */
    .slider-wrapper {
        min-height: 280px;
    }
    .slide-content {
        bottom: 36px;
        left: 14px;
        right: 14px;
    }
    .slide-title {
        font-size: 20px;
    }
    .slide-desc {
        font-size: 11px;
        margin-bottom: 12px;
    }
    .btn-slide-ghost {
        display: none;
    }

    /* Laptop mockups más pequeños */
    .laptop-mockup {
        max-width: 170px;
    }

    /* Why-us: cards más compactas */
    .why-us-card-inner {
        min-height: 280px;
    }
    .why-us-card {
        flex: 0 0 82%;
        max-width: 82%;
    }
    .why-us-illustration {
        max-height: 55px;
    }

    /* Testimonios: truncar más */
    .testimonial-text {
        -webkit-line-clamp: 3;
    }

    /* Pricing: cards más compactas */
    .pricing-card {
        flex: 0 0 82%;
        max-width: 82%;
    }

    /* WhatsApp widget más pequeño */
    .whatsapp-widget {
        right: 12px;
        bottom: 12px;
    }
    .whatsapp-button {
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon svg,
    .whatsapp-icon img {
        width: 28px;
        height: 28px;
    }
    .whatsapp-toast {
        max-width: 180px;
        padding: 10px 12px;
        font-size: 12px;
    }
}


