/* Infinity Metrics - Main Stylesheet */

/* CSS Variables for consistent theming */
:root {
    --background-primary: #0A0A0A;
    --background-secondary: rgba(76, 120, 164, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-tertiary: #B0B0B0;
    --accent-primary: #38BDF8;
    --accent-secondary: #0EA5E9;
    --accent-gradient: linear-gradient(135deg, #00C9FF 0%, #0066FF 100%);
    --border-accent: rgba(56, 189, 248, 0.2);
    --shadow-accent: rgba(56, 189, 248, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #0A0A0A;
}

/* ============================================
   OLD HEADER - TEMPORARILY DISABLED
   ============================================
   Старый header отключен в пользу нового hero-блока.
   Код сохранен для возможного использования на других страницах.
   Для включения: удалите 'display: none;'
   ============================================ */

/* ============================================
   OLD NAVIGATION STYLES - DISABLED
   ============================================ */
/*
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #38BDF8;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #0EA5E9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #38BDF8;
}
*/

/* Main content - no margin needed with new hero layout */
main {
    transition: all 0.3s ease;
}

#hero {
    background: #0A0A0A;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(56, 189, 248, 0.3);
}

.cta-button {
    background: #38BDF8;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

#services {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #0A0A0A;
    color: #FFFFFF;
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(76, 120, 164, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #FFFFFF;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.1);
}

footer {
    background: #0A0A0A;
    color: #E0E0E0;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

/* ============================================
   OLD HEADER BLOCK - RE-ENABLED FOR HERO SECTION
   ============================================ */

/* ============================================
   HEADER BLOCK
   ============================================ */
/* Container */
.im-header-block {
    background: #0A0A0A;
    width: 100%;
    padding: 34px 180px;
    box-sizing: border-box;
}

.im-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px;
}

/* Left Content */
.im-header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 555px;
    flex-shrink: 0;
}

.im-header-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: normal;
    color: #FFFFFF;
    margin: 0;
    white-space: pre-wrap;
}

.im-header-description {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: normal;
    color: #E0E0E0;
    margin: 0;
    white-space: pre-wrap;
}

/* Right Content */
.im-header-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.im-header-placeholder {
    width: 446px;
    height: 384px;
    background: #4C78A4;
    border-radius: 22px;
}

/* Buttons */
.im-header-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 374px;
    gap: 14px;
}

