:root {
    --bg: #000000;
    --text: #ffffff;
    --accent: #00efff;
    /* Cyber Cyan */
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* --- Loader --- */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999; /* Ensure it covers everything including nav/whatsapp */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-bg-fx {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 239, 255, 0.05) 0%, transparent 70%),
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(0, 239, 255, 0.02), rgba(0, 239, 255, 0.01), rgba(0, 239, 255, 0.02));
    background-size: 100% 100%, 100% 4px, 100% 100%;
    pointer-events: none;
    z-index: 1;
}

.loader-bg-fx::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, transparent 0%, var(--accent) 50%, transparent 100%);
    background-size: 100% 200%;
    animation: scanline 4s linear infinite;
    opacity: 0.15;
}

@keyframes scanline {
    0% { background-position: 0% -100%; }
    100% { background-position: 0% 100%; }
}

.loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.loader-logo-wrap {
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(0, 239, 255, 0.3));
}

.loader-logo-wrap img {
    height: 50px;
    width: auto;
}

.loader-visual {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(0, 239, 255, 0.1);
    border-radius: 50%;
}

.loader-circle-inner {
    position: absolute;
    inset: 15px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    border-right-color: transparent;
    border-left-color: transparent;
    animation: rotate 2s linear infinite;
}

.loader-hex {
    width: 40px;
    height: 40px;
    background: var(--accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 30px var(--accent);
}

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

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

.loader-status {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bar-wrap {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width 0.4s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 239, 255, 0.5);
}

.loader-logs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--accent);
    opacity: 0.5;
    height: 14px;
    text-transform: uppercase;
}

/* --- Navigation --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* Fixed height to prevent expansion */
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    /* Prevent huge logo */
    object-fit: contain;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 15px;
    margin-left: auto;
    /* Push to right */
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    padding: 0;
    transition: color 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.menu-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.menu-btn:hover .hamburger span:nth-child(2) {
    width: 70%;
}

/* --- Menu Overlay --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Ensure clicks pass through when hidden */
    transition: all 0.5s ease-in-out;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.menu-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.menu-link:hover,
.menu-link.active {
    color: #fff;
    transform: scale(1.05);
}

.highlight-link {
    color: var(--accent);
}

/* --- Video Layer --- */
.viewport-visual {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
}

/* --- Content & Scroller --- */
#scroller {
    position: relative;
    z-index: 10;
}

.step {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    /* Safe area for nav */
}

/* Hero siempre ocupa pantalla completa */
.step.hero {
    min-height: 100vh;
    padding: 80px 20px 40px 20px;
}

/* Secciones compactas: marquees, métricas */
.step--compact {
    padding: 20px 0;
}

/* Secciones slim: CTA banners */
.step--slim {
    padding: 40px 20px;
}

.content {
    opacity: 1;
    visibility: visible;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 100%;
    padding: 2rem;
}

.centralized {
    text-align: center;
}

.left-aligned {
    text-align: left;
}

.right-aligned {
    text-align: right;
}

.centralized p {
    margin: 0 auto;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 0;
}

/* UI Elements */
.scroll-hint {
    margin-top: 3rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    animation: blink 2s infinite;
}

.cta-btn {
    text-decoration: none;
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 2rem;
}

.cta-btn:hover {
    background: var(--text);
    color: #000;
    letter-spacing: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* --- Floating WhatsApp --- */
.whatsapp-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: transform 0.3s;
    animation: pulse-green 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

.whatsapp-link svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .content {
        padding: 1rem;
    }

    .left-aligned,
    .right-aligned {
        text-align: center;
        padding: 1rem;
    }

    .menu-link {
        font-size: 1.5rem;
    }

    /* Center logo and simplify nav */
    .main-nav {
        padding: 0 1rem;
        height: 60px;
    }

    .logo img {
        height: 30px;
    }

    .lang-switcher {
        gap: 8px;
        margin-right: 15px;
    }

    .lang-btn {
        font-size: 0.7rem;
    }

    .menu-text {
        display: none;
    }

    .whatsapp-link {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        
        
        
    }

    .step {
        padding: 80px 10px 40px 10px;
        /* Reduced side padding */
    }

    .content {
        padding: 0;
        width: 100%;
    }
}


