/* 
   Merkatus 360 - Premium Styles
   Inspiration: Modern Agency (Glassmorphism, Dark Mode accents, Dynamic Animations)
*/

:root {
    /* Color Palette */
    --bg-main: #0a0a0f; /* Deep dark background */
    --bg-secondary: #12121c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    
    /* Brand Colors */
    --brand-primary: #7c3aed; /* Vibrant Purple */
    --brand-secondary: #06b6d4; /* Cyan */
    --brand-accent: #f43f5e; /* Rose/Pink */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    --gradient-glow: linear-gradient(90deg, #7c3aed, #06b6d4, #f43f5e, #7c3aed);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --nav-height: 90px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 120px 0;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--brand-secondary);
}

.text-white { color: #ffffff; }
.text-light { color: var(--text-secondary); }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-secondary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(6, 182, 212, 0.5);
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
}

/* ==========================================
   BUTTONS & BADGES
   ========================================== */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
    transition: opacity var(--transition-normal);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--brand-secondary);
}

.btn-outline:hover {
    background: var(--brand-secondary);
    color: var(--bg-main);
}

/* Button Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

.btn-loading .spinner {
    display: block;
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(124, 58, 237, 0.1);
    color: var(--brand-primary);
    border: 1px solid rgba(124, 58, 237, 0.2);
    margin-bottom: 1.5rem;
}

.badge-light {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    border-color: var(--glass-border);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    top: -10%; left: -10%;
    width: 600px; height: 600px;
    background: var(--brand-primary);
    animation-delay: 0s;
}

.shape-2 {
    bottom: -20%; right: -10%;
    width: 500px; height: 500px;
    background: var(--brand-secondary);
    animation-delay: -5s;
}

.shape-3 {
    top: 30%; left: 50%;
    width: 400px; height: 400px;
    background: var(--brand-accent);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
}

.metric .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual / Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.main-card {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.main-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.dots { display: flex; gap: 6px; }
.dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #444;
}
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.card-body .chart-bar {
    height: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.chart-bar .fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    position: relative;
}

.chart-bar .fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

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

.floating-element {
    position: absolute;
    background: #fff;
    color: #000;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: float-small 4s infinite ease-in-out;
}

.el-1 { top: -20px; right: -20px; animation-delay: 0s; }
.el-2 { bottom: -20px; left: -20px; animation-delay: -2s; color: var(--brand-primary); }

@keyframes float-small {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================
   SERVICES SECTION (NEO-BRUTALISM)
   ========================================== */
.services {
    background-color: var(--bg-main); /* Starts dark to blend with hero */
    position: relative;
    padding-top: 100px;
    color: var(--text-primary);
}

.services-header {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 60px;
}

.services-title-col {
    flex: 0 0 40%;
}

.neo-title {
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 1.1;
    color: var(--text-primary);
}

.services-desc-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--brand-primary);
    padding: 1.5rem 2rem;
    border-radius: 0 16px 16px 0;
}

.services-desc-col p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-desc-col strong {
    color: var(--text-primary);
    font-weight: 600;
}

.services-neo-wrapper {
    position: relative;
    padding: 80px 0;
    margin-top: 50px;
}

/* Background slanted shape */
.neo-bg-angled {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark vibrant blue/purple to fit the dark theme but stand out */
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    transform: skewY(-4deg);
    transform-origin: left;
    z-index: 0;
    border-top: 4px solid #7c3aed;
    border-bottom: 4px solid #06b6d4;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.3);
}

.services-neo-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
    padding-top: 40px;
}

/* Make middle cards shift down to mimic image layout */
.staggered-card {
    margin-top: 50px;
}

.neo-card {
    background: #f7f5ed; /* Off-white / Cream */
    border: 4px solid #000;
    border-radius: 16px;
    padding: 4rem 2rem 2.5rem; /* Increased top padding so icon doesn't overlap text */
    position: relative;
    color: #000;
    box-shadow: 8px 8px 0px #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neo-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000;
}

.neo-icon-overlap {
    position: absolute;
    top: -40px;
    left: 30px;
}

.neo-icon-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 4px 4px 0px #000;
}

