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

:root {
    /* Minimal Dark Theme - Grayscale with subtle accent */
    --primary-color: #ffffff;
    --accent-color: #d4d4d4;
    --text-color: #e5e5e5;
    --text-light: #a3a3a3;
    --text-dark: #737373;
    --bg-color: #0a0a0a;
    --bg-light: #171717;
    --bg-dark: #000000;
    --bg-card: #1a1a1a;
    --border-color: #262626;
    --border-light: #404040;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.7);
}

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

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(30, 58, 138, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.8);
    }
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.top-bar {
    width: 100%;
    height: 1px;
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: none;
}

.bottom-bar {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1001;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-contact-bar {
    display: none;
    background: #000000;
    color: var(--text-light);
    padding: 12px 0;
    margin-top: 3px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info span {
    color: var(--text-light);
}

.contact-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--text-light);
}

.top-actions {
    display: flex;
    gap: 1rem;
}


/* Navigation */
.navbar {
    background: #000000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo:hover {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    position: relative;
    border-radius: 6px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 80%;
    background: var(--text-color);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu a {
    padding: 0.75rem 1.5rem;
    display: block;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.submenu a:hover {
    background: var(--bg-light);
    color: var(--text-color);
    padding-left: 2rem;
}

.menu-toggle span {
    background: var(--text-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: #000000;
    color: white;
    padding: 100px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.7;
    z-index: 0;
    clip-path: inset(0 0 5% 0);
    filter: brightness(0.8) contrast(1.1);
}

@media (max-width: 768px) {
    .hero-background-video {
        width: 100%;
        height: auto;
        min-height: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center center;
        clip-path: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .hero {
        min-height: 100vh;
        overflow: hidden;
        position: relative;
        padding: 140px 0 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-background-overlay {
        overflow: hidden;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .hero-background-overlay::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    }
    
    .hero-content {
        transform: none;
        padding-top: 0;
        align-items: center;
        justify-content: flex-start;
        margin-top: 0;
        flex-direction: column;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 1rem;
        order: 1;
    }
    
    .hero-title {
        text-shadow: 
            0 0 25px rgba(0, 0, 0, 0.98),
            0 0 50px rgba(0, 0, 0, 0.9),
            0 0 75px rgba(0, 0, 0, 0.8),
            0 5px 10px rgba(0, 0, 0, 0.98),
            2px 2px 5px rgba(0, 0, 0, 0.95),
            0 0 0 4px rgba(0, 0, 0, 0.6);
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 3.5rem;
        order: 2;
    }
    
    .hero-description {
        margin-top: 0;
        margin-bottom: 0;
        order: 3;
    }
    
    .hero-actions {
        margin-top: 60rem;
        order: 4;
        padding-top: 0;
        margin-bottom: 2rem;
    }
    
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 70px;
        padding-bottom: 120px;
    }
    
    .hero-content {
        height: auto;
        min-height: auto;
    }
}

.hero-background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}


.hero-content {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
    animation: fadeInUpHero 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    bottom: -20%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-badge {
    display: none;
    padding: 12px 29px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 1.32rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 7.2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    text-shadow: 
        0 0 30px rgba(0, 0, 0, 0.95),
        0 0 60px rgba(0, 0, 0, 0.8),
        0 0 90px rgba(0, 0, 0, 0.7),
        0 6px 12px rgba(0, 0, 0, 0.95),
        3px 3px 6px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3rem;
    margin-top: 24rem;
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7),
        0 2px 6px rgba(0, 0, 0, 0.9),
        1px 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    width: 280px;
    min-width: 280px;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.9rem !important;
    padding: 16px 32px !important;
    font-weight: 700 !important;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff !important;
    color: #000000 !important;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem !important;
    opacity: 1 !important;
    text-shadow: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary.large {
    padding: 16px 40px;
    font-size: 1.1rem;
    color: #000000 !important;
    background: #ffffff !important;
    font-weight: 700 !important;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff !important;
    color: #000000 !important;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    color: var(--text-light);
    font-size: 0.85rem;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 1;
        top: 6px;
    }
    50% {
        opacity: 0.3;
        top: 12px;
    }
}

.hero-subtitle {
    font-size: 4.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    position: relative;
    z-index: 1;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUpHero 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
    opacity: 0;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.services-motto {
    max-width: 800px;
    margin: 0 auto;
}

.motto-title {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.motto-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}

/* Statistics Section */
.statistics {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 3rem 1.8rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(100%) brightness(0) invert(1);
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.14rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Main Services Section */
.main-services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.main-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--text-color);
    transition: width 0.3s ease;
}

.services-header:hover .section-label::after {
    width: 80px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.1s;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: var(--bg-light);
}


.service-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-color);
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    width: fit-content;
}

.service-link:hover {
    gap: 0.8rem;
    color: var(--bg-color);
    background: var(--text-color);
    border-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.service-link:active {
    transform: translateY(0);
}

.service-link .arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.service-link:hover .arrow {
    transform: translateX(4px);
}

.service-detailed-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-detailed-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-detailed-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-detailed-card {
    border-left-color: var(--primary-color);
}

.service-detailed-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
    border-left-width: 6px;
    background: var(--bg-card);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-image {
    width: 100%;
    height: 180px;
    background: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-detailed-card:hover .service-image img {
    transform: scale(1.1) translateZ(0);
    filter: drop-shadow(0 8px 16px rgba(30, 58, 138, 0.3));
}

.service-detailed-card:nth-child(1) .service-image {
    background: #000000;
}

.service-detailed-card:nth-child(2) .service-image {
    background: #000000;
}

.service-detailed-card:nth-child(3) .service-image {
    background: #000000;
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: auto;
    line-height: 1.5;
    flex-grow: 1;
}

.service-detail-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.service-detail-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    color: white;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 1;
}

.partners::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.partners-header {
    text-align: center;
    margin-bottom: 1rem;
}

.partners-company {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.partner-item {
    background: var(--bg-card);
    padding: 0.5rem !important;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 200px;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-item:hover::before {
    transform: scaleX(1);
}

.partner-item:hover {
    transform: translateY(-10px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: var(--bg-light);
}

.partners-grid .partner-item .partner-logo-img {
    width: 98% !important;
    height: 98% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bro logo - такой же размер как Sigma */
.partners-grid .partner-item:first-child {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    position: relative !important;
}

.partners-grid .partner-item:first-child .partner-logo-img {
    width: 200% !important;
    height: 200% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    flex-shrink: 0 !important;
    margin: -30px 0 0 0 !important;
}

/* Sigma logo */
.partners-grid .partner-item:nth-child(2) .partner-logo-img {
    width: 75% !important;
    height: 75% !important;
}

.partner-item:hover .partner-logo-img {
    opacity: 1;
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

.partners-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 2rem auto 3rem;
    line-height: 1.7;
}

.partners-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo-hexagon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.partner-logo-img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.partner-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.partner-learn-more {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.partner-learn-more:hover {
    color: #dc2626;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.partner-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.partner-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.partner-logo-item:hover::before {
    left: 100%;
}

.partner-logo-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-logo-img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.partner-logo-item:hover .partner-logo-img {
    opacity: 1;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.about-grid {
    display: block;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content strong {
    color: var(--text-color);
    font-weight: 400;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    justify-content: center;
}

.check-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.about-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 40px 0 100px;
    background: #000000;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 0;
}

.contact .container {
    max-width: 100%;
    padding: 0 20px;
}

.contact-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-left {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}

.contact-info-form-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
}

.contact-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: sticky;
    top: 120px;
    height: fit-content;
    overflow: visible;
    flex-shrink: 0;
    min-width: 500px;
}

.contact-image {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.01);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 300px;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    padding-bottom: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 100%;
    width: 800px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-grow: 1;
    justify-content: space-between;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form textarea {
    min-height: 350px;
    resize: vertical;
    flex-grow: 1;
}

.contact-form .btn-primary,
.contact-form button.btn-primary,
.contact-form .btn-primary.large,
.contact-form button.btn-primary.large {
    width: 100% !important;
    margin-top: 3.5rem !important;
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.contact-form .btn-primary:hover,
.contact-form button.btn-primary:hover,
.contact-form .btn-primary.large:hover,
.contact-form button.btn-primary.large:hover {
    background: #ffffff !important;
    color: #000000 !important;
    opacity: 0.9 !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

.contact-form-wrapper .btn-primary.large,
.contact-form-wrapper button.btn-primary.large {
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    color: #000000 !important;
    background: #ffffff !important;
    font-weight: 700 !important;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(100%) brightness(0) invert(1);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.contact-info-card a:hover {
    color: var(--text-color) !important;
    text-decoration: underline;
}

.contact-info-card a[href^="tel:"] {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg-light);
    color: var(--text-color);
    transition: all 0.3s ease;
    resize: none;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    padding: 10px 14px;
    font-size: 0.85rem;
}

.form-group input:nth-of-type(1) {
    animation-delay: 0.1s;
}

.form-group input:nth-of-type(2) {
    animation-delay: 0.2s;
}

.form-group textarea {
    animation-delay: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-light);
    background: var(--bg-color);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.submit-button,
button.submit-button,
button[type="submit"].submit-button,
button[type="submit"],
form button,
form .submit-button,
.contact-form-section button,
.contact-form-section .submit-button {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    padding: 16px 42px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: var(--shadow-md) !important;
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 1 !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.submit-button *,
button.submit-button *,
button[type="submit"] * {
    color: #000000 !important;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
    pointer-events: none;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover,
button.submit-button:hover,
button[type="submit"]:hover,
form button:hover,
form .submit-button:hover,
.contact-form-section button:hover,
.contact-form-section .submit-button:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    opacity: 0.9 !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

.submit-button:hover *,
button.submit-button:hover *,
button[type="submit"]:hover * {
    color: #000000 !important;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-color);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-color);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-dark);
}

/* Service Pages Styles */
.service-hero {
    background: #000000;
    color: var(--text-color);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.service-hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.service-hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

.service-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 300;
}

.service-details {
    padding: 80px 0;
    background: var(--bg-color);
}

.service-details-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-info-block {
    margin-bottom: 4rem;
    text-align: center;
}

.service-info-block h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-info-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--text-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
    background: var(--bg-light);
}

.feature-item .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.9;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) translateY(-5px) rotate(5deg);
    opacity: 1;
}

.feature-item h3 {
    font-size: 1.4rem !important;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600 !important;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem !important;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Service Features Highlight - 3 cards layout */
.service-features-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.feature-highlight-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--text-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.feature-highlight-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-highlight-card:hover::before {
    transform: scaleX(1);
}

.feature-highlight-card:hover::after {
    opacity: 1;
}

.feature-highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
    background: var(--bg-light);
}

.feature-highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.9;
}

.feature-highlight-card:hover .feature-highlight-icon {
    transform: scale(1.15) translateY(-5px) rotate(5deg);
    opacity: 1;
}

.feature-highlight-card h3 {
    font-size: 1.4rem !important;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600 !important;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.feature-highlight-card:hover h3 {
    color: var(--text-color);
}

.feature-highlight-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem !important;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Service Why Section */
.service-why-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.service-why-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.service-benefits-list,
.service-benefits {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.service-benefits-list li,
.service-benefits li {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    padding: 1rem 1.5rem 1rem 2.5rem;
    position: relative;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-benefits-list li:hover,
.service-benefits li:hover {
    transform: translateX(5px);
    border-color: var(--border-light);
    background: var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-benefits-list li::before,
.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: var(--bg-color);
    text-align: center;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button-service {
    display: inline-block;
    padding: 16px 42px;
    background: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button-service:hover {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* About Gallery Section */
.about-gallery {
    padding: 80px 0;
    background: var(--bg-color);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    padding: 16px 42px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.cta-button:hover {
    background: transparent;
    border-color: var(--text-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--text-color);
}

/* Contact Page Styles */
.contact-page-wrapper {
    padding: 120px 0 80px;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.contact-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left-width: 6px;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(100%) brightness(0) invert(1);
}

.contact-item-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-item-card a {
    color: var(--text-light) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.contact-item-card a:hover {
    color: var(--text-color) !important;
    text-decoration: underline;
}

.contact-item-card a:visited {
    color: var(--text-light) !important;
}

.contact-item-card a:link {
    color: var(--text-light) !important;
}

.contact-item-card p a {
    color: var(--text-light) !important;
}

.contact-item-card a[href^="tel:"] {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.contact-item-card a[href^="tel:"]:hover {
    color: var(--text-color) !important;
    text-decoration: underline !important;
}

.contact-item-card a[href^="tel:"]:visited {
    color: var(--text-light) !important;
}

.contact-item-card a[href^="tel:"]:link {
    color: var(--text-light) !important;
}

/* Глобальный стиль для всех tel: ссылок на странице контактов */
.contact-page-wrapper a[href^="tel:"],
.contact-info-section a[href^="tel:"],
.contact-items-grid a[href^="tel:"],
section.service-details a[href^="tel:"] {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.contact-page-wrapper a[href^="tel:"]:hover,
.contact-info-section a[href^="tel:"]:hover,
.contact-items-grid a[href^="tel:"]:hover,
section.service-details a[href^="tel:"]:hover {
    color: var(--text-color) !important;
    text-decoration: underline !important;
}

.contact-form-section {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-top: 0;
}

.contact-form-section .submit-button,
.contact-form-section button.submit-button,
.contact-form .submit-button,
.contact-form button.submit-button,
button[type="submit"].submit-button,
button[type="submit"],
.contact-form-section button[type="submit"],
.contact-form button[type="submit"] {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 1 !important;
    text-shadow: none !important;
    z-index: 10 !important;
    position: relative !important;
}

.contact-form-section .submit-button *,
.contact-form-section button.submit-button *,
.contact-form .submit-button *,
.contact-form button.submit-button *,
button[type="submit"] * {
    color: #000000 !important;
}

.contact-form-section .submit-button:hover,
.contact-form-section button.submit-button:hover,
.contact-form .submit-button:hover,
.contact-form button.submit-button:hover,
button[type="submit"].submit-button:hover,
button[type="submit"]:hover,
.contact-form-section button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
    background: #ffffff !important;
    color: #000000 !important;
    opacity: 0.9 !important;
}

.contact-form-section .submit-button:hover *,
.contact-form-section button.submit-button:hover *,
.contact-form .submit-button:hover *,
.contact-form button.submit-button:hover *,
button[type="submit"]:hover * {
    color: #000000 !important;
}

.contact-map-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.map-container {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    min-height: 450px;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    display: block;
}

.map-info-card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    display: flex;
        flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.map-info-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.map-info-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 0;
}

.map-info-card strong {
    color: var(--text-color);
    font-weight: 600;
}

.map-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-info-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.directions-button {
    display: inline-block;
    margin-top: auto;
    padding: 14px 32px;
    background: #ffffff !important;
    color: #000000 !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color) !important;
}

.directions-button:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--border-light) !important;
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: var(--bg-color);
}

.legal-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.legal-section:nth-child(1) {
    animation-delay: 0.1s;
}

.legal-section:nth-child(2) {
    animation-delay: 0.2s;
}

.legal-section:nth-child(3) {
    animation-delay: 0.3s;
}

.legal-section:nth-child(4) {
    animation-delay: 0.4s;
}

.legal-section:nth-child(5) {
    animation-delay: 0.5s;
}

.legal-section:nth-child(6) {
    animation-delay: 0.6s;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .services-detailed {
        grid-template-columns: 1fr;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-left {
        flex-direction: column;
    }
    
    .contact-info-form-row {
        flex-direction: column;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        min-width: auto;
    }
    
    .contact-form-wrapper {
        min-width: auto;
        width: 100%;
        min-height: auto;
    }
    
    .contact-right {
        position: relative;
        top: 0;
        min-width: auto;
    }
    
    .contact-image {
        max-height: 600px;
    }
    
    .partners-logos {
        flex-wrap: wrap;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-benefits-list,
    .service-benefits {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Скрыть top-contact-bar на мобильных */
    .top-contact-bar {
        display: none;
    }
    
    /* Опустить navbar ниже */
    .navbar {
        margin-top: 0;
        padding: 2rem 0 1.5rem 0;
        position: relative;
        padding-top: 3rem;
    }
    
    .nav-brand {
        margin-top: 0;
        padding-top: 0.5rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
        padding: 100px 0 3rem 0;
        border: none;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.5rem 2rem;
        color: white;
        font-size: 1.2rem;
        font-weight: 500;
        border-radius: 0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: var(--text-color);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--text-color);
        transition: width 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(255, 255, 255, 0.08);
        color: white;
        padding-left: 2.5rem;
    }
    
    .nav-menu a:hover::before {
        transform: scaleY(1);
    }
    
    .nav-menu a:hover::after {
        width: 100%;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        margin: 0;
        padding: 0;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .submenu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    
    .submenu li:last-child {
        border-bottom: none;
    }
    
    .submenu a {
        padding: 1.2rem 2rem 1.2rem 4rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        border-left: 3px solid transparent;
        text-transform: none;
        letter-spacing: 0.5px;
        font-weight: 400;
    }
    
    .submenu a::before {
        width: 3px;
    }
    
    .submenu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--text-color);
        color: white;
        padding-left: 4.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
        text-shadow: 
            0 0 15px rgba(0, 0, 0, 0.9),
            0 0 30px rgba(0, 0, 0, 0.7),
            0 3px 6px rgba(0, 0, 0, 0.9);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-description {
        color: white;
        text-shadow: 
            0 0 10px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(0, 0, 0, 0.7),
            0 2px 4px rgba(0, 0, 0, 0.9);
        margin-top: 16rem;
    }
    
    .hero-badge {
        background: rgba(0, 0, 0, 0.7);
        color: white;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
        margin-top: -10rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-title {
        margin-top: -1rem;
    }
    
    .hero-description {
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .partner-item {
        width: 100%;
        height: 150px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .contact-left {
        flex-direction: column;
    }
    
    .contact-info-form-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        min-width: auto;
    }
    
    .contact-form-wrapper {
        min-width: auto;
        width: 100%;
        min-height: auto;
    }
    
    .contact-right {
        position: relative;
        top: 0;
        order: -1;
        min-width: auto;
    }
    
    .contact-image {
        max-height: 500px;
    }
    
    .partners-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .partner-logo-item {
        width: 100%;
        max-width: 300px;
    }
    
    .partners-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-info-bar .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-info-right {
        text-align: center;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-features-highlight {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2.5rem 2rem;
    }
    
    .feature-item .feature-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem !important;
    }
    
    .feature-item p {
        font-size: 0.95rem !important;
    }
    
    .service-benefits-list,
    .service-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-benefits-list li,
    .service-benefits li {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 1rem;
    }

    .service-why-section h2 {
        font-size: 2rem;
    }
    
    .service-cta-content h2 {
        font-size: 2rem;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-items-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-left {
        flex-direction: column;
    }
    
    .contact-info-form-row {
        flex-direction: column;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-width: auto;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        min-width: auto;
        width: 100%;
        min-height: auto;
    }
    
    .contact-form textarea {
        min-height: 150px;
    }
    
    .contact-right {
        order: -1;
        min-width: auto;
    }
    
    .contact-image {
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
        white-space: normal;
        text-shadow: 
            0 0 12px rgba(0, 0, 0, 0.95),
            0 0 24px rgba(0, 0, 0, 0.8),
            0 2px 5px rgba(0, 0, 0, 0.95);
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        color: white;
        font-size: 1rem;
        text-shadow: 
            0 0 8px rgba(0, 0, 0, 0.95),
            0 0 16px rgba(0, 0, 0, 0.8),
            0 1px 3px rgba(0, 0, 0, 0.95);
        margin-top: 12rem;
    }
    
    .hero-badge {
        background: rgba(0, 0, 0, 0.75);
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95);
        font-size: 1rem;
        padding: 10px 20px;
        margin-top: -8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        margin-top: -0.5rem;
    }
    
    .hero-description {
        margin-top: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-content-wrapper {
        padding: 0;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Видео для очень маленьких экранов */
    .hero-background-video {
        object-fit: cover;
        object-position: center center;
        clip-path: none;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        transform: none;
        min-width: 100%;
        min-height: 100vh;
    }
    
    .hero-background-overlay {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content {
        transform: none;
        padding-top: 0;
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 1rem;
        order: 1;
    }
    
    .hero-title {
        text-shadow: 
            0 0 20px rgba(0, 0, 0, 0.98),
            0 0 40px rgba(0, 0, 0, 0.9),
            0 0 60px rgba(0, 0, 0, 0.8),
            0 4px 8px rgba(0, 0, 0, 0.98),
            2px 2px 4px rgba(0, 0, 0, 0.95),
            0 0 0 3px rgba(0, 0, 0, 0.6);
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
        order: 2;
    }
    
    .hero-description {
        margin-top: 0;
        margin-bottom: 0;
        order: 3;
    }
    
    .hero {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    
    .hero-actions {
        margin-top: 40rem !important;
        order: 4;
        padding-top: 0;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        padding-bottom: 100px;
    }
    
    .hero-content {
        height: auto;
        min-height: auto;
    }
    
    .hero-background-video {
        width: 100%;
        height: auto;
        min-height: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .hero-background-overlay {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .hero {
        padding-top: 100px;
        overflow: hidden;
        min-height: 100vh;
    }
    
    .hero-background-overlay {
        overflow: hidden;
    }
    
    .navbar {
        padding-top: 2.5rem;
    }
    
    .hero-actions {
        max-width: 90%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 11px 18px;
        font-size: 0.75rem;
    }
    
    .service-info-block h2 {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-item-card {
        padding: 1.5rem;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .map-info-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .contact-info-bar .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-info-right {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .partners-cards {
        grid-template-columns: 1fr;
    }
    
    /* Hero Actions адаптация */
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        width: 100%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        padding: 14px 24px;
        font-size: 0.85rem;
    }
    
    /* Statistics адаптация */
    .statistics {
        padding: 60px 0;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* About секция */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Partners секция */
    .partners {
        padding: 60px 0;
    }
    
    .partners-header h2 {
        font-size: 2rem;
    }
    
    /* CTA секция */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    /* Service Details */
    .service-details {
        padding: 60px 0;
    }
    
    .service-details-content {
        padding: 0 15px;
    }
    
    .service-info-block p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Feature Highlight Cards */
    .feature-highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-highlight-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-highlight-card h3 {
        font-size: 1.2rem !important;
    }
    
    .feature-highlight-card p {
        font-size: 0.9rem !important;
    }
    
    /* Service Why Section */
    .service-why-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    /* Gallery адаптация */
    .about-gallery {
        padding: 60px 0;
    }
    
    .gallery-item {
        aspect-ratio: 16 / 9;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
    
    .gallery-overlay p {
        font-size: 0.9rem;
    }
    
    /* Service CTA */
    .service-cta {
        padding: 60px 0;
    }
    
    .service-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .service-cta-content p {
        font-size: 1rem;
    }
    
    .cta-button-service {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    /* Top Contact Bar */
    .top-contact-bar {
        padding: 10px 0;
    }
    
    .top-contact-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info span {
        font-size: 0.85rem;
    }
    
    /* Service Hero Icon */
    .service-hero-icon {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }
    
    /* Section Labels и Titles */
    .section-label {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Moto Section */
    .motto-title {
        font-size: 1.8rem;
    }
    
    .motto-subtitle {
        font-size: 1.2rem;
    }
    
    /* Дополнительные улучшения для очень маленьких экранов */
    .hero-actions {
        max-width: 85%;
        gap: 0.8rem;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 12px 20px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .feature-highlight-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-highlight-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-highlight-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem;
    }
    
    .feature-highlight-card p {
        font-size: 0.85rem !important;
    }
    
    .service-benefits-list li,
    .service-benefits li {
        padding: 0.8rem 0.8rem 0.8rem 2.2rem;
        font-size: 0.9rem;
    }
    
    .service-benefits-list li::before,
    .service-benefits li::before {
        width: 20px;
        height: 20px;
        left: 0.5rem;
        font-size: 1rem;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-header p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        gap: 1rem;
        padding: 0 10px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    .service-cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .service-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .service-hero-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .top-contact-bar .contact-link {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .service-why-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-details-content {
        padding: 0 10px;
    }
    
    .service-info-block h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .service-info-block p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

/* Contact Info Bar */
.contact-info-bar {
    background: #1e3a8a;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.contact-info-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
    opacity: 0.3;
    pointer-events: none;
}

.contact-info-bar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.contact-phone {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

.contact-info-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    filter: brightness(0) invert(1);
}

.contact-info-right {
    text-align: right;
}

.contact-info-right p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Универсальные стили для всех кнопок отправки - гарантированная видимость текста */
button[type="submit"],
.submit-button,
button.submit-button,
form button[type="submit"],
.contact-form button[type="submit"],
.contact-form-section button[type="submit"],
.contact-form .btn-primary[type="submit"],
.contact-form button.btn-primary {
    color: #000000 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
}

button[type="submit"] *,
.submit-button *,
button.submit-button * {
    color: #000000 !important;
}

button[type="submit"]:not(:hover),
.submit-button:not(:hover),
button.submit-button:not(:hover) {
    color: #000000 !important;
    background: #ffffff !important;
}