/* New Layout Variables */
:root {
    --bg-2: rgba(0, 0, 0, 0.4);
    --surface: rgba(18, 18, 25, 0.65);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.2);
    --text-dim: rgba(255, 255, 255, 0.85);
    --text-faint: rgba(255, 255, 255, 0.65);
    --accent-glow: rgba(0, 239, 255, 0.35);
    --danger: #FF5E3A;
}

.glass-panel {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(18, 18, 25, 0.4);
    border: 1px solid var(--border);
}


        

        

        

        

        /* Background grid overlay */
        

        /* Noise texture */
        

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 2;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.05;
        }

        .mono {
            font-family: 'JetBrains Mono', monospace;
        }

        /* Section label */
        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--accent);
        }

        /* Navigation */
        

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

        .logo {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 22px;
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--accent-glow);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

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

            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        

        .nav-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .lang-switch {
            display: flex;
            gap: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-faint);
        }

        .lang-switch .active {
            color: var(--accent);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: flex-end;
            padding: 0 0 60px;
            position: relative;
        }

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

        .hero-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-tag-badge {
            padding: 4px 10px;
            border: 1px solid var(--accent);
            border-radius: 2px;
            color: var(--accent);
            font-size: 10px;
        }

        .hero h1 {
            font-size: clamp(28px, 4.5vw, 56px);
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--accent);
            position: relative;
        }

        .hero h1 em::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 6px;
            height: 12px;
            background: var(--accent-glow);
            z-index: -1;
            filter: blur(12px);
        }

        .hero p.lead {
            font-size: 15px;
            color: var(--text-dim);
            max-width: 480px;
            margin-bottom: 24px;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 4px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: all 0.25s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #000;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px var(--accent-glow);
        }

        .btn-outline {
            border: 1px solid var(--border-strong);
            color: var(--text);
            background: transparent;
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Hero visual */
        .hero-visual {
            aspect-ratio: 1;
            position: relative;
            border: 1px solid var(--border);
            background:
                radial-gradient(circle at 50% 50%, rgba(0, 239, 255, 0.08) 0%, transparent 60%),
                linear-gradient(135deg, var(--surface), var(--bg-2));
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(0, 239, 255, 0.06) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 239, 255, 0.06) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .orbit {
            position: absolute;
            inset: 15%;
            border: 1px dashed rgba(0, 239, 255, 0.25);
            border-radius: 50%;
            animation: spin 30s linear infinite;
        }

        .orbit-2 {
            inset: 28%;
            border-color: rgba(255, 255, 255, 0.12);
            animation: spin 45s linear infinite reverse;
        }

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

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

        .orbit-dot {
            position: absolute;
            top: -4px;
            left: 50%;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .core {
            position: relative;
            z-index: 2;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            text-align: center;
            padding: 32px;
            background: rgba(7, 7, 11, 0.8);
            border: 1px solid var(--accent);
            border-radius: 4px;
        }

        .core strong {
            display: block;
            font-size: 22px;
            color: var(--text);
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            margin-top: 8px;
            letter-spacing: -0.01em;
            text-transform: none;
        }

        /* Section structure */
        section {
            padding: 120px 0;
            position: relative;
            border-top: 1px solid var(--border);
        }

        .section-header {
            max-width: 780px;
            margin: 0 auto 72px auto;
            text-align: center;
        }

        .section-header h2 {
            font-size: clamp(32px, 4vw, 54px);
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--text-dim);
            font-size: 18px;
        }

        /* Divider between HOME and LANDING parts */
        .part-divider {
    backdrop-filter: blur(10px);
            padding: 80px 0;
            background: var(--bg-2);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            text-align: center;
        }

        .part-divider .container {
            max-width: 800px;
        }

        .part-marker {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--accent);
            letter-spacing: 0.3em;
            margin-bottom: 16px;
        }

        .part-divider h2 {
            font-size: clamp(28px, 3.5vw, 44px);
            margin-bottom: 16px;
        }

        .part-divider p {
            color: var(--text-dim);
        }

        /* Two pillars */
        .pillars {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .pillar {
    backdrop-filter: blur(10px);
            padding: 40px;
            border: 1px solid var(--border);
            background: var(--surface);
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .pillar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .pillar:hover::before {
            transform: scaleX(1);
        }

        .pillar:hover {
            border-color: var(--border-strong);
        }

        .pillar-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: var(--accent);
            margin-bottom: 24px;
        }

        .pillar h3 {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .pillar p {
            color: var(--text-dim);
            font-size: 15px;
        }

        /* Section subtitle */
        .section-subtitle {
            color: var(--text-dim);
            font-size: 16px;
            line-height: 1.6;
            max-width: 600px;
            margin: 12px auto 0 auto;
        }

        /* Strategic Capabilities Grid */
        .capabilities-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .capability-card {
            background: rgba(18, 18, 25, 0.4);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 180px;
            flex: 1 1 calc(25% - 20px);
            max-width: calc(25% - 15px);
            min-width: 280px;
        }

        .capability-card:hover, .capability-card.active {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--accent);
            transform: translateY(-5px);
            min-height: 280px;
        }



        .capability-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 0;
            transition: margin 0.4s ease;
        }

        .capability-card:hover .capability-header, .capability-card.active .capability-header {
            margin-bottom: 20px;
        }

        .capability-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 239, 255, 0.1);
            border: 1px solid rgba(0, 239, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
            color: var(--accent);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .capability-card:hover .capability-icon, .capability-card.active .capability-icon {
            background: rgba(0, 239, 255, 0.2);
            border-color: var(--accent);
            transform: scale(1.1);
        }

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

        .capability-card h4 {
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 0;
            color: white;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .capability-card:hover h4, .capability-card.active h4 {
            color: var(--accent);
        }

        .capability-reveal {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .capability-card:hover .capability-reveal, .capability-card.active .capability-reveal {
            max-height: 500px;
            opacity: 1;
        }

        .capability-reveal ul {
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
        }

        .capability-reveal li {
            font-size: 12px;
            color: var(--accent);
            margin-bottom: 5px;
            padding-left: 12px;
            position: relative;
            font-family: 'JetBrains Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .capability-reveal li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        .capability-reveal p {
            font-size: 13px;
            color: var(--text-dim);
            line-height: 1.5;
            margin: 0;
        }

        /* Services grid */
        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
        }

        .service {
            backdrop-filter: blur(10px);
            background: var(--bg);
            padding: 40px 32px;
            transition: background 0.3s;
            position: relative;
        }

        .service:hover {
            background: var(--surface);
        }

        .service-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--text-faint);
            margin-bottom: 24px;
            display: block;
        }

        .service h3 {
            font-family: 'Syne', sans-serif;
            font-size: 21px;
            margin-bottom: 16px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .service p {
            color: var(--text-dim);
            font-size: 14px;
            line-height: 1.6;
        }

        .service-arrow {
            margin-top: 24px;
            color: var(--accent);
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service:hover .service-arrow {
            opacity: 1;
        }

        /* CTA banner */
        .cta-banner {
            padding: 80px 0;
            background: var(--accent);
            color: #000;
            text-align: center;
            border-top: none;
            border-bottom: none;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .cta-banner .container {
            position: relative;
        }

        .cta-banner h2 {
            font-size: clamp(32px, 4vw, 56px);
            margin-bottom: 32px;
            color: #000;
        }

        .cta-banner .btn-primary {
            background: #000;
            color: var(--accent);
        }

        .cta-banner .btn-primary:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        /* Reviews */
        .reviews {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .review {
    backdrop-filter: blur(10px);
            padding: 32px;
            border: 1px solid var(--border);
            background: var(--surface);
            border-radius: 4px;
        }

        .review-stars {
            color: var(--accent);
            font-size: 14px;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .review-text {
            font-size: 15px;
            color: var(--text);
            margin-bottom: 24px;
            line-height: 1.65;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #7FB800);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: 700;
            font-family: 'Syne', sans-serif;
        }

        .review-info strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
        }

        .review-info span {
            font-size: 12px;
            color: var(--text-dim);
        }

        /* FAQ */
        .faq-list {
            border-top: 1px solid var(--border);
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 24px 0;
            cursor: pointer;
            transition: padding 0.3s;
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .faq-q h3 {
            font-family: 'Syne', sans-serif;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .faq-plus {
            color: var(--accent);
            font-size: 22px;
            font-family: 'JetBrains Mono', monospace;
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item.open .faq-plus {
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, margin 0.3s;
            color: var(--text-dim);
        }

        .faq-item.open .faq-a {
            max-height: 300px;
            margin-top: 16px;
        }

        /* ============ LANDING PART ============ */

        /* Landing hero */
        .landing-hero {
            padding: 160px 0 100px;
            text-align: center;
            background:
                radial-gradient(ellipse at top, rgba(0, 239, 255, 0.08) 0%, transparent 60%),
                var(--bg);
        }

        .landing-hero .container {
            max-width: 900px;
        }

        .pre-qual {
            display: inline-block;
            padding: 6px 14px;
            border: 1px solid var(--border-strong);
            border-radius: 40px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-dim);
            margin-bottom: 32px;
        }

        .landing-hero h1 {
            font-size: clamp(36px, 5vw, 68px);
            margin-bottom: 24px;
        }

        .landing-hero h1 span {
            color: var(--accent);
        }

        .landing-hero p {
            font-size: 18px;
            color: var(--text-dim);
            margin-bottom: 40px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Pain points */
        .pain-points {
            background: var(--bg-2);
        }

        .pains-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
        }

        .pain {
            background: var(--bg-2);
            padding: 28px 32px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .pain-x {
            color: var(--danger);
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
            font-size: 18px;
            flex-shrink: 0;
        }

        .pain p {
            color: var(--text);
            font-size: 16px;
        }

        /* Benefits */
        .benefits {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .benefit {
            padding: 32px 24px;
            border: 1px solid var(--border);
            background: var(--surface);
            border-radius: 4px;
            transition: all 0.3s;
        }

        .benefit:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .benefit-icon {
            font-size: 32px;
            margin-bottom: 20px;
            display: block;
        }

        .benefit h4 {
            font-family: 'Syne', sans-serif;
            font-size: 17px;
            margin-bottom: 12px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .benefit p {
            font-size: 14px;
            color: var(--text-dim);
        }

        .benefits-footer {
            margin-top: 40px;
            padding: 20px 28px;
            background: rgba(0, 239, 255, 0.06);
            border: 1px solid rgba(0, 239, 255, 0.25);
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 15px;
        }

        .check-big {
            color: var(--accent);
            font-size: 20px;
            font-family: 'JetBrains Mono', monospace;
        }


        .pricing-card {
            border: 1px solid var(--border-strong);
            border-radius: 4px;
            padding: 32px;
            background: var(--surface);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 100px;
            align-self: start;
        }

        .price-row {
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }

        .price-row:last-child {
            border: none;
        }

        .price-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-dim);
            margin-bottom: 8px;
        }

        .price-value {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text);
        }

        .price-value small {
            font-size: 14px;
            color: var(--text-dim);
            font-weight: 500;
        }

        /* Is it for you */
        .for-you {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .for-card {
            padding: 32px;
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .for-yes {
            background: rgba(0, 239, 255, 0.04);
            border-color: rgba(0, 239, 255, 0.2);
        }

        .for-no {
            background: rgba(255, 94, 58, 0.04);
            border-color: rgba(255, 94, 58, 0.2);
        }

        .for-card h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .for-card ul {
            list-style: none;
        }

        .for-card li {
            padding: 10px 0;
            display: flex;
            gap: 12px;
            font-size: 15px;
            color: var(--text);
        }

        .for-yes li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
        }

        .for-no li::before {
            content: '✗';
            color: var(--danger);
            font-weight: 700;
        }

        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testi {
            padding: 32px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: var(--surface);
        }

        .testi-quote {
            font-size: 16px;
            margin-bottom: 28px;
            line-height: 1.6;
            color: var(--text);
        }

        .testi-quote::before {
            content: '"';
            display: block;
            font-family: 'Syne', sans-serif;
            font-size: 48px;
            color: var(--accent);
            line-height: 0.5;
            margin-bottom: 12px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .testi-logo {
            width: 44px;
            height: 44px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            color: var(--accent);
        }

        .testi-author strong {
            display: block;
            font-size: 14px;
        }

        .testi-author span {
            font-size: 12px;
            color: var(--text-dim);
        }

        /* Form */
        .form-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

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

        .pain {
            background: rgba(255, 94, 58, 0.03);
            border: 1px solid rgba(255, 94, 58, 0.1);
            padding: 2.5rem 2rem;
            border-radius: 12px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .pain:hover {
            background: rgba(255, 94, 58, 0.07);
            border-color: rgba(255, 94, 58, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 94, 58, 0.1);
        }

        .pain-icon {
            font-size: 2rem;
            color: var(--danger);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 94, 58, 0.1);
            border-radius: 10px;
        }

        .pain p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-weight: 500;
        }

        .pain-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-family: var(--font-heading);
            font-size: 0.6rem;
            color: var(--danger);
            letter-spacing: 1px;
            opacity: 0.6;
            text-transform: uppercase;
        }
            margin-bottom: 20px;
            font-size: clamp(28px, 3vw, 44px);
        }

        .form-side p {
            color: var(--text-dim);
            margin-bottom: 24px;
        }

        .form-meta {
            padding: 20px;
            border: 1px solid var(--accent);
            background: rgba(0, 239, 255, 0.05);
            border-radius: 4px;
            font-size: 14px;
        }

        .form-meta strong {
            color: var(--accent);
        }

        .form-card {
    backdrop-filter: blur(10px);
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 32px;
            border-radius: 4px;
        }

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

        .form-row label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-dim);
            margin-bottom: 8px;
            display: block;
        }

        .form-row input,
        .form-row select,
        .form-row textarea {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            border-radius: 3px;
            transition: border 0.2s;
        }

        .form-row input:focus,
        .form-row select:focus,
        .form-row textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-row textarea {
            min-height: 80px;
            resize: vertical;
        }

        .form-card .btn-primary {
            width: 100%;
            justify-content: center;
            margin-top: 8px;
        }

        /* Guarantee */
        .guarantee {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .guarantee-card {
            padding: 40px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: var(--surface);
        }

        .guarantee-icon {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .guarantee-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .guarantee-card p {
            color: var(--text-dim);
        }

        /* Footer */
        footer {
            padding: 80px 0 40px;
            background: var(--bg-2);
            border-top: 1px solid var(--border);
        }

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

        .footer-brand p {
            color: var(--text-dim);
            max-width: 320px;
            margin-top: 20px;
            font-size: 14px;
        }

        .footer-col h5 {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-dim);
            margin-bottom: 20px;
        }

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

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

        .footer-col a {
            color: var(--text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-faint);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Annotations (only for mockup) */
        .annotation {
            position: absolute;
            top: 16px;
            right: 16px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: var(--accent);
            border: 1px dashed var(--accent);
            padding: 4px 8px;
            border-radius: 2px;
            opacity: 0.7;
            pointer-events: none;
        }

        /* Reveal on scroll */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 900px) {

            .hero-grid,
            .pillars,
            .deliverables-wrap,
            .for-you,
            .form-wrap,
            .guarantee,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .services,
            .benefits,
            .reviews,
            .testimonials,
            .pains-grid {
                grid-template-columns: 1fr;
            }

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

            .container {
                padding: 0 20px;
            }

            .deliverables-wrap {
                gap: 32px;
                width: 100%;
                box-sizing: border-box;
            }

            .deliv-left, .pricing-card {
                padding: 24px 20px;
                width: 100%;
                box-sizing: border-box;
                overflow: hidden;
            }

            .deliv-card {
                padding: 16px;
                gap: 16px;
            }

            .deliv-card .step-num {
                font-size: 1.2rem;
            }

            .deliv-text h4 {
                font-size: 1.05rem;
                margin-bottom: 4px;
            }

            .deliv-text p {
                font-size: 0.9rem;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 80px 0;
            }
        }
    
/* --- MÉTTRICAS --- */
.metrics-band {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-wrap: wrap;
    gap: 30px;
}
.metric-item {
    text-align: center;
}
.metric-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
}
.metric-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- INTEGRACIONES --- */
.integrations-section {
    padding: 80px 0 !important;
    min-height: auto !important;
    display: block !important;
    position: relative;
    z-index: 20;
    width: 100%;
}
.integrations-band {
    text-align: center;
    width: 100%;
}
.integrations-title {
    font-family: 'JetBrains Mono', monospace, sans-serif;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 700;
    opacity: 0.8;
}
.integrations-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7;
}
.integrations-logos span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    backdrop-filter: blur(10px);
}

/* --- PAIN POINTS --- */
.pains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.pain {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.pain-x {
    color: var(--danger);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
}
.pain p {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

/* --- BENEFITS (Aranza Protocol) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.benefit-card {
    background: var(--surface);
    backdrop-filter: blur(12px);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: left;
}
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin: 0;
}

/* --- DELIVERABLES --- */
.deliverables-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .deliverables-wrap {
        grid-template-columns: 1fr;
    }
}
/* --- DELIVERABLES CARDS --- */
.deliv-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.deliv-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.deliv-card:hover {
    background: rgba(0, 239, 255, 0.05);
    border-color: rgba(0, 239, 255, 0.2);
    transform: translateX(5px);
}

.deliv-card .step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.9;
    line-height: 1;
    margin-top: 2px;
}

.deliv-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.deliv-text p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.5;
}

