/* ==========================================
   MUBITT TECHNOLOGY - Main Stylesheet
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Electric Blue Palette */
    --primary-50: #e6f0ff;
    --primary-100: #b3d1ff;
    --primary-200: #80b3ff;
    --primary-300: #4d94ff;
    --primary-400: #1a75ff;
    --primary-500: #0066FF;
    --primary-600: #0052cc;
    --primary-700: #003d99;
    --primary-800: #002966;
    --primary-900: #001433;

    /* Accent - Deep Blue */
    --accent-400: #0066FF;
    --accent-500: #0055DD;
    --accent-600: #0044CC;

    /* Neutrals - Pure Black Base */
    --gray-50: #f8fafc;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1e293b;
    --gray-800: #0f172a;
    --gray-900: #050810;
    --gray-950: #000000;

    /* Semantic */
    --success: #00E676;
    --warning: #FFAB00;
    --error: #FF1744;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
    --gradient-hero: linear-gradient(180deg, #000000 0%, #050810 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.4);
    --shadow-glow-lg: 0 0 80px rgba(0, 102, 255, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--gray-950);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Particles */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

/* Ambient Light - Hidden */
.ambient-light {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.5);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0066FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--gray-50);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
    min-width: fit-content;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gray-100);
    border: 1px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--primary-500);
    color: var(--primary-400);
    background: rgba(0, 102, 255, 0.05);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.logo-accent {
    font-weight: 400;
    color: var(--gray-400);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a:not(.btn-nav) {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:not(.btn-nav):hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 60%;
}

/* Active link state */
.nav-menu a:not(.btn-nav).active {
    color: white;
    background: rgba(0, 102, 255, 0.1);
}

.nav-menu a:not(.btn-nav).active::after {
    width: 60%;
    background: var(--primary-400);
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: auto;
    margin-right: 1rem;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-400);
    color: white;
}

.lang-current {
    font-weight: 600;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 140px;
    padding: 0.5rem 0;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    list-style: none;
    margin: 0;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    list-style: none;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.lang-dropdown a.active {
    color: var(--primary-400);
    font-weight: 500;
    background: rgba(0, 102, 255, 0.1);
}

/* CTA Button in Navbar */
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-nav:hover::before {
    opacity: 1;
}

.btn-nav:active {
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-100);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.5);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0066FF;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-scroll {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-500), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* ==========================================
   TECH MARQUEE (Integraciones)
   ========================================== */
.tech-marquee {
    position: relative;
    z-index: 2;
    padding: 40px 0 60px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 60s linear infinite;
    width: max-content;
}

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

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

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.5);
    transition: all var(--transition-base);
    cursor: default;
    flex-shrink: 0;
}

.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all var(--transition-base);
}

.marquee-label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.1) 40%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowMoveRight 18s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card.featured {
    border-color: rgba(0, 102, 255, 0.3);
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.03) 100%);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.6);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0066FF;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-400);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--gray-300);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
}

/* ==========================================
   WEB TYPES SECTION
   ========================================== */
.web-types {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(5, 8, 16, 0.4) 100%);
    overflow: hidden;
}

.web-types::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.22) 0%, rgba(0, 102, 255, 0.08) 45%, transparent 65%);
    filter: blur(55px);
    pointer-events: none;
    animation: glowMoveDiagonal 20s ease-in-out infinite;
}

.types-comparison {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.type-card {
    flex: 1;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.type-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.type-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.type-icon.static {
    background: rgba(0, 230, 118, 0.1);
}

.type-icon.static svg {
    stroke: var(--success);
}

.type-icon.dynamic {
    background: rgba(0, 102, 255, 0.1);
}

.type-icon.dynamic svg {
    stroke: var(--primary-400);
}

.type-icon svg {
    width: 32px;
    height: 32px;
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.type-badge {
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0066FF;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.15);
}

.type-desc {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.6;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-200);
}

.type-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

.type-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-tech span {
    padding: 6px 12px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-300);
}

.type-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
}

.type-divider span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

/* ==========================================
   PLATFORMS SECTION
   ========================================== */
.platforms {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.platforms::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.28) 0%, rgba(0, 102, 255, 0.1) 40%, transparent 60%);
    filter: blur(65px);
    pointer-events: none;
    animation: glowMoveLeft 22s ease-in-out infinite;
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.platform-card.reverse {
    direction: rtl;
}

.platform-card.reverse > * {
    direction: ltr;
}

.platform-preview {
    position: relative;
}

.preview-mockup {
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca42; }

.mockup-header > span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.mockup-content {
    padding: 32px;
}