.im-btn {
    width: 180px;
    height: 56px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.im-btn-primary {
    background: #38BDF8;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
}

.im-btn-primary:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.im-btn-primary:active {
    transform: translateY(0);
}

.im-btn-secondary {
    background: rgba(14, 165, 233, 0.26);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.im-btn-secondary:hover {
    background: rgba(14, 165, 233, 0.35);
    border-color: rgba(56, 189, 248, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .im-header-block {
        padding: 40px 40px;
    }

    .im-header-container {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .im-header-content {
        max-width: 100%;
        align-items: center;
    }

    .im-header-title {
        font-size: 36px;
    }

    .im-header-description {
        font-size: 18px;
    }

    .im-header-placeholder {
        width: 380px;
        height: 320px;
    }

    .im-header-buttons {
        width: 100%;
        max-width: 374px;
    }
}

/* Mobile (<768px) */
@media (max-width: 768px) {
    .im-header-block {
        padding: 32px 20px;
    }

    .im-header-container {
        gap: 32px;
    }

    .im-header-title {
        font-size: 28px;
    }

    .im-header-description {
        font-size: 16px;
    }

    .im-header-placeholder {
        width: 100%;
        max-width: 340px;
        height: 280px;
    }

    .im-header-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .im-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   HERO BLOCK STYLES (UPDATED WITH ICONS)
   ============================================ */
/* Hero Section Container */
.im-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 180px 34px;
    overflow: hidden;
}

/* Background Image */
.im-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('/images/Hero%20photo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.im-hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.49);
}


/* Logo */
.im-hero-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.im-hero-logo-link:hover {
    transform: translateY(-2px);
}

.im-hero-logo-img {
    height: 58px;
    width: auto;
}



/* Desktop Navigation */
.im-hero-nav-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px;
    background: rgba(56, 189, 248, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.im-hero-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-width: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary, #E0E0E0);
    text-decoration: none;
    border-radius: 1000px;
    transition: all 0.3s ease;
}

.im-hero-nav-link:hover {
    color: var(--text-primary, #FFFFFF);
    background: rgba(0, 201, 255, 0.15);
}

.im-hero-nav-link-active {
    color: var(--text-primary, #FFFFFF);
    background: rgba(0, 201, 255, 0.1);
}


/* Mobile Menu Toggle */
.im-hero-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.im-hero-menu-toggle:hover {
    background: rgba(0, 201, 255, 0.1);
}

.im-hero-menu-toggle:active {
    transform: scale(0.95);
}

.im-hero-menu-icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.im-hero-menu-toggle[aria-expanded="true"] .im-hero-menu-icon-img {
    transform: rotate(90deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 201, 255, 0.8));
}

/* Mobile Navigation */
.im-hero-nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 100px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.im-hero-nav-mobile.im-hero-nav-mobile-active {
    transform: translateX(0);
}

.im-hero-nav-mobile-link {
    display: block;
    padding: 16px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary, #E0E0E0);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.im-hero-nav-mobile-link:hover {
    color: var(--text-primary, #FFFFFF);
    background: rgba(0, 201, 255, 0.1);
}

.im-hero-nav-mobile-link-active {
    color: var(--accent-primary, #00C9FF);
    background: rgba(0, 201, 255, 0.15);
}

/* Hero Content */
.im-hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 33px;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}

.im-hero-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.im-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.17;
    letter-spacing: -1px;
    color: var(--text-primary, #FFFFFF);
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0;
}

.im-hero-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-tertiary, #B0B0B0);
    max-width: 974px;
    margin: 0;
}

/* CTA Buttons */
.im-hero-cta-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.im-hero-btn-primary,
.im-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.im-hero-btn-primary {
    background: linear-gradient(135deg, #00C9FF 0%, #0066FF 100%);
    color: var(--text-primary, #FFFFFF);
    box-shadow: 0 8px 24px rgba(0, 201, 255, 0.3);
}

.im-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 201, 255, 0.4);
}

.im-hero-btn-primary:active {
    transform: translateY(0);
}

.im-hero-btn-secondary {
    background: rgba(0, 201, 255, 0.1);
    color: var(--accent-primary, #00C9FF);
    border: 1px solid rgba(0, 201, 255, 0.3);
}

.im-hero-btn-secondary:hover {
    background: rgba(0, 201, 255, 0.15);
    border-color: rgba(0, 201, 255, 0.5);
}

/* Scroll Indicator */
.im-hero-scroll-indicator {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.im-hero-scroll-indicator:hover {
    transform: translateY(4px);
}

.im-hero-scroll-indicator:hover .im-hero-scroll-arrow {
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(0, 201, 255, 0.8));
}

.im-hero-scroll-arrow {
    width: 24px;
    height: 48px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    animation: im-hero-bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes im-hero-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* ============================================
   HERO BLOCK RESPONSIVE STYLES
   ============================================ */
/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .im-hero-section {
        padding: 110px 80px 32px;
    }
    
    
    .im-hero-title {
        font-size: 40px;
        letter-spacing: -0.8px;
    }
    
    .im-hero-description {
        font-size: 18px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .im-hero-section {
        padding: 100px 24px 24px;
        min-height: 100vh;
    }
    
    
    /* Hide desktop nav, show mobile toggle */
    .im-hero-nav-desktop {
        display: none;
    }
    
    .im-hero-menu-toggle {
        display: flex;
    }
    
    /* Logo adjustments */
    .im-hero-logo-img {
        height: 24px;
    }
    
    
    /* Hero content */
    .im-hero-title {
        font-size: 24px;
        line-height: 1.31;
        letter-spacing: -0.6px;
    }
    
    .im-hero-description {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: -0.2px;
    }
    
    /* Hide secondary button on mobile */
    .im-hero-btn-secondary {
        display: none;
    }
    
    .im-hero-btn-primary {
        font-size: 14px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .im-hero-section {
        padding: 90px 20px 20px;
    }
    
    .im-hero-title {
        font-size: 22px;
    }
    
    .im-hero-description {
        font-size: 14px;
    }
    
    .im-hero-btn-primary {
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* ============================================
   STANDALONE HEADER - FIXED VERSION
   ============================================ */

/* Header Base - Полностью прозрачный */
.im-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.im-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 80px;
}

/* Logo */
.im-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 10;
}

.im-header-logo:hover {
    transform: translateY(-2px);
}

.im-header-logo-img {
    height: 58px;
    width: auto;
    transition: filter 0.3s ease;
}

.im-header-logo:hover .im-header-logo-img {
    filter: drop-shadow(0 0 16px rgba(0, 201, 255, 0.6));
}

/* Desktop Navigation Container */
.im-header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px;
    border-radius: 1000px;
}

/* Liquid Glass Background - БЕЗ БАГАЮЩЕЙ ЛИНИИ */
.im-header-nav-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.1) 0%,
        rgba(0, 201, 255, 0.06) 100%
    );
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: 1000px;
    border: 1px solid rgba(0, 201, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 1;
}

/* Animated Liquid Indicator - ИСПРАВЛЕН БАГ */
.im-header-nav-indicator {
    position: absolute;
    height: 38px;
    width: 100px;
    background: linear-gradient(
        135deg,
        rgba(0, 201, 255, 0.15) 0%,
        rgba(0, 102, 255, 0.1) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1000px;
    box-shadow: 
        0 4px 16px rgba(0, 201, 255, 0.2),
        inset 0 0 0 1px rgba(0, 201, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.im-header-nav-indicator.active {
    opacity: 1;
}

/* Navigation Links */
.im-header-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 38px;
    padding: 0 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #E0E0E0;
    text-decoration: none;
    border-radius: 1000px;
    z-index: 3;
    transition: color 0.3s ease;
}

.im-header-nav-link span {
    position: relative;
    transition: all 0.3s ease;
}

.im-header-nav-link:hover span {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(0, 201, 255, 0.6);
}

.im-header-nav-link.active span {
    color: #FFFFFF;
    font-weight: 600;
}

/* Mobile Hamburger - СПРАВА */
.im-header-hamburger {
    display: none;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.im-header-hamburger:hover {
    background: rgba(0, 201, 255, 0.1);
}

.im-header-hamburger:active {
    transform: scale(0.95);
}

.im-header-hamburger-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.im-header-hamburger[aria-expanded="true"] .im-header-hamburger-icon {
    transform: rotate(90deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(0, 201, 255, 1));
}

/* Mobile Dropdown - УСИЛЕННЫЙ BLUR */
.im-header-mobile-dropdown {
    position: fixed;
    top: 98px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: calc(100% - 48px);
    max-width: 500px;
    background: linear-gradient(
        145deg,
        rgba(11, 17, 32, 0.95) 0%,
        rgba(10, 10, 10, 0.92) 100%
    );
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(0, 201, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.im-header-mobile-dropdown.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Mobile Navigation */
.im-header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Mobile Links - БЕЗ НАЛОЖЕНИЙ */
.im-header-mobile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #E0E0E0;
    text-decoration: none;
    border-radius: 1000px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px);
    opacity: 0;
}

/* Staggered Animation */
.im-header-mobile-dropdown.active .im-header-mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.im-header-mobile-dropdown.active .im-header-mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.im-header-mobile-dropdown.active .im-header-mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

.im-header-mobile-dropdown.active .im-header-mobile-link:nth-child(3) {
    transition-delay: 0.2s;
}

.im-header-mobile-dropdown.active .im-header-mobile-link:nth-child(4) {
    transition-delay: 0.25s;
}

.im-header-mobile-link:hover {
    background: rgba(0, 201, 255, 0.15);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 201, 255, 0.3);
}

.im-header-mobile-link.im-header-mobile-active {
    background: linear-gradient(
        135deg,
        rgba(0, 201, 255, 0.25) 0%,
        rgba(0, 102, 255, 0.15) 100%
    );
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 
        0 8px 32px rgba(0, 201, 255, 0.4),
        inset 0 0 0 1px rgba(0, 201, 255, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .im-header-container {
        padding: 16px 40px;
    }
    
    .im-header-nav {
        gap: 16px;
    }
    
    .im-header-nav-link {
        min-width: 90px;
        font-size: 15px;
    }
    
    .im-header-nav-indicator {
        width: 90px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .im-header-container {
        padding: 20px 24px;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    /* Hide desktop nav */
    .im-header-nav {
        display: none;
    }
    
    /* Logo - СЛЕВА */
    .im-header-logo {
        order: 1;
        flex-shrink: 0;
    }
    
    /* Show hamburger - СПРАВА */
    .im-header-hamburger {
        display: flex;
        order: 2;
        flex-shrink: 0;
    }
    
    /* Logo adjustments */
    .im-header-logo-img {
        height: 40px;
    }
    
    /* Mobile dropdown adjustments */
    .im-header-mobile-dropdown {
        top: 88px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .im-header-container {
        padding: 16px 20px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .im-header-logo {
        flex-shrink: 0;
    }
    
    .im-header-logo-img {
        height: 32px;
    }
    
    .im-header-hamburger {
        flex-shrink: 0;
    }
    
    .im-header-mobile-dropdown {
        width: calc(100% - 32px);
        top: 72px;
        padding: 20px;
    }
    
    .im-header-mobile-link {
        font-size: 16px;
        padding: 14px 28px;
    }
}

