/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* КРИТИЧЕСКИЕ СТИЛИ ДЛЯ ВИДИМОСТИ КОНТЕНТА */
#blocks-container {
    position: relative !important;
    z-index: 100 !important;
    min-height: 100vh;
}

main {
    position: relative !important;
    z-index: 50 !important;
}

section {
    position: relative !important;
    z-index: 101 !important;
    padding: 120px 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

section:first-child {
    padding-top: 140px !important;
}

.hero-container,
.section-container {
    position: relative !important;
    z-index: 102 !important;
}

/* ПРИНУДИТЕЛЬНОЕ ОТОБРАЖЕНИЕ АНИМИРУЕМЫХ ЭЛЕМЕНТОВ */
.animate-on-scroll {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Custom cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(3);
    background: #ff0080;
}

/* Scroll Progress */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10000;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(45deg, #00ff88, #0088ff, #ff0080);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    width: 0%;
    transition: width 0.1s ease;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10 !important;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -15 !important;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #00ff88, #0088ff);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -20 !important;
}

.particle {
    position: absolute;
    background: #00ff88;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-move 20s linear infinite;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(45deg, #00ff88, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
    color: #999999;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff88, #0088ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #00ff88;
}

/* =============================================== */
/* НОВОЕ УЛУЧШЕННОЕ МОБИЛЬНОЕ МЕНЮ */
/* =============================================== */

/* Кнопка гамбургер */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2001 !important;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Анимация гамбургера в крестик */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ffffff;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #ffffff;
}

/* НОВОЕ УЛУЧШЕННОЕ МОБИЛЬНОЕ МЕНЮ */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    
    /* Современный glassmorphism фон */
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 136, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
        rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(30px) !important;
    
    z-index: 1999 !important;
    
    /* Состояние по умолчанию - скрыто */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.05);
    
    /* Плавная анимация */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Активное состояние меню */
.mobile-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: scale(1) !important;
}

/* Анимация фонового размытия */
.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 136, 255, 0.04) 0%, transparent 50%);
    animation: floatingGradient 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes floatingGradient {
    0% {
        background: 
            radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(0, 136, 255, 0.04) 0%, transparent 50%);
    }
    100% {
        background: 
            radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    }
}

/* Навигационные ссылки - без заголовка */
.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 60px; /* Отступ от верха */
}

.mobile-nav-link {
    display: flex !important;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    /* Базовый фон */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    
    /* Анимация появления */
    opacity: 0;
    transform: translateY(30px);
}

/* Анимации появления для каждой ссылки */
.mobile-menu.active .mobile-nav-link:nth-child(1) { animation: slideUp 0.6s ease-out 0.1s forwards; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { animation: slideUp 0.6s ease-out 0.2s forwards; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { animation: slideUp 0.6s ease-out 0.3s forwards; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { animation: slideUp 0.6s ease-out 0.4s forwards; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { animation: slideUp 0.6s ease-out 0.5s forwards; }
.mobile-menu.active .mobile-nav-link:nth-child(6) { animation: slideUp 0.6s ease-out 0.6s forwards; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Иконки */
.menu-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Контент ссылки */
.menu-link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-link-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.menu-link-desc {
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    line-height: 1.3;
}

/* Стрелка */
.menu-arrow {
    color: #666666;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Hover эффекты для обычных ссылок */
.mobile-nav-link:not(.cta-link):hover,
.mobile-nav-link:not(.cta-link):focus {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 136, 255, 0.12) 100%) !important;
    border-color: rgba(0, 255, 136, 0.3) !important;
    transform: translateX(8px) !important;
}

.mobile-nav-link:not(.cta-link):hover .menu-icon,
.mobile-nav-link:not(.cta-link):focus .menu-icon {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    transform: scale(1.1);
}

.mobile-nav-link:not(.cta-link):hover .menu-arrow,
.mobile-nav-link:not(.cta-link):focus .menu-arrow {
    color: #00ff88;
    transform: translateX(6px);
}

/* CTA ссылка - специальное оформление */
.mobile-nav-link.cta-link {
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%) !important;
    border: 2px solid transparent !important;
    color: #000000 !important;
    margin-top: 8px;
    position: relative;
}

.mobile-nav-link.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff0080 0%, #00ff88 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: -1;
}

.mobile-nav-link.cta-link:hover::before,
.mobile-nav-link.cta-link:focus::before {
    opacity: 1;
}

.mobile-nav-link.cta-link:hover,
.mobile-nav-link.cta-link:focus {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3) !important;
}

.mobile-nav-link.cta-link .menu-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.mobile-nav-link.cta-link .menu-link-title {
    color: #000000;
}

.mobile-nav-link.cta-link .menu-link-desc {
    color: rgba(0, 0, 0, 0.7);
}

.mobile-nav-link.cta-link .menu-arrow {
    color: #000000;
}

/* Контактная информация */
.menu-footer {
    margin-top: 32px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.6s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .menu-footer {
    animation: slideUp 0.6s ease-out 0.8s forwards;
}

.contact-info {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
}

.contact-phone {
    color: #00ff88;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.05);
}

/* Кнопка закрытия */
.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

/* =============================================== */
/* КОНЕЦ НОВОГО МОБИЛЬНОГО МЕНЮ */
/* =============================================== */

/* Общие стили для кнопок */
.btn-primary {
    background: linear-gradient(45deg, #00ff88, #0088ff);
    color: #000000;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0080, #00ff88);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    color: #ffffff;
}

.btn-secondary {
    color: #ffffff;
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-3px);
}

/* Общие стили для контейнеров секций */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 102;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #999999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 100px 50px 50px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: #999999;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff88;
}

.footer-photo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border: 2px solid rgba(0, 255, 136, 0.3);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.footer-photo::before {
    content: '📸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666666;
    font-size: 24px;
}

/* Enhanced footer */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact:hover {
    color: #00ff88;
}

.contact-icon {
    font-size: 16px;
}

.work-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999999;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 50px;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Анимации */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particle-move {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Интерактивные элементы */
.interactive:hover {
    cursor: none;
}

/* =============================================== */
/* АДАПТИВНЫЕ ИСПРАВЛЕНИЯ ДЛЯ МОБИЛЬНОГО МЕНЮ */
/* =============================================== */

/* Стандартные экраны */
@media (max-width: 768px) {
    /* МОБИЛЬНАЯ НАВИГАЦИЯ */
    .nav {
        padding: 15px 20px;
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(25px) !important;
    }

    /* Скрываем обычные ссылки навигации */
    .nav-links {
        display: none !important;
    }

    /* Показываем кнопку гамбургер */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Скрываем подзаголовок логотипа */
    .logo-subtitle {
        display: none;
    }

    /* Настройки мобильного меню */
    .mobile-menu {
        padding: 20px;
    }

    .mobile-menu-content {
        max-width: 100%;
    }

    /* Основные стили */
    section {
        padding: 80px 0 !important;
    }

    section:first-child {
        padding-top: 100px !important;
    }

    .section-container {
        padding: 0 20px;
    }

    .footer {
        padding: 60px 20px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 18px;
    }
}

/* Маленькие экраны */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 15px;
    }

    .mobile-menu-content {
        margin-top: 40px;
        gap: 12px;
    }
    
    .mobile-nav-link {
        font-size: 16px;
        padding: 16px 20px;
        gap: 16px;
    }

    .menu-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .menu-link-title {
        font-size: 16px;
    }

    .menu-link-desc {
        font-size: 12px;
    }

    .menu-arrow {
        font-size: 16px;
    }

    .contact-phone {
        font-size: 16px;
    }
}

