/* Уникальная цветовая схема: Темно-синяя с оранжевыми акцентами */
:root {
    --primary-color: #1e3a8a;         /* Темно-синий */
    --secondary-color: #ea580c;       /* Яркий оранжевый */
    --accent-color: #f97316;          /* Светло-оранжевый */
    --dark-color: #0a1628;            /* Очень глубокий темно-синий */
    --deep-blue: #0f172a;             /* Сверхглубокий синий */
    --midnight-blue: #020617;         /* Почти черный синий */
    --light-color: #f8fafc;           /* Очень светло-серый */
    --white-color: #ffffff;
    --text-dark: #1e293b;             /* Темно-серый с синим */
    --text-light: #64748b;            /* Серо-синий */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #ea580c 100%);
    --gradient-secondary: linear-gradient(135deg, #0a1628 0%, #f97316 100%);
    --gradient-accent: linear-gradient(135deg, #0f172a 0%, #fb923c 100%);
    
    /* Новые переменные для современного дизайна */
    --glass-effect: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --dark-glass: rgba(15, 23, 42, 0.8);
    --shadow-modern: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --border-radius: 16px;
    --spacing-unit: 1rem;
}

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    min-height: 100vh;
    font-weight: 400;
}

/* СОХРАНЯЕМ ВЕРХ - Header и Brand */
.navbar-container-9m2x7p {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--glass-effect) !important;
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--glass-border);
    z-index: 10000;
    padding: 0.6rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible !important;
}

.navbar-container-9m2x7p .navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible !important;
    box-sizing: border-box;
    position: relative;
    z-index: 10001;
}

.nav-menu-8x6v2j {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
    padding: 0.6rem 1.2rem;
    perspective: 1000px;
    overflow: visible !important;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 10002;
}

.nav-menu-8x6v2j li {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    overflow: visible !important;
    z-index: 10003;
}

.nav-menu-8x6v2j a {
    text-decoration: none;
    color: #1e3a8a !important;
    font-weight: 400;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    transform-origin: center bottom;
    overflow: visible !important;
    margin: 0 0.2rem;
    transform-style: preserve-3d;
    box-shadow: 0 1px 3px rgba(30, 58, 138, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
    filter: none !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 58, 138, 0.06);
    text-shadow: none;
    min-width: 70px;
    text-align: center;
    z-index: 10004;
}

.nav-menu-8x6v2j a:hover {
    color: #1e3a8a !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 
        0 0 16px rgba(234, 88, 12, 0.25),
        0 0 32px rgba(234, 88, 12, 0.15),
        0 4px 8px rgba(234, 88, 12, 0.1);
    transform: scale(1.25) translateY(-6px) translateZ(16px);
    z-index: 99999 !important;
    border: 1px solid rgba(234, 88, 12, 0.08) !important;
    text-shadow: 
        0 0 6px rgba(234, 88, 12, 0.4),
        0 0 12px rgba(234, 88, 12, 0.25);
    font-size: 0.9em;
    font-weight: 500 !important;
    border-radius: 8px;
    backdrop-filter: blur(16px) saturate(1.8);
    transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: elegantGlow 0.8s ease-out infinite;
    overflow: visible !important;
    clip: unset !important;
    clip-path: none !important;
    filter: brightness(1.05) saturate(1.15) !important;
    opacity: 1 !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.92) 40%, 
        rgba(234, 88, 12, 0.03) 70%,
        rgba(234, 88, 12, 0.06) 100%) !important;
    isolation: isolate;
    will-change: transform, z-index;
    contain: layout style paint;
}

@keyframes elegantGlow {
    0% {
        box-shadow: 
            0 0 16px rgba(234, 88, 12, 0.25),
            0 0 32px rgba(234, 88, 12, 0.15);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(234, 88, 12, 0.35),
            0 0 40px rgba(234, 88, 12, 0.2),
            0 6px 12px rgba(234, 88, 12, 0.15);
    }
    100% {
        box-shadow: 
            0 0 16px rgba(234, 88, 12, 0.25),
            0 0 32px rgba(234, 88, 12, 0.15);
    }
}

