﻿/* ============================================
   NUMÉRICA SOFTWARE - LANDING PAGE STYLES
   Manual de Marca: #006bb5 + #231f20
   Tipografías: Conthrax + Montserrat
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
    --blue-main: #006bb5;
    --blue-light: #1a9fe0;
    --blue-dark: #004d8a;
    --blue-glow: rgba(0, 107, 181, 0.3);
    --dark: #231f20;
    --dark-2: #2d2a2b;
    --gray: #6b7280;
    --gray-light: #f0f4f8;
    --white: #ffffff;
    --teal: #00a896;
    --purple: #6c63ff;
    --orange: #ff6b35;
    --font-display: 'Conthrax', 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 8px 40px rgba(0,107,181,0.12);
    --shadow-hover: 0 20px 60px rgba(0,107,181,0.22);
    --radius: 20px;
}

/* ---- BASE RESET ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,107,181,0.08);
    transition: var(--transition);
}

    .navbar.scrolled {
        box-shadow: 0 4px 30px rgba(0,107,181,0.12);
        height: 64px;
    }

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 42px;
    height: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-main);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gray);
    text-transform: uppercase;
}

.product-link-wordmark {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

    .nav-links li a {
        padding: 0.5rem 0.9rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--dark);
        border-radius: 8px;
        transition: var(--transition);
        position: relative;
    }

        .nav-links li a:not(.nav-cta):hover {
            color: var(--blue-main);
            background: rgba(0,107,181,0.06);
        }

.nav-cta {
    background: var(--blue-main) !important;
    color: white !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(0,107,181,0.3);
}

    .nav-cta:hover {
        background: var(--blue-dark) !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 25px rgba(0,107,181,0.4) !important;
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: var(--transition);
    }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4fb 50%, #e6f0fa 100%);
    padding-top: 72px;
}

#nodeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 50%;
    padding-left: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,107,181,0.1);
    border: 1px solid rgba(0,107,181,0.2);
    color: var(--blue-main);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-main);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateX(-30px);
}

    .title-line.highlight {
        color: var(--blue-main);
        position: relative;
    }

        .title-line.highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blue-main), var(--blue-light));
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s ease 1.2s;
        }

        .title-line.highlight.animated::after {
            transform: scaleX(1);
        }

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-main));
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,107,181,0.35);
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-primary:hover::before {
        opacity: 1;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,107,181,0.45);
    }

    .btn-primary svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s;
    }

    .btn-primary:hover svg {
        transform: translateX(4px);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-main);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(0,107,181,0.3);
    transition: var(--transition);
}

    .btn-ghost:hover {
        border-color: var(--blue-main);
        background: rgba(0,107,181,0.06);
        transform: translateY(-2px);
    }

.hero-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.tag {
    background: rgba(0,107,181,0.08);
    color: var(--blue-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* HERO VISUAL */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
}

.hero-sphere {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere-ring {
    position: absolute;
    border: 2px solid rgba(0,107,181,0.15);
    border-radius: 50%;
    animation: ring-spin linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
    border-color: rgba(0,107,181,0.1);
}

.ring-2 {
    width: 240px;
    height: 240px;
    animation-duration: 15s;
    animation-direction: reverse;
    border-color: rgba(26,159,224,0.15);
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-duration: 10s;
    border-color: rgba(0,107,181,0.2);
}

@keyframes ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sphere-core {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,107,181,0.4), 0 0 0 1px rgba(255,255,255,0.3);
    animation: float 6s ease-in-out infinite;
}

    .sphere-core svg {
        width: 120px;
        height: 120px;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(2deg);
    }

    66% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,107,181,0.1);
    animation: float-card 5s ease-in-out infinite;
    z-index: 3;
    min-width: 150px;
}

.card-1 {
    top: 20%;
    right: 65%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 8%;
    animation-delay: -1.5s;
}

.card-3 {
    bottom: 20%;
    right: 60%;
    animation-delay: -3s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    font-size: 1.5rem;
}

.card-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .card-info strong {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--dark);
    }

    .card-info span {
        font-size: 0.72rem;
        color: var(--gray);
    }

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    opacity: 0;
    animation: fade-in-scroll 1s ease 2.5s forwards;
}

