/* ============================================
   HORUS - Modern Landing Page Styles
   ============================================ */

/* === CSS Variables === */
:root {
    /* Colors */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3384FF;
    --secondary: #FF6B6B;
    --secondary-dark: #EE5A52;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #0066FF 0%, #00C9FF 100%);
    --gradient-dark: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-danger: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray-dark: #4a5568;
    --gray: #718096;
    --gray-light: #cbd5e0;
    --light: #f7fafc;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-primary {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* === Hero Section 3D === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
    perspective: 2000px;
}

.hero-3d-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.hero-background-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

.gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 135, 0.04) 0%, transparent 60%);
    animation: gradient-shift 15s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.particles-3d {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(1000px) rotateX(60deg) scale(1.5);
    transform-origin: center bottom;
    opacity: 0.3;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.05);
    top: 15%;
    left: 10%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(0, 255, 135, 0.04);
    bottom: 20%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 102, 255, 0.03);
    top: 60%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(50px, -30px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-30px, 50px) rotate(240deg) scale(0.9); }
}


.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* 3D Image Container */
.hero-image-3d {
    position: relative;
    width: 100%;
    max-width: 500px;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.logo-container {
    position: relative;
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
    will-change: transform;
    transform-origin: center center;
    z-index: 20;
}

/* === Background Particles Container === */
.background-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Make hero-left relative for absolute positioning */
.hero-left {
    position: relative;
}

/* === Particle System for Logo Section === */
.logo-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    background: #0066FF;
    top: 25%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    width: 5px;
    height: 5px;
    background: #00C9FF;
    top: 65%;
    left: 75%;
    animation-delay: 3s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    background: #0052CC;
    top: 35%;
    left: 65%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    width: 6px;
    height: 6px;
    background: #3384FF;
    top: 15%;
    left: 45%;
    animation-delay: 2s;
    animation-duration: 11s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    background: #0066FF;
    top: 75%;
    left: 25%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    width: 5px;
    height: 5px;
    background: #00C9FF;
    top: 45%;
    left: 85%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    background: #0052CC;
    top: 25%;
    left: 75%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.particle:nth-child(8) {
    width: 7px;
    height: 7px;
    background: #3384FF;
    top: 85%;
    left: 55%;
    animation-delay: 7s;
    animation-duration: 16s;
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    background: #0066FF;
    top: 5%;
    left: 35%;
    animation-delay: 5s;
    animation-duration: 10s;
}

.particle:nth-child(10) {
    width: 5px;
    height: 5px;
    background: #00C9FF;
    top: 55%;
    left: 15%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.particle:nth-child(11) {
    width: 3px;
    height: 3px;
    background: #0052CC;
    top: 65%;
    left: 95%;
    animation-delay: 9s;
    animation-duration: 11s;
}

.particle:nth-child(12) {
    width: 6px;
    height: 6px;
    background: #3384FF;
    top: 35%;
    left: 5%;
    animation-delay: 6s;
    animation-duration: 13s;
}




/* Keyframe animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.7;
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-8px) translateX(5px);
        opacity: 0.1;
    }
}



/* Special particle types */
.particle.sparkle {
    background: #0066FF;
    animation: sparkleFloat 8s ease-in-out infinite;
    z-index: 1;
}

.particle.glow {
    background: #00C9FF;
    animation: glowFloat 12s ease-in-out infinite;
    z-index: 1;
}

.particle.trail {
    background: #0052CC;
    animation: trailFloat 10s ease-in-out infinite;
    z-index: 1;
}

.particle.pulse {
    background: #3384FF;
    animation: pulseFloat 6s ease-in-out infinite;
    z-index: 1;
}

.particle.zigzag {
    background: #0066FF;
    animation: zigzagFloat 14s ease-in-out infinite;
    z-index: 1;
}

/* Special particle animations */
@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-25px) translateX(5px) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes glowFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
        filter: brightness(1);
    }
    50% {
        transform: translateY(-18px) translateX(12px);
        opacity: 0.8;
        filter: brightness(1.5);
    }
}

@keyframes trailFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-15px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-25px) translateX(-10px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-10px) translateX(15px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes pulseFloat {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.8;
    }
}

