/* ═══════════════════════════════════════════
   PRELOADER STYLES — SoftDeMa
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   PRELOADER OVERLAY — SoftDeMa
   Se muestra al cargar la página y al navegar
   ═══════════════════════════════════════════ */

.preloader-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    overflow: hidden;
    transition: opacity 0.7s var(--ease-expo), visibility 0.7s;
}

.preloader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Background layers */
.preloader-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.preloader-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(15, 23, 42, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(30, 27, 75, 0.6) 0%, transparent 50%);
}

/* Gradient mesh */
.pl-mesh {
    position: absolute;
    inset: -30%;
    filter: blur(100px);
    opacity: 0.7;
}

.pl-mesh-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.pl-mesh-1 {
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(59,130,246,0.55) 0%, transparent 55%);
    top: -20%; left: -15%;
    animation: plBlob1 18s ease-in-out infinite;
}

.pl-mesh-2 {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(139,92,246,0.45) 0%, transparent 55%);
    bottom: -25%; right: -15%;
    animation: plBlob2 22s ease-in-out infinite;
}

.pl-mesh-3 {
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(6,182,212,0.4) 0%, transparent 55%);
    top: 35%; left: 55%;
    animation: plBlob3 20s ease-in-out infinite;
}

.pl-mesh-4 {
    width: 45vw; height: 45vw;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 55%);
    top: 15%; right: 25%;
    animation: plBlob4 25s ease-in-out infinite;
}

@keyframes plBlob1 {
    0%, 100% { transform: translate(0,0) scale(1) rotate(0deg); }
    25% { transform: translate(60px,-40px) scale(1.08) rotate(5deg); }
    50% { transform: translate(-30px,50px) scale(0.95) rotate(-3deg); }
    75% { transform: translate(40px,20px) scale(1.02) rotate(2deg); }
}

@keyframes plBlob2 {
    0%, 100% { transform: translate(0,0) scale(1) rotate(0deg); }
    25% { transform: translate(-50px,70px) scale(1.12) rotate(-4deg); }
    50% { transform: translate(60px,-20px) scale(0.92) rotate(3deg); }
    75% { transform: translate(-20px,-40px) scale(1.05) rotate(-2deg); }
}

@keyframes plBlob3 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(-80px,-60px) scale(1.06); }
    66% { transform: translate(50px,30px) scale(0.94); }
}

@keyframes plBlob4 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(70px,50px) scale(1.08); }
    66% { transform: translate(-40px,-60px) scale(0.96); }
}

/* Particles */
.pl-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.pl-particle {
    position: absolute;
    border-radius: 50%;
    animation: plParticleFloat linear infinite;
}

@keyframes plParticleFloat {
    0% { transform: translateY(110vh) translateX(0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: scale(1); }
    95% { opacity: 0.6; }
    100% { transform: translateY(-10vh) translateX(var(--drift,40px)) scale(0.3); opacity: 0; }
}

/* Grid + noise */
.pl-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 15%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 15%, transparent 70%);
}

.pl-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Light beams */
.pl-beam {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    animation: plBeam 8s ease-in-out infinite;
}

@keyframes plBeam {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.25; transform: scale(1.2); }
}

/* ── Stage Content ── */
.pl-stage {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Logo orbit */
.pl-logo-orbit {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}

.pl-orbit-1 {
    width: 100%; height: 100%;
    border-top-color: rgba(59,130,246,0.3);
    border-right-color: rgba(139,92,246,0.2);
    animation: plOrbit1 4s linear infinite;
}

.pl-orbit-2 {
    width: 78%; height: 78%;
    border-bottom-color: rgba(6,182,212,0.25);
    border-left-color: rgba(59,130,246,0.15);
    animation: plOrbit2 3s linear infinite reverse;
}

.pl-orbit-3 {
    width: 58%; height: 58%;
    border-top-color: rgba(139,92,246,0.2);
    border-bottom-color: rgba(6,182,212,0.15);
    animation: plOrbit3 5s linear infinite;
}

@keyframes plOrbit1 { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
@keyframes plOrbit2 { 0%{transform:rotate(0deg)} 100%{transform:rotate(-360deg)} }
@keyframes plOrbit3 { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }

.pl-logo-glow {
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(139,92,246,0.08) 40%, transparent 70%);
    filter: blur(30px);
    animation: plGlowBreathe 4s ease-in-out infinite;
}

@keyframes plGlowBreathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.pl-logo-core {
    position: relative;
    z-index: 5;
    width: 64px; height: 64px;
    animation: plLogoPulse 3s ease-in-out infinite;
}

.pl-logo-core img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 0 25px rgba(59,130,246,0.4)) drop-shadow(0 0 50px rgba(139,92,246,0.2));
}

.pl-logo-fallback {
    display: none;
    width: 100%; height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 16px;
}

@keyframes plLogoPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.1); }
}

/* Brand text */
.pl-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pl-brand-name {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 38px;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, #F8FAFC 0%, #60A5FA 50%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pl-brand-tagline {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Progress */
.pl-progress-wrap {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.pl-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(59,130,246,0.5);
    transition: width 0.3s var(--ease-expo);
}

.pl-progress-fill::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px var(--accent-blue);
}

.pl-status-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.pl-dots {
    display: flex;
    gap: 3px;
}

.pl-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: plDotBounce 1.4s ease-in-out infinite;
}

.pl-dot:nth-child(2) { animation-delay: 0.2s; }
.pl-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes plDotBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-5px); opacity: 1; }
}

/* Footer pills */
.pl-footer {
    position: absolute;
    bottom: 28px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    flex-wrap: wrap;
    padding: 0 16px;
}

.pl-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    backdrop-filter: blur(8px);
}

.pl-pill svg {
    width: 12px; height: 12px;
    color: var(--accent-blue);
}

/* Exit animation */
.preloader-overlay.exit {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s var(--ease-expo), visibility 0.6s;
}