@keyframes fade-in-scroll {
    to {
        opacity: 1;
    }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(0,107,181,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--blue-main);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(14px);
        opacity: 0;
    }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--blue-main);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

    .section-label::before,
    .section-label::after {
        content: '—';
        margin: 0 8px;
        opacity: 0.5;
    }

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions {
    padding: 7rem 0;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0,107,181,0.1);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

    .solution-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(0,107,181,0.25);
    }

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.glow-blue {
    background: radial-gradient(circle, rgba(0,107,181,0.08) 0%, transparent 70%);
}

.glow-teal {
    background: radial-gradient(circle, rgba(0,168,150,0.08) 0%, transparent 70%);
}

.glow-purple {
    background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
}

.glow-orange {
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
}

.solution-card:hover .card-glow {
    opacity: 1;
}

.card-header-strip {
    height: 4px;
    width: 100%;
    position: relative;
    z-index: 1;
}

    .card-header-strip.blue {
        background: linear-gradient(90deg, var(--blue-light), var(--blue-main));
    }

    .card-header-strip.teal {
        background: linear-gradient(90deg, #00c9b1, var(--teal));
    }

    .card-header-strip.purple {
        background: linear-gradient(90deg, #a29bfe, var(--purple));
    }

    .card-header-strip.orange {
        background: linear-gradient(90deg, #ffa07a, var(--orange));
    }

.card-body {
    padding: 1.75rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

    .solution-icon svg {
        width: 48px;
        height: 48px;
    }

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(-3deg);
}

.solution-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.accent {
    color: var(--blue-main);
}

.accent-teal {
    color: var(--teal);
}

.accent-purple {
    color: var(--purple);
}

.accent-orange {
    color: var(--orange);
}

.card-body p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .feature-list li {
        font-size: 0.8rem;
        color: var(--dark);
        padding-left: 1.25rem;
        position: relative;
        line-height: 1.4;
    }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--blue-main);
            font-weight: 700;
            font-size: 0.75rem;
        }

.card-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-main);
    transition: var(--transition);
}

    .card-btn svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s;
    }

    .card-btn:hover svg {
        transform: translateX(4px);
    }

.teal-btn {
    color: var(--teal);
}

.purple-btn {
    color: var(--purple);
}

.orange-btn {
    color: var(--orange);
}

.card-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    background: var(--gray-light);
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d2040 50%, #0a1628 100%);
    z-index: 0;
}

    .benefits-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(0,107,181,0.2) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(26,159,224,0.15) 0%, transparent 50%);
    }

.benefits .section-container {
    position: relative;
    z-index: 1;
}

.section-label.light {
    color: var(--blue-light);
}

    .section-label.light::before,
    .section-label.light::after {
        color: rgba(26,159,224,0.5);
    }

.light-title {
    color: var(--white) !important;
}

.light-desc {
    color: rgba(255,255,255,0.65) !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

    .benefit-item:hover {
        background: rgba(0,107,181,0.15);
        border-color: rgba(0,107,181,0.3);
        transform: translateY(-4px);
    }

.benefit-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.benefit-icon svg {
    width: 52px;
    height: 52px;
}

.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.benefit-item p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 7rem 0;
    background: var(--gray-light);
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.why-decoration {
    position: absolute;
    border-radius: 50%;
}

.dec-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,107,181,0.12) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    z-index: 0;
}

.dec-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26,159,224,0.1) 0%, transparent 70%);
    bottom: -30px;
    right: -30px;
    z-index: 0;
}

.why-mock {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,107,181,0.2);
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.mock-bar {
    background: var(--dark);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .mock-dot.red {
        background: #ff5f57;
    }

    .mock-dot.yellow {
        background: #febc2e;
    }

    .mock-dot.green {
        background: #28c840;
    }

.mock-bar span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-left: 8px;
}

.mock-content {
    padding: 1.5rem;
}

.mock-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.mock-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-main));
}

.mock-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    margin-bottom: 6px;
}

    .mock-line.w80 {
        width: 80%;
    }

    .mock-line.w50 {
        width: 50%;
        height: 8px;
    }

    .mock-line.bold {
        background: var(--blue-main);
        opacity: 0.7;
    }

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--blue-light), var(--blue-main));
    border-radius: 4px 4px 0 0;
    animation: bar-grow 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes bar-grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.mock-stats-row {
    display: flex;
    gap: 1rem;
}

.mock-stat {
    flex: 1;
    text-align: center;
    background: var(--gray-light);
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mock-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-main);
}

.mock-stat span:last-child {
    font-size: 0.7rem;
    color: var(--gray);
}

.why-content .section-label {
    margin-bottom: 1rem;
    display: block;
}

