/* ============================================
   VEHEMENTE — Version 3: Gradient Mesh Colorido
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #0F0A1A;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    --coral: #FF6B6B;
    --peach: #FFA07A;
    --purple: #A855F7;
    --blue: #3B82F6;
    --cyan: #22D3EE;
    --pink: #EC4899;
    --text: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.35);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Animated Mesh Gradient Background === */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: meshFloat 25s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
    contain: layout style;
}

.mesh-blob:nth-child(1) {
    width: 50vw;
    height: 50vw;
    background: var(--coral);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.mesh-blob:nth-child(2) {
    width: 45vw;
    height: 45vw;
    background: var(--purple);
    top: 30%;
    right: -15%;
    animation-delay: -8s;
}

.mesh-blob:nth-child(3) {
    width: 40vw;
    height: 40vw;
    background: var(--blue);
    bottom: -10%;
    left: 20%;
    animation-delay: -16s;
}

.mesh-blob:nth-child(4) {
    width: 35vw;
    height: 35vw;
    background: var(--pink);
    top: 60%;
    left: -5%;
    animation-delay: -4s;
}

.mesh-blob:nth-child(5) {
    width: 30vw;
    height: 30vw;
    background: var(--cyan);
    top: 10%;
    right: 20%;
    animation-delay: -12s;
}

@keyframes meshFloat {

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

    25% {
        transform: translate(40px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 40px) scale(0.9);
    }

    75% {
        transform: translate(30px, 20px) scale(1.05);
    }
}

/* Noise overlay */
.mesh-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
}

/* --- Glass Card (translucent on mesh) --- */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--purple));
    color: white;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-hover);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 10, 26, 0.8);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 10, 26, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    flex: 1;
    min-width: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.globe-canvas {
    width: 420px;
    height: 420px;
    display: block;
}

.globe-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 14px;
}

.globe-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.globe-legend-item.neural  { color: #FFB6CB; }
.globe-legend-item.synapse { color: #D4A0E0; }
.globe-legend-item.ai-mode { color: #00C8FF; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--peach);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.06;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--coral), var(--peach), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

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

.metric-card {
    text-align: center;
    padding: 48px 28px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.metric-desc {
    color: var(--text-dim);
    font-size: 0.88rem;
}

.hero-whatsapp {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 44px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.btn-whatsapp-hero {
    font-size: 1.25rem;
    padding: 22px 56px;
    gap: 14px;
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

/* --- NUESTROS SERVICIOS --- */
.nuestros-servicios-header {
    margin-bottom: 56px;
}

.nuestros-servicios-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.title-boxed-word {
    display: inline-block;
    padding: 4px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: transparent;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-boxed-word::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.nuestros-servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nuestros-servicio-card {
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nuestros-servicio-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.nuestros-servicio-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.nuestros-servicio-card p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

@media (max-width: 1100px) {
    .nuestros-servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nuestros-servicios-grid {
        grid-template-columns: 1fr;
    }

    .nuestros-servicios-title {
        gap: 10px;
    }
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.service-card {
    padding: 32px 28px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(168, 85, 247, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    background: linear-gradient(135deg, var(--coral), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

/* --- WHY US --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 24px;
}

.why-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(168, 85, 247, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--coral);
    font-size: 0.9rem;
}

.why-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-content p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* --- PROCESS --- */
.timeline {
    margin-top: 56px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--coral), var(--purple), var(--blue), transparent);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.timeline-content {
    padding-top: 8px;
    flex: 1;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-time {
    background: linear-gradient(135deg, var(--coral), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline-note {
    margin-top: 32px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(168, 85, 247, 0.08));
    border-left: 3px solid var(--coral);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-dim);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

/* --- TECH --- */
.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 48px;
}

.tech-group-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: default;
}

.tech-chip:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --- CASES --- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.case-card {
    overflow: hidden;
}

.case-image {
    height: 180px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin: -32px -32px 24px;
    width: calc(100% + 64px);
}

.case-image.gradient-1 {
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
}

.case-image.gradient-2 {
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
}

.case-image.gradient-3 {
    background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
}

.case-video {
    display: block;
    width: calc(100% + 64px);
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin: -32px -32px 24px;
    background: #000;
    cursor: pointer;
}

.case-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

/* --- POKESI GALLERY --- */
.pokesi-gallery {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: #0a0010;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin: -32px -32px 24px;
    width: calc(100% + 64px);
}

.pokesi-gallery::before,
.pokesi-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.pokesi-gallery::before {
    left: 0;
    background: linear-gradient(to right, #0a0010, transparent);
}

.pokesi-gallery::after {
    right: 0;
    background: linear-gradient(to left, #0a0010, transparent);
}

.pokesi-track {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    padding: 0 8px;
    animation: pokesiScroll 18s linear infinite;
    width: max-content;
}

.pokesi-track:hover {
    animation-play-state: paused;
}

.pokesi-track img {
    height: 160px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pokesi-track img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(168,85,247,0.4);
}

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

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.pricing-card {
    text-align: center;
    padding: 40px 28px;
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.06);
}

.pricing-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--coral), var(--purple));
    color: white;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.pricing-time {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✦';
    color: var(--purple);
    font-size: 0.7rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 24px;
    font-style: italic;
}

/* --- CLIENTS --- */
#clientes {
    padding: 80px 0 60px;
    overflow: hidden;
}

.clients-track-wrapper {
    position: relative;
    overflow: hidden;
    padding: 24px 0 8px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: clientsScroll 28s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.clients-track-wrapper:hover .clients-track {
    animation-play-state: paused;
}

@keyframes clientsScroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

.client-card {
    position: relative;
    width: 210px;
    padding: 36px 24px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    cursor: pointer;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
}

/* top gradient line */
.client-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    opacity: 0.7;
    transition: opacity 0.35s;
}

/* background glow fill on hover */
.client-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: inherit;
}

.client-card:hover {
    transform: translateY(-6px) scale(1.06);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45),
                0 0 48px var(--glow);
    z-index: 10;
}

.client-card:hover::before { opacity: 0.1; }
.client-card:hover::after  { opacity: 1; }

.client-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
    transition: box-shadow 0.35s;
}

.client-card:hover .client-avatar {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2), 0 0 20px var(--glow);
}

.client-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    z-index: 1;
}

.client-avatar span {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    letter-spacing: -0.02em;
}

.client-name {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.client-role {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* --- CTA --- */
.cta-section {
    text-align: center;
    padding: 120px 0;
}

.cta-section .section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-section .section-subtitle {
    margin: 0 auto 40px;
    text-align: center;
}

/* --- CONTACT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg);
    color: var(--text);
}

.form-error {
    color: var(--coral);
    font-size: 0.8rem;
    display: none;
}

.form-error.visible {
    display: block;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(168, 85, 247, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-value a {
    color: var(--text);
    text-decoration: none;
}

.contact-value a:hover {
    color: var(--peach);
}

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 16px 28px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(16px);
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}

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

/* --- FOOTER --- */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

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

.footer-brand .nav-logo {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

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

.footer-col ul a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: var(--bg-card-hover);
    border-color: var(--purple);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

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

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .hero-inner {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .globe-canvas {
        width: 300px;
        height: 300px;
    }

    .globe-legend {
        gap: 10px;
    }

    .globe-legend-item {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
}

@media (max-width: 1024px) {

    .services-grid,
    .cases-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .metrics-grid,
    .services-grid,
    .why-grid,
    .cases-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .globe-canvas {
        width: 260px;
        height: 260px;
    }

    .globe-legend {
        gap: 8px;
    }

    .globe-legend-item {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