/* Mobile */
@media (max-width: 640px) {
    .pl-logo-orbit { width: 110px; height: 110px; }
    .pl-logo-core { width: 52px; height: 52px; }
    .pl-logo-core img { border-radius: 12px; }
    .pl-brand-name { font-size: 30px; }
    .pl-brand-tagline { font-size: 9px; letter-spacing: 0.15em; }
    .pl-progress-wrap { width: 140px; }
    .pl-footer { gap: 8px; bottom: 20px; }
    .pl-pill { font-size: 10px; padding: 5px 10px; }
    .pl-stage { gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
    .preloader-overlay { transition: none; }
    .preloader-overlay.exit { display: none; }
}

   

/* ───────────────────────────────────────────
   SoftDeMa v3 — Premium Dark Agency Design System
   Botones redondos premium | Layout left-aligned | Stats bar separado
   Fondo video-style con CSS/JS (no video file)
   ─────────────────────────────────────────── */

/* ── Variables ── */
:root {
    --bg-deep: #030305;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #475569;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(59, 130, 246, 0.25);
    --glow-blue: rgba(59, 130, 246, 0.5);
    --glow-purple: rgba(139, 92, 246, 0.4);
    --glow-cyan: rgba(6, 182, 212, 0.3);

    --font-headline: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Manrope', sans-serif;

    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── ANIMATED BACKGROUND — Video-style with CSS/JS ── */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg-deep);
}

/* Deep space radial gradient base */
.ambient-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(15, 23, 42, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(30, 27, 75, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(15, 23, 42, 0.3) 0%, transparent 70%);
}

/* Gradient Mesh — 4 animated blobs with video-like motion */
.gradient-mesh {
    position: absolute;
    inset: -30%;
    filter: blur(120px);
    opacity: 0.6;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.mesh-1 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, transparent 55%);
    top: -20%;
    left: -15%;
    animation: blobMove1 20s ease-in-out infinite;
}

.mesh-2 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, transparent 55%);
    bottom: -25%;
    right: -15%;
    animation: blobMove2 25s ease-in-out infinite;
}

.mesh-3 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6,182,212,0.35) 0%, transparent 55%);
    top: 35%;
    left: 55%;
    animation: blobMove3 22s ease-in-out infinite;
}

.mesh-4 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 55%);
    top: 15%;
    right: 25%;
    animation: blobMove4 28s ease-in-out infinite;
}

@keyframes blobMove1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(60px, -40px) scale(1.08) rotate(5deg); }
    50% { transform: translate(-30px, 50px) scale(0.95) rotate(-3deg); }
    75% { transform: translate(40px, 20px) scale(1.02) rotate(2deg); }
}

@keyframes blobMove2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-50px, 70px) scale(1.12) rotate(-4deg); }
    50% { transform: translate(60px, -20px) scale(0.92) rotate(3deg); }
    75% { transform: translate(-20px, -40px) scale(1.05) rotate(-2deg); }
}

@keyframes blobMove3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, -60px) scale(1.06); }
    66% { transform: translate(50px, 30px) scale(0.94); }
}

@keyframes blobMove4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(70px, 50px) scale(1.08); }
    66% { transform: translate(-40px, -60px) scale(0.96); }
}

/* Animated light beams / lens flares */
.light-beam {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    animation: lightBeam 8s ease-in-out infinite;
}

@keyframes lightBeam {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

/* Floating Particles — more like the video */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(110vh) translateX(0) scale(0);
        opacity: 0;
    }
    5% { opacity: 1; transform: scale(1); }
    95% { opacity: 0.6; }
    100% {
        transform: translateY(-10vh) translateX(40px) scale(0.5);
        opacity: 0;
    }
}

/* Grid Overlay — subtle tech grid */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

/* Noise Texture */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ── NAVIGATION ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.5s var(--ease-expo);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(3, 3, 5, 0.75);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    position: relative;
    transition: transform 0.4s var(--ease-expo);
}

.logo-mark:hover {
    transform: scale(1.08) rotate(-3deg);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 9px;
}

.logo-svg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-tagline {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s var(--ease-smooth);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: all 0.35s var(--ease-expo);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ── PREMIUM LANGUAGE SWITCH ── */
.lang-switch {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    user-select: none;
}

.lang-switch:hover {
    border-color: var(--border-hover);
    background: var(--bg-surface-hover);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.lang-option {
    position: relative;
    z-index: 2;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-expo);
    letter-spacing: 0.05em;
}

.lang-option.active {
    color: var(--text-primary);
}

.lang-slider {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 100px;
    transition: transform 0.4s var(--ease-expo);
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.3);
}

.lang-switch.es-active .lang-slider {
    transform: translateX(100%);
}

/* ── PREMIUM ROUNDED BUTTONS ── */
.btn-nav-primary,
.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-expo);
    letter-spacing: 0.01em;
}

/* Nav button — pill shape */
.btn-nav-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    padding: 12px 26px;
    border-radius: 100px;
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 -1px 0 rgba(0,0,0,0.2) inset;
}

.btn-nav-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-nav-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 28px rgba(59, 130, 246, 0.45),
        0 0 0 1px rgba(255,255,255,0.12) inset,
        0 -1px 0 rgba(0,0,0,0.2) inset;
}

.btn-nav-primary:hover::before {
    opacity: 1;
}

.btn-nav-primary:active {
    transform: translateY(0) scale(0.98);
}

/* Hero Primary Button — large pill */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    padding: 18px 36px;
    font-size: 15px;
    border-radius: 100px;
    box-shadow: 
        0 6px 24px rgba(59, 130, 246, 0.35),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 -2px 0 rgba(0,0,0,0.2) inset;
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.8s var(--ease-expo);
}

.btn-hero-primary:hover::after {
    transform: translateX(100%);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 14px 48px rgba(59, 130, 246, 0.5),
        0 0 0 1px rgba(255,255,255,0.12) inset,
        0 -2px 0 rgba(0,0,0,0.2) inset;
}

.btn-hero-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Hero Secondary Button — outlined pill */
.btn-hero-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-subtle);
    padding: 17px 32px;
    font-size: 15px;
    border-radius: 100px;
    position: relative;
    transition: all 0.4s var(--ease-expo);
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    z-index: -1;
}

.btn-hero-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: var(--bg-deep);
    z-index: -1;
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover {
    color: var(--text-primary);
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-hero-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Button Icons */
.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-expo);
    flex-shrink: 0;
}