.why-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.why-lead {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.point-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-main);
    opacity: 0.3;
    line-height: 1;
    min-width: 40px;
    transition: opacity 0.3s;
}

.why-point:hover .point-num {
    opacity: 1;
}

.point-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.point-text p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
}

.stats-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stats-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stats .section-container {
    position: relative;
    z-index: 1;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 7rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.contact-info .section-label {
    display: block;
    margin-bottom: 1rem;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,107,181,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon svg {
        width: 22px;
        height: 22px;
    }

.contact-item div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--gray);
}

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0,107,181,0.1);
}

    .form-card h3 {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 1.75rem;
        text-align: center;
    }

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--dark);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.5rem;
    }

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--dark);
    background: #f9fafb;
    transition: var(--transition);
    outline: none;
    resize: none;
}

    .form-input:focus {
        border-color: var(--blue-main);
        background: white;
        box-shadow: 0 0 0 4px rgba(0,107,181,0.08);
    }

    .form-input::placeholder {
        color: #9ca3af;
    }

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-main));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(0,107,181,0.3);
}

    .btn-submit svg {
        width: 18px;
        height: 18px;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0,107,181,0.4);
    }

.form-success {
    background: rgba(0,168,150,0.1);
    border: 1px solid rgba(0,168,150,0.3);
    color: #00a896;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .form-success svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer-logo-icon svg {
    width: 44px;
    height: 44px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
}

.footer-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    display: block;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

    .social-link:hover {
        background: var(--blue-main);
        color: white;
        border-color: var(--blue-main);
        transform: translateY(-2px);
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-col ul li a {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.55);
        transition: color 0.3s;
    }

        .footer-col ul li a:hover {
            color: var(--blue-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
}

    .footer-bottom p {
        text-align: center;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.3);
    }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        width: 100%;
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-desc, .hero-actions, .hero-tags {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-inner {
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(0,107,181,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .stats-inner {
        flex-direction: column;
    }
}

/* ============================================
   PREMIUM OVERDRIVE - VISUAL SYSTEM 2026
   ============================================ */
:root {
    --premium-bg-0: #f4f9ff;
    --premium-bg-1: #e7f2ff;
    --premium-ink-0: #0c1f37;
    --premium-ink-1: #1a3254;
    --premium-cyan: #32c5ff;
    --premium-blue: #006bb5;
    --premium-electric: #2a7fff;
    --premium-glass: rgba(255, 255, 255, 0.7);
    --premium-glass-dark: rgba(10, 21, 39, 0.68);
    --premium-border: rgba(0, 107, 181, 0.16);
    --premium-shadow-soft: 0 12px 34px rgba(6, 34, 74, 0.14);
    --premium-shadow-strong: 0 22px 66px rgba(6, 34, 74, 0.22);
}

body {
    color: var(--premium-ink-0);
    background:
        radial-gradient(900px circle at 4% 4%, rgba(50, 197, 255, 0.12), transparent 52%),
        radial-gradient(700px circle at 96% 0%, rgba(0, 107, 181, 0.1), transparent 46%),
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.hero,
.solutions,
.benefits,
.why-us,
.stats,
#casos-exito,
.contact,
.footer {
    isolation: isolate;
    --spot-x: 50%;
    --spot-y: 50%;
}

.hero::before,
.solutions::before,
.benefits::before,
.why-us::before,
.stats::before,
#casos-exito::before,
.contact::before,
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.88;
    background:
        radial-gradient(560px circle at var(--spot-x) var(--spot-y), rgba(50, 197, 255, 0.15), transparent 50%),
        radial-gradient(420px circle at calc(var(--spot-x) - 20%) calc(var(--spot-y) + 12%), rgba(0, 107, 181, 0.11), transparent 58%);
    transition: opacity 0.45s ease;
}

.hero {
    background:
        radial-gradient(1200px circle at 18% 18%, #11305d 0%, #081a34 42%, #050f22 100%);
}

.hero-vanta-layer,
.hero-particles-layer,
#nodeCanvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-vanta-layer {
    z-index: 1;
}

.hero-particles-layer {
    z-index: 3;
    opacity: 0.78;
}

#nodeCanvas {
    z-index: 1;
    opacity: 0;
}

.hero.hero-canvas-active #nodeCanvas {
    opacity: 0.45;
}

.hero .container {
    position: relative;
    z-index: 4 !important;
}