/* --- FOR YOU FILTER --- */
.for-you-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.for-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
    backdrop-filter: blur(12px);
}
.for-yes {
    background: rgba(0, 239, 255, 0.05); /* Aqua tint */
    border-color: rgba(0, 239, 255, 0.2);
}
.for-no {
    background: rgba(255, 94, 58, 0.05); /* Red tint */
    border-color: rgba(255, 94, 58, 0.2);
}
.for-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.for-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.for-card li {
    padding: 10px 0;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}
.for-yes li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}
.for-no li::before {
    content: '✗';
    color: var(--danger);
    font-weight: bold;
}

/* --- GUARANTEE BOX --- */
.guarantee-box {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid rgba(0, 239, 255, 0.3);
    background: rgba(0, 239, 255, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.guarantee-box .icon {
    font-size: 2rem;
}
.guarantee-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dim);
}
.guarantee-box strong {
    color: var(--accent);
}

/* --- MARQUEE UTILS --- */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
/* Marquee shadows removed as per user request */
.integrations-section .marquee-container::before,
.integrations-section .marquee-container::after {
    display: none;
}
.marquee-content {
    display: inline-flex;
    gap: 40px;
    padding-right: 40px; /* space between repeats */
    will-change: transform;
}
.marquee-content span, .marquee-content .client-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    padding: 15px 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    backdrop-filter: blur(10px);
    display: inline-block;
}
.integrations-section .marquee-content .integration-img {
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- CLIENTS --- */
.clients-band {
    text-align: center;
    padding: 30px 20px;
}
.clients-title {
    font-family: 'JetBrains Mono', monospace, sans-serif;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* --- CLIENT IMAGES --- */
.client-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    backdrop-filter: blur(10px);
    filter: grayscale(100%) opacity(0.8);
    transition: filter 0.3s ease;
}
.client-img:hover {
    filter: grayscale(0%) opacity(1);
}

/* --- INTEGRATION IMAGES --- */
.integration-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    padding: 10px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.integration-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: var(--accent);
}
/* --- FINAL CTA REBORN --- */
.final-cta-section {
    padding: 80px 20px;
    position: relative;
    z-index: 5;
    text-align: center;
}

.final-cta-content {
    background: linear-gradient(135deg, #050505 0%, #001214 100%);
    border: 1px solid rgba(0, 239, 255, 0.4);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 239, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.final-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    color: #ffffff !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    margin-bottom: 32px !important;
    line-height: 1.1;
    letter-spacing: -0.02em !important;
    text-shadow: 0 0 20px rgba(0, 239, 255, 0.2);
    
    /* Nitidez asegurada */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.btn-mega {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent);
    color: #000;
    padding: 18px 40px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 239, 255, 0.3);
}

.btn-mega:hover {
    background: #fff;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
}

.btn-mega span {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-mega:hover span {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .final-cta-content {
        padding: 40px 20px;
        border-radius: 16px; /* Soften for mobile */
        margin: 0 15px; /* Don't stretch full width */
    }
    .final-cta-content h2 {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
        line-height: 1.3 !important;
        margin-bottom: 30px !important;
        text-shadow: 0 0 10px rgba(0, 239, 255, 0.3);
    }
    .btn-mega {
        padding: 15px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        letter-spacing: 1px;
    }
}