.btn-nav-primary:hover .btn-icon,
.btn-hero-primary:hover .btn-icon {
    transform: translateX(3px);
}

.btn-hero-secondary:hover .btn-icon {
    transform: scale(1.1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.2s;
}

.mobile-toggle:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-hover);
}

.icon-menu {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(3, 3, 5, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 28px;
    z-index: 99;
    transform: translateY(-15px);
    opacity: 0;
    transition: all 0.4s var(--ease-expo);
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mobile-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.2s;
}

.mobile-link:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.mobile-cta {
    width: 100%;
}

/* ── HERO SECTION — Left-aligned layout ── */

/* ── Hero Video Background ── */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%) scale(0.85);
    object-fit: cover;
    opacity: 0.6;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 3, 5, 0.3) 0%,
        rgba(3, 3, 5, 0.1) 40%,
        rgba(3, 3, 5, 0.5) 70%,
        rgba(3, 3, 5, 0.85) 100%
    );
    z-index: 1;
}

/* Ensure hero content stays above video */
.hero-container {
    position: relative;
    z-index: 2;
}

/* Adjust hero for video visibility */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 32px 0;
    overflow: hidden;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 32px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 140px);
}

/* Floating Elements */
.float-element {
    position: absolute;
    z-index: 2;
    opacity: 0;
    animation: floatIn 1s var(--ease-expo) forwards;
}

.float-1 {
    top: 8%;
    right: 5%;
    animation-delay: 1.2s;
}

.float-2 {
    top: 45%;
    right: 0%;
    animation-delay: 1.6s;
}

.float-3 {
    bottom: 30%;
    right: 12%;
    animation-delay: 2s;
}

.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255,255,255,0.02) inset;
    transition: all 0.4s var(--ease-expo);
}

.glass-pill:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255,255,255,0.05) inset;
}

.pill-icon {
    width: 15px;
    height: 15px;
    color: var(--accent-blue);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Content — LEFT ALIGNED */
.hero-content {
    text-align: left;
    max-width: 720px;
    position: relative;
    z-index: 3;
    padding-bottom: 120px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-expo) 0.2s forwards;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(2); opacity: 0; }
}

.badge-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* Headline */
.hero-headline {
    font-family: var(--font-headline);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.headline-line {
    display: block;
    font-size: clamp(42px, 6vw, 72px);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s var(--ease-expo) forwards;
}

.headline-line:first-child {
    animation-delay: 0.4s;
}

.headline-line.gradient-text {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #F8FAFC 0%, #60A5FA 40%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subheadline */
.hero-subheadline {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-expo) 0.8s forwards;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-expo) 1s forwards;
}

/* ── STATS BAR — Bottom, separated from content ── */
.hero-stats-bar {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 56px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-expo) 1.2s forwards;
    padding: 0;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 1px;
    line-height: 1;
}

.stat-number {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 36px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-secondary);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── MOUSE SCROLL — Isolated bottom-right ── */
.scroll-mouse {
    position: absolute;
    bottom: 48px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-expo) 1.6s forwards;
    cursor: pointer;
    padding: 12px;
}

.mouse-body {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    transition: border-color 0.3s;
}

.scroll-mouse:hover .mouse-body {
    border-color: var(--accent-blue);
}

.mouse-wheel {
    width: 3px;
    height: 7px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: mouseScroll 2.2s ease-in-out infinite;
    transition: background 0.3s;
}

.scroll-mouse:hover .mouse-wheel {
    background: var(--accent-blue);
}