@keyframes zigzagFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    20% {
        transform: translateY(-10px) translateX(15px);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-15px) translateX(20px);
        opacity: 0.5;
    }
    80% {
        transform: translateY(-25px) translateX(-5px);
        opacity: 0.7;
    }
}

/* No hover effects - logo container is clean */

/* Responsive adjustments for particles */
@media (max-width: 768px) {
    .particle {
        display: none;
    }
    
    .floating-shape {
        display: none;
    }
    
    .energy-wave {
        display: none;
    }
    
    .logo-bg-gradient {
        opacity: 0.5;
    }
    
}

.logo-main {
    width: 100%;
    height: auto;
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
    z-index: 1;
}

.logo-pupila {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 8%;
    height: auto;
    z-index: 10;
    transition: transform 0.05s ease-out;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transform-style: preserve-3d;
    will-change: transform;
}

@keyframes float-3d {
    0%, 100% { 
        transform: translateY(0) rotateY(0deg) rotateX(0deg);
    }
    50% { 
        transform: translateY(-20px) rotateY(5deg) rotateX(2deg);
    }
}

.hero-image-3d:hover .logo-container {
    transform: scale(1.02) rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: glow-pulse-slow 6s ease-in-out infinite;
}

@keyframes glow-pulse-slow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Transformation 3D */
.transformation-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transform-style: preserve-3d;
}

.number-3d {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transform-style: preserve-3d;
}

.number-inner {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.number-3d.physical .number-inner {
    color: #ed6965;
}

.number-3d.virtual .number-inner {
    color: var(--primary);
}

@keyframes number-float {
    0%, 100% { transform: translateZ(30px) translateY(0); }
    50% { transform: translateZ(50px) translateY(-5px); }
}

.number-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.number-icons {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 3px;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s 0.8s forwards;
}

.physical-icon {
    width: 6px;
    height: 6px;
    background: #ed6965;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(237, 105, 101, 0.4);
    animation: icon-pop 0.5s ease-out backwards;
}

@keyframes icon-pop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.virtual-pulse {
    width: 20px;
    height: 20px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    margin-top: 0.5rem;
    position: relative;
}

.virtual-pulse::before,
.virtual-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.3);
    animation: pulse-wave 4s ease-out infinite;
}

.virtual-pulse::after {
    animation-delay: 2s;
}

@keyframes pulse-wave {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.arrow-3d {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.6);
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(10px) scale(1.1); }
}

/* Hero Title 3D */
.hero-title-3d {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.9);
    perspective: 1000px;
    transform-style: preserve-3d;
    text-align: center;
}

.title-word {
    display: inline-block;
    margin: 0 0.3rem;
    color: rgba(0, 0, 0, 0.8);
}

.title-highlight {
    display: inline-block;
    font-weight: 900;
    position: relative;
    padding: 0.1em 0.3em;
    transform-style: preserve-3d;
}

.title-highlight.gold {
    color: #ed6965;
    font-weight: 900;
}

.title-highlight.cyan {
    color: var(--primary);
    font-weight: 900;
}

@keyframes shine-gold {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

@keyframes shine-cyan {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 255, 135, 0.8)); }
}

/* Mega Stats 3D */
.mega-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding: 2rem 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transform-style: preserve-3d;
}

.mega-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-align: center;
}

.mega-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mega-percent {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.mega-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0.25rem;
}

/* Hero Actions Full Width */
.hero-actions-full {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
    padding: 0 2rem;
    box-sizing: border-box;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
    max-width: 400px;
}

.cta-3d {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.0625rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.cta-3d.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    border: 2px solid var(--primary);
}

.cta-3d.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.cta-3d.secondary {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    color: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.cta-3d.secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

@keyframes cta-pulse {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(255, 215, 0, 0.4),
            0 0 60px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 
            0 15px 40px rgba(255, 215, 0, 0.6),
            0 0 80px rgba(255, 215, 0, 0.5);
    }
}

.cta-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.cta-text {
    font-weight: 700;
}

.cta-shine {
    display: none;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}


/* === Animation Classes === */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Transformation Section === */
.transformation-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--light) 0%, rgba(0, 102, 255, 0.05) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.transformation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.transformation-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.transformation-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

.transformation-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 450px;
}

.side-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.side-title i {
    font-size: 1.5rem;
}

.horus-logo-mini {
    height: 50px;
    width: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 102, 255, 0.3));
    transition: var(--transition-base);
}

