/* ============================================
   CONNECTPAY / CASH MISR - FINTECH WEBSITE
   Modern, Fast, Secure Design System
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Primary Colors */
    --primary: #00D4AA;
    --primary-dark: #00B894;
    --primary-light: #55EFC4;
    --primary-glow: rgba(0, 212, 170, 0.3);
    
    /* Secondary Colors */
    --secondary: #6C5CE7;
    --secondary-dark: #5B4BD5;
    --secondary-light: #A29BFE;
    
    /* Accent Colors */
    --accent: #FF6B6B;
    --accent-gold: #FDCB6E;
    --accent-blue: #74B9FF;
    
    /* Neutral Colors */
    --dark-900: #0A0E17;
    --dark-800: #0F1419;
    --dark-700: #161D27;
    --dark-600: #1E2738;
    --dark-500: #2D3A4F;
    --dark-400: #3D4F6F;
    
    /* Light Colors */
    --light-100: #FFFFFF;
    --light-200: #F8F9FA;
    --light-300: #E9ECEF;
    --light-400: #CED4DA;
    --light-500: #ADB5BD;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D4AA 0%, #00B894 50%, #6C5CE7 100%);
    --gradient-secondary: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E17 0%, #161D27 100%);
    --gradient-card: linear-gradient(145deg, rgba(30, 39, 56, 0.8) 0%, rgba(15, 20, 25, 0.9) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    
    /* Typography */
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-mono: 'Cascadia Code', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-900);
    color: var(--light-200);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark-900);
    -webkit-text-fill-color: #000 !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-800);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-500);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--light-400);
    font-size: 1.05rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: var(--radius-full);
    background: var(--gradient-glow);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.bg-glow-1 { top: -200px; right: -200px; }
.bg-glow-2 { bottom: -200px; left: -200px; animation-delay: -10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: var(--space-md) 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-100);
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    object-fit: contain;
    position: relative;
}

/* Logo Icon Wrapper for Animation */
.logo-icon-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating Border Light Effect */
.logo-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-md) + 3px);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 60deg,
        var(--primary) 120deg,
        var(--secondary) 180deg,
        transparent 240deg,
        transparent 360deg
    );
    opacity: 0;
    animation: logoRotate 3s linear infinite, logoFadeInOut 4s ease-in-out infinite;
    z-index: -1;
}

/* Inner glow mask */
.logo-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: var(--dark-800);
    z-index: -1;
}

/* Shimmer/Glass Overlay Effect */
.logo-shimmer {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.logo-shimmer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    animation: logoShimmer 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Spark particles */
.logo-icon-wrapper .logo-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
    z-index: 2;
}

.logo-icon-wrapper .logo-spark:nth-child(2) {
    top: -2px;
    left: 50%;
    animation: sparkle1 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.logo-icon-wrapper .logo-spark:nth-child(3) {
    top: 50%;
    right: -2px;
    animation: sparkle2 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.logo-icon-wrapper .logo-spark:nth-child(4) {
    bottom: -2px;
    left: 30%;
    animation: sparkle3 4s ease-in-out infinite;
    animation-delay: 1.6s;
}

/* Keyframe Animations */
@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoFadeInOut {
    0%, 100% {
        opacity: 0;
    }
    25%, 75% {
        opacity: 1;
    }
}

@keyframes logoShimmer {
    0%, 100% {
        transform: translateX(-100%) rotate(45deg);
    }
    30%, 50% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes sparkle1 {
    0%, 20%, 100% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    25% {
        opacity: 1;
        transform: scale(1) translateY(-5px);
    }
    35% {
        opacity: 0;
        transform: scale(0.5) translateY(-10px);
    }
}

@keyframes sparkle2 {
    0%, 30%, 100% {
        opacity: 0;
        transform: scale(0) translateX(0);
    }
    35% {
        opacity: 1;
        transform: scale(1) translateX(5px);
    }
    45% {
        opacity: 0;
        transform: scale(0.5) translateX(10px);
    }
}

@keyframes sparkle3 {
    0%, 40%, 100% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    45% {
        opacity: 1;
        transform: scale(1) translateY(5px);
    }
    55% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--light-300);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* ============================================
   Language Switcher
   ============================================ */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    z-index: var(--z-dropdown);
    margin-left: auto;
    margin-right: var(--space-md);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gradient-card);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--light-200);
    font-size: 0.875rem;
    font-weight: 500;
    height: 40px;
    line-height: 1;
}