@keyframes mouseScroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-hint {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.scroll-mouse:hover .scroll-hint {
    color: var(--accent-blue);
}


/* Navbar hide/show on scroll */
.navbar.hidden {
    transform: translateY(-100%);
}
/* ── Responsive ── */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-nav-primary {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu {
        display: block;
    }

    .float-element {
        display: none;
    }

    .hero {
        padding: 120px 24px 0;
    }

    .hero-content {
        padding-bottom: 140px;
    }

    .hero-stats-bar {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .hero-stats-bar {
        gap: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-suffix {
        font-size: 20px;
    }

    .scroll-mouse {
        display: none;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-stats-bar {
        justify-content: center;
        left: 0;
        right: 0;
    }

    .stat-block {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 20px 0;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .hero-stats-bar {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-tagline {
        display: none;
    }

    .lang-switch {
        padding: 3px;
    }

    .lang-option {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gradient-mesh,
    .mesh-blob {
        animation: none;
    }
}

/* ───────────────────────────────────────────
   SERVICES SECTION — Clean & Professional
   Fondo simbólico | Cards sutiles | Sin exceso de movimiento
   ─────────────────────────────────────────── */

.services {
    position: relative;
    z-index: 1;
    padding: 140px 32px;
    overflow: hidden;
    background: var(--bg-deep);
}

/* Symbolic Background — Represents what SoftDeMa offers */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Code brackets pattern — represents Development */
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='20' y='70' font-family='monospace' font-size='48' fill='rgba(59,130,246,0.04)'%3E%26lt;%3C/text%3E%3Ctext x='72' y='70' font-family='monospace' font-size='48' fill='rgba(59,130,246,0.04)'%3E%26gt;%3C/text%3E%3C/svg%3E"),
        /* Bezier curve — represents Design */
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 180 Q 100 20 180 100' stroke='rgba(139,92,246,0.04)' stroke-width='2' fill='none'/%3E%3Ccircle cx='20' cy='180' r='4' fill='rgba(139,92,246,0.06)'/%3E%3Ccircle cx='180' cy='100' r='4' fill='rgba(139,92,246,0.06)'/%3E%3C/svg%3E"),
        /* Growth chart — represents Marketing */
        url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,140 60,100 100,110 140,40' stroke='rgba(6,182,212,0.05)' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='140' cy='40' r='5' fill='rgba(6,182,212,0.06)'/%3E%3C/svg%3E");
    background-size: 120px 120px, 200px 200px, 160px 160px;
    background-position: 10% 20%, 70% 60%, 40% 80%;
    opacity: 1;
    pointer-events: none;
    animation: bgDrift 30s ease-in-out infinite;
}

@keyframes bgDrift {
    0%, 100% { background-position: 10% 20%, 70% 60%, 40% 80%; }
    50% { background-position: 15% 25%, 65% 55%, 45% 75%; }
}

/* Subtle gradient orbs behind cards */
.services::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background:
        radial-gradient(ellipse 50% 40% at 30% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 70% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.services-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 46px);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 18px;
}

.services-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service Card — Clean, minimal movement */
.service-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-inner {
    position: relative;
    z-index: 1;
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Icon */
.service-icon-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .service-icon-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.12));
    border-color: rgba(59, 130, 246, 0.25);
}

.service-icon {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
    transition: color 0.3s;
}

.service-card:hover .service-icon {
    color: #60A5FA;
}

/* Service Name */
.service-name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Service Description */
.service-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

/* Features List */
.service-features {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.service-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    flex-shrink: 0;
}

.service-card:hover .service-features li {
    color: var(--text-secondary);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue);
    transition: all 0.3s var(--ease-expo);
    margin-top: auto;
}

.service-link .link-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s var(--ease-expo);
}

.service-link:hover {
    color: #60A5FA;
}

.service-link:hover .link-icon {
    transform: translateX(4px);
}

/* ── Responsive Services ── */
@media (max-width: 1024px) {
    .services {
        padding: 100px 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card-inner {
        padding: 30px 24px 26px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 20px;
    }

    .services-header {
        margin-bottom: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card-inner {
        padding: 28px 22px 24px;
    }

    .service-icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 22px;
        height: 22px;
    }

    .service-name {
        font-size: 19px;
    }
}


/* ───────────────────────────────────────────
   WHY US SECTION — Bento Grid
   Fondo llamativo | Layout asimétrico | Premium
   ─────────────────────────────────────────── */

.why-us {
    position: relative;
    z-index: 1;
    padding: 140px 32px;
    overflow: hidden;
    background: var(--bg-deep);
}

/* ═══════════════════════════════════════════
   FONDO LLAMATIVO — Animated Mesh Gradient
   ═══════════════════════════════════════════ */

/* Animated mesh gradient container */
.why-us .mesh-bg {
    position: absolute;
    inset: -50%;
    filter: blur(80px);
    opacity: 0.7;
    animation: meshRotate 40s linear infinite;
    pointer-events: none;
}

.why-us .mesh-bg-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.why-us .mesh-bg-blob:nth-child(1) {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 60%);
    top: -10%;
    left: -10%;
    animation: meshBlob1 15s ease-in-out infinite;
}

.why-us .mesh-bg-blob:nth-child(2) {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.45) 0%, transparent 60%);
    bottom: -15%;
    right: -10%;
    animation: meshBlob2 18s ease-in-out infinite;
}

.why-us .mesh-bg-blob:nth-child(3) {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 60%);
    top: 30%;
    left: 50%;
    animation: meshBlob3 20s ease-in-out infinite;
}

.why-us .mesh-bg-blob:nth-child(4) {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 60%);
    top: 60%;
    left: 10%;
    animation: meshBlob4 22s ease-in-out infinite;
}

.why-us .mesh-bg-blob:nth-child(5) {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 60%);
    top: 10%;
    right: 30%;
    animation: meshBlob5 17s ease-in-out infinite;
}

@keyframes meshRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes meshBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -50px) scale(1.1); }
    50% { transform: translate(-40px, 60px) scale(0.95); }
    75% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes meshBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-60px, 70px) scale(1.15); }
    50% { transform: translate(50px, -40px) scale(0.92); }
    75% { transform: translate(-20px, 30px) scale(1.08); }
}

@keyframes meshBlob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-70px, -50px) scale(1.08); }
    66% { transform: translate(40px, 30px) scale(0.96); }
}

@keyframes meshBlob4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 60px) scale(1.12); }
    66% { transform: translate(-30px, -40px) scale(0.94); }
}

@keyframes meshBlob5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -50px) scale(1.1); }
}

/* Animated noise grain overlay */
.why-us .noise-anim {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    animation: noiseShift 0.5s steps(4) infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes noiseShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5px, 5px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-5px, -5px); }
    100% { transform: translate(0, 0); }
}

/* Scan line effect */
.why-us .scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1), transparent);
    animation: scanMove 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0%, 100% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Floating particles — colored */
.why-us .why-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-us .why-particle {
    position: absolute;
    border-radius: 50%;
    animation: whyParticleFloat linear infinite;
}

@keyframes whyParticleFloat {
    0% {
        transform: translateY(110vh) translateX(0) scale(0);
        opacity: 0;
    }
    5% { opacity: 1; transform: scale(1); }
    95% { opacity: 0.5; }
    100% {
        transform: translateY(-10vh) translateX(var(--drift, 30px)) scale(0.3);
        opacity: 0;
    }
}

/* Vignette overlay */
.why-us .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(3, 3, 5, 0.6) 100%);
    pointer-events: none;
}

/* Container */
.why-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.why-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-purple);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.why-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(26px, 4vw, 42px);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.15;
    background: linear-gradient(135deg, #F8FAFC 0%, #C4B5FD 50%, #A5F3FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════
   BENTO GRID — Asymmetric Layout
   ═══════════════════════════════════════════ */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card base */
.bento-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: 
        transform 0.5s var(--ease-expo),
        box-shadow 0.5s var(--ease-expo),
        border-color 0.5s var(--ease-expo);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    pointer-events: none;
    z-index: 0;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

.bento-card-inner {
    position: relative;
    z-index: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Glow effect */
.bento-glow {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    opacity: 0;
    z-index: -1;
    filter: blur(16px);
    transition: opacity 0.5s var(--ease-smooth);
}

.bento-card:hover .bento-glow {
    opacity: 0.12;
}

/* Card sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Icon */
.bento-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease-expo);
}

.bento-card:hover .bento-icon-wrap {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
    border-color: rgba(139, 92, 246, 0.3);
}

.bento-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-purple);
    transition: color 0.3s;
}

