/* ================================
   MOBILE-FIRST CSS ARCHITECTURE
   ================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Mobile First */
:root {
    /* Colors based on MXCards reference */
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --primary-pink: #ec4899;
    --dark-blue: #1e40af;
    --dark-purple: #7c3aed;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-light: #e2e8f0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--primary-pink) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-purple) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Mobile-First Spacing & Typography */
    --container-padding: 1rem;
    --section-padding: 3rem 0;
    --grid-gap: 1rem;
    --border-radius: 12px;
    --font-size-h1: 2rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    --button-height: 48px;
    --max-width: 100%;
}

/* Base Body Styles - Mobile First */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: var(--font-size-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ================================
   NAVIGATION - MOBILE FIRST
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.1);
}

/* Mobile Menu - Hidden by default */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
.nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
}

.login-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: var(--button-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hamburger Menu - Visible on mobile */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ================================
   HERO SECTION - MOBILE FIRST
   ================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 25%, #7c3aed 50%, #c026d3 75%, #ec4899 100%);
    padding: 80px 0 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.floating-svg {
    position: absolute;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    animation: gentleFloat 8s ease-in-out infinite;
    opacity: 0.4;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.floating-svg:hover {
    opacity: 0.6;
    transform: scale(1.05);
}

/* Mobile: Hide floating SVGs */
.svg-1, .svg-2, .svg-3, .svg-4 {
    display: none;
}

/* Tablet and Desktop: Show with better positioning */
@media (min-width: 768px) {
    .svg-1, .svg-2, .svg-3, .svg-4 {
        display: block;
    }
    
    .svg-1 {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
        width: 35px;
        height: 35px;
    }

    .svg-2 {
        top: 70%;
        left: 8%;
        animation-delay: 3s;
        width: 30px;
        height: 30px;
    }

    .svg-3 {
        top: 20%;
        right: 5%;
        animation-delay: 6s;
        width: 40px;
        height: 40px;
    }

    .svg-4 {
        top: 80%;
        right: 10%;
        animation-delay: 1.5s;
        width: 32px;
        height: 32px;
    }
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-8px) rotate(2deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 1rem 4rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}



.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* Estilos simplificados del hero */







/* New Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes profilePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmerLine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes actionPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes floatCard1 {
    0%, 100% { transform: scale(0.9) translateY(0px) translateX(0px); }
    33% { transform: scale(0.9) translateY(-8px) translateX(5px); }
    66% { transform: scale(0.9) translateY(-3px) translateX(-3px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: scale(0.9) translateY(0px) translateX(0px); }
    50% { transform: scale(0.9) translateY(-10px) translateX(-5px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: scale(0.9) translateY(0px) translateX(0px); }
    25% { transform: scale(0.9) translateY(-6px) translateX(8px); }
    75% { transform: scale(0.9) translateY(-12px) translateX(-4px); }
}

@keyframes particleFloat1 {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

@keyframes particleFloat2 {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-120px) translateX(-30px); opacity: 0; }
}

@keyframes particleFloat3 {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-80px) translateX(70px); opacity: 0; }
}

@keyframes particleFloat4 {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-150px) translateX(-60px); opacity: 0; }
}

@keyframes particleFloat5 {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-90px) translateX(-40px); opacity: 0; }
}

@keyframes particleFloat6 {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-110px) translateX(20px); opacity: 0; }
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 200px;
    animation: slideInRight 0.8s ease-out 0.8s both;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.hero-illustration:hover {
    transform: scale(1.05);
}

.hero-illustration .digital-card-svg:hover {
    transform: rotateY(15deg);
}

.hero-illustration .floating-data {
    animation: dataFloat 4s ease-in-out infinite;
}

@keyframes dataFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: slideInUp 0.8s ease-out 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 0.5rem;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   COUNTRIES ANNOUNCEMENT
   ================================ */

.countries-announcement {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 500;
}

.announcement-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
}

.new-badge {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    animation: pulse-new 3s infinite;
}

@keyframes pulse-new {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 3px 12px rgba(255, 71, 87, 0.4);
    }
}

.expansion-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.7rem;
}

.flag-colombia {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, 
        #FFCD00 0%, #FFCD00 50%, 
        #003893 50%, #003893 75%, 
        #CE1126 75%, #CE1126 100%);
    animation: flag-wave 4s infinite;
}

@keyframes flag-wave {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.03);
    }
}