.bg-purple { background: #c084fc; }
.bg-cyan { background: #67e8f9; }
.bg-rose { background: #fb7185; }
.bg-green { background: #34d399; }

.neo-card h3 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.color-dashes {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.color-dashes span {
    width: 20px;
    height: 4px;
    border-radius: 2px;
}

.neo-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.neo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #000;
    transition: all 0.2s;
}

.neo-btn:hover {
    background: #fff;
    color: #000;
}

.neo-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.2s;
}

.neo-btn-outline:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px #000;
}

.text-center { text-align: center; }

/* ==========================================
   METHODOLOGY SECTION
   ========================================== */
.dark-section {
    background: var(--bg-secondary);
    position: relative;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.check-icon {
    width: 30px; height: 30px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--brand-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-list h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-list p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.split-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(6, 182, 212, 0.4));
    filter: blur(40px);
    z-index: 0;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    padding: 2.5rem;
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

/* ==========================================
   ABOUT (NOSOTROS) SECTION
   ========================================== */
.neo-img-box {
    position: relative;
    width: 100%;
    height: 400px;
    border: 4px solid #fff;
    border-radius: 12px;
    box-shadow: 12px 12px 0px rgba(255, 255, 255, 0.2);
    /* For dark section */
}

.neo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fbbf24;
    color: #000;
    padding: 10px 20px;
    border: 3px solid #000;
    font-weight: 800;
    font-family: var(--font-heading);
    transform: rotate(-5deg);
    box-shadow: 4px 4px 0px #000;
}

/* ==========================================
   WHY WORK WITH US SECTION
   ========================================== */
.why-us-section {
    background-color: #000000;
    padding: 120px 0;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.why-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #fef08a; /* Yellow title like Si Señor */
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.why-desc {
    max-width: 800px;
    margin: 0 auto 5rem;
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-desc strong {
    color: #fef08a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.why-box {
    position: relative;
    border: 2px solid;
    border-radius: 8px;
    padding: 4rem 2rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-pink { border-color: #ff7bc6; box-shadow: 0 0 20px rgba(255, 123, 198, 0.2); }
.box-red { border-color: #ff4757; box-shadow: 0 0 20px rgba(255, 71, 87, 0.2); }
.box-yellow { border-color: #feca57; box-shadow: 0 0 20px rgba(254, 202, 87, 0.2); }

.why-box:hover {
    transform: translateY(-10px);
}
.box-pink:hover { box-shadow: 0 0 40px rgba(255, 123, 198, 0.6); }
.box-red:hover { box-shadow: 0 0 40px rgba(255, 71, 87, 0.6); }
.box-yellow:hover { box-shadow: 0 0 40px rgba(254, 202, 87, 0.6); }

/* Overlapping background cursive text */
.why-bg-text {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Times New Roman', serif; /* Or a cursive script font if available */
    font-style: italic;
    font-size: 5rem;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.why-icon {
    font-size: 6rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

.why-box-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

/* ==========================================
   CLIENTS SECTION
   ========================================== */
.client-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: #000;
    background: transparent;
    border: 3px solid #000;
    padding: 20px 40px;
    display: inline-flex;
    margin: 0 1rem;
    white-space: nowrap;
    box-shadow: 4px 4px 0px #000;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half since content is duplicated */
}

/* ==========================================
   MERKATUS LAB SECTION
   ========================================== */
.lab-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

/* ==========================================
   CTA SECTION & FOOTER
   ========================================== */
.cta-box {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(to right, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-box h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer {
    background: #050508;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--brand-secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* ==========================================
   ANIMATIONS & RESPONSIVE
   ========================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Variables */
@media (max-width: 991px) {
    .hero-content, .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-metrics, .cta-buttons {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }

    .feature-list li {
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-desc-col {
        border-left: none;
        border-top: 4px solid var(--brand-primary);
        border-radius: 0 0 16px 16px;
    }
    
    .services-neo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-neo-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .neo-card, .staggered-card {
        margin-top: 0;
    }
    
    .why-title {
        font-size: 2.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-logo {
        font-size: 1.5rem;
        padding: 15px 30px;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-normal);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .cursor-dot, .cursor-outline {
        display: none; /* Disable custom cursor on mobile */
    }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: var(--transition-normal);
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128C7E;
    box-shadow: 2px 8px 20px rgba(0,0,0,0.4);
    color: white;
}

/* ==========================================
   PRIVACY POLICY MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal {
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.modal-overlay.active .privacy-modal {
    transform: translateY(0);
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin: 0;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--color-light);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: var(--transition-fast);
}

.btn-close-modal:hover {
    color: var(--color-primary);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    color: var(--color-light);
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--color-white);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body p, .modal-body ul {
    margin-bottom: 1rem;
}

.modal-body ul {
    padding-left: 1.5rem;
}