.bento-card:hover .bento-icon {
    color: #A78BFA;
}

/* Title */
.bento-card-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Description */
.bento-card-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.65;
    flex-grow: 1;
}

/* ═══════════════════════════════════════════
   CARD-SPECIFIC CONTENT
   ═══════════════════════════════════════════ */

/* Revenue metric */
.bento-metric {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
}

.metric-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* Flags */
.bento-flags {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.flag {
    font-size: 24px;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.bento-card:hover .flag {
    opacity: 1;
    transform: scale(1.1);
}

/* Chart bars */
.bento-chart-bar {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
}

.chart-segment {
    flex: 1;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border-radius: 4px 4px 0 0;
    min-height: 12px;
    transition: all 0.6s var(--ease-expo);
    position: relative;
}

.chart-segment.active {
    background: linear-gradient(to top, var(--accent-purple), rgba(139, 92, 246, 0.3));
}

.bento-card:hover .chart-segment {
    background: linear-gradient(to top, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
}

.bento-card:hover .chart-segment.active {
    background: linear-gradient(to top, #A78BFA, rgba(139, 92, 246, 0.4));
}

/* Support badges */
.bento-support-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-green);
    transition: all 0.3s var(--ease-expo);
}

.bento-card:hover .support-badge {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
}

.support-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    position: relative;
}

.support-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseRing 2s ease-in-out infinite;
}

/* ── Responsive Why Us ── */
@media (max-width: 1024px) {
    .why-us {
        padding: 100px 24px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 2;
    }

    .bento-small {
        grid-column: span 1;
    }

    .why-orb-1,
    .why-orb-2,
    .why-orb-3 {
        display: none;
    }
}

@media (max-width: 640px) {
    .why-us {
        padding: 80px 20px;
    }

    .why-header {
        margin-bottom: 48px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
    }

    .bento-card-inner {
        padding: 24px;
    }

    .metric-value {
        font-size: 28px;
    }

    .bento-chart-bar {
        height: 40px;
    }
}


/* ───────────────────────────────────────────
   SHOWCASE SECTION — Real Projects
   Fondo circuito mejorado | Imágenes reales | CTAs
   ─────────────────────────────────────────── */

.showcase {
    position: relative;
    z-index: 1;
    padding: 140px 32px;
    overflow: hidden;
    background: var(--bg-deep);
}

/* ═══════════════════════════════════════════
   FONDO MEJORADO — Circuit Grid + Orbes
   ═══════════════════════════════════════════ */

.showcase-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Circuit grid lines */
.showcase-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 25%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Connection nodes */
.showcase-nodes {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 2px, transparent 2px);
    background-size: 100px 100px;
    background-position: 49px 49px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 65%);
    animation: nodePulse 4s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Orbes */
.showcase-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-a {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 65%);
    top: -5%;
    right: -5%;
    animation: orbFloatA 18s ease-in-out infinite;
}

.orb-b {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 65%);
    bottom: 15%;
    left: -5%;
    animation: orbFloatB 22s ease-in-out infinite;
}

.orb-c {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 65%);
    top: 50%;
    left: 40%;
    animation: orbFloatC 20s ease-in-out infinite;
}

@keyframes orbFloatA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.05); }
}

@keyframes orbFloatB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes orbFloatC {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Vignette */
.showcase-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(3, 3, 5, 0.5) 100%);
}

/* Container */
.showcase-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.showcase-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.showcase-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 44px);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 18px;
}

.showcase-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* CTA Button in header */
.btn-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--accent-blue);
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s var(--ease-expo);
}

.btn-showcase-cta:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    gap: 14px;
}

.btn-showcase-cta .btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn-showcase-cta:hover .btn-icon {
    transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════
   FEATURED PROJECT — American Visa
   ═══════════════════════════════════════════ */

.showcase-featured {
    margin-bottom: 48px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.5s var(--ease-expo);
}

.featured-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

/* Featured Visual — Real Image */
.featured-visual {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.2); }
}

.featured-image-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.featured-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--ease-expo);
}

.featured-card:hover .featured-image {
    transform: scale(1.02);
}

.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(3, 3, 5, 0.6) 100%);
    pointer-events: none;
    border-radius: 12px;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #F59E0B;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
}

.badge-star {
    width: 14px;
    height: 14px;
    fill: #F59E0B;
}

/* Featured Info */
.featured-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.featured-name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 14px;
}

.featured-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.featured-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fs-value {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 26px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.fs-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s var(--ease-expo);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.featured-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    gap: 12px;
}

.featured-link .link-icon {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════
   PROJECTS GRID — 3 Cards with Images
   ═══════════════════════════════════════════ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.project-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s var(--ease-expo);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

/* Project Visual — Image */
.project-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.04), transparent);
}

.project-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 3, 5, 0.7) 100%);
    pointer-events: none;
}

/* Project Info */
.project-info {
    padding: 24px;
}

.project-tag {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.project-meta {
    display: flex;
    align-items: center;
}

.pm-stat {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-green);
}

.pm-stat span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 4px;
}

/* ═══════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════ */

.showcase-bottom-cta {
    text-align: center;
    padding-top: 16px;
}

.btn-showcase-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s var(--ease-expo);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-showcase-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s var(--ease-expo);
}

.btn-showcase-large:hover::before {
    left: 100%;
}

.btn-showcase-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
    gap: 16px;
}

.btn-showcase-large .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-showcase-large:hover .btn-icon {
    transform: translateX(4px);
}