.hero::before {
    z-index: 2;
    opacity: 1;
    background:
        linear-gradient(105deg, rgba(3, 12, 27, 0.86) 0%, rgba(7, 22, 44, 0.68) 40%, rgba(4, 12, 29, 0.28) 72%, rgba(4, 12, 29, 0.7) 100%),
        radial-gradient(620px circle at 16% 42%, rgba(50, 197, 255, 0.16), transparent 62%);
}

.hero::after {
    content: "";
    position: absolute;
    width: clamp(320px, 45vw, 720px);
    height: clamp(320px, 45vw, 720px);
    top: -28%;
    right: -14%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 107, 181, 0.18) 0%, transparent 68%);
    filter: blur(8px);
    z-index: -1;
    animation: premium-orbit 14s ease-in-out infinite alternate;
}

@keyframes premium-orbit {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(-18px, 22px, 0) scale(1.06);
    }
}

.hero .col-lg-6.text-white,
.hero .col-lg-6.text-white p,
.hero .col-lg-6.text-white span,
.hero .col-lg-6.text-white h1,
.hero .col-lg-6.text-white .lead {
    color: #ecf7ff !important;
}

.hero .hero-badge {
    background: rgba(8, 24, 48, 0.74) !important;
    color: #d6ecff !important;
    border: 1px solid rgba(124, 200, 255, 0.34) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.hero .hero-title {
    text-wrap: balance;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero #typedValue {
    color: #8ee2ff !important;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 18px rgba(50, 197, 255, 0.28);
}

.hero .btn-outline-light {
    color: #eff7ff !important;
    border-color: rgba(210, 232, 255, 0.55) !important;
    background: linear-gradient(140deg, rgba(15, 38, 71, 0.88), rgba(6, 26, 55, 0.88));
    box-shadow: 0 10px 30px rgba(8, 33, 67, 0.34);
}

.hero .btn-outline-light:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 16px 38px rgba(8, 33, 67, 0.42);
}

.hero .btn-primary {
    background: linear-gradient(120deg, #22b8ff 0%, #006bb5 45%, #2d8fff 100%) !important;
    background-size: 220% 220%;
}

.hero .hero-title .hero-title-accent {
    color: #cbf0ff !important;
    -webkit-text-fill-color: #cbf0ff !important;
    text-shadow: 0 10px 32px rgba(50, 197, 255, 0.42), 0 2px 0 rgba(0, 0, 0, 0.28);
    letter-spacing: 0.05em;
}

.hero .tag {
    background: rgba(7, 27, 53, 0.72);
    color: #eaf5ff;
    border: 1px solid rgba(126, 207, 255, 0.24);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hero .floating-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(236, 247, 255, 0.86)) !important;
    border: 1px solid rgba(150, 217, 255, 0.32) !important;
    backdrop-filter: blur(12px) saturate(145%);
    box-shadow: 0 16px 34px rgba(7, 35, 74, 0.24) !important;
}

#heroVisual {
    min-height: 560px;
    overflow: visible;
}