.virtual-side .side-title:hover .horus-logo-mini {
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.5));
    transform: scale(1.05);
}

.traditional-side .side-title {
    color: var(--danger);
}

.virtual-side .side-title {
    color: var(--primary);
}

/* Content Box - Fixed height to prevent jumping */
.content-box {
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.traditional-side .content-box {
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.virtual-side .content-box {
    border: 2px solid rgba(0, 102, 255, 0.3);
    position: relative;
}

/* Guards Grid */
.guards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.guards-grid.hidden {
    display: none;
    margin: 0;
    height: 0;
    overflow: hidden;
}

.guard-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.guard-item.sick {
    opacity: 0.6;
    background: #fee;
}

.guard-avatar-small {
    width: 35px;
    height: 35px;
    background: var(--gradient-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
}

.guard-status {
    font-size: 0.625rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Problems List */
.problems-list, .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    position: relative;
    z-index: 1;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-sm);
    color: var(--danger);
    border-left: 3px solid var(--danger);
    font-size: 0.9375rem;
    font-weight: 500;
}

.problem-item i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(0, 102, 255, 0.1);
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-sm);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* VS Divider */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.transformation-arrow {
    font-size: 2rem;
    color: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Virtual Guard */
.virtual-guard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.15) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--primary);
    opacity: 1;
    transform: scale(1);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.virtual-guard::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.virtual-guard.static {
    opacity: 1;
    transform: scale(1);
}

.guard-avatar {
    width: 90px;
    height: 90px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.75rem;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
    position: relative;
    z-index: 1;
}

.guard-avatar::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.guard-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.monitoring-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Transformation Animation States */
.guard-item.disappear {
    animation: disappear 0.6s forwards;
}

@keyframes disappear {
    0% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
    30% { 
        opacity: 0.7; 
        transform: scale(1.15) rotate(-3deg); 
    }
    60% { 
        opacity: 0.3; 
        transform: scale(0.85) rotate(5deg); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0) rotate(10deg); 
        display: none;
    }
}

.problems-list.fade-out {
    animation: fadeOut 0.5s forwards;
}

.benefits-list.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Transformation CTA - Hidden */
.transformation-cta {
    display: none;
}

/* === Cost Comparison Section === */
.cost-comparison {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-base);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-success);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.card-icon.traditional {
    background: var(--gradient-danger);
    color: var(--white);
}

.card-icon.horus {
    background: var(--gradient-hero);
    color: var(--white);
}

.horus-logo-cost {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 102, 255, 0.3));
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.cost-item.success {
    color: var(--primary);
}

.cost-label {
    font-size: 0.9375rem;
}

.cost-value {
    font-weight: 700;
    font-size: 1.125rem;
}

.total-cost {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.total-cost span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.cost-amount {
    font-size: 2rem;
    font-weight: 800;
}

.total-cost.high .cost-amount {
    color: var(--danger);
}

.total-cost.low .cost-amount {
    color: var(--success);
}

.savings-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--gradient-success);
    padding: 2rem 3rem;
    border-radius: var(--radius-lg);
    color: var(--white);
    flex-wrap: wrap;
}

.savings-icon {
    font-size: 3rem;
}

.savings-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.savings-content p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.savings-highlight .btn-primary {
    background: var(--white);
    color: var(--success);
}

/* === Products Section === */
.products-section {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.product-card.vigilancia::before {
    background: var(--gradient-hero);
}

.product-card.atencion::before {
    background: var(--gradient-success);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.vigilancia .product-icon {
    background: var(--gradient-hero);
}

.atencion .product-icon {
    background: var(--gradient-success);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.0625rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.125rem;
}

.product-workflow {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.product-workflow h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.9375rem;
    color: var(--gray-dark);
}

.compatibility-section {
    background: var(--white);
    padding: 2rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.compatibility-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
}

.compatibility-title i {
    color: var(--success);
}

.os-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.os-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.os-item i {
    font-size: 3rem;
    color: var(--primary);
}

.os-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-dark);
}

/* === Benefits Section === */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.benefit-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.benefit-card.highlight h3,
.benefit-card.highlight p,
.benefit-card.highlight li {
    color: var(--white);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.benefit-icon i {
    font-size: 3rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.benefit-points {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-dark);
}

.benefit-points li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.benefit-card.highlight .benefit-points li::before {
    color: var(--white);
}

/* === Totem Partner Section === */
.totem-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.totem-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 8s ease-in-out infinite;
}

