/* ═══════════════════════════════════════════
   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; }
}

   

/* ───────────────────────────────────────────
   SHOWCASE PAGE — SoftDeMa
   Carruseles de clientes | Cards hover/tap | Fondo líneas gráfico
   ─────────────────────────────────────────── */

/* ═══════════════════════════════════════════
   FONDO — Líneas animadas tipo gráfico de subida
   ═══════════════════════════════════════════ */

.showcase-bg-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg-deep);
}

.showcase-bg-lines::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%);
}

/* Animated rising chart lines */
.chart-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.15) 20%, 
        rgba(139, 92, 246, 0.2) 50%, 
        rgba(6, 182, 212, 0.15) 80%, 
        transparent 100%
    );
    border-radius: 1px;
    animation: chartRise linear infinite;
    opacity: 0;
}

.chart-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: inherit;
    box-shadow: 0 0 12px currentColor;
}

@keyframes chartRise {
    0% {
        transform: translateY(110vh) scaleX(0.3);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateY(50vh) scaleX(0.7);
    }
    95% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) scaleX(1);
        opacity: 0;
    }
}

/* Grid overlay for chart feel */
.showcase-bg-lines::after {
    content: '';
    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%);
}

/* Noise texture */
.showcase-bg-lines .noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    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;
}

/* Vignette */
.showcase-bg-lines .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(3, 3, 5, 0.6) 100%);
}

/* ═══════════════════════════════════════════
   SHOWCASE HERO
   ═══════════════════════════════════════════ */

.showcase-hero {
    position: relative;
    z-index: 1;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 32px 80px;
    text-align: center;
}

.showcase-hero-container {
    max-width: 800px;
}

.showcase-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: 32px;
    backdrop-filter: blur(8px);
}

.sh-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    position: relative;
    animation: pulseRing 2s ease-in-out infinite;
}

.sh-badge-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.showcase-hero-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.showcase-hero-title .gradient-text {
    background: linear-gradient(135deg, #F8FAFC 0%, #60A5FA 40%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CLIENTS SECTION
   ═══════════════════════════════════════════ */

.clients-section {
    position: relative;
    z-index: 1;
    padding: 0 32px 120px;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* ═══════════════════════════════════════════
   CLIENT BLOCK
   ═══════════════════════════════════════════ */

.client-block {
    position: relative;
}

/* Client Header */
.client-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.client-header-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.client-number {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.03em;
    user-select: none;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-name {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.client-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.client-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    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.03em;
}

.client-tag.favorite {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.06));
    border-color: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.tag-icon {
    width: 14px;
    height: 14px;
}

.client-header-right {
    display: flex;
    align-items: center;
}

.client-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.cs-value {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 28px;
    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;
    line-height: 1;
}

.cs-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   CAROUSEL
   ═══════════════════════════════════════════ */

.carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 16 / 9;
    max-height: 600px;
    transition: border-color 0.4s var(--ease-smooth);
}

.carousel-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s var(--ease-expo);
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-expo);
}

.carousel-wrapper:hover .slide-image {
    transform: scale(1.03);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(3, 3, 5, 0.4) 100%
    );
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   CLIENT CARD OVERLAY (Hover / Tap)
   ═══════════════════════════════════════════ */

.client-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(3, 3, 5, 0.92);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-expo), visibility 0.5s;
    padding: 40px;
}

/* Desktop hover */
@media (hover: hover) {
    .carousel-wrapper:hover .client-card-overlay {
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile tap - active class */
.client-card-overlay.active {
    opacity: 1;
    visibility: visible;
}

.client-card-inner {
    max-width: 520px;
    width: 100%;
}

.cc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cc-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
}

.cc-plan {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.04em;
}

.cc-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cc-list {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc-list li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 4px;
}

.cc-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    margin-top: 7px;
    flex-shrink: 0;
}

.cc-results {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cc-result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ccr-number {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 24px;
    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;
    line-height: 1;
}

.ccr-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   CAROUSEL CONTROLS
   ═══════════════════════════════════════════ */

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(3, 3, 5, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-expo);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--text-primary);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease-expo);
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

/* Tap hint for mobile */
.tap-hint {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-blue);
    backdrop-filter: blur(8px);
    animation: tapHintPulse 3s ease-in-out infinite;
}

@keyframes tapHintPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@media (hover: none) {
    .tap-hint {
        display: block;
    }
}

/* Client Description */
.client-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 24px;
    max-width: 800px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */

.showcase-cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.showcase-cta-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

.showcase-cta-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-showcase-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    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-showcase-cta-main::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-cta-main:hover::before {
    left: 100%;
}

.btn-showcase-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
    gap: 14px;
}

.btn-showcase-cta-main .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-showcase-cta-main:hover .btn-icon {
    transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .showcase-hero {
        min-height: 50vh;
        padding: 140px 24px 60px;
    }

    .clients-section {
        padding: 0 24px 80px;
    }

    .clients-container {
        gap: 80px;
    }

    .client-header {
        flex-direction: column;
        gap: 20px;
    }

    .client-header-right {
        align-items: flex-start;
    }

    .client-stat {
        align-items: flex-start;
    }

    .carousel-wrapper {
        aspect-ratio: 4 / 3;
    }

    .client-card-overlay {
        padding: 28px;
    }

    .cc-title {
        font-size: 20px;
    }

    .cc-list li {
        font-size: 13px;
    }

    .cc-results {
        gap: 24px;
    }

    .ccr-number {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .showcase-hero {
        padding: 120px 20px 40px;
    }

    .clients-section {
        padding: 0 20px 60px;
    }

    .clients-container {
        gap: 60px;
    }

    .client-header-left {
        flex-direction: column;
        gap: 12px;
    }

    .client-number {
        font-size: 36px;
    }

    .client-name {
        font-size: 24px;
    }

    .carousel-wrapper {
        aspect-ratio: 1 / 1;
        max-height: 400px;
    }

    .carousel-controls {
        gap: 12px;
        padding: 8px 16px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .client-card-overlay {
        padding: 20px;
    }

    .cc-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .cc-list {
        gap: 8px;
        margin-bottom: 20px;
    }

    .cc-list li {
        font-size: 12px;
    }

    .cc-results {
        gap: 16px;
        padding-top: 16px;
    }

    .ccr-number {
        font-size: 18px;
    }

    .ccr-label {
        font-size: 10px;
    }

    .client-description {
        font-size: 14px;
    }

    .showcase-cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        aspect-ratio: 3 / 4;
    }

    .client-card-overlay {
        padding: 16px;
    }

    .cc-header {
        margin-bottom: 12px;
    }

    .cc-icon-wrap {
        width: 32px;
        height: 32px;
    }

    .cc-icon {
        width: 16px;
        height: 16px;
    }

    .cc-title {
        font-size: 16px;
    }

    .cc-list li {
        font-size: 11px;
        gap: 8px;
    }

    .cc-results {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-showcase-cta-main {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

/* Active nav link */
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-link.active {
    color: var(--text-primary);
}