:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-bg: #f8fafc;
    --dark-bg: #1e293b;
    --text-gray: #64748b;
    --border-color: #e2e8f0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Header - точные отступы */
.top-header {
    background-color: var(--primary-blue);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: all 0.3s;
}

.header-phone:hover {
    background: rgba(255,255,255,0.1);
}

.btn-download {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Hero Section - точные отступы */
.hero-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.btn-primary-custom {
    background: linear-gradient(90deg, #153D8A 0%, #3B74E2 100%);
    width: 360px;
    height: 50px;
    border-radius: 50px;
    color: #fff;
    font-size: 2em;
    padding: 1em;
    text-align: center;
    font-family: 'Gilroy';
    font-weight: 400;

}

.btn-primary-custom:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25);
    color: #fff;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: right;
}

.hero-image img {
    max-height: 550px;
    width: auto;
    object-fit: contain;
}

/* Why Trust Section - точные отступы */
.why-trust-section {
    padding: 100px 0 60px;
    background-color: transparent;
}

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

.section-title {
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.trust-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}
h1.product-header{
    font-size: 3em;
    font-family: Gilroy;
    font-weight: 600;
    padding: 1em 0;
}
/* Stats Section - точные отступы */
.stats-section {
    padding: 0 0 80px;
    background-color: transparent;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-family: Gilroy;
    font-size: 12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #153D8A 0%, #3B74E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
    display: table;
    margin: 20px auto;
    width: 100%;
    line-height: 120px;
}

.stat-number span {
    font-family: Gilroy;
    font-size: .5em;
    padding-left: .1em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #153D8A 0%, #3B74E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
    margin: 20px auto;


}

.stat-label {
    font-family: Gilroy;
    font-weight: 500;
    font-style: Medium;
    font-size: 2.2em;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #153D8A;
}

.stat-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 20px;
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.stat-description {
    max-width: 80%;
    font-family: Gilroy;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;

}

/* Catalog Section - точные отступы */
.catalog-section {
    padding: 80px 0;
}

.catalog-description {
    font-family: Gilroy;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;

}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.product-image {
    height: 280px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-height: 55px;
}
h3.product-title {
    font-family: Gilroy;
    font-weight: 600;
    font-style: Semibold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin: 1em;
    max-width: 70%;
    margin-bottom: 0;
}

.product-hr{
    margin: 2em;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-description {
    font-family: Gilloy;
    font-weight: 500;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    max-width: 65%;

}

.product-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.product-link:hover {
    background: var(--secondary-blue);
    color: #fff;
    border-color: var(--secondary-blue);
}

/* CTA Section - точные отступы */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-radius:1em;
    min-height:600px;
    margin-bottom: 10em;
}

.cta-content h2 {
    font-family: Gilroy;
    font-weight: 600;
    font-style: Semibold;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #153D8A;
    padding-bottom: 3em;
}

.cta-content p {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding-top: 1em;
    padding-bottom: 1em;
}

.cta-image {
    text-align: right;
}

.cta-image img {
    max-height: 450px;
    width: auto;
    object-fit: contain;
}

/* Footer - точные отступы */
.footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 80px 0 40px;
}

.footer h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.contact-icon {
    width: 20px;
    margin-right: 16px;
    margin-top: 3px;
    color: var(--secondary-blue);
    font-size: 16px;
}

.contact-label {
    font-weight: 400;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 13px;
}

.contact-value {
    color: #fff;
    font-size: 14px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
    background: #334155;
}

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 60px;
    padding-top: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    margin-right: 16px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
}

.social-links a:hover {
    color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.footer-nav {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.footer-nav a {
    font-family: Gilroy;
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
color: #F9F9FA;
}

.footer-nav a:hover {
    color: #fff;
}

.btn-download-footer {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-download-footer:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.copyright {
    font-family: Roboto;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #929292;
}

.copyright a {
    font-family: Roboto;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #929292;
}

.copyright a:hover {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image {
        margin-top: 40px;
        text-align: center;
    }

    .why-trust-section {
        padding: 60px 0 40px;
    }

    .catalog-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-image {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .header-actions {
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .stat-card {
        padding: 30px 24px;
    }

    .stat-number {
        font-size: 40px;
    }

    .footer-nav {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .header-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}
.ps-3.my-auto.icon-text {
    font-family: Gilory;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
}

/* Слайдер продуктов */
.products-slider {
    padding: 20px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-bg) !important;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-top: -20px;
    top: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--accent);
    color: var(--primary-bg) !important;
}
.social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../images/VK_1.png.webp);
    margin-top: 10px;
    background-size: contain;
}
.attached-files a {
    font-size: 1rem;
    text-decoration: none;
    color: #000;
    margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* скрыть стрелки на мобильных */
    }
    .slider-nav-prod img {
        width: 100%;
        height: auto;
        max-height: 5rem !important;
        object-fit: cover;
        border: 3px solid transparent;
        border-radius: 8px;
    }
    .slider-main-prod {
        margin-bottom: 2rem;
    }
    h1.atom {
        font-size: 1.2rem;
    }
}