.totem-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 10s ease-in-out infinite reverse;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}

.totem-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.totem-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.totem-info {
    flex: 1;
}

.totem-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.totem-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.4);
    color: var(--primary-light);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    width: fit-content;
    font-size: 0.8125rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.totem-badge i {
    font-size: 0.875rem;
}

.totem-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
}

.totem-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.totem-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.totem-partner:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.3);
}

.partner-logo-link {
    display: inline-block;
    transition: var(--transition-base);
}

.partner-logo-link:hover {
    transform: scale(1.05);
}

.partner-logo {
    height: 70px;
    width: auto;
    filter: brightness(1.3) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: var(--transition-base);
}

.partner-logo-link:hover .partner-logo {
    filter: brightness(1.5) drop-shadow(0 6px 12px rgba(0, 102, 255, 0.5));
}

.partner-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

.totem-cta {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-light {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* === Clients Section === */
.clients-section {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    width: fit-content;
    margin: 2rem auto;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.25rem;
}

.trust-badge span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9375rem;
}

.clients-slider-wrapper {
    overflow: hidden;
    margin: 3rem 0;
    padding: 2rem 0;
}

.clients-slider {
    display: flex;
    gap: 4rem;
    animation: slide 30s linear infinite;
}

.client-logo-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.client-logo-wrapper:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-base);
}

.client-logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.clients-slider-wrapper:hover .clients-slider {
    animation-play-state: paused;
}

/* Testimonials */
.testimonials-header {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

.testimonials-title {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    padding: 1rem 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 102, 255, 0.15);
}