/* ── Responsive Showcase ── */
@media (max-width: 1024px) {
    .showcase {
        padding: 100px 24px;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-visual {
        min-height: 300px;
        order: 2;
    }

    .featured-info {
        padding: 32px;
        order: 1;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .featured-stats {
        gap: 24px;
    }

    .fs-value {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .showcase {
        padding: 80px 20px;
    }

    .showcase-header {
        margin-bottom: 48px;
    }

    .featured-info {
        padding: 24px;
    }

    .featured-name {
        font-size: 24px;
    }

    .featured-stats {
        flex-direction: column;
        gap: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-showcase-large {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

/* ───────────────────────────────────────────
   PRICING SECTION — Premium Tech Background
   Circuit SVG | Devices | Code | Particles
   ─────────────────────────────────────────── */

.pricing {
    position: relative;
    z-index: 1;
    padding: 140px 32px;
    overflow: hidden;
    background: var(--bg-deep);
}

/* ═══════════════════════════════════════════
   TECH BACKGROUND — Circuit + Devices + Code
   ═══════════════════════════════════════════ */

.pricing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Circuit SVG Background */
.tech-circuit {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.circuit-svg {
    width: 100%;
    height: 100%;
    animation: circuitPulse 4s ease-in-out infinite;
}

.circuit-line {
    stroke-dasharray: 8 4;
    animation: circuitFlow 20s linear infinite;
}

.circuit-node {
    animation: nodePulse 3s ease-in-out infinite;
}

@keyframes circuitFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Tech Particles */
.tech-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.tech-particle {
    position: absolute;
    border-radius: 50%;
    animation: techParticleFloat linear infinite;
}

@keyframes techParticleFloat {
    0% {
        transform: translateY(110vh) translateX(0) scale(0);
        opacity: 0;
    }
    5% { opacity: 1; transform: scale(1); }
    95% { opacity: 0.5; }
    100% {
        transform: translateY(-10vh) translateX(var(--drift, 30px)) scale(0.3);
        opacity: 0;
    }
}

/* Gradient Orbs */
.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 65%);
    top: -10%;
    left: -5%;
    animation: orbFloatA 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 65%);
    bottom: 10%;
    right: -5%;
    animation: orbFloatB 24s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 65%);
    top: 40%;
    left: 50%;
    animation: orbFloatC 18s ease-in-out infinite;
}

.pricing-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(3, 3, 5, 0.7) 100%);
}

/* Container */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pricing-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 44px);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 18px;
}

.pricing-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TOGGLE — Premium Segmented Control
   ═══════════════════════════════════════════ */

.pricing-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 5px;
    margin: 0 auto 56px;
    width: fit-content;
    display: flex;
    justify-content: center;
}

.toggle-btn {
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 100px;
    transition: color 0.4s var(--ease-expo);
    letter-spacing: 0.01em;
}

.toggle-btn.active {
    color: var(--text-primary);
}

.toggle-slider {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 100px;
    transition: transform 0.5s var(--ease-expo);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.pricing-toggle:has(.toggle-btn:nth-child(2).active) .toggle-slider {
    transform: translateX(100%);
}

/* ═══════════════════════════════════════════
   PRICING CARDS GRID
   ═══════════════════════════════════════════ */

.pricing-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-expo);
    display: none;
}

.pricing-grid-cards.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* Card Base */
.pricing-card {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.5s var(--ease-expo);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.pricing-card-inner {
    position: relative;
    z-index: 1;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Glow */
.pricing-glow {
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    opacity: 0;
    z-index: 0;
    filter: blur(20px);
    transition: opacity 0.5s var(--ease-smooth);
}

.pricing-card:hover .pricing-glow {
    opacity: 0.08;
}

/* Popular Card */
.pricing-card.popular {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(139, 92, 246, 0.2);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-6px);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(139, 92, 246, 0.1);
}

.pricing-card.popular .pricing-glow {
    opacity: 0.1;
}

/* Premium Tier Card */
.pricing-card.premium-tier {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(245, 158, 11, 0.15);
}

.pricing-card.premium-tier:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(245, 158, 11, 0.08);
}

.pricing-card.premium-tier .pricing-glow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(139, 92, 246, 0.3));
    opacity: 0.06;
}

/* Coming Soon Card */
.pricing-card.coming-soon {
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(255, 255, 255, 0.04);
}

.pricing-card.coming-soon:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card.coming-soon .pricing-card-inner {
    opacity: 0.7;
}

.pricing-card.coming-soon:hover .pricing-card-inner {
    opacity: 0.85;
}

/* Badges */
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: #A78BFA;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: #F59E0B;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-icon, .cs-icon {
    width: 14px;
    height: 14px;
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-tag {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 4px;
    line-height: 1;
}

.price-currency {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 22px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.price-number {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 44px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-suffix {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-secondary);
    line-height: 1;
    margin-top: 4px;
}

.price-soon {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.price-period {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.pricing-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Compact Features List */
.pricing-features.compact {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.pricing-features.compact li {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    padding-left: 4px;
}

.pricing-features.compact li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    flex-shrink: 0;
}

.pricing-features.compact.dimmed li {
    color: var(--text-muted);
}

.pricing-features.compact.dimmed li::before {
    background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(139,92,246,0.3));
}

/* Delivery Info */
.pricing-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-delivery.dimmed {
    opacity: 0.5;
}

.delivery-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* CTA Button */
.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s var(--ease-expo);
    cursor: pointer;
    text-decoration: none;
    margin-top: auto;
}

.pricing-cta:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.pricing-cta.primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.pricing-cta.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.pricing-cta.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.06);
}

.pricing-cta.disabled:hover {
    transform: none;
    background: transparent;
    color: var(--text-secondary);
}

/* Trust Bar */
.pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.08);
}

