/* =============================================
   LINER.RU - Ultra Modern Premium Design
   Interactive Aviation B2B Website
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    /* Neutral Gray-Green Premium Palette */
    --bg-primary: #1a1d21;
    --bg-secondary: #22262b;
    --bg-card: #2a2f35;
    --bg-card-hover: #32383f;
    --bg-light: #f5f7f9;
    
    /* Accent Colors - Clean Green */
    --accent: #10b981;
    --accent-hover: #0ea573;
    --accent-glow: rgba(16, 185, 129, 0.25);
    --accent-glow-strong: rgba(16, 185, 129, 0.4);
    --accent-light: rgba(16, 185, 129, 0.1);
    
    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #1e293b;
    
    /* Gradients - Neutral Only */
    --gradient-hero: linear-gradient(135deg, #1a1d21 0%, #22262b 100%);
    --gradient-card: linear-gradient(145deg, #2a2f35 0%, #22262b 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    
    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 8px 40px rgba(16, 185, 129, 0.2);
    
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1320px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

/* Custom Cursor - Light Theme */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s, opacity 0.15s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.bg-secondary {
    background: var(--bg-secondary);
}

.hidden {
    display: none;
}

.w-full {
    width: 100%;
}

.text-muted {
    color: var(--text-muted);
}

.pt-160 {
    padding-top: 160px;
}

.mt-28 {
    margin-top: 28px;
}

/* ===== UTILITY ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.gradient-text {
    color: var(--accent);
}

.glow-text {
    text-shadow: 0 0 40px var(--accent-glow);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 24px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #0ea573;
    box-shadow: 0 15px 30px var(--accent-glow);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-lg {
    padding: 22px 44px;
    font-size: 16px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 29, 33, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 120px;
}

.logo img {
    height: 52px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
    aspect-ratio: auto;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: var(--accent);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--bg-primary);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: none;
}

.logo-text span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 4px;
}

.lang-btn {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
    animation: bg-pulse 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    animation: bg-pulse 10s ease-in-out infinite reverse;
}

@keyframes bg-pulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    50% { transform: scale(1.1) translate(-5%, 5%); opacity: 0.8; }
}

/* Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

/* Floating Particles - Simplified */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-simple 20s linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 18s; }
.particle:nth-child(2) { left: 25%; top: 50%; animation-duration: 22s; animation-delay: -5s; }
.particle:nth-child(3) { left: 45%; top: 30%; animation-duration: 20s; animation-delay: -10s; }
.particle:nth-child(4) { left: 60%; top: 70%; animation-duration: 24s; animation-delay: -15s; }
.particle:nth-child(5) { left: 75%; top: 40%; animation-duration: 19s; animation-delay: -8s; }
.particle:nth-child(6) { left: 85%; top: 60%; animation-duration: 21s; animation-delay: -12s; }
.particle:nth-child(7) { display: none; }
.particle:nth-child(8) { display: none; }
.particle:nth-child(9) { display: none; }
.particle:nth-child(10) { display: none; }
.particle:nth-child(11) { display: none; }
.particle:nth-child(12) { display: none; }

@keyframes particle-simple {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-40px); opacity: 0.6; }
}

/* Flying Planes - Realistic Multi-Direction Flight */
.flying-planes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.plane {
    position: absolute;
    color: var(--accent);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.4));
}

/* Plane 1 - Left to Right, High altitude, slight climb */
.plane-1 {
    width: 42px;
    height: 42px;
    top: 15%;
    left: 0;
    opacity: 0.65;
    animation: fly-ltr-climb 22s ease-in-out infinite;
}

/* Plane 2 - Right to Left, Mid altitude */
.plane-2 {
    width: 32px;
    height: 32px;
    top: 45%;
    left: 0;
    opacity: 0.5;
    animation: fly-rtl-cruise 28s ease-in-out infinite;
}

/* Plane 3 - Diagonal Up-Left to Down-Right */
.plane-3 {
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    opacity: 0.4;
    animation: fly-diagonal-down 35s linear infinite;
}

/* Plane 4 - Diagonal Down-Right to Up-Left */
.plane-4 {
    width: 28px;
    height: 28px;
    top: 0;
    left: 0;
    opacity: 0.45;
    animation: fly-diagonal-up 30s linear infinite;
}

/* Plane 5 - Low pass, fast */
.plane-5 {
    width: 36px;
    height: 36px;
    top: 70%;
    left: 0;
    opacity: 0.55;
    animation: fly-low-fast 16s linear infinite;
}

/* Plane 6 - High altitude, slow, tiny */
.plane-6 {
    width: 18px;
    height: 18px;
    top: 8%;
    left: 0;
    opacity: 0.3;
    animation: fly-high-slow 45s linear infinite;
}

/* Left to Right with climbing motion */
@keyframes fly-ltr-climb {
    0% {
        transform: translateX(-60px) translateY(0) rotate(-5deg);
    }
    20% {
        transform: translateX(20vw) translateY(-15px) rotate(-3deg);
    }
    40% {
        transform: translateX(40vw) translateY(-30px) rotate(-2deg);
    }
    60% {
        transform: translateX(60vw) translateY(-20px) rotate(-4deg);
    }
    80% {
        transform: translateX(80vw) translateY(-10px) rotate(-3deg);
    }
    100% {
        transform: translateX(calc(100vw + 60px)) translateY(0) rotate(-5deg);
    }
}

/* Right to Left cruise */
@keyframes fly-rtl-cruise {
    0% {
        transform: translateX(calc(100vw + 50px)) translateY(0) scaleX(-1) rotate(2deg);
    }
    25% {
        transform: translateX(75vw) translateY(12px) scaleX(-1) rotate(0deg);
    }
    50% {
        transform: translateX(50vw) translateY(-8px) scaleX(-1) rotate(-2deg);
    }
    75% {
        transform: translateX(25vw) translateY(10px) scaleX(-1) rotate(1deg);
    }
    100% {
        transform: translateX(-50px) translateY(0) scaleX(-1) rotate(2deg);
    }
}