/* Turnero Mockup */
.ticket-display {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.ticket-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.ticket-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.queue-info {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.queue-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.queue-item span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.queue-item strong {
    font-size: 1.25rem;
    color: white;
}

/* Tienda Mockup */
.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card-mini {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.product-img {
    width: 100%;
    height: 80px;
    background: linear-gradient(145deg, var(--gray-700) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.product-name {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-400);
}

/* Platform Info */
.platform-info {
    max-width: 480px;
}

.platform-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.platform-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-400);
}

.platform-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.platform-info > p {
    font-size: 1.0625rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.7;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.platform-features li {
    font-size: 0.9375rem;
    color: var(--gray-200);
    padding-left: 24px;
    position: relative;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: transparent;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.22) 0%, rgba(0, 102, 255, 0.08) 40%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    animation: glowMoveCenter 16s ease-in-out infinite;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #0044CC);
    opacity: 0.4;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gray-900);
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-400);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-400);
    max-width: 180px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.1) 40%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowMoveRight 19s ease-in-out infinite reverse;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-text strong {
    color: var(--primary-400);
}

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

.value {
    display: flex;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-400);
}

.value h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.value p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Tech Stack Visual */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-stack {
    position: relative;
    width: 400px;
    height: 400px;
}

.tech-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, rgba(0, 102, 255, 0.03) 100%);
}

.orbit-ring.ring-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.orbit-ring.ring-2 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-item {
    position: absolute;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 50%;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow:
        0 0 25px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.ring-1 .tech-item {
    --angle: calc(var(--i) * 120deg);
    top: calc(50% - 28px + cos(var(--angle)) * 100px);
    left: calc(50% - 28px + sin(var(--angle)) * 100px);
}

.ring-2 .tech-item {
    --angle: calc(var(--i) * 90deg);
    top: calc(50% - 28px + cos(var(--angle)) * 160px);
    left: calc(50% - 28px + sin(var(--angle)) * 160px);
}

.tech-item span {
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    animation: counterRotate 20s linear infinite;
}

.ring-2 .tech-item span {
    animation: counterRotate 30s linear infinite reverse;
}

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

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.orbit-center::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 255, 0.3);
    animation: rotate-slow 15s linear infinite;
}

.orbit-center::after {
    content: '';
    position: absolute;
    inset: -25px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 102, 255, 0.15);
    animation: rotate-slow 20s linear infinite reverse;
}

.center-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    animation: float-rotate 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.4));
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(5px) rotate(-2deg);
    }
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 102, 255, 0.4);
    }
}

@keyframes sectionGlow {
    0% {
        opacity: 0.7;
        transform: translateX(0) translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(50px) translateY(30px) scale(1.2);
    }
    100% {
        opacity: 0.7;
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Animaciones de luz por sección - recorren toda la sección */
@keyframes glowMoveRight {
    0% { left: -20%; top: 20%; }
    25% { left: 30%; top: 60%; }
    50% { left: 70%; top: 10%; }
    75% { left: 40%; top: 70%; }
    100% { left: -20%; top: 20%; }
}

@keyframes glowMoveLeft {
    0% { right: -20%; top: 30%; }
    25% { right: 40%; top: 70%; }
    50% { right: 80%; top: 20%; }
    75% { right: 30%; top: 50%; }
    100% { right: -20%; top: 30%; }
}

@keyframes glowMoveDiagonal {
    0% { left: -10%; top: -10%; }
    33% { left: 70%; top: 50%; }
    66% { left: 20%; top: 80%; }
    100% { left: -10%; top: -10%; }
}

@keyframes glowMoveCenter {
    0% { left: 50%; top: 0%; transform: translateX(-50%); }
    25% { left: 20%; top: 50%; transform: translateX(0); }
    50% { left: 80%; top: 30%; transform: translateX(-100%); }
    75% { left: 40%; top: 70%; transform: translateX(-50%); }
    100% { left: 50%; top: 0%; transform: translateX(-50%); }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.cta::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.28) 0%, rgba(0, 102, 255, 0.12) 35%, transparent 55%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
    animation: glowMoveDiagonal 14s ease-in-out infinite reverse;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.5) 50%, transparent 100%);
}

.cta-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.5) 50%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-content .btn-primary {
    padding: 16px 40px;
    font-size: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.cta-content .btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.08) 45%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowMoveLeft 17s ease-in-out infinite reverse;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1.0625rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-method:hover {
    border-color: rgba(0, 102, 255, 0.4);
    background: rgba(0, 102, 255, 0.08);
    transform: translateY(-2px);
}


.method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.method-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-400);
}