/* Очень маленькие экраны (iPhone SE и подобные) */
@media (max-width: 375px) and (max-height: 667px) {
    .mobile-menu {
        padding: 10px;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .mobile-menu-content {
        margin-top: 20px;
        gap: 10px;
    }

    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 15px;
        gap: 14px;
    }

    .menu-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .menu-link-title {
        font-size: 15px;
    }

    .menu-link-desc {
        font-size: 11px;
    }

    .menu-arrow {
        font-size: 14px;
    }

    .menu-footer {
        margin-top: 16px;
        padding-top: 16px;
    }

    .contact-info {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .contact-phone {
        font-size: 14px;
        padding: 6px 12px;
    }

    .menu-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Высокие экраны - больше пространства */
@media (min-height: 800px) {
    .mobile-menu {
        padding: 60px 20px;
    }

    .mobile-menu-content {
        margin-top: 80px;
        gap: 20px;
        max-width: 450px;
    }

    .mobile-nav-link {
        padding: 24px 28px;
        font-size: 20px;
        gap: 24px;
        border-radius: 20px;
    }

    .menu-icon {
        width: 52px;
        height: 52px;
        font-size: 26px;
        border-radius: 14px;
    }

    .menu-link-title {
        font-size: 20px;
    }

    .menu-link-desc {
        font-size: 15px;
    }

    .menu-arrow {
        font-size: 22px;
    }

    .menu-footer {
        margin-top: 40px;
        padding-top: 32px;
    }

    .contact-info {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-phone {
        font-size: 20px;
        padding: 12px 20px;
    }

    .menu-close {
        top: 32px;
        right: 32px;
        width: 56px;
        height: 56px;
        font-size: 28px;
        border-radius: 16px;
    }
}

/* Очень высокие экраны (планшеты в портретной ориентации) */
@media (min-height: 1000px) {
    .mobile-menu {
        padding: 80px 20px;
    }

    .mobile-menu-content {
        margin-top: 100px;
        gap: 24px;
        max-width: 500px;
    }

    .mobile-nav-link {
        padding: 28px 32px;
        font-size: 22px;
        gap: 28px;
        border-radius: 24px;
    }

    .menu-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        border-radius: 16px;
    }

    .menu-link-title {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .menu-link-desc {
        font-size: 16px;
    }

    .menu-arrow {
        font-size: 24px;
    }

    .menu-footer {
        margin-top: 48px;
        padding-top: 40px;
    }

    .contact-info {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .contact-phone {
        font-size: 22px;
        padding: 16px 24px;
        border-radius: 12px;
    }

    .menu-close {
        top: 40px;
        right: 40px;
        width: 64px;
        height: 64px;
        font-size: 32px;
        border-radius: 20px;
    }
}

/* Ландшафтная ориентация на мобильных */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu {
        padding: 10px 20px;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .mobile-menu-content {
        margin-top: 10px;
        gap: 8px;
        max-width: 100%;
    }

    .mobile-nav-link {
        padding: 12px 16px;
        font-size: 14px;
        gap: 12px;
    }

    .menu-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .menu-link-title {
        font-size: 14px;
    }

    .menu-link-desc {
        font-size: 10px;
    }

    .menu-arrow {
        font-size: 12px;
    }

    .menu-footer {
        margin-top: 12px;
        padding-top: 12px;
    }

    .contact-info {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .contact-phone {
        font-size: 12px;
        padding: 4px 8px;
    }

    .menu-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}