/* Diagonal flight - top-left to bottom-right */
@keyframes fly-diagonal-down {
    0% {
        transform: translate(-40px, 10vh) rotate(25deg);
    }
    100% {
        transform: translate(calc(100vw + 40px), 75vh) rotate(25deg);
    }
}

/* Diagonal flight - bottom-right to top-left */
@keyframes fly-diagonal-up {
    0% {
        transform: translate(calc(100vw + 40px), 80vh) rotate(-155deg);
    }
    100% {
        transform: translate(-40px, 15vh) rotate(-155deg);
    }
}

/* Low altitude fast pass */
@keyframes fly-low-fast {
    0% {
        transform: translateX(-50px) translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateX(50vw) translateY(-15px) rotate(0deg);
    }
    100% {
        transform: translateX(calc(100vw + 50px)) translateY(5px) rotate(-2deg);
    }
}

/* High altitude slow cruise */
@keyframes fly-high-slow {
    0% {
        transform: translateX(calc(100vw + 30px)) translateY(0) scaleX(-1);
    }
    100% {
        transform: translateX(-30px) translateY(20px) scaleX(-1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 20px var(--accent);
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.05;
    margin-bottom: 28px;
}

.hero-title span {
    display: block;
}

.hero-title .gradient-text {
    color: var(--accent);
}

.hero-desc {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-features {
    display: flex;
    gap: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.hero-feature:hover .hero-feature-icon {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.hero-feature-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-feature-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Hero Visual - 3D Globe */
.hero-visual {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.15), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.08), transparent 50%),
        linear-gradient(135deg, #2a2f35 0%, #22262b 100%);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 20px 60px rgba(16, 185, 129, 0.12),
        0 0 0 1px rgba(16, 185, 129, 0.08),
        inset 0 0 60px rgba(16, 185, 129, 0.03);
    animation: globe-rotate 30s infinite linear;
}

/* ===== 3D EARTH SCENE ===== */
.earth-scene {
    position: relative;
    width: 320px;
    height: 320px;
}

.earth {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1929 40%, #051525 100%);
    box-shadow: 
        inset -30px -30px 60px rgba(0, 0, 0, 0.6),
        inset 10px 10px 40px rgba(16, 185, 129, 0.15),
        0 0 80px rgba(16, 185, 129, 0.2);
    animation: earth-rotate 60s linear infinite;
}

.earth-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.earth-surface {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        radial-gradient(ellipse 70% 50% at 25% 40%, rgba(16, 185, 129, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse 50% 40% at 70% 60%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse 40% 30% at 50% 25%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
    animation: earth-continents 30s linear infinite;
}

.earth-atmosphere {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.2);
    background: transparent;
}

@keyframes earth-rotate {
    from { transform: translate(-50%, -50%) rotateY(0deg); }
    to { transform: translate(-50%, -50%) rotateY(360deg); }
}

@keyframes earth-continents {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Flight Paths - Curved Arcs */
.flight-path {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flight-plane {
    position: absolute;
    color: var(--accent);
    will-change: transform;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Flight Path 1 - Moscow to USA */
.fp-1 {
    width: 20px;
    height: 20px;
    animation: fly-path-1 8s ease-in-out infinite;
}

@keyframes fly-path-1 {
    0% {
        top: 30%;
        left: 80%;
        transform: rotate(-45deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        top: 15%;
        left: 60%;
        transform: rotate(-60deg) scale(1);
    }
    50% {
        top: 10%;
        left: 40%;
        transform: rotate(-50deg) scale(1.1);
    }
    75% {
        top: 20%;
        left: 20%;
        transform: rotate(-30deg) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 35%;
        left: 5%;
        transform: rotate(-20deg) scale(0.8);
        opacity: 0;
    }
}

/* Flight Path 2 - Europe Route */
.fp-2 {
    width: 16px;
    height: 16px;
    animation: fly-path-2 10s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes fly-path-2 {
    0% {
        top: 55%;
        left: 10%;
        transform: rotate(45deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        top: 45%;
        left: 30%;
        transform: rotate(35deg) scale(1);
    }
    60% {
        top: 40%;
        left: 55%;
        transform: rotate(25deg) scale(1.1);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 50%;
        left: 85%;
        transform: rotate(15deg) scale(0.8);
        opacity: 0;
    }
}

/* Flight Path 3 - Round trip */
.fp-3 {
    width: 14px;
    height: 14px;
    animation: fly-path-3 12s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes fly-path-3 {
    0% {
        top: 70%;
        left: 50%;
        transform: rotate(90deg) scale(0.7);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        top: 60%;
        left: 70%;
        transform: rotate(60deg) scale(0.9);
    }
    50% {
        top: 45%;
        left: 80%;
        transform: rotate(0deg) scale(1);
    }
    75% {
        top: 30%;
        left: 70%;
        transform: rotate(-45deg) scale(0.9);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 25%;
        left: 50%;
        transform: rotate(-90deg) scale(0.7);
        opacity: 0;
    }
}

/* Flight Trails */
.flight-trail {
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
    border-radius: 2px;
    opacity: 0.5;
}

.path-1 .flight-trail {
    top: 20%;
    left: 55%;
    transform: rotate(-50deg);
    animation: trail-fade 8s ease-in-out infinite;
}

.path-2 .flight-trail {
    top: 45%;
    left: 40%;
    transform: rotate(30deg);
    animation: trail-fade 10s ease-in-out infinite;
    animation-delay: -3s;
}

.path-3 .flight-trail {
    display: none;
}

@keyframes trail-fade {
    0%, 10%, 90%, 100% { opacity: 0; }
    30%, 70% { opacity: 0.4; }
}

/* Destination Dots */
.destination-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    animation: dot-pulse 2s ease-in-out infinite;
}

.destination-dot span {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.destination-dot:hover span {
    opacity: 1;
}

.dot-moscow {
    top: 35%;
    right: 15%;
    animation-delay: 0s;
}

.dot-usa {
    top: 30%;
    left: 10%;
    animation-delay: 0.5s;
}

.dot-europe {
    top: 45%;
    left: 35%;
    animation-delay: 1s;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px var(--accent); }
    50% { transform: scale(1.3); box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(16, 185, 129, 0.3); }
}

/* Floating Cards */
.hero-card {
    position: absolute;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 24px 28px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    max-width: 220px;
    z-index: 10;
}

.hero-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-glow);
}

.hero-card.card-1 {
    top: 10%;
    left: 20px;
    animation: float-1 6s infinite ease-in-out;
}

.hero-card.card-2 {
    bottom: 15%;
    right: 20px;
    animation: float-2 7s infinite ease-in-out;
}

@media (max-width: 1400px) {
    .hero-card.card-1 {
        left: 5px;
        top: 5%;
        max-width: 160px;
        padding: 18px 22px;
    }
    
    .hero-card.card-2 {
        right: 5px;
        bottom: 10%;
        max-width: 160px;
        padding: 18px 22px;
    }
    
    .hero-card h4 {
        font-size: 14px;
    }
    
    .hero-card p {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .hero-card {
        display: none !important;
    }
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.hero-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== PARTNERS ===== */
.partners {
    padding: 32px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    overflow: hidden;
}

.partners-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partners-label {
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
}

.partners-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.partner-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 0.1;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: scale(1.05);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.service-link svg {
    transition: transform 0.3s;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.advantage-card {
    text-align: center;
    padding: 48px 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.advantage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.4s;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.advantage-card:hover::before {
    opacity: 0.05;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px var(--accent-glow);
    animation: icon-float 4s infinite ease-in-out;
}

.advantage-card:nth-child(1) .advantage-icon { animation-delay: 0s; }
.advantage-card:nth-child(2) .advantage-icon { animation-delay: 0.5s; }
.advantage-card:nth-child(3) .advantage-icon { animation-delay: 1s; }
.advantage-card:nth-child(4) .advantage-icon { animation-delay: 1.5s; }

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.advantage-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== STATS ===== */
.stats-section {
    background: var(--accent);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0,0,0,0.03) 100px, rgba(0,0,0,0.03) 101px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
}

.stat-value {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: white;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 560px;
}

.about-image-box {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2a2f35 0%, #22262b 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 1;
}

/* Animated glow ring around emoji */
.about-image-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.about-image-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    z-index: 1;
    animation: float-emoji 4s ease-in-out infinite;
}

@keyframes float-emoji {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float-1 5s infinite ease-in-out;
    box-shadow: var(--shadow-lg);
}

.about-image-float-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
}

.about-image-float-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.about-content h2 {
    font-size: 44px;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-list {
    margin: 36px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== CERTIFICATES ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.cert-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.cert-card:hover::before {
    left: 100%;
}

.cert-logo {
    width: 90px;
    height: 90px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.cert-card:hover .cert-logo {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.cert-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cert-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    opacity: 1;
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 40%);
    animation: cta-glow 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes cta-glow {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(10%, 10%); opacity: 0.5; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--glass-border);
}

.cta-phone-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 40px var(--accent-glow);
}

.cta-phone-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cta-phone-number {
    font-size: 28px;
    font-weight: 700;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    padding: 56px;
    box-shadow: var(--shadow-md);
}

/* Contact Form Header - Desktop */
.contact-form-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-form-icon {
    display: none;
}

.contact-form-header-text .section-label {
    margin-bottom: 8px;
}

.contact-form-header-text h3 {
    font-size: 32px;
    margin: 0;
}

.contact-form-decoration {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #ef4444;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-method:hover .contact-method-icon {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.contact-method-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-method-value {
    font-size: 18px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 24px;
    max-width: 320px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer-contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== PAGE HEADERS ===== */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 1;
    pointer-events: none;
}

.page-title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 20px;
    position: relative;
}

.page-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    position: relative;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* ===== PAGE ANIMATED ELEMENTS ===== */
.page-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-shape,
.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.05;
}

.page-shape.shape-1,
.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: shape-float 20s ease-in-out infinite;
}

.page-shape.shape-2,
.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: shape-float 25s ease-in-out infinite reverse;
}

.page-shape.shape-3,
.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    animation: shape-float 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes shape-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.2;
    animation: icon-bounce 4s ease-in-out infinite;
}

.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 30%; right: 15%; animation-delay: 1s; }
.icon-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.icon-4 { bottom: 20%; right: 10%; animation-delay: 0.5s; }

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Animated Building */
.animated-building {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.building-icon {
    font-size: 100px;
    animation: building-pulse 3s ease-in-out infinite;
}

.building-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.building-rings span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ring-expand 3s ease-out infinite;
    opacity: 0;
}

.building-rings span:nth-child(2) { animation-delay: 1s; }
.building-rings span:nth-child(3) { animation-delay: 2s; }

@keyframes ring-expand {
    0% { width: 80px; height: 80px; opacity: 0.6; }
    100% { width: 200px; height: 200px; opacity: 0; }
}

@keyframes building-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex !important;
        flex-shrink: 0;
    }
    
    .header-inner {
        gap: 12px;
        width: 100%;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo img {
        height: 44px;
        max-width: 240px;
    }
    
    .header-actions {
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .header-actions .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .globe-container {
        width: 300px;
        height: 300px;
    }
    
    .globe {
        width: 200px;
        height: 200px;
    }
    
    .earth-scene {
        width: 280px;
        height: 280px;
    }
    
    .earth {
        width: 180px;
        height: 180px;
    }
    
    .hero-card {
        display: none;
    }
    
    .cube-scene {
        transform: scale(0.8);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        overflow-x: hidden;
    }
    
    .services-grid,
    .advantages-grid,
    .cert-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .service-card,
    .advantage-card,
    .cert-card {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .globe-container {
        width: 250px;
        height: 250px;
    }
    
    .earth-scene {
        width: 240px;
        height: 240px;
    }
    
    .earth {
        width: 160px;
        height: 160px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-box {
        padding: 48px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-contacts {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .flying-planes {
        display: none;
    }
    
    .morphing-blobs {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .globe-container {
        width: 200px;
        height: 200px;
    }
    
    .earth-scene {
        width: 200px;
        height: 200px;
    }
    
    .earth {
        width: 140px;
        height: 140px;
    }
    
    .hero-card {
        display: none;
    }
    
    .stat-value {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .particles {
        opacity: 0.3;
    }
    
    .morphing-blobs,
    .floating-lines,
    .cube-scene {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
}

/* =============================================
   ULTRA PREMIUM EFFECTS
   ============================================= */

/* ===== NOISE TEXTURE OVERLAY - DISABLED FOR PERFORMANCE ===== */
.noise-overlay {
    display: none;
}

/* ===== MORPHING BLOBS - SIMPLIFIED ===== */
.morphing-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: blob-float 30s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: blob-float 35s ease-in-out infinite reverse;
}

.blob-3 {
    display: none;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

/* ===== FLOATING LINES - DISABLED ===== */
.floating-lines {
    display: none;
}

/* ===== 3D ROTATING CUBE - SIMPLIFIED ===== */
.cube-scene {
    position: absolute;
    top: 5%;
    right: 10%;
    width: 60px;
    height: 60px;
    perspective: 300px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cube-rotate 30s linear infinite;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cube-face.front  { transform: translateZ(30px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(30px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(30px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(30px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(30px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }

@keyframes cube-rotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* ===== ENHANCED GLOBE ===== */
.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.4), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.3), transparent 50%),
        linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 0 120px var(--accent-glow),
        0 0 60px var(--accent-glow),
        inset 0 0 80px rgba(0, 255, 136, 0.15);
    animation: globe-pulse 4s ease-in-out infinite;
    overflow: hidden;
}

.globe-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 255, 136, 0.1) 20px, rgba(0, 255, 136, 0.1) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0, 255, 136, 0.1) 20px, rgba(0, 255, 136, 0.1) 21px);
    animation: globe-grid-rotate 30s linear infinite;
    opacity: 0.5;
}

@keyframes globe-pulse {
    0%, 100% { box-shadow: 0 0 120px var(--accent-glow), 0 0 60px var(--accent-glow), inset 0 0 80px rgba(0, 255, 136, 0.15); }
    50% { box-shadow: 0 0 150px var(--accent-glow-strong), 0 0 80px var(--accent-glow), inset 0 0 100px rgba(0, 255, 136, 0.2); }
}

@keyframes globe-grid-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== MULTIPLE ORBITING OBJECTS ===== */
.orbit-plane.orbit-1 {
    animation: orbit 10s linear infinite;
}

.orbit-plane.orbit-2 {
    font-size: 20px;
    animation: orbit 15s linear infinite reverse;
}

.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

.orbit-dot.dot-1 {
    animation: orbit-dot 8s linear infinite;
}

.orbit-dot.dot-2 {
    animation: orbit-dot 12s linear infinite;
    animation-delay: -4s;
}

.orbit-dot.dot-3 {
    animation: orbit-dot 6s linear infinite;
    animation-delay: -2s;
    width: 6px;
    height: 6px;
}

@keyframes orbit-dot {
    from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

/* ===== ENHANCED PARTICLES ===== */
.particle:nth-child(9) { left: 5%; top: 90%; animation-duration: 18s; animation-delay: -16s; }
.particle:nth-child(10) { left: 30%; top: 15%; animation-duration: 14s; animation-delay: -2s; }
.particle:nth-child(11) { left: 60%; top: 85%; animation-duration: 19s; animation-delay: -6s; }
.particle:nth-child(12) { left: 80%; top: 10%; animation-duration: 16s; animation-delay: -11s; }

/* ===== GLOWING BORDERS ===== */
.service-card,
.advantage-card,
.cert-card,
.hero-card {
    position: relative;
}

.service-card::before,
.advantage-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--accent), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before,
.advantage-card:hover::before {
    opacity: 1;
}

/* ===== SHIMMER EFFECT ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ===== ENHANCED STATS ===== */
.stat-value {
    position: relative;
    display: inline-block;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(0,0,0,0.3);
    border-radius: 2px;
}

/* ===== BREATHING GLOW ON CARDS ===== */
.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 30px var(--accent-glow);
    opacity: 0;
    transition: opacity 0.4s;
}

.hero-card:hover::after {
    opacity: 1;
}

/* ===== RIPPLE EFFECT ON BUTTONS ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== HOVER LIFT EFFECT ===== */
.service-card:hover,
.advantage-card:hover,
.cert-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* ===== ANIMATED UNDERLINE ON LINKS ===== */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

/* ===== PULSING CTA ===== */
.cta-box {
    animation: cta-glow-pulse 4s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
    }
    50% {
        box-shadow: 0 0 80px rgba(0, 255, 136, 0.2);
    }
}

/* ===== MAGNETIC ICON EFFECT ===== */
.advantage-icon,
.service-icon,
.hero-feature-icon {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantage-card:hover .advantage-icon,
.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* ===== STAGGERED ANIMATION ===== */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }

.advantages-grid .advantage-card:nth-child(1) { transition-delay: 0s; }
.advantages-grid .advantage-card:nth-child(2) { transition-delay: 0.1s; }
.advantages-grid .advantage-card:nth-child(3) { transition-delay: 0.2s; }
.advantages-grid .advantage-card:nth-child(4) { transition-delay: 0.3s; }

.cert-grid .cert-card:nth-child(1) { transition-delay: 0s; }
.cert-grid .cert-card:nth-child(2) { transition-delay: 0.1s; }
.cert-grid .cert-card:nth-child(3) { transition-delay: 0.2s; }
.cert-grid .cert-card:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   ULTRA ADVANCED EFFECTS
   ============================================= */

/* ===== MATRIX RAIN CANVAS - DISABLED FOR PERFORMANCE ===== */
.matrix-canvas {
    display: none;
}

/* ===== GLITCH TEXT EFFECT - SIMPLIFIED ===== */
.glitch-text {
    position: relative;
}

/* ===== AURORA EFFECT - DISABLED FOR PERFORMANCE ===== */
.aurora {
    display: none;
}

/* ===== GLITCH OVERLAY - DISABLED ===== */
.glitch-overlay {
    display: none;
}

/* ===== SCANLINES - DISABLED ===== */
/*
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 3;
}
*/

/* ===== CYBER LINES ===== */
.service-card::before,
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.service-card:hover::before,
.advantage-card:hover::before {
    transform: scaleX(1);
}

/* ===== HOLOGRAPHIC EFFECT ===== */
.hero-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 70%
    );
    animation: holographic 3s linear infinite;
}

@keyframes holographic {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

/* ===== NEON BORDER ANIMATION ===== */
.btn-primary {
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #00ff88, #00d4ff, #a855f7, #00ff88);
    background-size: 400%;
    border-radius: inherit;
    z-index: -1;
    animation: neon-border 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

@keyframes neon-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== FLOATING ANIMATION ===== */
.hero-card.card-1 {
    animation: float-1 6s ease-in-out infinite;
}

.hero-card.card-2 {
    animation: float-2 8s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* ===== ELECTRIC EFFECT ON STATS ===== */
.stat-value {
    position: relative;
    text-shadow:
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 40px var(--accent);
    animation: electric 2s ease-in-out infinite;
}

@keyframes electric {
    0%, 100% {
        text-shadow:
            0 0 10px var(--accent),
            0 0 20px var(--accent),
            0 0 40px var(--accent);
    }
    50% {
        text-shadow:
            0 0 20px var(--accent),
            0 0 40px var(--accent),
            0 0 60px var(--accent),
            0 0 80px var(--accent);
    }
}

/* ===== SCRAMBLE TEXT ANIMATION ===== */
.scramble-text {
    display: inline-block;
}

/* ===== PULSE RINGS ===== */
.globe-container::before,
.globe-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
    animation: pulse-ring 3s ease-out infinite;
}

.globe-container::before {
    width: 280px;
    height: 280px;
    animation-delay: 0s;
}

.globe-container::after {
    width: 320px;
    height: 320px;
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ===== 3D PERSPECTIVE SCROLL ===== */
.section {
    transform-style: preserve-3d;
}

/* ===== GRADIENT BORDER CARDS ===== */
.cert-card {
    position: relative;
    background: var(--bg-card);
}

.cert-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.cert-card:hover::after {
    opacity: 1;
}

/* ===== TYPEWRITER CURSOR ===== */
.hero-title .gradient-text {
    border-right: 3px solid var(--accent);
    animation: blink-cursor 0.8s infinite;
    padding-right: 5px;
}

@keyframes blink-cursor {
    0%, 50% { border-color: var(--accent); }
    51%, 100% { border-color: transparent; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 14px;
    }
}

/* =============================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ============================================= */

/* === Tablet (992px and below) === */
@media (max-width: 992px) {
    /* Header improvements */
    .header-actions {
        gap: 12px;
    }
    
    .header-actions .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .lang-switcher {
        gap: 4px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    /* Hero adjustments */
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(32px, 6vw, 48px);
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    /* Section headers */
    .section-title {
        font-size: clamp(28px, 5vw, 48px);
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    /* Page header */
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-title {
        font-size: clamp(32px, 6vw, 56px);
    }
    
    .page-desc {
        font-size: 16px;
    }
    
    /* Service cards */
    .service-card {
        padding: 32px 28px;
    }
    
    .service-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    /* Advantage cards */
    .advantage-card {
        padding: 28px 24px;
    }
    
    .advantage-icon {
        font-size: 36px;
    }
    
    .advantage-title {
        font-size: 18px;
    }
    
    /* CTA section */
    .cta-title {
        font-size: clamp(28px, 5vw, 42px);
    }
    
    .cta-desc {
        font-size: 16px;
    }
    
    /* About grid image - tablet */
    .about-image {
        height: 420px;
    }
    
    .about-image-box {
        height: 300px;
        background: linear-gradient(145deg, #2a2f35 0%, #22262b 100%);
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-lg);
    }
    
    .about-image-content {
        font-size: 90px;
    }
    
    .about-image-float {
        width: 180px;
        height: 180px;
        bottom: -20px;
        right: -20px;
    }
    
    .about-image-float-value {
        font-size: 40px;
    }
    
    .about-image-float-label {
        font-size: 13px;
    }
    
    /* Stats */
    .stat-value {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

/* === Mobile Large (768px and below) === */
@media (max-width: 768px) {
    /* Global spacing */
    :root {
        --section-padding: 60px;
    }
    
    /* Container */
    .container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all sections are properly contained */
    .section,
    .hero,
    .footer {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Header */
    .header-inner {
        height: 60px;
        gap: 10px;
    }
    
    .header.scrolled {
        padding: 8px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    /* Mobile toggle - ensure visible */
    .mobile-toggle {
        display: flex !important;
        flex-shrink: 0;
        padding: 10px;
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .header-actions {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .header-actions .btn-primary {
        display: none;
    }
    
    .lang-switcher {
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Hero section */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-title {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 20px;
    }
    
    .hero-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    
    .hero-feature {
        padding: 16px 20px;
    }
    
    .hero-feature-icon {
        font-size: 24px;
    }
    
    /* Hero visual */
    .hero-visual {
        height: 280px;
    }
    
    .globe-container {
        width: 220px;
        height: 220px;
    }
    
    .globe {
        width: 150px;
        height: 150px;
    }
    
    /* Page header */
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-title {
        font-size: clamp(28px, 7vw, 42px);
    }
    
    .page-desc {
        font-size: 15px;
    }
    
    .breadcrumb {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    /* Section headers */
    .section-label {
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .section-label::before {
        width: 24px;
    }
    
    .section-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 16px;
    }
    
    .section-desc {
        font-size: 15px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    /* Service cards mobile */
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .service-link {
        font-size: 14px;
    }
    
    /* Advantage cards mobile */
    .advantages-grid {
        gap: 16px;
    }
    
    .advantage-card {
        padding: 24px 20px;
    }
    
    .advantage-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .advantage-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .advantage-text {
        font-size: 14px;
    }
    
    /* Cert cards mobile */
    .cert-grid {
        gap: 16px;
    }
    
    .cert-card {
        padding: 28px 24px;
    }
    
    .cert-logo {
        font-size: 24px;
        width: 56px;
        height: 56px;
    }
    
    .cert-title {
        font-size: 16px;
    }
    
    .cert-desc {
        font-size: 13px;
    }
    
    /* About grid mobile */
    .about-grid {
        gap: 32px;
    }
    
    /* ===== ABOUT-IMAGE MOBILE - PREMIUM DESIGN ===== */
    .about-image {
        position: relative;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .about-image-box {
        position: relative;
        inset: auto;
        height: 220px;
        border-radius: var(--border-radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #2a2f35 0%, #22262b 100%);
        border: 1px solid var(--glass-border);
        box-shadow: 
            var(--shadow-md),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        overflow: hidden;
    }
    
    /* Inner glow effect */
    .about-image-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
        pointer-events: none;
    }
    
    /* Subtle animated border glow */
    .about-image-box::after {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(45deg, 
            transparent 30%, 
            rgba(16, 185, 129, 0.3) 50%, 
            transparent 70%);
        border-radius: inherit;
        z-index: -1;
        opacity: 0.6;
        animation: border-glow-mobile 4s ease-in-out infinite;
    }
    
    @keyframes border-glow-mobile {
        0%, 100% { opacity: 0.3; transform: rotate(0deg); }
        50% { opacity: 0.7; }
    }
    
    .about-image-content {
        position: relative;
        inset: auto;
        font-size: 72px;
        z-index: 1;
        filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
        animation: none;
    }
    
    /* Float box - horizontal card style */
    .about-image-float {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: auto;
        margin-top: 0;
        padding: 24px 28px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        animation: none;
        border-radius: var(--border-radius-lg);
        background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
        border: 1px solid rgba(16, 185, 129, 0.2);
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    
    .about-image-float::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        background: var(--accent);
        border-radius: 0 4px 4px 0;
    }
    
    .about-image-float-value {
        font-size: 36px;
        line-height: 1;
    }
    
    .about-image-float-label {
        font-size: 14px;
        margin-top: 0;
        text-align: left;
    }
    
    .about-content h2 {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .about-list {
        margin: 24px 0;
    }
    
    .about-list li {
        font-size: 14px;
        padding: 12px 0;
        gap: 12px;
    }
    
    .about-list li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    /* Stats section mobile */
    .stats-section {
        padding: 48px 0;
    }
    
    .stats-grid {
        gap: 24px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-value {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 16px;
    }
    
    .cta-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-phone {
        margin-top: 28px;
        padding-top: 28px;
    }
    
    .cta-phone-number {
        font-size: 22px;
    }
    
    /* Contact form mobile */
    .contact-grid {
        gap: 40px;
    }
    
    .contact-form {
        padding: 28px 20px;
        border-radius: 20px;
        background: linear-gradient(145deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.03) 100%);
        border: 1px solid rgba(16, 185, 129, 0.15);
        position: relative;
        overflow: hidden;
    }
    
    .contact-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    }
    
    /* Contact Form Header - Mobile */
    .contact-form-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 0;
    }
    
    .contact-form-icon {
        display: flex;
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-radius: 16px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
        animation: pulse-glow 3s ease-in-out infinite;
    }
    
    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15); }
        50% { box-shadow: 0 4px 30px rgba(16, 185, 129, 0.3); }
    }
    
    .contact-form-icon svg {
        width: 32px;
        height: 32px;
        color: var(--accent);
    }
    
    .contact-form-header-text {
        text-align: center;
    }
    
    .contact-form-header-text .section-label {
        display: inline-block;
        margin-bottom: 8px;
    }
    
    .contact-form-header-text h3 {
        font-size: 24px !important;
        margin: 0 !important;
    }
    
    /* Decoration Line */
    .contact-form-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 24px 0;
    }
    
    .form-decoration-line {
        height: 1px;
        flex: 1;
        max-width: 60px;
        background: linear-gradient(90deg, transparent 0%, var(--glass-border) 100%);
    }
    
    .form-decoration-line:last-child {
        background: linear-gradient(90deg, var(--glass-border) 0%, transparent 100%);
    }
    
    .form-decoration-dot {
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--accent);
    }
    
    /* Form Inputs Enhanced */
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: 8px;
    }
    
    .form-input,
    .form-textarea {
        padding: 16px 18px;
        font-size: 15px;
        background: var(--bg-secondary);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        transition: all 0.3s ease;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        border-color: var(--accent);
        background: rgba(16, 185, 129, 0.03);
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-checkbox {
        padding: 14px 16px;
        background: var(--bg-secondary);
        border-radius: 12px;
        margin-top: 4px;
    }
    
    .form-checkbox span {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .form-checkbox input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }
    
    /* Submit Button Enhanced */
    .contact-form .btn-primary {
        margin-top: 8px;
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        transition: all 0.3s ease;
    }
    
    .contact-form .btn-primary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    }
    
    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .contact-method-icon {
        font-size: 24px;
    }
    
    .contact-method-label {
        font-size: 12px;
    }
    
    .contact-method-value {
        font-size: 15px;
    }
    
    /* Footer mobile - Premium Compact Design */
    .footer {
        padding: 40px 0 20px;
        background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(16, 185, 129, 0.03) 100%);
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
        margin-bottom: 28px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 0;
    }
    
    .footer-brand .logo {
        justify-content: center;
        margin-bottom: 12px;
    }

    .footer-brand .logo img {
        height: 38px;
        max-width: 200px;
        object-fit: contain;
    }
    
    .footer-brand p {
        font-size: 13px;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        line-height: 1.5;
        color: var(--text-muted);
    }
    
    .footer-nav,
    .footer-services {
        padding: 0;
    }
    
    .footer-title {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .footer-title::before {
        content: '';
        width: 3px;
        height: 12px;
        background: var(--accent);
        border-radius: 2px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .footer-links a {
        font-size: 13px;
        padding: 4px 0;
        display: block;
        color: var(--text-secondary);
        transition: color 0.2s ease;
    }
    
    .footer-links a:hover {
        color: var(--accent);
    }
    
    .footer-contacts {
        grid-column: 1 / -1;
        padding: 16px;
        background: var(--bg-secondary);
        border-radius: var(--border-radius);
        border: 1px solid var(--glass-border);
    }
    
    .footer-contacts .footer-title {
        margin-bottom: 14px;
    }
    
    .footer-contact {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .footer-contact-item {
        font-size: 12px;
        text-align: center;
        padding: 8px 4px;
        background: var(--bg-primary);
        border-radius: 8px;
    }
    
    .footer-contact-item strong {
        display: block;
        font-size: 10px;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .footer-bottom {
        font-size: 11px;
        padding: 16px 0 0;
        margin-top: 0;
        text-align: center;
        border-top: 1px solid var(--glass-border);
        line-height: 1.6;
        color: var(--text-muted);
    }
    
    .footer-bottom a {
        color: var(--text-muted);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    
    .footer-bottom a:hover {
        color: var(--accent);
    }
    
    /* Partners mobile */
    .partners {
        padding: 24px 0;
    }
    
    .partner-logo {
        font-size: 14px;
        padding: 0 24px;
    }
    
    /* FAQ mobile */
    .faq-grid {
        gap: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
        gap: 12px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 13px;
    }
    
    /* Buttons mobile */
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    /* Hide decorative elements */
    .flying-planes,
    .particles,
    .morphing-blobs,
    .floating-lines,
    .cube-scene,
    .hero-card,
    .aurora,
    .matrix-canvas,
    .glitch-overlay {
        display: none;
    }
    
    /* Mobile menu animation */
    .nav.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        padding: 32px 24px;
        gap: 8px;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    
    .nav.mobile-active .nav-link {
        font-size: 18px;
        padding: 16px 20px;
        border-radius: 12px;
        background: var(--bg-secondary);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* === Mobile Small (480px and below) === */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 16px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    /* Cards */
    .service-card,
    .advantage-card,
    .cert-card {
        padding: 20px 16px;
    }
    
    .service-icon,
    .advantage-icon {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-text,
    .advantage-text {
        font-size: 13px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* CTA */
    .cta-box {
        padding: 32px 20px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-phone-number {
        font-size: 20px;
    }
    
    /* About section - small mobile */
    .about-image-box {
        height: 180px;
    }
    
    .about-image-content {
        font-size: 56px;
    }
    
    .about-image-float {
        padding: 20px 24px;
        gap: 14px;
    }
    
    .about-image-float-value {
        font-size: 30px;
    }
    
    .about-image-float-label {
        font-size: 12px;
    }
    
    .about-content h2 {
        font-size: 22px;
    }
    
    /* Footer - small mobile - Ultra Compact */
    .footer {
        padding: 32px 0 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        margin-bottom: 20px;
    }
    
    .footer-brand {
        padding-bottom: 16px;
    }
    
    .footer-brand p {
        font-size: 12px;
        max-width: 240px;
    }
    
    .footer-title {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .footer-title::before {
        width: 2px;
        height: 10px;
    }
    
    .footer-links {
        gap: 4px;
    }
    
    .footer-links a {
        font-size: 12px;
        padding: 3px 0;
    }
    
    .footer-contacts {
        padding: 12px;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 12px;
        text-align: left;
    }
    
    .footer-contact-item strong {
        display: inline;
        font-size: 10px;
        margin-bottom: 0;
    }
    
    .footer-bottom {
        font-size: 10px;
        padding-top: 12px;
        line-height: 1.5;
    }
    
    /* Contact form - small mobile */
    .contact-form {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .contact-form-icon {
        width: 56px;
        height: 56px;
    }
    
    .contact-form-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-form-header-text h3 {
        font-size: 22px !important;
    }
    
    .contact-form-decoration {
        margin: 20px 0;
    }
    
    .form-decoration-line {
        max-width: 40px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .form-label {
        font-size: 11px;
    }
    
    .contact-form .btn-primary {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    /* Lang switcher */
    .lang-switcher {
        gap: 2px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    /* Header button hide */
    .header-actions .btn-primary {
        display: none;
    }
    
    /* Mobile toggle - smallest screens */
    .mobile-toggle {
        display: flex !important;
        flex-shrink: 0;
        padding: 8px;
    }
    
    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .header-inner {
        gap: 8px;
    }
    
    /* Logo smaller */
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Section padding */
    :root {
        --section-padding: 48px;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 12px;
    }
    
    /* Globe */
    .globe-container {
        width: 180px;
        height: 180px;
    }
    
    .globe {
        width: 120px;
        height: 120px;
    }
}

/* === Landscape mobile fixes === */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
}

/* === Touch device improvements === */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link {
        padding: 12px 16px;
    }
    
    .btn {
        min-height: 48px;
    }
    
    .faq-question {
        min-height: 56px;
    }
    
    /* Language switcher - larger touch targets */
    .lang-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    /* Mobile toggle - larger touch target */
    .mobile-toggle {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        margin-left: 8px;
    }
    
    .mobile-toggle span {
        width: 26px;
        height: 3px;
    }
    
    /* Disable hover effects on touch */
    .service-card:hover,
    .advantage-card:hover,
    .cert-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Hide custom cursor on touch */
    .cursor,
    .cursor-dot {
        display: none !important;
    }
    
    /* Disable about-image animations for performance on touch */
    .about-image-box::after {
        animation: none;
        opacity: 0.4;
    }
    
    .about-image-content {
        animation: none;
    }
    
    .about-image-float {
        animation: none;
    }
}

/* =============================================
   CONTACTS PAGE SPECIAL ELEMENTS
   ============================================= */

/* AOG Box */
.aog-box {
    margin-top: 48px;
    padding: 36px;
    background: var(--accent);
    border-radius: var(--border-radius-lg);
}

.aog-box-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-bottom: 8px;
    color: var(--bg-primary);
}

.aog-box-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bg-primary);
}

.aog-box-text {
    opacity: 0.85;
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--bg-primary);
}

.aog-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-primary);
    color: var(--accent);
    font-weight: 700;
    border-radius: 12px;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.aog-box-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Work Schedule Box */
.schedule-box {
    margin-top: 32px;
    padding: 28px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-lg);
}

.schedule-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.schedule-grid {
    display: grid;
    gap: 8px;
    font-size: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.schedule-day {
    color: var(--text-muted);
}

.schedule-time {
    color: var(--text-primary);
    font-weight: 500;
}

.schedule-note {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-weight: 500;
}

/* Mobile adjustments for AOG and Schedule */
@media (max-width: 768px) {
    .aog-box {
        margin-top: 32px;
        padding: 28px 24px;
    }
    
    .aog-box-title {
        font-size: 20px;
    }
    
    .aog-box-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 18px;
    }
    
    .schedule-box {
        padding: 24px 20px;
    }
    
    .schedule-title {
        font-size: 16px;
    }
    
    .schedule-grid {
        font-size: 14px;
    }
    
    .schedule-row {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .aog-box {
        padding: 24px 20px;
    }
    
    .aog-box-title {
        font-size: 18px;
    }
    
    .aog-box-text {
        font-size: 14px;
    }
    
    .aog-box-btn {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* Mission Mini Stats */
.mission-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.mission-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
}

.mission-stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .mission-stats {
        gap: 24px;
    }
    
    .mission-stat-value {
        font-size: 28px;
    }
    
    .mission-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .mission-stats {
        gap: 20px;
    }
    
    .mission-stat-value {
        font-size: 24px;
    }
    
    .mission-stat-label {
        font-size: 12px;
    }
}

/* ===== MOBILE LANGUAGE SWITCHER IN MENU ===== */
.mobile-lang-switcher {
    display: none;
}

@media (max-width: 992px) {
    .mobile-lang-switcher {
        display: none;
        width: 100%;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--glass-border);
        gap: 12px;
        justify-content: center;
        align-items: center;
    }
    
    .nav.mobile-active .mobile-lang-switcher {
        display: flex;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .mobile-lang-btn {
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-muted);
        border-radius: 12px;
        transition: var(--transition);
        background: var(--bg-secondary);
        border: 1px solid var(--glass-border);
        outline: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-width: 80px;
    }
    
    .mobile-lang-btn:hover,
    .mobile-lang-btn:active {
        color: var(--text-primary);
        border-color: var(--accent);
    }
    
    .mobile-lang-btn.active {
        background: var(--accent);
        color: var(--bg-primary);
        border-color: var(--accent);
    }
}

/* ===== UNIVERSAL MOBILE LAYOUT FIX ===== */
/* Ensure consistent layout on all mobile devices */
@media (max-width: 992px) {
    * {
        box-sizing: border-box;
    }
    
    .header {
        width: 100%;
    }
    
    .header .container {
        width: 100%;
        max-width: 100%;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    /* Ensure proper flex distribution */
    .logo {
        flex: 0 0 auto;
    }
    
    .logo img {
        height: 38px;
        max-width: 180px;
    }
    
    .header-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-toggle {
        flex: 0 0 auto;
    }
    
    /* Prevent content overflow */
    .services-grid,
    .advantages-grid,
    .cert-grid,
    .stats-grid,
    .footer-grid,
    .about-grid,
    .contact-grid,
    .faq-grid {
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure cards don't overflow */
    .service-card,
    .advantage-card,
    .cert-card,
    .stat-card,
    .faq-item {
        max-width: 100%;
        overflow: hidden;
    }
}