/* ── Responsive Pricing ── */
@media (max-width: 1024px) {
    .pricing {
        padding: 100px 24px;
    }

    .pricing-grid-cards,
    .pricing-grid-cards.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: scale(1) translateY(-6px);
    }

    .pricing-card.coming-soon {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card-inner {
        padding: 28px 22px 24px;
    }

    .price-number {
        font-size: 38px;
    }

    .pricing-trust {
        flex-wrap: wrap;
        gap: 16px;
        border-radius: 20px;
        padding: 20px 28px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 80px 20px;
    }

    .pricing-header {
        margin-bottom: 40px;
    }

    .pricing-toggle {
        margin-bottom: 40px;
    }

    .toggle-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .pricing-grid-cards,
    .pricing-grid-cards.active {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card.coming-soon {
        grid-column: span 1;
    }

    .pricing-card-inner {
        padding: 24px 20px 22px;
    }

    .price-number {
        font-size: 36px;
    }

    .pricing-trust {
        flex-direction: column;
        gap: 14px;
        border-radius: 16px;
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .trust-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .toggle-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .price-number {
        font-size: 32px;
    }

    .pricing-name {
        font-size: 22px;
    }
}




/* ───────────────────────────────────────────
   PROCESS SECTION — Animated Workflow Pipeline
   Data pipes | Flowing particles | Horizontal steps
   ─────────────────────────────────────────── */

.process {
    position: relative;
    z-index: 1;
    padding: 140px 32px;
    overflow: hidden;
    background: var(--bg-deep);
}

/* ═══════════════════════════════════════════
   EPIC BACKGROUND — Data Pipeline Visualization
   ═══════════════════════════════════════════ */

.process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Data Pipes SVG */
.data-pipes {
    position: absolute;
    inset: 0;
    opacity: 0.7;
}

.pipes-svg {
    width: 100%;
    height: 100%;
}

.pipe-line {
    stroke-dasharray: 20 10;
    animation: pipeFlow 15s linear infinite;
}

.pipe-vert {
    stroke-dasharray: 8 6;
    animation: pipeFlow 10s linear infinite reverse;
}

.data-node {
    animation: nodeGlow 3s ease-in-out infinite;
}

.data-packet {
    animation: packetMove 8s ease-in-out infinite;
}

.proc-ring {
    animation: ringSpin 12s linear infinite;
    transform-origin: center;
}

@keyframes pipeFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -300; }
}

@keyframes nodeGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes packetMove {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(200px); opacity: 0; }
}

@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Flow Particles */
.flow-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.flow-particle {
    position: absolute;
    border-radius: 50%;
    animation: flowParticle linear infinite;
}

@keyframes flowParticle {
    0% {
        transform: translateX(-10vw) translateY(0) scale(0);
        opacity: 0;
    }
    5% { opacity: 1; transform: scale(1); }
    95% { opacity: 0.5; }
    100% {
        transform: translateX(110vw) translateY(var(--drift, 20px)) scale(0.3);
        opacity: 0;
    }
}

/* Gradient Orbs */
.process-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.process-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 65%);
    top: -10%;
    left: -5%;
    animation: orbFloatA 22s ease-in-out infinite;
}

.process-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 65%);
    bottom: 10%;
    right: -5%;
    animation: orbFloatB 26s ease-in-out infinite;
}

.process-orb.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 65%);
    top: 40%;
    left: 50%;
    animation: orbFloatC 20s ease-in-out infinite;
}

/* Grid */
.process-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

.process-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(3, 3, 5, 0.6) 100%);
}

/* Container */
.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.process-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.process-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.process-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 44px);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 18px;
}

.process-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PIPELINE — Horizontal Steps with Progress
   ═══════════════════════════════════════════ */

.process-pipeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Progress Track */
.pipeline-track {
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    z-index: 0;
}

.pipeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    border-radius: 3px;
    transition: width 0.8s var(--ease-expo);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Pipeline Step */
.pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease-expo);
}

.pipeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Step Node */
.step-node {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-ring {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-ring svg {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.node-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 3;
}

.node-progress {
    fill: none;
    stroke: url(#ringGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    transition: stroke-dashoffset 1.2s var(--ease-expo);
}

.node-num {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 22px;
    color: var(--text-primary);
    z-index: 2;
    position: relative;
}

.node-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.2);
    animation: nodePulseRing 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.pipeline-step.visible .node-pulse {
    opacity: 1;
}

@keyframes nodePulseRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* Step Card Modern */
.step-card-modern {
    text-align: center;
    padding: 0 16px;
    max-width: 260px;
}

.step-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon-wrap {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-expo);
}

.pipeline-step:hover .step-icon-wrap {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.1) rotate(-5deg);
}

.step-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
    transition: color 0.3s;
}

.pipeline-step:hover .step-icon {
    color: #60A5FA;
}

.step-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    filter: blur(20px);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}

.pipeline-step:hover .step-glow {
    opacity: 1;
}

.step-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Step Tags */
.step-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-smooth);
}

.step-tag::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    flex-shrink: 0;
}

.pipeline-step:hover .step-tag {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.18);
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════ */

.process-cta {
    text-align: center;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-process {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s var(--ease-expo);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s var(--ease-expo);
}

.btn-process:hover::before {
    left: 100%;
}

.btn-process:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
    gap: 16px;
}

.btn-process .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-process:hover .btn-icon {
    transform: translateX(4px);
}

.process-cta-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ── Responsive Process ── */
@media (max-width: 1024px) {
    .process {
        padding: 100px 24px;
    }

    .process-pipeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 24px;
    }

    .pipeline-track {
        display: none;
    }

    .step-card-modern {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .process {
        padding: 80px 20px;
    }

    .process-header {
        margin-bottom: 56px;
    }

    .process-pipeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-node {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .node-num {
        font-size: 18px;
    }

    .step-icon-wrap {
        width: 48px;
        height: 48px;
    }

    .step-icon {
        width: 20px;
        height: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 13px;
    }

    .btn-process {
        padding: 16px 32px;
        font-size: 14px;
    }
}


/* ───────────────────────────────────────────
   CONTACT SECTION — Floating Spheres & Form
   Esferas 3D | Form fields abstract | Glass form
   ─────────────────────────────────────────── */

.contact {
    position: relative;
    z-index: 1;
    padding: 140px 32px;
    overflow: hidden;
    background: var(--bg-deep);
}

/* ═══════════════════════════════════════════
   EPIC BACKGROUND — Floating Spheres & Forms
   ═══════════════════════════════════════════ */

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Spheres */
.sphere-field {
    position: absolute;
    inset: 0;
}

.sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: sphereFloat linear infinite;
}

.sphere-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.15), rgba(59,130,246,0.05) 50%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.sphere-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(139,92,246,0.12), rgba(139,92,246,0.04) 50%, transparent 70%);
    top: 60%;
    left: 8%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.sphere-3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 30% 30%, rgba(6,182,212,0.1), rgba(6,182,212,0.03) 50%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.sphere-4 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, rgba(245,158,11,0.1), rgba(245,158,11,0.03) 50%, transparent 70%);
    top: 70%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.sphere-5 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.08), rgba(139,92,246,0.04) 50%, transparent 70%);
    top: 40%;
    left: 15%;
    animation-duration: 28s;
    animation-delay: 6s;
}