.testimonials-title i {
    color: var(--primary);
    font-size: 1.75rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.08) 100%);
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.author-company {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

/* === CTA Section === */
.cta-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.cta-feature i {
    color: #00FF87;
}

/* === Footer === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-cuos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.875rem;
}

.cuos-logo {
    height: 60px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-light);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--gray-light);
}

.footer-bottom a {
    color: var(--white);
    text-decoration: underline;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .transformation-section {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }

    .transformation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .vs-divider {
        flex-direction: row;
        padding: 1rem 0;
        justify-content: center;
    }

    .transformation-arrow {
        display: none;
    }

    .guards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .content-box {
        min-height: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .totem-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .totem-info {
        text-align: center;
    }

    .totem-badge {
        margin: 0 auto;
    }

    .hero-grid {
        gap: 3rem;
    }

    .hero-image-3d {
        max-width: 400px;
    }

    .mega-stats {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Enhanced Mobile Navigation */
    .nav-container {
        padding: 0.75rem var(--spacing-sm);
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem var(--spacing-sm);
        transition: var(--transition-base);
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.125rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
    }

    .nav-menu .btn-nav-primary {
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
    }

    /* Enhanced Mobile Hero Section */
    .hero {
        padding: 80px 0 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
        width: 100%;
        order: 1;
    }

    .hero-left {
        order: 1;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-right {
        order: 2;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero-image-3d {
        max-width: 320px;
        margin: 0 auto;
    }

    .logo-pupila {
        display: none;
    }

    /* Mobile logo optimization */
    .logo-main {
        content: url('../img/horus-banner-s.png');
        max-width: 100%;
        height: auto;
    }

    .transformation-3d {
        flex-direction: row !important;
        gap: 1rem;
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
        justify-content: center;
        align-items: center;
    }

    .number-3d {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .number-inner {
        font-size: 3rem;
        line-height: 1;
    }

    .number-label {
        font-size: 0.75rem;
        margin-top: 0.25rem;
        text-align: center;
    }

    .arrow-3d {
        font-size: 1.5rem;
        margin: 0.5rem 0;
        color: var(--primary);
        transform: rotate(0deg);
    }

    .hero-title-3d {
        font-size: 1.75rem;
        line-height: 1.1;
        margin: 1rem 0;
        text-align: center;
    }

    .title-word {
        display: inline;
        margin: 0 0.25rem;
    }

    .title-highlight {
        display: inline;
        margin: 0 0.25rem;
    }

    .mega-stats {
        gap: 1.5rem;
        padding: 1.5rem 0;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
    }

    .mega-stat {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .mega-number {
        font-size: 2.5rem;
        line-height: 1;
    }

    .mega-percent {
        font-size: 2rem;
        line-height: 1;
    }

    .mega-label {
        font-size: 0.625rem;
        margin-top: 0.25rem;
        text-align: center;
    }

    .hero-actions-full {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
        padding: 0 var(--spacing-sm);
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        left: auto;
        right: auto;
        z-index: 10;
        order: 2;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-3d {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        min-height: 56px;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .cta-icon {
        font-size: 1.25rem;
    }

    /* Enhanced Mobile Content Sections */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .guards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .guard-item {
        padding: 0.75rem 0.5rem;
    }

    .guard-avatar-small {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .guard-status {
        font-size: 0.625rem;
    }

    .content-box {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .problem-item,
    .benefit-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .virtual-guard {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .guard-avatar {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .guard-label {
        font-size: 1rem;
        margin: 0.75rem 0;
    }

    .monitoring-indicator {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .comparison-cards,
    .products-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-card,
    .product-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .savings-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .savings-content h3 {
        font-size: 1.5rem;
    }

    .savings-content p {
        font-size: 1rem;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.875rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        width: 120px;
        margin: 0 auto 1rem;
    }

    .footer-cuos {
        justify-content: center;
    }

    .cuos-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Ultra Mobile Navigation */
    .nav-container {
        padding: 0.5rem 1rem;
    }

    .nav-logo img {
        height: 30px;
    }

    .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
        padding: 1.5rem 1rem;
    }

    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.875rem 0;
    }

    .nav-menu .btn-nav-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Ultra Mobile Hero */
    .hero {
        padding: 70px 0 30px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero-grid {
        gap: 2rem;
        order: 1;
    }

    .hero-image-3d {
        max-width: 250px;
    }

    .logo-pupila {
        display: none;
    }

    /* Ultra mobile logo optimization */
    .logo-main {
        content: url('../img/horus-banner-s.png');
        max-width: 100%;
        height: auto;
    }

    .transformation-3d {
        gap: 0.75rem;
        padding: 1rem 0;
        margin-bottom: 1rem;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
    }

    .number-inner {
        font-size: 2.5rem;
    }

    .number-label {
        font-size: 0.625rem;
        margin-top: 0.125rem;
    }

    .arrow-3d {
        font-size: 1.25rem;
        margin: 0.25rem 0;
        transform: rotate(0deg);
    }

    .hero-title-3d {
        font-size: 1.5rem;
        line-height: 1.1;
        margin: 0.75rem 0;
    }

    .title-word {
        display: inline;
        margin: 0 0.125rem;
    }

    .title-highlight {
        display: inline;
        margin: 0 0.125rem;
    }

    .mega-stats {
        gap: 1rem;
        padding: 1rem 0;
        flex-direction: row !important;
        justify-content: center;
    }

    .mega-number {
        font-size: 2rem;
    }

    .mega-percent {
        font-size: 1.75rem;
    }

    .mega-label {
        font-size: 0.5rem;
        margin-top: 0.125rem;
    }

    .hero-actions-full {
        margin-top: 1.5rem;
        gap: 0.75rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        left: auto;
        right: auto;
        z-index: 10;
        order: 2;
    }

    .cta-3d {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 50px;
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .cta-icon {
        font-size: 1.125rem;
    }

    /* Ultra Mobile Content */
    .transformation-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }

    .section-subtitle {
        font-size: 0.9375rem;
        line-height: 1.4;
    }

    .guards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.375rem;
    }

    .guard-item {
        padding: 0.5rem 0.375rem;
    }

    .guard-avatar-small {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .guard-status {
        font-size: 0.5rem;
    }

    .content-box {
        padding: 1rem;
        margin: 0.75rem 0;
    }

    .problem-item,
    .benefit-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }

    .virtual-guard {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .guard-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .guard-label {
        font-size: 0.9375rem;
        margin: 0.5rem 0;
    }

    .monitoring-indicator {
        padding: 0.375rem 0.875rem;
        font-size: 0.6875rem;
    }

    .horus-logo-mini {
        height: 35px;
    }

    .horus-logo-cost {
        height: 30px;
    }

    /* Ultra Mobile Cards */
    .comparison-card,
    .product-card,
    .benefit-card {
        padding: 1.25rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .cost-amount {
        font-size: 1.75rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .product-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .feature-item {
        font-size: 0.8125rem;
    }

    .savings-highlight {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .savings-content h3 {
        font-size: 1.375rem;
    }

    .savings-content p {
        font-size: 0.9375rem;
    }

    .savings-icon {
        font-size: 2.5rem;
    }

    /* Ultra Mobile Testimonials */
    .testimonials-title {
        font-size: 1.375rem;
        padding: 0.75rem 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-position {
        font-size: 0.8125rem;
    }

    .author-company {
        font-size: 0.8125rem;
    }

    /* Ultra Mobile Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo {
        width: 100px;
    }

    .cuos-logo {
        height: 40px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    /* Ultra Mobile CTA */
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .cta-buttons {
        gap: 0.75rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Ultra Mobile Totem */
    .totem-section {
        padding: 2.5rem 0;
    }

    .totem-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .totem-description {
        font-size: 0.875rem;
    }

    .partner-logo {
        height: 50px;
    }

    .totem-partner {
        padding: 1rem 1.25rem;
    }

    .totem-cta {
        width: 100%;
        gap: 0.75rem;
    }

    .btn-light,
    .btn-outline-light {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Ultra Mobile Clients */
    .os-icons {
        gap: 1.25rem;
    }

    .os-item i {
        font-size: 2.5rem;
    }

    .os-item span {
        font-size: 0.875rem;
    }

    .clients-slider {
        gap: 1.5rem;
    }

    .client-logo-wrapper {
        width: 130px;
        height: 80px;
        padding: 1rem;
    }

    .trust-badge {
        padding: 0.75rem 1.5rem;
        margin: 1.5rem auto;
    }

    .trust-badge span {
        font-size: 0.875rem;
    }
}

/* === Mobile-Specific Enhancements === */

/* Touch-friendly interactions */
@media (max-width: 768px) {
    .btn,
    .cta-3d,
    .nav-link,
    .btn-nav-primary {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    /* Improved tap targets */
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem;
    }

    /* Better scrolling on mobile */
    .hero,
    .transformation-section,
    .cost-comparison,
    .products-section,
    .benefits-section,
    .totem-section,
    .clients-section,
    .cta-section {
        -webkit-overflow-scrolling: touch;
    }

    /* Optimize animations for mobile */
    .particle,
    .shape,
    .floating-shapes {
        will-change: transform;
    }

    /* Reduce motion for better performance */
    @media (prefers-reduced-motion: reduce) {
        .particle,
        .shape,
        .floating-shapes,
        .hero-image-3d,
        .logo-container {
            animation: none;
            transition: none;
        }
    }
}

/* Mobile landscape optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 20px;
    }

    .hero-grid {
        gap: 1rem;
        grid-template-columns: 1fr !important;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .hero-image-3d {
        max-width: 180px;
    }

    .transformation-3d {
        flex-direction: row !important;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .number-inner {
        font-size: 2rem;
    }

    .number-label {
        font-size: 0.625rem;
    }

    .arrow-3d {
        font-size: 1.25rem;
        transform: rotate(0deg);
    }

    .hero-title-3d {
        font-size: 1.25rem;
        margin: 0.5rem 0;
    }

    .mega-stats {
        flex-direction: row !important;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .mega-number {
        font-size: 1.75rem;
    }

    .mega-percent {
        font-size: 1.25rem;
    }

    .mega-label {
        font-size: 0.5rem;
    }
}

/* High DPI mobile screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image-3d,
    .logo-main,
    .logo-pupila {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .nav-menu {
        background: rgba(26, 26, 46, 0.98);
        color: var(--white);
    }

    .nav-menu .nav-link {
        color: var(--white);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-light);
    }
}

/* === Utility Classes === */
.mt30-mob {
    margin-top: 30px;
}

/* Mobile-specific utility classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

/* Touch feedback */
.touch-feedback {
    transition: transform 0.1s ease;
}

.touch-feedback:active {
    transform: scale(0.98);
}

/* Mobile scroll indicators */
.mobile-scroll-hint {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === Print Styles === */
@media print {
    .navbar,
    .scroll-indicator,
    .cta-section,
    .footer {
        display: none;
    }
}