.lang-toggle:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.lang-toggle .globe-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.lang-toggle .lang-code {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.lang-toggle .chevron-icon {
    width: 12px;
    height: 12px;
    transition: var(--transition-normal);
    opacity: 0.7;
    flex-shrink: 0;
}

.lang-switcher.open .lang-toggle .chevron-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    overflow: hidden;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 14px;
    color: var(--light-300);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--dark-600);
    color: var(--light-100);
}

.lang-option.active {
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
}

.lang-option .lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-option .check-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
    opacity: 0;
    flex-shrink: 0;
}

.lang-option.active .check-icon {
    opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: var(--z-modal);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-100);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-900);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-100);
    border: 2px solid var(--dark-500);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 212, 170, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark-900);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 10%, transparent 80%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-2xl);
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--light-500);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    animation: fadeIn 1s ease 0.5s backwards;
}

.hero-phone {
    position: absolute;
    width: 280px;
    height: 560px;
    background: var(--gradient-card);
    border-radius: 40px;
    border: 3px solid var(--dark-500);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotate(-5deg) translateY(-20px); }
}

.hero-phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: var(--dark-900);
    border-radius: 15px;
}

.phone-screen {
    position: absolute;
    top: 50px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: var(--dark-800);
    border-radius: 25px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.phone-logo {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.phone-time {
    font-size: 0.75rem;
    color: var(--light-500);
}

.phone-balance {
    text-align: center;
    padding: var(--space-xl) 0;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.phone-balance-label {
    font-size: 0.75rem;
    color: var(--light-500);
    margin-bottom: var(--space-xs);
}

.phone-balance-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
}

.phone-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.phone-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    background: var(--dark-700);
    border-radius: var(--radius-sm);
}

.phone-action-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.phone-action-label {
    font-size: 0.625rem;
    color: var(--light-500);
}

.phone-transaction {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--dark-700);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.phone-transaction-icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-full);
}

.phone-transaction-info {
    flex: 1;
}

.phone-transaction-name {
    font-size: 0.75rem;
    color: var(--light-200);
}

.phone-transaction-date {
    font-size: 0.625rem;
    color: var(--light-500);
}

.phone-transaction-amount {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* Floating Elements */
.float-card {
    position: absolute;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    animation: floatCard 5s ease-in-out infinite;
}

.float-card-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: -2s;
}

.float-card-3 {
    top: 60%;
    right: 0;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.float-card-title {
    font-size: 0.75rem;
    color: var(--light-500);
}

.float-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-100);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-light);
    margin-bottom: var(--space-lg);
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-title .gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
}

/* ============================================
   METRICS SECTION
   ============================================ */
.metrics {
    background: var(--dark-800);
    border-top: 1px solid var(--dark-600);
    border-bottom: 1px solid var(--dark-600);
    padding: var(--space-3xl) 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.metric-card {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.metric-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--dark-500), transparent);
}

.metric-card:last-child::after {
    display: none;
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-100);
    font-family: var(--font-mono);
    margin-bottom: var(--space-sm);
}

.metric-value .suffix {
    font-size: 1.5rem;
    color: var(--primary);
}

.metric-label {
    font-size: 0.95rem;
    color: var(--light-500);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    font-size: 2rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    border-color: transparent;
}

.service-number {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-600);
    font-family: var(--font-mono);
    line-height: 1;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--light-100);
}

.service-description {
    font-size: 0.95rem;
    color: var(--light-500);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-weight: 600;
    color: var(--primary);
}

.service-link svg {
    transition: var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   FEATURES / WHY US SECTION
   ============================================ */
.features {
    background: var(--dark-800);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.features-visual {
    position: relative;
}

.features-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gradient-card);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-500);
}

.features-graphic {
    width: 80%;
    height: 80%;
    position: relative;
}

.feature-circle {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    opacity: 0.3;
    animation: scaleRotate 10s linear infinite;
}

.feature-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.feature-circle:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-direction: reverse;
    animation-duration: 8s;
}

.feature-circle:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    animation-duration: 6s;
}

@keyframes scaleRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.features-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.feature-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--dark-700);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.feature-item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-item-content h4 {
    margin-bottom: var(--space-sm);
    color: var(--light-100);
}

