:root {
    --primary-color: rgba(166, 33, 33, 0.95);
    /* Slightly transparent muted red */
    --primary-dark: rgba(123, 24, 24, 0.95);
    --primary-light: #FEE2E2;
    --secondary-color: #4A0E0E;
    --accent-red: rgba(211, 47, 47, 0.9);
    --dark-red: #6B1111;
    --text-color: #1F2937;
    --light-bg: #F8F9FA;
    /* Neutral light background */
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 20px rgba(166, 33, 33, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    /* Removed white filter to show original logo colors */
}

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

.nav-links a {
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    position: relative;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-color));
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(166, 33, 33, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-red));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Hero Section - Новый дизайн */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.9), rgba(185, 28, 60, 0.8)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, rgba(127, 29, 29, 0.2) 0%, transparent 100%);
    animation: heroAnimation 20s ease-in-out infinite;
}

@keyframes heroAnimation {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
    /* Minimal padding, using flex distribution instead */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: none;
    min-height: calc(100vh - 100px);
    /* Leave space for header/padding */
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* PIN TO TOP AND BOTTOM */
    padding: 40px 0;
    /* Add internal padding for breathing room */
}

.hero-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-main-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center h1, p, stats in the middle */
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Responsive font size */
    margin-bottom: 20px;
    /* Reduced margin */
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #FEE2E2 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--white), var(--primary-light));
    border-radius: 2px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 25px;
    /* Reduced margin */
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 30px;
    /* Slightly reduced gap */
    margin-bottom: 25px;
    /* Reduced margin */
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.hero-stat p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    /* Keep cards centered vertically */
    justify-content: center;
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
    animation-delay: -2s;
}

.hero-card:nth-child(3) {
    animation-delay: -4s;
}

.hero-card:nth-child(4) {
    animation-delay: -6s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

.hero-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.hero-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, var(--white), var(--light-bg));
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-red));
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.service-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--secondary-color);
}

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

/* CTA Section */
.cta {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Process Section */
.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    border-radius: 15px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.process-step h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.process-step p {
    line-height: 1.6;
    color: var(--text-color);
}

/* Brands Section */
.brands {
    background: linear-gradient(135deg, var(--light-bg), var(--gray-100));
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.brand-item {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
    transition: var(--transition);
    padding: 15px 25px;
    border: 2px solid transparent;
    border-radius: 8px;
}

.brand-item:hover {
    opacity: 1;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.1);
}

/* Product Teaser */
.product-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.teaser-card {
    background: linear-gradient(135deg, var(--white), var(--light-bg));
    padding: 35px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-red));
    transform: scaleX(0);
    transition: var(--transition);
}

.teaser-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
    transform: translateY(-5px);
}

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

.teaser-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.teaser-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.teaser-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Footer (existing) */
footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-red));
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::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="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    color: var(--primary-light);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Блок преимуществ - новый дизайн */
.advantages {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background:
        radial-gradient(ellipse, rgba(220, 20, 60, 0.05) 0%, transparent 70%),
        linear-gradient(45deg, transparent, rgba(239, 68, 68, 0.03));
    transform: rotate(15deg);
    animation: advantagesFloat 15s ease-in-out infinite;
}

@keyframes advantagesFloat {

    0%,
    100% {
        transform: rotate(15deg) translateY(0px);
    }

    50% {
        transform: rotate(15deg) translateY(-20px);
    }
}

.advantages-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.advantages-header .section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
}

.advantages-header .section-title h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-red));
    border-radius: 2px;
}

.advantages-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.advantage-item {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(220, 20, 60, 0.08),
        0 1px 8px rgba(220, 20, 60, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-red));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.advantage-item:hover {
    transform: translateY(-15px);
    box-shadow:
        0 25px 50px rgba(220, 20, 60, 0.15),
        0 10px 25px rgba(220, 20, 60, 0.1);
    border-color: var(--primary-color);
}

.advantage-item .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
    transition: var(--transition);
}

.advantage-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.advantage-item .icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.advantage-item .icon i {
    font-size: 2.2rem;
    color: var(--white);
    z-index: 2;
}

.advantage-item h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
}

.advantage-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-red));
    border-radius: 1px;
}

.advantage-item p {
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1.05rem;
}

.advantages-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.advantages-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* Блок экспертизы */
.expertise {
    background: var(--secondary-color);
    color: var(--white);
    position: relative;
}

.expertise::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.expertise-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.expertise-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.expertise-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.expertise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.expertise-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Блок решений */
.solutions {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.1);
}

.solution-card:hover::before {
    transform: scale(1.2);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.solution-card p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.solution-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Блок инноваций */
.innovations {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.innovations::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.innovations-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.innovations h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.innovation-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.innovation-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.innovation-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.innovation-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Обновленные стили для существующих секций */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Обновленный CTA */
.cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-red));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta p {
    position: relative;
    z-index: 2;
}

.cta .btn {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
}

.cta .btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px) scale(1.05);
}

