body {
    font-family: 'Montserrat', sans-serif;
    /* Глубокий, почти черный фон */
    background-color: #121212; 
    color: #e5e7eb; 
    line-height: 1.6;
    overflow-x: hidden;
}

/* Базовые адаптивные стили */
* {
    box-sizing: border-box;
}

/* Адаптивные контейнеры */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 3rem;
    }
}

/* Адаптивные сетки */
.responsive-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .responsive-grid {
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .responsive-grid {
        gap: 2rem;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .responsive-grid {
        gap: 2.5rem;
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Адаптивные отступы */
.responsive-padding {
    padding: 1rem;
}

@media (min-width: 640px) {
    .responsive-padding {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .responsive-padding {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .responsive-padding {
        padding: 3rem;
    }
}

/* Адаптивные размеры текста */
.responsive-text {
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .responsive-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .responsive-text {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .responsive-text {
        font-size: 1.25rem;
        line-height: 1.8;
    }
}

/* Более спокойный и "дорогой" оранжевый */
.accent-color {
    color: #E87A00;
}

.bg-accent {
    background-color: #E87A00;
}

.border-accent {
    border-color: #E87A00;
}

/* Убираем неон, делаем текст просто ярким */
.highlight-text {
    color: #E87A00;
}

/* Улучшенные кнопки с адаптивностью */
.btn-primary {
    background: linear-gradient(135deg, #E87A00, #ff9d29);
    color: white;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 2px solid #E87A00;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(232, 122, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9d29, #E87A00);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(232, 122, 0, 0.4);
    border-color: #ff9d29;
}

/* Адаптивные размеры кнопок */
@media (max-width: 640px) {
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 1025px) {
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/* Улучшенные карточки */
.card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(232, 122, 0, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #E87A00, #ff9d29);
    box-shadow: 0 0 15px rgba(232, 122, 0, 0.5);
    transition: all 0.3s ease;
}

.card:hover::before {
    width: 6px;
    box-shadow: 0 0 20px rgba(232, 122, 0, 0.7);
}

.card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: #E87A00;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 122, 0, 0.2);
}

/* Адаптивные размеры карточек */
@media (max-width: 640px) {
    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1025px) {
    .card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

/* Адаптивные иконки */
.icon-responsive {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 640px) {
    .icon-responsive {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (min-width: 768px) {
    .icon-responsive {
        width: 3rem;
        height: 3rem;
    }
}

@media (min-width: 1024px) {
    .icon-responsive {
        width: 3.5rem;
        height: 3.5rem;
    }
}

/* Анимации для иконок */
.card:hover .text-4xl {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Стиль для фона главного экрана с изображением и затемнением */
.hero-section {
    position: relative;
    background-image: url('photo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    max-height: 500px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 500px;
        max-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 600px;
        max-height: 700px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(2px);
}

/* Мобильные устройства - высокая версия */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 90vh !important;
        height: 90vh !important;
        max-height: 90vh !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-overlay {
        height: 90vh !important;
        max-height: 90vh !important;
    }
}

/* Адаптивные заголовки */
@media (max-width: 640px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }
    h4 { font-size: 1rem; }
}

@media (min-width: 641px) and (max-width: 1024px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

@media (min-width: 1025px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 2rem; }
    h4 { font-size: 1.75rem; }
}

/* Брутальные углы и границы */
.card, .bg-dark, .bg-darker {
    border-radius: 8px;
    border: 2px solid #333;
}

/* Адаптированные тени под фото-фон */
.bg-dark, .bg-darker {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Адаптированные hover эффекты */
.hover\:border-orange-500:hover {
    border-color: #E87A00;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(232, 122, 0, 0.2);
}

/* Адаптированные стили для заголовков секций */
.section-title {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #E87A00, #ff9d29);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(232, 122, 0, 0.4);
}

/* Адаптированные тени для текста под фото-фон */
.text-shadow-lg {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.text-shadow-2xl {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

/* Стили для градиентных блоков */
.bg-gradient-to-r {
    background: linear-gradient(to right, rgba(232, 122, 0, 0.1), rgba(255, 157, 41, 0.1));
}

/* Background color classes */
.bg-dark {
    background-color: #121212;
}

.bg-darker {
    background-color: #1f1f1f;
}

/* Адаптивные формы */
input, textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #374151;
    border-radius: 8px;
    background-color: #1f2937;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #E87A00;
    box-shadow: 0 0 0 3px rgba(232, 122, 0, 0.1);
}

/* Адаптивные изображения */
img, video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Адаптивные анимации */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшенная доступность */
@media (prefers-contrast: high) {
    .text-gray-400 {
        color: #d1d5db !important;
    }
    
    .bg-gray-800 {
        background-color: #1f2937 !important;
    }
}

/* Поддержка темной темы */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f0f0f;
        color: #f9fafb;
    }
}

/* Адаптивные отступы для секций */
@media (max-width: 640px) {
    section {
        padding: 2rem 0;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    section {
        padding: 3rem 0;
    }
}

@media (min-width: 1025px) {
    section {
        padding: 4rem 0;
    }
}

/* Адаптивные сетки для разных секций */
@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Адаптивные размеры иконок в карточках */
@media (max-width: 640px) {
    .card svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .card svg {
        width: 2rem;
        height: 2rem;
    }
}

@media (min-width: 1025px) {
    .card svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Принудительно десктопное отображение на мобильных */
@media (max-width: 1200px) {
    /* Принудительно устанавливаем десктопную ширину */
    body {
        min-width: 1200px !important;
        overflow-x: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Контейнер всегда 1200px */
    .container {
        max-width: 1200px !important;
        width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }
    
    /* Принудительно 3 колонки для всех сеток */
    .grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
    
    /* Секция с 4 колонками */
    .grid.grid-cols-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    /* Секция с 2 колонками */
    .grid.grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Фиксированные размеры для всех элементов */
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2.25rem !important; }
    h3 { font-size: 2rem !important; }
    h4 { font-size: 1.75rem !important; }
    
    /* Убираем лишние отступы - делаем как на ПК */
    section {
        padding: 2rem 0 !important;
        margin: 0 !important;
    }
    
    .card {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Фиксированные размеры кнопок */
    .btn-primary {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* Фиксированные размеры иконок */
    .card svg {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    /* Принудительно скрываем мобильные элементы */
    .mobile-only {
        display: none !important;
    }
    
    /* Принудительно показываем десктопные элементы */
    .desktop-only {
        display: block !important;
    }
    
    /* Высокая hero секция на мобильных */
    @media (max-width: 1200px) {
        .hero-section {
            min-height: 90vh !important;
            height: 90vh !important;
            max-height: 90vh !important;
            padding: 1rem 0 !important;
        }
        
        .hero-overlay {
            max-height: 90vh !important;
            height: 90vh !important;
            bottom: auto !important;
        }
    }
    
    /* Фиксированные размеры для header */
    header {
        padding: 0.5rem 0 !important;
        margin: 0 !important;
    }
    
    header h1 {
        font-size: 2rem !important;
    }
    
    /* Фиксированные размеры для навигации */
    nav a {
        font-size: 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    /* Фиксированные размеры для телефона */
    header a[href^="tel:"] {
        font-size: 1.125rem !important;
    }
    
    /* Убираем лишние отступы у всех элементов */
    .py-12, .py-16, .py-20, .py-24 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .py-20 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .mb-12, .mb-16, .mb-20 {
        margin-bottom: 1rem !important;
    }
    
    .mb-16 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Убираем лишние отступы у заголовков */
    .text-center {
        margin-bottom: 1rem !important;
    }
    
    /* Убираем лишние отступы у карточек */
    .bg-\[#121212\], .bg-\[#1f1f1f\] {
        padding: 1rem !important;
    }
    
    /* Убираем лишние отступы у иконок */
    .w-16, .w-20 {
        margin-bottom: 0.5rem !important;
    }
    
    /* Убираем лишние отступы у текста */
    .text-gray-400 {
        margin-top: 0.5rem !important;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    body {
        min-width: 1200px !important;
        transform: scale(0.8);
        transform-origin: top left;
    }
}

/* Стили для предотвращения мобильной адаптации */
@media (max-width: 1200px) {
    /* Отключаем все мобильные стили */
    * {
        font-size: inherit !important;
        line-height: inherit !important;
    }
    
    /* Принудительно устанавливаем десктопные размеры */
    .text-sm { font-size: 1rem !important; }
    .text-base { font-size: 1.125rem !important; }
    .text-lg { font-size: 1.25rem !important; }
    .text-xl { font-size: 1.5rem !important; }
    .text-2xl { font-size: 1.875rem !important; }
    .text-3xl { font-size: 2.25rem !important; }
    .text-4xl { font-size: 3rem !important; }
    .text-5xl { font-size: 3.75rem !important; }
    
    /* Принудительно устанавливаем десктопные отступы */
    .p-4 { padding: 1.5rem !important; }
    .p-6 { padding: 2rem !important; }
    .p-8 { padding: 3rem !important; }
    .py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
    .py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
    
    /* Принудительно устанавливаем десктопные margin */
    .mb-4 { margin-bottom: 1.5rem !important; }
    .mb-6 { margin-bottom: 2rem !important; }
    .mb-8 { margin-bottom: 3rem !important; }
    .mb-12 { margin-bottom: 4rem !important; }
    .mb-16 { margin-bottom: 5rem !important; }
    .mb-20 { margin-bottom: 6rem !important; }
}

/* Принудительное десктопное отображение - точная копия ПК */
@media (max-width: 1200px) {
    /* Принудительно устанавливаем точные десктопные размеры */
    .hero-section {
        min-height: 90vh !important;
        height: 90vh !important;
        max-height: 90vh !important;
        padding: 1rem 0 !important;
    }
    
    .hero-section h2 {
        font-size: 5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-section p {
        font-size: 1.5rem !important;
        margin-bottom: 3rem !important;
        max-width: 800px !important;
    }
    
    .hero-section .btn-primary {
        font-size: 1.25rem !important;
        padding: 1.5rem 3rem !important;
    }
    
    /* Header точная копия ПК */
    header {
        padding: 1.5rem 0 !important;
    }
    
    header h1 {
        font-size: 2.5rem !important;
    }
    
    nav a {
        font-size: 1.125rem !important;
        margin: 0 1.5rem !important;
    }
    
    header a[href^="tel:"] {
        font-size: 1.25rem !important;
    }
    
    header .btn-primary {
        font-size: 1rem !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    /* Секции точная копия ПК */
    section {
        padding: 5rem 0 !important;
    }
    
    .text-center h3 {
        font-size: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .text-center p {
        font-size: 1.25rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Карточки точная копия ПК */
    .card {
        padding: 2.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .card h4 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .card p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Иконки точная копия ПК */
    .card svg, .w-16, .w-20 {
        width: 3rem !important;
        height: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Сетки точная копия ПК */
    .grid {
        gap: 3rem !important;
    }
    
    /* Отступы точная копия ПК */
    .mb-16 { margin-bottom: 4rem !important; }
    .mb-8 { margin-bottom: 2rem !important; }
    .mb-6 { margin-bottom: 1.5rem !important; }
    .mb-4 { margin-bottom: 1rem !important; }
    
    /* Контейнер точная копия ПК */
    .container {
        padding: 0 3rem !important;
    }
}