.feature-item-content p {
    font-size: 0.95rem;
    color: var(--light-500);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.partner-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition-normal);
}

.partner-card:hover {
    border-color: var(--primary);
    background: var(--dark-600);
    transform: scale(1.05);
}

.partner-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light-400);
    text-align: center;
}

.partners-more {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-500);
}

.partners-more h4 {
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

/* ============================================
   APPS / STORE SECTION
   ============================================ */
.apps {
    background: var(--dark-800);
}

.apps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.apps-info h2 {
    margin-bottom: var(--space-xl);
}

.apps-description {
    margin-bottom: var(--space-2xl);
}

.apps-features {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.apps-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--dark-600);
}

.apps-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

.download-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.download-btn:hover {
    border-color: var(--primary);
    background: var(--dark-600);
}

.download-btn-icon {
    font-size: 1.5rem;
}

.download-btn-text {
    text-align: left;
}

.download-btn-label {
    font-size: 0.7rem;
    color: var(--light-500);
}

.download-btn-store {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-100);
}

.apps-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.app-showcase {
    position: relative;
    width: 300px;
}

/* Devices Grid */
.devices-section {
    margin-top: var(--space-3xl);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.device-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.device-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.device-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
}

.device-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light-200);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.team-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-900);
}

.team-name {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--light-100);
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.team-bio {
    font-size: 0.85rem;
    color: var(--light-500);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info {
    padding: var(--space-2xl);
    background: var(--gradient-card);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    margin-bottom: var(--space-xl);
    color: var(--light-100);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--dark-600);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-details h4 {
    margin-bottom: var(--space-xs);
    color: var(--light-200);
}

.contact-details p,
.contact-details a {
    font-size: 0.95rem;
    color: var(--light-500);
}

.contact-hours {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--dark-700);
    border-radius: var(--radius-md);
}

.contact-hours h4 {
    margin-bottom: var(--space-md);
    color: var(--light-200);
}

.contact-hours p {
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-xl);
    color: var(--light-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-300);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-md);
    color: var(--light-100);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--light-500);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ADB5BD' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-select option {
    background: var(--dark-700);
    color: var(--light-100);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: var(--gradient-primary);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--dark-900);
    margin-bottom: var(--space-lg);
}

.cta p {
    color: var(--dark-700);
    font-size: 1.2rem;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--dark-900);
    color: var(--light-100);
}

.cta .btn:hover {
    background: var(--dark-800);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-800);
    border-top: 1px solid var(--dark-600);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-400);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark-900);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: var(--light-100);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: var(--light-500);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--dark-600);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--light-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: 0.9rem;
    color: var(--light-500);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    background: var(--dark-800);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(0, 212, 170, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    margin-bottom: var(--space-lg);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    color: var(--light-500);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--light-400);
}

.breadcrumb span {
    color: var(--primary);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.vm-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.vm-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: var(--light-100);
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

.value-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-normal);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
}

.value-card h4 {
    color: var(--light-100);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-800);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        transition: var(--transition-normal);
        border-left: 1px solid var(--dark-600);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .lang-switcher {
        position: fixed;
        bottom: var(--space-xl);
        right: var(--space-xl);
        z-index: 999;
        margin: 0;
    }
    
    .lang-toggle {
        width: 48px;
        height: 48px;
        border-radius: var(--radius-full);
        justify-content: center;
        padding: 0;
        background: var(--gradient-primary);
        border: none;
        box-shadow: var(--shadow-lg);
    }
    
    .lang-toggle .lang-code,
    .lang-toggle .chevron-icon {
        display: none;
    }
    
    .lang-toggle .globe-icon {
        color: var(--dark-900);
        width: 20px;
        height: 20px;
    }
    
    .lang-dropdown {
        bottom: calc(100% + 10px);
        top: auto;
        right: 0;
        transform: translateY(10px);
    }
    
    .lang-switcher.open .lang-dropdown {
        transform: translateY(0);
    }
    
    .features-content,
    .apps-content,
    .contact-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-visual {
        order: -1;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-card::after {
        display: none;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-light { color: var(--light-100); }
.text-muted { color: var(--light-500); }

.bg-dark { background: var(--dark-800); }
.bg-darker { background: var(--dark-900); }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }

.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

.py-1 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-2 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-3 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-4 { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: var(--space-md); }
.gap-2 { gap: var(--space-xl); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