.method-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: white;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group select option {
    background: var(--gray-800);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    position: relative;
    z-index: 2;
    padding: 60px 0 30px;
    background: rgba(5, 8, 16, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==========================================
   RESPONSIVE - TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .platform-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platform-card.reverse {
        direction: ltr;
    }

    .platform-preview {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Services 2 columnas en tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE LARGE (768px)
   ========================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Tipografia optimizada para movil */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    /* Logo responsive */
    .logo-img {
        height: 32px;
        max-width: 150px;
    }

    /* Navegacion movil */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, rgba(5, 8, 16, 0.98) 0%, rgba(3, 5, 10, 0.99) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 60px 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(0, 102, 255, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }

    .nav-menu a:not(.btn-nav) {
        font-size: 1.2rem;
        padding: 14px 20px;
        display: block;
        border-radius: 12px;
    }

    .nav-menu a:not(.btn-nav)::after {
        display: none;
    }

    .nav-menu a:not(.btn-nav):hover,
    .nav-menu a:not(.btn-nav).active {
        background: rgba(0, 102, 255, 0.15);
        color: white;
    }

    .nav-menu .btn-nav {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

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

    /* Hero optimizado */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 6px 14px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .stat {
        min-width: calc(50% - 10px);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Servicios - 2 COLUMNAS en movil */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

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

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card > p {
        font-size: 0.8125rem;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .service-features li {
        font-size: 0.75rem;
        padding-left: 14px;
    }

    .service-features li::before {
        width: 4px;
        height: 4px;
        top: 6px;
    }

    .card-badge {
        font-size: 0.625rem;
        padding: 3px 8px;
        top: 10px;
        right: 10px;
    }

    /* Web Types */
    .types-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .type-card {
        padding: 24px;
    }

    .type-card h3 {
        font-size: 1.25rem;
    }

    .type-desc {
        font-size: 0.9375rem;
    }

    .type-divider {
        width: 100%;
        height: 50px;
    }

    .type-divider span {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    /* Type features en 2 columnas */
    .type-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .type-features li {
        font-size: 0.875rem;
    }

    /* Process timeline horizontal en movil */
    .process-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.125rem;
        margin: 0 auto 16px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.8125rem;
        max-width: none;
        margin: 0;
    }

    /* Platforms */
    .platforms-grid {
        gap: 50px;
    }

    .platform-info h3 {
        font-size: 1.5rem;
    }

    .platform-info > p {
        font-size: 0.9375rem;
    }

    /* Platform features en 2 columnas */
    .platform-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .platform-features li {
        font-size: 0.875rem;
    }

    .mockup-content {
        padding: 20px;
    }

    .ticket-display {
        padding: 24px;
    }

    .ticket-number {
        font-size: 2.5rem;
    }

    /* About */
    .about-text {
        font-size: 0.9375rem;
    }

    .value {
        gap: 12px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .value-icon svg {
        width: 20px;
        height: 20px;
    }

    .value h4 {
        font-size: 0.9375rem;
    }

    .value p {
        font-size: 0.8125rem;
    }

    .tech-stack {
        width: 280px;
        height: 280px;
    }

    .orbit-ring.ring-2 {
        width: 220px;
        height: 220px;
    }

    .orbit-center {
        width: 90px;
        height: 90px;
    }

    .center-logo {
        width: 70px;
    }

    .orbit-center::before {
        inset: -8px;
    }

    .orbit-center::after {
        inset: -18px;
    }

    .tech-item {
        width: 44px;
        height: 44px;
    }

    .tech-item span {
        font-size: 0.5rem;
    }

    .ring-1 .tech-item {
        top: calc(50% - 22px + cos(var(--angle)) * 70px);
        left: calc(50% - 22px + sin(var(--angle)) * 70px);
    }

    .ring-2 .tech-item {
        top: calc(50% - 22px + cos(var(--angle)) * 110px);
        left: calc(50% - 22px + sin(var(--angle)) * 110px);
    }

    /* Contact */
    .contact-methods {
        flex-direction: row;
        gap: 12px;
    }

    .contact-method {
        padding: 14px 16px;
        flex: 1;
        gap: 10px;
    }

    .method-icon {
        width: 36px;
        height: 36px;
    }

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

    .method-label {
        font-size: 0.875rem;
    }

    .contact-form {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Previene zoom en iOS */
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links h4 {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.8125rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /* Botones tactiles optimizados */
    .btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
        min-height: 48px;
    }

    .btn-lg {
        padding: 16px 28px;
    }

    /* Hero Mobile */
    .hero-content {
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px 32px;
    }

    .stat {
        flex: 1 1 auto;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* CTA Section */
    .cta {
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 16px;
    }

    .cta-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-content .btn-primary {
        padding: 14px 32px;
        width: 100%;
        max-width: 280px;
    }

    /* Marquee */
    .tech-marquee {
        padding: 30px 0 40px;
    }

    .marquee-item {
        width: 100px;
        height: 50px;
    }

    .marquee-content {
        gap: 30px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE SMALL (480px)
   ========================================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero CTAs - flexibles para multi-idioma */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Textos flexibles para diferentes idiomas */
    .section-tag,
    .hero-badge,
    .card-badge,
    .type-badge {
        white-space: nowrap;
        font-size: 0.75rem;
    }

    /* Títulos de servicios flexibles */
    .service-card h3 {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Form select adaptable */
    .form-group select {
        font-size: 14px;
    }

    .form-group select option {
        font-size: 14px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat {
        min-width: calc(50% - 8px);
    }

    .stat-number {
        font-size: 1.25rem;
    }

    /* CTA 480px */
    .cta {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.375rem;
    }

    .cta-content p {
        font-size: 0.9375rem;
    }

    .cta-content .btn-primary {
        width: 100%;
        max-width: 100%;
    }

    /* Servicios siguen en 2 columnas pero mas compactos */
    .services-grid {
        gap: 10px;
    }

    .service-card {
        padding: 16px;
    }

    .service-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
    }

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

    .service-card h3 {
        font-size: 0.9375rem;
        line-height: 1.3;
    }

    .service-card > p {
        font-size: 0.75rem;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-features {
        gap: 6px;
    }

    .service-features li {
        font-size: 0.6875rem;
    }

    /* Process 2x2 grid */
    .process-timeline {
        gap: 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .step-content h3 {
        font-size: 0.9375rem;
    }

    .step-content p {
        font-size: 0.75rem;
    }

    /* Types cards mas compactas */
    .type-card {
        padding: 20px;
    }

    .type-icon {
        width: 48px;
        height: 48px;
    }

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

    .type-features li {
        font-size: 0.8125rem;
    }

    .type-tech span {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    /* Platforms */
    .platform-info h3 {
        font-size: 1.25rem;
    }

    .platform-features li {
        font-size: 0.8125rem;
    }

    /* About tech stack mas pequeno */
    .tech-stack {
        width: 240px;
        height: 240px;
    }

    .orbit-ring.ring-1 {
        width: 140px;
        height: 140px;
    }

    .orbit-ring.ring-2 {
        width: 200px;
        height: 200px;
    }

    .ring-1 .tech-item {
        top: calc(50% - 17px + cos(var(--angle)) * 55px);
        left: calc(50% - 17px + sin(var(--angle)) * 55px);
    }

    .ring-2 .tech-item {
        top: calc(50% - 17px + cos(var(--angle)) * 85px);
        left: calc(50% - 17px + sin(var(--angle)) * 85px);
    }

    .tech-item {
        width: 34px;
        height: 34px;
    }

    .tech-item span {
        font-size: 0.4rem;
    }

    .orbit-center {
        width: 70px;
        height: 70px;
    }

    .center-logo {
        width: 55px;
    }

    .orbit-center::before {
        inset: -5px;
    }

    .orbit-center::after {
        inset: -12px;
    }

    /* Contact - botones en fila compactos */
    .contact-methods {
        flex-direction: row;
        gap: 10px;
    }

    .contact-method {
        padding: 12px 14px;
        gap: 8px;
    }

    .method-icon {
        width: 32px;
        height: 32px;
    }

    .method-icon svg {
        width: 16px;
        height: 16px;
    }

    .method-label {
        font-size: 0.8125rem;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    /* Type y Platform features mantienen 2 columnas pero más compactas */
    .type-features,
    .platform-features {
        gap: 8px;
    }

    .type-features li,
    .platform-features li {
        font-size: 0.75rem;
    }

    /* Footer compacto y horizontal en 3 columnas */
    .footer {
        padding: 24px 0 16px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
        padding-bottom: 16px;
    }

    .footer-brand {
        display: none; /* Ocultar en móvil para ahorrar espacio */
    }

    /* Links en 3 columnas lado a lado */
    .footer-links-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100%;
    }

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

    .footer-links h4 {
        font-size: 0.625rem;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--primary-400);
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .footer-links a {
        font-size: 0.625rem;
        line-height: 1.3;
    }

    .footer-bottom {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-bottom p {
        font-size: 0.625rem;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE EXTRA SMALL (360px)
   ========================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.375rem;
    }

    /* Servicios aun mas compactos */
    .services-grid {
        gap: 8px;
    }

    .service-card {
        padding: 14px;
    }

    .service-card h3 {
        font-size: 0.875rem;
    }

    .service-card > p {
        -webkit-line-clamp: 2;
    }

    .service-features li {
        font-size: 0.625rem;
    }

    /* Ocultar features en pantallas muy pequenas para mantener limpio */
    .service-features {
        display: none;
    }

    .service-card > p {
        margin-bottom: 0;
    }
}