.nav-menu-8x6v2j:hover a:not(:hover) {
    transform: scale(0.9) translateY(1px);
    opacity: 0.6 !important;
    filter: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(30, 58, 138, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
    color: #64748b !important;
    z-index: 1 !important;
}

/* Brand секция */
.brand-container-2w8q5j {
    padding: 3rem 2rem 1.8rem;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.92) 0%, 
        rgba(30, 58, 138, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    backdrop-filter: blur(24px) saturate(1.1);
    border-bottom: 1px solid var(--glass-border);
}

.brand-container-2w8q5j::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="brandGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="white" stroke-width="0.08" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23brandGrid)"/></svg>');
    z-index: 0;
    animation: etherealBrandFlow 40s ease infinite;
}

@keyframes etherealBrandFlow {
    0%, 100% {
        opacity: 0.03;
        transform: translateX(0) translateY(0) scale(1);
    }
    50% {
        opacity: 0.05;
        transform: translateX(3px) translateY(-1px) scale(1.01);
    }
}

.brand-inner-content {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brand-logo-section-4z5k8r {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: fadeInUp 2s ease-out;
}

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

.brand-logo-section-4z5k8r img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(30, 58, 138, 0.06);
    backdrop-filter: blur(8px);
}

.brand-logo-section-4z5k8r img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05),
                0 0 12px rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.2);
}

.brand-name-7q1m4n {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.15),
        0 0 12px rgba(234, 88, 12, 0.15);
    margin: 0;
    letter-spacing: 0.8px;
    transition: all 0.35s ease;
}