.sphere-6 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, rgba(139,92,246,0.08), rgba(6,182,212,0.04) 50%, transparent 70%);
    bottom: 15%;
    left: 25%;
    animation-duration: 24s;
    animation-delay: 3s;
}

.sphere-7 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 30% 30%, rgba(6,182,212,0.1), rgba(59,130,246,0.04) 50%, transparent 70%);
    top: 15%;
    left: 45%;
    animation-duration: 19s;
    animation-delay: 5s;
}

.sphere-8 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, rgba(245,158,11,0.08), rgba(139,92,246,0.04) 50%, transparent 70%);
    bottom: 25%;
    right: 25%;
    animation-duration: 21s;
    animation-delay: 7s;
}

@keyframes sphereFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}

/* Form Abstractions SVG */
.form-abstractions {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.form-svg {
    width: 100%;
    height: 100%;
}

.form-rect {
    animation: formPulse 4s ease-in-out infinite;
}

.form-btn {
    animation: formPulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

.form-check {
    animation: checkPulse 3s ease-in-out infinite;
}

@keyframes formPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes checkPulse {
    0%, 100% { stroke-opacity: 0.5; }
    50% { stroke-opacity: 1; }
}

/* Gradient Orbs */
.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.contact-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 65%);
    top: -10%;
    left: -10%;
    animation: orbFloatA 24s ease-in-out infinite;
}

.contact-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 65%);
    bottom: -5%;
    right: -5%;
    animation: orbFloatB 28s ease-in-out infinite;
}

.contact-orb.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 65%);
    top: 40%;
    left: 50%;
    animation: orbFloatC 22s ease-in-out infinite;
}

.contact-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(3, 3, 5, 0.7) 100%);
}

/* Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* ═══════════════════════════════════════════
   LEFT: INFO
   ═══════════════════════════════════════════ */

.contact-info {
    padding-top: 20px;
}

.contact-info .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 18px;
}

.contact-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-expo);
}

.contact-item:hover .contact-icon-wrap {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.12));
    border-color: rgba(59, 130, 246, 0.25);
    transform: scale(1.05);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
}

.contact-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Trust Stats */
.contact-trust {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ts-number {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 28px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.ts-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   RIGHT: FORM — Glassmorphism
   ═══════════════════════════════════════════ */

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-smooth);
}

.contact-form-wrap:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    transition: all 0.3s var(--ease-smooth);
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--bg-deep);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Budget Options */
.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.budget-option {
    cursor: pointer;
    position: relative;
}

.budget-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.budget-label {
    display: inline-flex;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
}

.budget-option:hover .budget-label {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}

.budget-option input:checked + .budget-label {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
    font-weight: 600;
}

/* Submit Button */
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-expo);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s var(--ease-expo);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    gap: 14px;
}

.submit-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.form-submit:hover .submit-icon {
    transform: translateX(3px);
}

/* ── Responsive Contact ── */
@media (max-width: 1024px) {
    .contact {
        padding: 100px 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        text-align: center;
        padding-top: 0;
    }

    .contact-details {
        align-items: center;
    }

    .contact-trust {
        justify-content: center;
    }

    .contact-form-wrap {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .contact {
        padding: 80px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
        border-radius: 20px;
    }

    .budget-options {
        gap: 8px;
    }

    .budget-label {
        padding: 8px 14px;
        font-size: 12px;
    }

    .form-submit {
        padding: 14px 24px;
        font-size: 14px;
    }

    .contact-trust {
        gap: 24px;
    }

    .ts-number {
        font-size: 24px;
    }
}

/* ───────────────────────────────────────────
   FOOTER — Premium Minimal Design
   ─────────────────────────────────────────── */

.footer {
    position: relative;
    z-index: 1;
    padding: 80px 32px 40px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(255,255,255,0.01) 100%);
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
}

/* Brand Column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.footer-logo-tagline {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-statement {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 380px;
    margin: 0;
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-title {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    display: inline-block;
    transition: color 0.3s var(--ease-smooth);
    width: fit-content;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.35s var(--ease-expo);
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-link:hover::after {
    width: 100%;
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.footer-contact-text {
    color: var(--text-secondary);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin-bottom: 32px;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.footer-bottom-left,
.footer-bottom-right {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.footer-copyright,
.footer-operated {
    letter-spacing: 0.01em;
}

/* Back to Top Button */
.footer-back-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    top: auto;
    transform: none;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-expo);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-expo);
    color: var(--text-secondary);
}

.footer-back-top:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

.footer-back-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-top-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-expo);
}

.footer-back-top:hover .back-top-icon {
    transform: translateY(-2px);
}

/* ── Responsive Footer ── */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 24px 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links-grid {
        gap: 32px;
    }

    .footer-statement {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 20px 28px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-back-top {
        position: static;
        transform: none;
        margin-top: 8px;
    }

    .footer-back-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .footer-back-top:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-col-title {
        font-size: 13px;
    }

    .footer-link,
    .footer-contact-item {
        font-size: 13px;
    }
}
/* ── HERO ANIMATED BACKGROUND (sin video, sin grid, sin scan) ── */
.hero-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Glow base */
.hero-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at 30% 40%, rgba(59,130,246,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(139,92,246,0.08) 0%, transparent 50%);
    filter: blur(60px);
    animation: heroGlow 12s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Auroras / gradient waves */
.hero-aurora {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139,92,246,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(6,182,212,0.06) 0%, transparent 60%);
    animation: auroraMove 18s ease-in-out infinite;
}

@keyframes auroraMove {
    0% { background-position: 0% 0%; opacity: 0.8; }
    25% { background-position: 5% 10%; opacity: 1; }
    50% { background-position: -3% 5%; opacity: 0.9; }
    75% { background-position: 7% -5%; opacity: 1; }
    100% { background-position: 0% 0%; opacity: 0.8; }
}

/* Partículas flotantes */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(110vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
        transform: scale(1);
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) scale(0.3);
        opacity: 0;
    }
}