.brand-logo-shell {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo-icon.brand-logo-shell {
    width: 50px;
    height: 50px;
    border-radius: 14px;
}

.brand-logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo-fallback {
    display: none;
}

.brand-logo-shell.logo-fallback .brand-logo-img,
.sphere-core.logo-fallback .brand-logo-img {
    display: none;
}

.brand-logo-shell.logo-fallback .brand-logo-fallback,
.sphere-core.logo-fallback .brand-logo-fallback {
    display: block;
}

.brand-logo-nav {
    width: 40px;
    height: 40px;
}

.brand-logo-footer {
    width: 50px;
    height: 50px;
}

.brand-logo-sun {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 38px rgba(6, 34, 74, 0.42);
}

.hero-orbit-system {
    position: relative;
    width: min(560px, 100%);
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit-system .orbit-triangle {
    position: absolute;
    inset: 0;
    z-index: 7;
    animation: orbit-triangle-spin 28s linear infinite;
}

.hero-orbit-system .orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-orbit-system .node-1 {
    transform: translate(-50%, -50%) translate(0, -190px);
}

.hero-orbit-system .node-2 {
    transform: translate(-50%, -50%) translate(165px, 95px);
}

.hero-orbit-system .node-3 {
    transform: translate(-50%, -50%) translate(-165px, 95px);
}

.hero-orbit-system .hero-sphere {
    width: 320px;
    height: 320px;
    z-index: 6;
}

.hero-orbit-system .orbit-card {
    position: relative;
    right: auto !important;
    bottom: auto !important;
    width: 200px;
    min-height: 86px;
    padding: 0.8rem 1rem !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.7rem;
    transform-origin: center;
    will-change: transform;
    animation: orbit-card-counter 28s linear infinite;
}

.hero-orbit-system .orbit-card .card-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hero-orbit-system .orbit-card .card-info strong {
    font-size: 0.9rem;
    line-height: 1.12;
    color: #0f2f56;
    white-space: nowrap;
}

.hero-orbit-system .orbit-card .card-info small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: #3f5f82 !important;
    white-space: nowrap;
}

@keyframes orbit-triangle-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-card-counter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.navbar {
    border-bottom: 1px solid rgba(182, 215, 255, 0.25) !important;
}

.navbar .nav-link {
    position: relative;
    color: rgba(236, 246, 255, 0.94) !important;
    font-weight: 600;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.18rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--premium-cyan), var(--premium-electric));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.34s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.solutions {
    background:
        linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.solutions .card.solution-card {
    position: relative;
    border: 1px solid rgba(0, 107, 181, 0.12) !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(8, 40, 84, 0.08) !important;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease, border-color 0.3s ease !important;
}

.solutions .card.solution-card .card-body,
#casos-exito .card .card-body,
.contact .card .card-body {
    transform-style: preserve-3d;
    will-change: transform;
}

.social-links a {
    transition: transform 0.32s ease, box-shadow 0.32s ease, background-color 0.32s ease;
}

.solutions .card.solution-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, rgba(50, 197, 255, 0.24), rgba(0, 107, 181, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.solutions .card.solution-card:hover {
    transform: translateY(-12px) scale(1.01) !important;
    box-shadow: 0 26px 50px rgba(8, 40, 84, 0.18) !important;
    border-color: rgba(50, 197, 255, 0.34) !important;
}

.solutions .card.solution-card:hover::before {
    opacity: 1;
}

.solutions .card.solution-card .solution-icon {
    transition: transform 0.42s ease, filter 0.42s ease;
}

.solutions .card.solution-card:hover .solution-icon {
    transform: translateY(-2px) scale(1.12) rotate(-3deg);
    filter: drop-shadow(0 8px 18px rgba(0, 107, 181, 0.22));
}

.benefits {
    position: relative;
    background:
        linear-gradient(145deg, #08162d 0%, #0f2445 48%, #0a1b36 100%) !important;
}

.benefits .section-label,
.benefits h2,
.benefits h4,
.benefits p {
    color: #eaf3ff !important;
}

.benefits .text-secondary {
    color: rgba(232, 243, 255, 0.76) !important;
}

.benefits .benefit-icon + div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem 1rem 0.9rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.benefits .col-md-4:hover .benefit-icon + div {
    transform: translateY(-5px);
    border-color: rgba(50, 197, 255, 0.34);
    background: rgba(28, 103, 175, 0.2);
}

.why-us {
    background: linear-gradient(180deg, #f5f9ff 0%, #ecf3ff 100%) !important;
}

.why-us .why-mock,
.why-us .card,
.why-us [class*="mock"] {
    box-shadow: var(--premium-shadow-strong) !important;
}

.why-us .point-num {
    color: rgba(0, 107, 181, 0.42) !important;
}

.team-showcase {
    background:
        linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%) !important;
}

.team-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1rem;
}

.media-card {
    background: #ffffff;
    border: 1px solid rgba(0, 107, 181, 0.14);
    border-radius: 18px;
    padding: 0.72rem;
    box-shadow: 0 14px 34px rgba(6, 34, 74, 0.1);
}

.media-card .media-meta {
    padding: 0.6rem 0.3rem 0.2rem;
}

.media-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 210px;
    background: linear-gradient(140deg, #ddeeff, #f4f9ff);
    border: 1px solid rgba(0, 107, 181, 0.14);
}

.media-card-lg .media-frame {
    min-height: 280px;
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1d4d7d;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(143, 205, 255, 0.22) 0,
            rgba(143, 205, 255, 0.22) 12px,
            rgba(220, 241, 255, 0.32) 12px,
            rgba(220, 241, 255, 0.32) 24px
        );
    letter-spacing: 0.01em;
}

.media-frame.has-image .media-fallback {
    display: none;
}

.media-frame.is-fallback img {
    display: none;
}

.operations-gallery {
    background:
        radial-gradient(800px circle at 0% 100%, rgba(50, 197, 255, 0.12), transparent 52%),
        linear-gradient(180deg, #f8fcff 0%, #edf5ff 100%) !important;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.operation-tile {
    background: #fff;
    border: 1px solid rgba(0, 107, 181, 0.14);
    border-radius: 18px;
    padding: 0.72rem;
    box-shadow: 0 14px 30px rgba(6, 34, 74, 0.1);
}

.operation-tile .media-frame {
    min-height: 180px;
}

.stats {
    background:
        linear-gradient(130deg, #0c2b57 0%, #005596 52%, #0a396f 100%) !important;
}

.stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(560px circle at 15% 10%, rgba(255, 255, 255, 0.14), transparent 50%),
        radial-gradient(420px circle at 88% 72%, rgba(50, 197, 255, 0.2), transparent 58%);
    pointer-events: none;
    z-index: -1;
}

.stats .stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.1rem 0.85rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.stats .stat-item .stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

#casos-exito {
    background:
        linear-gradient(180deg, #f5faff 0%, #e8f2ff 100%) !important;
}

#casos-exito .card {
    border: 1px solid rgba(0, 107, 181, 0.12) !important;
    box-shadow: 0 14px 34px rgba(9, 37, 72, 0.12) !important;
    transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease !important;
}

.success-swiper.is-preparing .swiper-slide {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}

.success-swiper.is-ready .swiper-slide {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

#casos-exito .swiper-slide:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(9, 37, 72, 0.2) !important;
    border-color: rgba(50, 197, 255, 0.4) !important;
}

.contact {
    background:
        radial-gradient(1100px circle at 0% 100%, rgba(50, 197, 255, 0.1), transparent 52%),
        linear-gradient(180deg, #fbfdff 0%, #f0f6ff 100%) !important;
}

.contact .card {
    border: 1px solid rgba(0, 107, 181, 0.14) !important;
    box-shadow: 0 16px 40px rgba(8, 38, 77, 0.12) !important;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.contact .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(8, 38, 77, 0.18) !important;
}

.contact .form-control,
.contact .form-select {
    border: 1px solid rgba(0, 107, 181, 0.2) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

.contact .form-control:focus,
.contact .form-select:focus {
    border-color: rgba(0, 133, 224, 0.8) !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 133, 224, 0.16) !important;
}

.footer {
    background:
        linear-gradient(155deg, #071222 0%, #0b1f39 100%) !important;
}

.stats,
.footer {
    position: relative;
    overflow: hidden;
}

.section-particles-layer,
.footer-vanta-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section-particles-layer {
    z-index: 0;
    opacity: 0.28;
}

.footer-vanta-layer {
    z-index: 0;
    opacity: 0.5;
}

.footer .text-secondary,
.footer .small,
.footer a.text-secondary {
    color: rgba(236, 245, 255, 0.92) !important;
}

.footer a.text-secondary:hover {
    color: #63d3ff !important;
}

.footer hr.border-secondary {
    border-color: rgba(138, 194, 255, 0.28) !important;
}

.text-teal {
    color: #00a896 !important;
}

.text-purple {
    color: #6c63ff !important;
}

.text-orange {
    color: #ff6b35 !important;
}

.bg-teal {
    background-color: #00a896 !important;
}

.bg-purple {
    background-color: #6c63ff !important;
}

.bg-orange {
    background-color: #ff6b35 !important;
}

@media (max-width: 991.98px) {
    .hero .col-lg-6.text-white,
    .hero .col-lg-6.text-white p,
    .hero .col-lg-6.text-white span,
    .hero .col-lg-6.text-white h1 {
        color: #ecf7ff !important;
    }

    .hero .hero-title .hero-title-accent {
        color: #c9edff !important;
        -webkit-text-fill-color: #c9edff !important;
    }

    #heroVisual,
    .hero-orbit-system {
        min-height: 420px;
        height: 420px;
    }

    .hero-orbit-system .orbit-card {
        width: 190px;
        min-height: 78px;
    }

    .hero-orbit-system .orbit-card .card-info strong {
        font-size: 0.83rem;
    }

    .hero-orbit-system .orbit-card .card-info small {
        font-size: 0.69rem;
    }

    .hero-orbit-system .node-1 {
        transform: translate(-50%, -50%) translate(0, -150px);
    }

    .hero-orbit-system .node-2 {
        transform: translate(-50%, -50%) translate(128px, 74px);
    }

    .hero-orbit-system .node-3 {
        transform: translate(-50%, -50%) translate(-128px, 74px);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .operations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats .stat-item {
        margin-bottom: 0.75rem;
    }
}

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

    .media-card-lg .media-frame,
    .media-frame {
        min-height: 190px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::after {
        animation: none !important;
    }

    .hero-orbit-system .orbit-triangle,
    .hero-orbit-system .orbit-card,
    .sphere-ring,
    .sphere-core {
        animation: none !important;
    }

    .success-swiper.is-ready .swiper-slide {
        transition: none !important;
    }

    .solutions .card.solution-card,
    #casos-exito .card,
    .contact .card {
        transition: none !important;
    }
}

/* ============================================
   AJUSTES SOLICITADOS - REVISION UX/UI
   ============================================ */
:root {
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
select,
label,
li,
small,
span,
strong {
    font-family: 'Montserrat', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-name,
.section-label,
.btn,
.navbar .nav-link,
.stat-number,
.mock-dynamic-number {
    font-weight: 400 !important;
}

.section-label::before,
.section-label::after {
    content: none !important;
}

section[id] {
    scroll-margin-top: 104px;
}

.hero .container {
    padding-top: 4.6rem;
    padding-bottom: 3.8rem;
}

.hero .hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    line-height: 1.18;
    margin-bottom: 1rem !important;
}

.hero .hero-title-subline {
    font-size: clamp(1.05rem, 2.1vw, 1.55rem);
    line-height: 1.3;
    opacity: 0.95;
}

.hero .hero-title-typed-line {
    min-height: 2.7rem;
}

#heroDesc {
    max-width: 640px;
    margin-top: 0.55rem;
}

#heroActions {
    margin-top: 1rem;
    row-gap: 0.85rem;
    position: relative;
    z-index: 4;
}

#heroTags {
    flex-wrap: wrap;
}

.hero-orbit-system {
    --orbit-radius: 190px;
    width: min(560px, 100%);
    height: 560px;
    position: relative;
}

.hero-orbit-system .orbit-node {
    width: 0 !important;
    height: 0 !important;
    top: 50% !important;
    left: 50% !important;
    transform: rotate(var(--orbit-angle)) translateY(calc(-1 * var(--orbit-radius))) !important;
    transform-origin: center center;
}

.hero-orbit-system .node-1 {
    --orbit-angle: 0deg;
}

.hero-orbit-system .node-2 {
    --orbit-angle: 120deg;
}

.hero-orbit-system .node-3 {
    --orbit-angle: 240deg;
}

.hero-orbit-system .orbit-triangle {
    inset: 0;
    transform-origin: 50% 50%;
}

.hero-orbit-system .hero-sphere {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-orbit-system .orbit-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--orbit-angle)));
    width: 220px;
    min-height: 94px;
    padding: 0.78rem 0.9rem !important;
    animation: orbit-card-stabilize 28s linear infinite;
}