/* Адаптивность для новых блоков */
@media (max-width: 768px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-features {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .innovations h2 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Дополнительные анимации и эффекты */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Применение анимаций */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.service-card {
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

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

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

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

.advantage-item {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.advantage-item:nth-child(even) {
    animation-name: slideInRight;
}

.advantage-item:nth-child(1) {
    animation-delay: 0.1s;
}

.advantage-item:nth-child(2) {
    animation-delay: 0.2s;
}

.advantage-item:nth-child(3) {
    animation-delay: 0.3s;
}

.advantage-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Эффект параллакса для hero */
.hero {
    background-attachment: fixed;
}

/* Плавные переходы для всех интерактивных элементов */
* {
    scroll-behavior: smooth;
}

/* Дополнительные hover эффекты */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::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;
}

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

/* Улучшенные тени для карточек */
.service-card,
.advantage-item,
.solution-card,
.teaser-card,
.process-step {
    box-shadow:
        0 4px 6px rgba(220, 20, 60, 0.05),
        0 1px 3px rgba(220, 20, 60, 0.1);
}

.service-card:hover,
.advantage-item:hover,
.solution-card:hover,
.teaser-card:hover,
.process-step:hover {
    box-shadow:
        0 20px 25px rgba(220, 20, 60, 0.1),
        0 10px 10px rgba(220, 20, 60, 0.04);
}

/* Градиентные границы */
.gradient-border {
    position: relative;
    background: var(--white);
    border-radius: 12px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Улучшенная типографика */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title h2 {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Адаптивные улучшения */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.5rem;
        -webkit-text-fill-color: var(--white);
        color: var(--white);
    }

    .innovations h2 {
        font-size: 2rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-card,
    .advantage-item,
    .solution-card {
        padding: 25px;
    }
}

/* Галерея изображений */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
    transition: var(--transition);
    height: 280px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(220, 20, 60, 0.9));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Обновленный блок about-brief с изображением */
.about-brief-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-brief-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-brief-image img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.15);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-brief-text {
    flex: 1;
    min-width: 300px;
}

/* Адаптивность для галереи */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .about-brief-content {
        flex-direction: column;
        text-align: center;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expertise-image {
        order: -1;
    }
}

/* Блок отзывов */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Дополнительные изображения для секций */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.15);
}

.section-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.section-image:hover img {
    transform: scale(1.05);
}

/* Адаптивность для отзывов */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }

    .section-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-image img {
        height: 250px;
    }
}

/* Блок достижений */
.achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.achievements-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.achievement-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.achievement-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.achievement-info p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.achievements-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.15);
}

.achievements-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.achievements-image:hover img {
    transform: scale(1.05);
}

/* Адаптивность для достижений */
@media (max-width: 768px) {
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .achievements-image {
        order: -1;
    }

    .achievements-image img {
        height: 300px;
    }

    .achievement-item {
        padding: 15px;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
    }

    .achievement-icon i {
        font-size: 1.2rem;
    }
}

/* Адаптивность для нового hero и преимуществ */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero-cards {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .advantages-header .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
        -webkit-text-fill-color: var(--white);
        color: var(--white);
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 15px;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-card i {
        font-size: 2rem;
    }

    /* Преимущества на мобильных */
    .advantages {
        padding: 80px 0;
    }

    .advantages-header {
        margin-bottom: 60px;
    }

    .advantages-header .section-title h2 {
        font-size: 2.2rem;
    }

    .advantages-header p {
        font-size: 1.1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .advantage-item {
        padding: 35px 25px;
    }

    .advantage-item .icon {
        width: 70px;
        height: 70px;
    }

    .advantage-item .icon i {
        font-size: 2rem;
    }

    .advantage-item h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat h3 {
        font-size: 1.8rem;
    }

    .hero-stat p {
        font-size: 0.8rem;
    }

    .advantages-header .section-title h2 {
        font-size: 2rem;
    }

    .advantage-item {
        padding: 30px 20px;
    }

    .advantage-item .icon {
        width: 60px;
        height: 60px;
    }

    .advantage-item .icon i {
        font-size: 1.8rem;
    }

    .advantage-item h3 {
        font-size: 1.3rem;
    }

    .advantage-item p {
        font-size: 1rem;
    }
}

/* Дополнительные анимации для hero */
.hero-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Улучшенные кнопки в hero */
.hero-btns .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btns .btn i {
    transition: transform 0.3s ease;
}

.hero-btns .btn:hover i {
    transform: translateX(3px);
}

/* Эффекты для advantage items */
.advantage-item {
    animation: advantageFloat 8s ease-in-out infinite;
}

.advantage-item:nth-child(2) {
    animation-delay: -2s;
}

.advantage-item:nth-child(3) {
    animation-delay: -4s;
}

.advantage-item:nth-child(4) {
    animation-delay: -6s;
}

@keyframes advantageFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(166, 33, 33, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 33, 33, 0.1);
}

.lang-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #A62121;
    background: white;
    color: #A62121;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.lang-btn:hover {
    background: #FEE2E2;
}

.lang-btn.active {
    background: #A62121;
    color: white;
}

/* Lang fixes for long text */
.lang-fix {
    white-space: nowrap !important;
}

nav .container {
    max-width: 100% !important;
    padding: 0 20px;
}

.nav-links {
    gap: 15px !important;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 10px !important;
    }

    .nav-links a {
        font-size: 14px;
    }
}