.colombia-text {
    color: #FFCD00;
    font-weight: 700;
    font-size: 0.7rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    animation: colombia-glow 3s infinite;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@keyframes colombia-glow {
    0%, 100% { 
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }
    50% { 
        text-shadow: 0 0 8px rgba(255, 205, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
    }
}



/* ================================
   SERVICES SECTION - MOBILE FIRST
   ================================ */

.services {
    padding: var(--section-padding);
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-body);
    color: var(--text-light);
    max-width: 100%;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.1;
}

.service-svg {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.feature {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.service-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--button-height);
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================================
   PORTFOLIO SECTION - MOBILE FIRST
   ================================ */

.portfolio {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-small);
    min-height: 40px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

.portfolio-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
}

.portfolio-btn {
    background: white;
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-btn:hover {
    background: var(--gradient-primary);
    color: white;
}

/* ================================
   PRICING SECTION - MOBILE FIRST
   ================================ */

.pricing {
    padding: var(--section-padding);
    background: white;
}

/* Plan Toggle Buttons */
.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: var(--font-size-body);
    min-height: var(--button-height);
}

.toggle-btn:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.toggle-btn i {
    font-size: 1.1rem;
}

/* Hidden class for plan switching */
.hidden {
    display: none !important;
}

/* Custom Plans Configurator */
.custom-plans {
    margin-top: 2rem;
}

.custom-container {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.custom-header {
    text-align: center;
    margin-bottom: 2rem;
}

.custom-header h3 {
    font-size: var(--font-size-h3);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.custom-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.custom-configurator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.config-section h4 {
    font-size: var(--font-size-h3);
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.config-section h4 i {
    color: var(--primary-blue);
}

.config-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.config-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.config-option:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.config-option input[type="checkbox"]:checked + .checkmark + .option-info,
.config-option input[type="radio"]:checked + .checkmark + .option-info {
    color: var(--primary-blue);
}

.config-option input[type="checkbox"]:checked + .checkmark + .option-info .option-price,
.config-option input[type="radio"]:checked + .checkmark + .option-info .option-price {
    color: var(--primary-blue);
    font-weight: 700;
}

.config-option input[type="checkbox"],
.config-option input[type="radio"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.config-option input[type="checkbox"] + .checkmark {
    border-radius: 4px;
}

.config-option input[type="checkbox"]:checked + .checkmark,
.config-option input[type="radio"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: transparent;
}

.config-option input[type="checkbox"]:checked + .checkmark::after,
.config-option input[type="radio"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.option-info {
    flex: 1;
}

.option-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.option-info p {
    color: var(--text-light);
    font-size: var(--font-size-small);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.option-price {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: var(--font-size-small);
    font-weight: 600;
}

/* Custom Summary */
.custom-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.summary-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.summary-header h4 {
    font-size: var(--font-size-h3);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.summary-items {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--primary-blue);
    font-weight: 600;
    border-top: 1px solid var(--border-light);
    margin-top: 1rem;
}

.summary-total {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-light);
    margin-top: 1rem;
}

.summary-total strong {
    font-size: 1.5rem;
    color: var(--text-dark);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-direction: column;
}

.summary-actions button {
    flex: 1;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: var(--button-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Plan Comparison */
.plan-comparison {
    margin-top: 3rem;
    text-align: center;
}

.comparison-toggle {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: var(--button-height);
}

.comparison-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.comparison-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.comparison-panel.hidden {
    display: none;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.comparison-header h4 {
    font-size: var(--font-size-h3);
    color: var(--text-dark);
}

.close-comparison {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-comparison:hover {
    color: var(--text-dark);
}

.comparison-table {
    background: white;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table td {
    color: var(--text-light);
}

.comparison-table tr:hover {
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: var(--font-size-small);
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: var(--font-size-h3);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-benefits {
    text-align: center;
    margin-bottom: 1rem;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.benefit-badge.rental {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.benefit-badge.sale {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    color: white;
}

.benefit-badge i {
    font-size: 1rem;
}

.benefit-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.pricing-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--button-height);
    border: none;
    cursor: pointer;
    width: 100%;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================================
   CONTACT SECTION - MOBILE FIRST
   ================================ */

.contact {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info h2 {
    font-size: var(--font-size-h2);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: var(--font-size-body);
    transition: all 0.3s ease;
    background: white;
    min-height: var(--button-height);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: var(--button-height);
    font-size: var(--font-size-body);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================================
   FOOTER - MOBILE FIRST
   ================================ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo-svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-svg {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   ANIMATIONS & EFFECTS
   ================================ */

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius);
}

.service-card:hover::after {
    opacity: 0.05;
}

.logo-svg .card-front {
    animation: cardRotate 4s ease-in-out infinite;
}

.nav-logo:hover .logo-svg .card-shine {
    animation: shine 0.6s ease-in-out;
}

.hero-illustration .connection-lines path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 3s ease-in-out infinite;
}

.hero-illustration .floating-data > g {
    animation: dataFloat 2s ease-in-out infinite;
}

.hero-illustration .floating-data > g:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

@keyframes cardRotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(10deg); }
}

@keyframes shine {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

@keyframes drawLine {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

@keyframes dataFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* ================================
   RESPONSIVE DESIGN - PROGRESSIVE ENHANCEMENT
   ================================ */

/* Small Mobile Landscape (576px and up) */
@media (min-width: 576px) {
    :root {
        --container-padding: 1.5rem;
        --font-size-h1: 2.25rem;
        --font-size-h2: 1.75rem;
        --grid-gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .announcement-badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .new-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .expansion-text {
        font-size: 0.75rem;
    }
    
    .flag-colombia {
        width: 18px;
        height: 12px;
    }
    
    .colombia-text {
        font-size: 0.8rem;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --section-padding: 4rem 0;
        --font-size-h1: 2.5rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.5rem;
        --grid-gap: 2rem;
        --max-width: 1200px;
    }
    
    /* Custom configurator responsive */
    .custom-configurator {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .config-options {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .summary-actions {
        flex-direction: row;
    }
    
    .comparison-table {
        max-width: 900px;
    }
    
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        justify-content: flex-end;
        gap: 2rem;
    }
    
    .nav-menu li {
        opacity: 1;
        transform: none;
    }
    
    .nav-link {
        font-size: var(--font-size-body);
        padding: 0.5rem 0;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .login-btn {
        padding: 0.5rem 1.5rem;
        font-size: var(--font-size-body);
    }
    
    .hamburger {
        display: none;
    }
    
    .hero-content {
        padding: 10rem 2rem 6rem;
        max-width: 1000px;
    }
    
    .hero-features {
        flex-wrap: nowrap;
        gap: 4rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        max-width: none;
        gap: 1rem;
    }
    
    .announcement-badge {
        padding: 1.2rem 2rem;
        gap: 1.5rem;
    }
    
    .countries-display {
        gap: 1.5rem;
    }
    
    .country-item {
        padding: 0.6rem 1rem;
    }
    
    .country-item span {
        font-size: 0.9rem;
    }
    
    .colombia-text {
        font-size: 1rem !important;
    }
    
    .flag-mexico, .flag-colombia {
        width: 28px;
        height: 20px;
    }
    
    .floating-cards {
        display: block;
    }
    
    .floating-svg {
        width: 60px;
        height: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .contact-method {
        flex: 1;
        min-width: 200px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
    :root {
        --font-size-h1: 3rem;
        --font-size-h2: 2.25rem;
        --section-padding: 5rem 0;
        --grid-gap: 2.5rem;
    }
    
    .hero-content {
        padding: 12rem 3rem 8rem;
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    :root {
        --font-size-h1: 3.5rem;
        --font-size-h2: 2.5rem;
        --section-padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    :root {
        --max-width: 1400px;
        --section-padding: 7rem 0;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-content {
        padding: 15rem 3rem 10rem;
        max-width: 1400px;
    }
}

/* ================================
   ACCESSIBILITY & PERFORMANCE
   ================================ */

/* Focus States */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.service-btn:focus,
.pricing-btn:focus,
.submit-btn:focus,
.portfolio-btn:focus,
.filter-btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Touch Device Optimizations */
.touch-device .service-card:hover {
    transform: none;
}

.touch-device .service-card:active {
    transform: translateY(-2px);
}

.touch-device .portfolio-item:hover {
    transform: none;
}

.touch-device .portfolio-item:active {
    transform: translateY(-2px);
}

.touch-device .btn-primary:active,
.touch-device .btn-secondary:active,
.touch-device .service-btn:active,
.touch-device .pricing-btn:active,
.touch-device .submit-btn:active {
    transform: translateY(-1px);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-svg,
    .hero-illustration .floating-data,
    .parallax-elements {
        animation: none !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-illustration,
    .service-svg,
    .logo-svg,
    .footer-logo-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-dark);
}

/* Print Styles */
@media print {
    .navbar,
    .floating-cards,
    .scroll-indicator,
    .hero-buttons {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
} 