.hero-orbit-system .orbit-card-content {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    animation: none;
}

@keyframes orbit-card-stabilize {
    from {
        transform: translate(-50%, -50%) rotate(calc(-1 * var(--orbit-angle)));
    }

    to {
        transform: translate(-50%, -50%) rotate(calc(-360deg - var(--orbit-angle)));
    }
}

.orbit-logo-slot {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px dashed rgba(0, 107, 181, 0.34);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(229, 244, 255, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.orbit-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-image-slot,
.solution-name-slot {
    border: 1px dashed rgba(0, 107, 181, 0.36);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 255, 0.92));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #23527f;
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.solution-image-slot {
    min-height: 128px;
}

.solution-name-slot {
    min-height: 78px;
}

.benefits-image-slot,
.contact-insight-image-slot {
    position: relative;
    overflow: hidden;
}

.slot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slot-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #18486f;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.35;
    padding: 0.75rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.24), rgba(215, 236, 255, 0.38));
}

.solution-more-box {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 107, 181, 0.28);
    background: rgba(0, 107, 181, 0.08);
    color: #0a4d7f;
    border-radius: 10px;
    padding: 0.58rem 1rem;
    font-size: 0.9rem;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.solution-more-box:hover {
    background: rgba(0, 107, 181, 0.16);
    border-color: rgba(0, 107, 181, 0.55);
}