.brand-name-7q1m4n:hover {
    color: rgba(249, 115, 22, 0.95);
    text-shadow: 
        0 0 15px rgba(249, 115, 22, 0.5),
        0 0 30px rgba(234, 88, 12, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
}

.brand-tagline-3x9w6k {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.4px;
    opacity: 0.8;
}

/* ПОЛНОСТЬЮ НОВЫЙ ДИЗАЙН - Современный минимализм */

/* Hero секция - Карточный дизайн */
.hero-container-7w4e9r {
    padding: 6rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.hero-inner-content {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-modern);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-inner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.hero-content-2q8x5n {
    text-align: left;
    color: white;
}

.hero-title-4m9z3p {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle-6k7j1v {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-8n3w5x {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-8n3w5x:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-modern);
    filter: brightness(1.1);
}

.hero-image-container {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container::before {
    content: '🏢';
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-modern);
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-container img.loaded {
    opacity: 1;
}

/* About секция - Сетка карточек */
.about-container-9j4n8k {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
}

.about-inner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content-7p2v5w {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.about-description-5x9k2j {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 58, 138, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-container {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container::before {
    content: '🎯';
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image-container img.loaded {
    opacity: 1;
}

/* Services - Модульные карточки с изображениями */
.services-container-8w2e5k {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
}

.section-title-3m8q6r {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
}

.section-title-3m8q6r::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.service-card-2q8v5m {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-2q8v5m::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card-2q8v5m:hover::before {
    transform: scaleX(1);
}

.service-card-2q8v5m:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-modern);
}

.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(249, 115, 22, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-container::before {
    content: '📸';
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.8);
    position: relative;
    z-index: 2;
    opacity: 0;
}

.service-image.loaded {
    opacity: 1;
}

.service-image.loaded + .service-image-container::before {
    opacity: 0;
}

.service-card-2q8v5m:hover .service-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.service-card-2q8v5m .service-icon,
.service-card-2q8v5m .service-title-6r9p3j,
.service-card-2q8v5m .service-description-4x7k2n,
.service-card-2q8v5m .service-features {
    padding: 0 2.5rem;
    margin: 0;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 2.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
    margin-top: -30px;
    box-shadow: var(--shadow-card);
}

.service-title-6r9p3j {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.service-description-4x7k2n {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Contact секция - Современная форма */
.contact-container-8r4j6m {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
}

.contact-content-7x4j2p {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-modern);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-5w8m3j h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-item-3j9r6k {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(30, 58, 138, 0.2);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.contact-icon-2w7k9m {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.contact-details h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-9k2x8p h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.form-group-5j8w2r {
    margin-bottom: 1.5rem;
}

.form-group-5j8w2r label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group-5j8w2r input,
.form-group-5j8w2r textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-5j8w2r input::placeholder,
.form-group-5j8w2r textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group-5j8w2r input:focus,
.form-group-5j8w2r textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.submit-button-6w9j4x {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.submit-button-6w9j4x:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-modern);
    filter: brightness(1.1);
}

/* Footer - Минималистичный */
.footer-container-3p2k6x {
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-content-3p2k6x {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-link-2k7x9j {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link-2k7x9j:hover {
    color: var(--accent-color);
}

.footer-bottom-4x7k2n {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.6);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-inner-content {
        padding: 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content-2q8x5n {
        text-align: center;
    }
    
    .hero-image-container img {
        height: 250px;
    }
    
    .about-inner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid-7j4n9x {
        grid-template-columns: 1fr;
    }
    
    .contact-content-7x4j2p {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .nav-menu-8x6v2j {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .nav-menu-8x6v2j a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .brand-name-7q1m4n {
        font-size: 2rem;
    }
    
    .hero-title-4m9z3p {
        font-size: 2.5rem;
    }
    
    .section-title-3m8q6r {
        font-size: 2rem;
    }
    
    .service-image-container {
        height: 180px;
    }
    
    .service-icon {
        margin: 1rem 2rem;
        margin-top: -25px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .service-card-2q8v5m .service-icon,
    .service-card-2q8v5m .service-title-6r9p3j,
    .service-card-2q8v5m .service-description-4x7k2n {
        padding: 0 2rem;
    }
    
    .service-features {
        padding: 0 2rem 2rem 2rem;
    }
    
    .team-grid-4j7n2x {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-image-container {
        height: 200px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .team-name-2w7j5k {
        font-size: 1.3rem;
    }
    
    .contact-content-7x4j2p {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .nav-menu-8x6v2j {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .nav-menu-8x6v2j a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .brand-name-7q1m4n {
        font-size: 2rem;
    }
    
    .hero-title-4m9z3p {
        font-size: 2.5rem;
    }
    
    .section-title-3m8q6r {
        font-size: 2rem;
    }
    
    /* Социальные сети адаптивность */
    .footer-connect-section {
        gap: 1.5rem;
    }
    
    .social-links-container {
        gap: 0.6rem;
    }
    
    .social-link-4x7k2n {
        padding: 0.5rem 0.6rem;
    }
    
    .portfolio-footer-button {
        margin-top: 0.8rem;
        padding-top: 1.2rem;
    }
}

/* Cookie Banner - Современный дизайн */
#cookie-banner-3j9k7m {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-modern);
    z-index: 10000;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner-3j9k7m.cookie-banner-hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.cookie-content-8x4j2p {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text-2w9m5k {
    flex: 1;
    min-width: 250px;
}

.cookie-text-2w9m5k p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions-6j3k8r {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept-5w8j3k {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    min-width: 100px;
}

.cookie-accept-5w8j3k:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-modern);
    filter: brightness(1.1);
}

.cookie-learn-more-4x7k2n {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.cookie-learn-more-4x7k2n:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(249, 115, 22, 0.1);
    text-decoration: none;
}

/* Адаптивность для Cookie Banner */
@media (max-width: 768px) {
    #cookie-banner-3j9k7m {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .cookie-content-8x4j2p {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions-6j3k8r {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-accept-5w8j3k,
    .cookie-learn-more-4x7k2n {
        flex: 1;
        text-align: center;
    }
}

/* Team секция - Новые стили */
.team-container-6w3k8r {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
}

.team-grid-4j7n2x {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member-card-8k5w9m {
    background: var(--glass-effect);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-member-card-8k5w9m::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member-card-8k5w9m:hover::before {
    transform: scaleX(1);
}

.team-member-card-8k5w9m:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-modern);
}

.team-image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(249, 115, 22, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-container::before {
    content: '👤';
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    opacity: 0;
}

.team-image.loaded {
    opacity: 1;
}

.team-image.loaded + .team-image-container::before {
    opacity: 0;
}

.team-member-card-8k5w9m:hover .team-image {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.team-info {
    padding: 2rem;
}

.team-name-2w7j5k {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.team-role-9x3m8r {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description-5k2w7j {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Обновляем кнопку в футере */
.portfolio-button-footer-8w2k5x {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-button-footer-8w2k5x:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-modern);
    filter: brightness(1.1);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

/* Социальные сети в футере */
.footer-connect-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link-4x7k2n {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.social-link-4x7k2n:hover {
    color: var(--accent-color);
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateX(4px);
}

.social-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.social-name {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.portfolio-footer-button {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

/* Удаляем старые Portfolio стили */

/* Адаптивность */
@media (max-width: 768px) {
    .team-grid-4j7n2x {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-image-container {
        height: 200px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .team-name-2w7j5k {
        font-size: 1.3rem;
    }
    
    .section-title-3m8q6r {
        font-size: 2rem;
    }
}
  