.benefits {
    position: relative;
    background: #edf5ff !important;
    overflow: hidden;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-image-slot {
    position: absolute;
    inset: 1.35rem;
    border: 2px dashed rgba(0, 107, 181, 0.28);
    border-radius: 24px;
    background: linear-gradient(140deg, rgba(214, 235, 255, 0.45), rgba(237, 247, 255, 0.78));
    display: block;
    padding: 0;
    pointer-events: none;
    z-index: 1;
}

.benefits .section-label,
.benefits h2,
.benefits h4,
.benefits p {
    color: #0f2f56 !important;
}

.benefits .text-secondary {
    color: #355c82 !important;
}

.benefit-row .benefit-icon {
    border-radius: 50%;
    padding: 0.15rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-row .benefit-icon svg {
    transform: rotate(0deg);
    transition: transform 0.72s ease, filter 0.3s ease;
}

.benefit-row .benefit-icon svg [stroke] {
    transition: stroke 0.3s ease;
}

.benefit-row:hover .benefit-icon {
    background: rgba(0, 107, 181, 0.14);
    box-shadow: 0 10px 18px rgba(0, 107, 181, 0.2);
}

.benefit-row:hover .benefit-icon svg {
    transform: rotate(360deg);
    filter: drop-shadow(0 4px 10px rgba(0, 107, 181, 0.32));
}

.benefit-row:hover .benefit-icon svg [stroke] {
    stroke: #006bb5;
}

.why-us .why-mock {
    transform: none !important;
    animation: why-mock-appear 0.84s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes why-mock-appear {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mock-domain-typed {
    min-width: 148px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.82) !important;
    letter-spacing: 0.01em;
}

.mock-line-loop {
    transform-origin: left center;
    animation: mock-line-loop 1.8s ease-in-out infinite;
}

@keyframes mock-line-loop {
    0%,
    100% {
        transform: translateY(0) scaleX(0.86);
    }

    50% {
        transform: translateY(-2px) scaleX(1);
    }
}

.chart-bar {
    width: 16%;
    animation: mock-bars-loop 1.9s ease-in-out infinite alternate !important;
}

.chart-bar.bar-1 {
    --bar-start: 42%;
    --bar-end: 66%;
    animation-delay: -0.1s;
}

.chart-bar.bar-2 {
    --bar-start: 62%;
    --bar-end: 92%;
    animation-delay: -0.42s;
}

.chart-bar.bar-3 {
    --bar-start: 36%;
    --bar-end: 58%;
    animation-delay: -0.24s;
}

.chart-bar.bar-4 {
    --bar-start: 68%;
    --bar-end: 98%;
    animation-delay: -0.58s;
}

.chart-bar.bar-5 {
    --bar-start: 50%;
    --bar-end: 78%;
    animation-delay: -0.34s;
}

.chart-bar.bar-6 {
    --bar-start: 44%;
    --bar-end: 72%;
    animation-delay: -0.5s;
}

@keyframes mock-bars-loop {
    0% {
        height: var(--bar-start, 45%);
    }

    100% {
        height: var(--bar-end, 88%);
    }
}

.mock-dynamic-number {
    min-width: 70px;
    display: inline-block;
}

.operations-gallery .operation-tile,
.operations-gallery .operation-tile .media-frame,
.operations-gallery .operation-tile img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.success-highlight-card {
    border: 1px solid rgba(0, 107, 181, 0.2);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(231, 244, 255, 0.9));
    box-shadow: 0 12px 26px rgba(9, 37, 72, 0.08);
    padding: 1rem 1.1rem;
}

.success-highlight-value {
    font-size: 1.4rem;
    color: #0d4f82;
    margin-bottom: 0.35rem;
}

.success-highlight-label {
    font-size: 0.86rem;
    color: #375b7e;
    line-height: 1.4;
}

.contact-insight-image-slot {
    min-height: 190px;
    border: 1px dashed rgba(0, 107, 181, 0.38);
    border-radius: 14px;
    display: block;
    background: linear-gradient(140deg, rgba(223, 241, 255, 0.75), rgba(238, 248, 255, 0.92));
    padding: 0;
}

.contact-form-card,
.contact-form-card:hover {
    transform: none !important;
    box-shadow: 0 16px 40px rgba(8, 38, 77, 0.12) !important;
}

.contact-form-card {
    transition: none !important;
}

@media (max-width: 991.98px) {
    .hero .container {
        min-height: auto !important;
        padding-top: 5.2rem;
        padding-bottom: 2.6rem;
    }

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

    .hero .hero-title-typed-line {
        min-height: 2.2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .benefits-image-slot {
        inset: 0.9rem;
    }
}
