:root {

    --primary: #0F3D5E;
    --primary-light: #1E6FA8;

    --text: #1B1F23;
    --text-light: #6B7280;

    --bg: #FFFFFF;
    --gray: #F4F7FA;

    --border: #E5E7EB;

    --radius: 14px;

    --shadow:
        0 10px 30px rgba(15,61,94,.08);

    --container: 1280px;

    --header-height: 141px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family:
        Inter,
        Arial,
        sans-serif;

    color: var(--text);

    background: #fff;
}

.container {

    width: 100%;
    max-width: var(--container);

    margin: 0 auto;

    padding: 0 20px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.header {

    box-shadow: var(--shadow);
    background: white;

    position: sticky;
    top: 0;

    z-index: 100;
}

.header-top {

    padding: 20px 0;
}

.header-top__wrapper {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-svg {
    color: var(--primary);
    width: 145px;
    height: auto;
    display: block;
}

.header-contacts {

    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contacts a {

    color: var(--text);
}

.header-bottom {

    background: var(--primary);
}

.menu {

    list-style: none;

    display: flex;
    align-items: center;

    gap: 35px;

    min-height: 60px;
}

.menu a {

    color: white;

    font-weight: 500;
}

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: none;

    cursor: pointer;

    padding: 15px 28px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;
}

.btn-primary {

    background: var(--primary-light);

    color: white;
}

.btn-primary:hover {

    transform: translateY(-2px);

    background: var(--primary);
}
.burger {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: none;

    border: none;

    cursor: pointer;
}

.burger span {

    width: 26px;
    height: 3px;

    background: #000;
}

@media (max-width: 992px) {

    .burger {
        display: flex;
    }

    .header-contacts {
        display: none;
    }

    .header-bottom {

        position: fixed;

        top: 0;
        right: -100%;

        width: 300px;
        height: 100vh;

        background: var(--primary);

        transition: .3s;
    }

    .header-bottom.active {

        right: 0;
    }

    .menu {

        flex-direction: column;

        align-items: flex-start;

        padding: 100px 20px;
    }
}

.header {

    position: sticky;
    top: 0;

    z-index: 100;

    background: white;

    box-shadow: 0 2px 15px rgba(0,0,0,.05);
}

.header-top {

    padding: 18px 0;
}

.header-top__wrapper {

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.logo {

    font-size: 32px;
    font-weight: 700;

    color: var(--primary);
}

.header-contacts {

    display: flex;
    align-items: center;

    gap: 24px;
}

.header-contacts a {

    color: var(--text);

    font-size: 15px;

    transition: .3s;
}

.header-contacts a:hover {

    color: var(--primary);
}

.header-bottom {

    background: var(--primary);
}

.menu {

    display: flex;

    align-items: center;

    gap: 35px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.menu li {

    list-style: none;
}

.menu a {

    display: flex;

    align-items: center;

    height: 60px;

    color: white;

    font-weight: 500;

    text-decoration: none;

    transition: .3s;
}

.menu a:hover {

    opacity: .75;
}


.section-heading {

    text-align: center;

    margin-bottom: 60px;
}

.section-heading h2 {

    font-size: 42px;

    margin-bottom: 15px;
}

.section-heading p {

    color: var(--text-light);
}

.products {

    padding: 100px 0;
    background: var(--gray);
}

.products-grid {

    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 24px;
}

.product-card {

    display: flex;

    flex-direction: column;

    text-decoration: none;

    color: inherit;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

    transition:
        transform .3s,
        box-shadow .3s;
}

.product-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.12);
}

.product-card__image {

    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.product-card__image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s;
}

.product-card:hover .product-card__image img {

    transform: scale(1.08);
}

.product-card__content{
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
}

.product-card__content h3{
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.btn-outline {

    background: transparent;

    border: 2px solid var(--primary);

    color: var(--primary);
}

.btn-outline:hover {

    background: var(--primary);

    color: white;
}

@media (max-width: 1200px) {

    .products-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .products-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .products-grid {

        grid-template-columns:
            1fr;
    }
}

.about {

    padding: 120px 0;

    background: #fff;
}

.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.about-image img {

    width: 100%;
    height: 500px;

    object-fit: cover;

    display: block;
}

.section-label {

    display: inline-block;

    padding: 8px 16px;

    background: rgba(15,61,94,.08);

    color: var(--primary);

    border-radius: 999px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;
}

.about-content h2 {

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 24px;
}

.about-content p {

    color: var(--text-light);

    line-height: 1.8;

    margin-bottom: 20px;
}

@media (max-width: 992px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-content h2 {

        font-size: 32px;
    }
}

.stats {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background: var(--primary);
}

.stats::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image:
        url('../images/stats-bg.jpg');

    background-size: cover;

    background-position: center;

    opacity: .15;

    z-index: 1;
}

.stats::after {

    content: '';

    position: absolute;

    inset: 0;

    background:
        rgba(15,61,94,.85);

    z-index: 2;
}

.stats .container {

    position: relative;

    z-index: 3;
}

.stats-heading {

    max-width: 900px;

    margin: 0 auto 80px;

    text-align: center;

    color: white;
}

.stats-label {

    display: inline-block;

    margin-bottom: 18px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.12);

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.stats-heading h2 {

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 24px;
}

.stats-heading p {

    max-width: 760px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.8;

    opacity: .9;
}

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 50px 30px;
}

.stat-card {

    text-align: center;

    color: white;

    padding: 25px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.04);

    backdrop-filter:
        blur(4px);

    transition: .3s;
}

.stat-card:hover {

    transform: translateY(-5px);

    background:
        rgba(255,255,255,.08);
}

.stat-icon {

    width: 120px;
    height: 120px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.stat-icon img {

    width: 100px;
    height: 100px;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);
}

.stat-number,
.stat-number-time{

    font-size: clamp(
        42px,
        4vw,
        68px
    );

    font-weight: 700;

    line-height: 1;

    margin-bottom: 14px;
}

.stat-title {

    font-size: 18px;

    opacity: .9;

    line-height: 1.5;
}

@media (max-width: 1200px) {

    .stats-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .stats-heading h2 {

        font-size: 36px;
    }

    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .stats {

        padding: 80px 0;
    }

    .stats-heading {

        margin-bottom: 50px;
    }

    .stats-heading h2 {

        font-size: 28px;
    }

    .stats-heading p {

        font-size: 16px;
    }

    .stats-grid {

        grid-template-columns: 1fr;
    }
}

.faq {

    padding: 120px 0;

    background: #fff;
}

.faq-list {

    max-width: 900px;

    margin: 0 auto;
}

.faq-item {

    border-radius: 18px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

    margin-bottom: 18px;
}

.faq-question {

    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    border: none;

    background: transparent;

    cursor: pointer;

    padding: 28px 32px;

    text-align: left;

    font-size: 20px;

    font-weight: 600;

    color: var(--text);
}

.faq-icon {

    font-size: 32px;

    line-height: 1;

    color: var(--primary);

    transition: .3s;
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: .4s ease;
}

.faq-answer p {

    padding:
        0 32px 30px;

    color: var(--text-light);

    line-height: 1.8;
}

.faq-item.active .faq-answer {

    max-height: 400px;
}

.faq-item.active .faq-icon {

    transform: rotate(45deg);
}

@media (max-width: 768px) {

    .faq {

        padding: 80px 0;
    }

    .faq-question {

        padding: 22px;

        font-size: 17px;
    }

    .faq-answer p {

        padding:
            0 22px 22px;
    }
}

.contacts {

    position: relative;

    min-height: 700px;

    overflow: hidden;
}

.contacts-map {

    position: absolute;

    inset: 0;
}

.contacts-map iframe {

    width: 100%;

    height: 100%;

    border: none;

    filter:
        saturate(.85)
        contrast(1.05);
}

.contacts-card {

    width: 380px;

    max-width: 100%;

    padding: 42px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.96);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

.contacts-card h2 {

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;

    color: var(--text);
}

.contacts .container {

    position: relative;

    z-index: 10;

    display: flex;

    align-items: center;

    min-height: 700px;
}

.contacts-text {

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-light);

    margin-bottom: 20px;
}

.contacts-items {

    margin-bottom: 20px;
}

.contacts-item {

    padding-bottom: 18px;

    margin-bottom: 18px;

    border-bottom:
        1px solid rgba(0,0,0,.08);
}

.contacts-item:last-child {

    margin-bottom: 0;

    border-bottom: none;

    padding-bottom: 0;
}

.contacts-item span {

    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .5px;

    text-transform: uppercase;

    color: var(--primary);
}

.contacts-item a,
.contacts-item p {

    margin: 0;

    font-size: 18px;

    font-weight: 600;

    color: var(--text);

    text-decoration: none;
}

.map-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;
}

@media (max-width: 768px) {

    .contacts {

        min-height: auto;
    }

    .contacts-map {

        position: relative;

        height: 350px;
    }

    .contacts .container {

        min-height: auto;

        display: block;
    }

    .contacts-card {

        width: 100%;

        margin-top: -60px;

        margin-bottom: 40px;

        padding: 28px;
    }

    .contacts-card h2 {

        font-size: 30px;
    }
}

.modal {

    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 9999;
}

.modal.active {

    opacity: 1;

    visibility: visible;
}

.modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.65);

    backdrop-filter:
        blur(4px);
}

.modal-content {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 520px;

    padding: 40px;

    border-radius: 24px;

    background: white;

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

    animation:
        modalShow .3s ease;
}

@keyframes modalShow {

    from {

        opacity: 0;

        transform:
            translateY(20px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

.modal-close {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background:
        #f3f4f6;

    cursor: pointer;

    font-size: 24px;

    transition: .3s;
}

.modal-close:hover {

    background:
        #e5e7eb;
}

.modal-header {

    margin-bottom: 30px;
}

.modal-header h2 {

    font-size: 34px;

    margin-bottom: 12px;
}

.modal-header p {

    color: var(--text-light);

    line-height: 1.7;
}

.callback-form {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.form-group input {

    width: 100%;

    height: 58px;

    padding: 0 18px;

    border: 1px solid #d1d5db;

    border-radius: 12px;

    font-size: 16px;

    transition: .3s;
}

.form-group input:focus {

    outline: none;

    border-color:
        var(--primary);
}

.form-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    font-size: 14px;

    line-height: 1.5;

    color: var(--text-light);

    cursor: pointer;
}

.form-checkbox input {

    margin-top: 4px;
}

.btn-full {

    width: 100%;
}

.footer {

    background: var(--primary);
    color: #fff;

    padding: 110px 0 40px; /* ↑ увеличили вертикальный воздух */
}

.footer-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 70px; /* ← КЛЮЧЕВО: было мало, теперь дышит */
    margin-bottom: 70px;
}

.footer-col {

    display: flex;
    flex-direction: column;

    gap: 14px; /* ← добавляет внутреннюю структуру */
}

/* логотип */
.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* тексты чуть легче */
.footer-text,
.footer-contacts a,
.footer-contacts p,
.footer-menu a {

    color: rgba(255,255,255,.78);
    line-height: 1.7;
}

/* заголовки колонок */
.footer-title {
    margin-bottom: 16px;
}

/* меню */
.footer-menu li {
    margin-bottom: 12px; /* ↑ было плотнее */
}

/* контакты */
.footer-contacts a,
.footer-contacts p {
    margin-bottom: 12px;
}

/* CTA колонка — КЛЮЧЕВО */
.footer .btn-primary {

    margin-top: 14px;  /* ← отделяем кнопку от текста */
    padding: 14px 22px;
}

/* bottom */
.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.12);

    padding-top: 26px;
    margin-top: 10px;

    text-align: center;
}

/* BUTTON OVERRIDE IN FOOTER */
.footer .btn-primary {

    background: #fff;
    color: var(--primary);
}

.footer .btn-primary:hover {
    background: rgba(255,255,255,.9);
}

.footer-grid > div:not(:last-child) {
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CATALOG PAGE
========================= */

.catalog-page {

    padding: 80px 0 120px;
}

.breadcrumbs {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    font-size: 14px;
}

.breadcrumbs a {

    color: var(--primary);

    text-decoration: none;
}

.breadcrumbs span {

    color: #8a8a8a;
}

.page-header {

    max-width: 800px;

    margin-bottom: 60px;
}

.page-header h1 {

    font-size: 54px;

    margin-bottom: 20px;
}

.page-header p {

    color: var(--text-light);

    line-height: 1.8;
}

.catalog-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

.catalog-card {

    display: flex;

    flex-direction: column;

    text-decoration: none;

    color: inherit;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

    transition: .3s;
}

.catalog-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.12);
}

.catalog-card__image {

    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.catalog-card__image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.catalog-card:hover img {

    transform: scale(1.08);
}

.catalog-card__body {

    padding: 18px;
}

.catalog-card__body h3 {

    margin: 0;

    text-align: center;

    font-size: 18px;
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1200px) {

    .catalog-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .catalog-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .catalog-grid {

        grid-template-columns: 1fr;
    }

    .page-header h1 {

        font-size: 38px;
    }
}

.catalog-card__desc {

    margin-top: 10px;

    font-size: 14px;

    line-height: 1.5;

    color: var(--text-light);

    text-align: center;
}

/* ==========================================
   PRODUCT PAGE
========================================== */

.product-page {
    padding: 60px 0;
}

.product-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1f2937;
}

.product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ==========================================
   GALLERY
========================================== */

.product-gallery {
    display: flex;
    gap: 20px;
}

.product-thumbs {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-thumb {
    width: 100px;
    height: 100px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
    background: #fff;
}

.product-thumb.active {
    border-color: #0f4c81;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-main-image {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.product-main-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
}

.image-placeholder.big {
    min-height: 500px;
}

/* ==========================================
   SIDEBAR
========================================== */

.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    color: #0f4c81;
}

.product-price.request {
    color: #ef4444;
}

.product-short-description {
    line-height: 1.7;
    color: #4b5563;
}

/* ==========================================
   FORM
========================================== */

.product-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.product-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #1f2937;
}

.product-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-form input,
.product-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
}

.product-form textarea {
    resize: vertical;
    min-height: 120px;
}

.product-form input:focus,
.product-form textarea:focus {
    outline: none;
    border-color: #0f4c81;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #6b7280;
}

.checkbox input {
    width: auto;
    margin-top: 4px;
}

/* ==========================================
   TABS
========================================== */

.product-tabs {
    margin-bottom: 80px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    border: none;
    background: #f3f4f6;
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.tab-btn:hover {
    background: #e5e7eb;
}

.tab-btn.active {
    background: #0f4c81;
    color: #fff;
}

.tab-pane {
    display: none;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.tab-pane.active {
    display: block;
}

.tab-pane h2,
.tab-pane h3 {
    margin-bottom: 20px;
    color: #1f2937;
}

.tab-pane p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4b5563;
}

.tab-pane ul {
    margin: 20px 0;
    padding-left: 25px;
}

.tab-pane li {
    margin-bottom: 10px;
}

/* ==========================================
   SPECS
========================================== */

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.spec-name {
    font-weight: 600;
    color: #1f2937;
}

.spec-value {
    color: #4b5563;
    text-align: right;
}

/* ==========================================
   PHOTOS TAB
========================================== */

.product-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-photos-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
}

/* ==========================================
   PARTS
========================================== */

.product-parts h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.parts-slider {
    padding: 15px 5px 50px;
}

.parts-slider .swiper-slide {
    height: auto;
}

.parts-slider .swiper-button-prev,
.parts-slider .swiper-button-next {
    color: #0f4c81;
}

.part-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: .3s;
}

.part-card:hover {
    transform: translateY(-6px);
}

.part-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.part-card span {
    display: block;
    padding: 18px;
    font-weight: 600;
}

/* ==========================================
   BREADCRUMBS
========================================== */

.breadcrumbs {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs .container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs a {
    color: #0f4c81;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 1024px) {

    .product-top {
        grid-template-columns: 1fr;
    }

    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .product-title {
        font-size: 28px;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .product-thumbs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }

    .product-thumb {
        min-width: 90px;
    }

    .product-main-image {
        min-height: 320px;
    }

    .product-photos-grid {
        grid-template-columns: 1fr;
    }

    .spec-row {
        flex-direction: column;
        gap: 5px;
    }

    .parts-grid {
        grid-template-columns: 1fr;
    }

    .tab-pane {
        padding: 20px;
    }

    .product-form {
        padding: 20px;
    }
}

.product-price-box {
    margin-top: 25px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.product-price-box__label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.product-price-box__value {
    font-size: 34px;
    font-weight: 700;
    color: #0f4c81;
}

.product-price-box__right {
    max-width: 320px;
    color: #4b5563;
    line-height: 1.6;
}

@media(max-width:768px){

    .product-price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-price-box__value {
        font-size: 28px;
    }

}

.form-message {
    margin-top: 15px;
    font-weight: 600;
    color: #0f4c81;
}

:root {
    --header-height: 141px;
}

.hero-slider-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 65, .72);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;

    pointer-events: none;
}

.hero-overlay-container {
    height: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;
}

.hero-text,
.hero-form {
    pointer-events: auto;
}

.hero-text {
    max-width: 650px;
    color: #fff;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.hero-form {
    width: 420px;

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

.hero-form h3 {
    margin-bottom: 10px;
}

.hero-form p {
    margin-bottom: 25px;
    color: #666;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;

    border: 1px solid #ddd;
    border-radius: 10px;
}

.hero-form textarea {
    min-height: 120px;
    resize: vertical;
}

.hero-mobile-content {
    display: none;
}

.hero-prev,
.hero-next {
    color: #fff;
    z-index: 20;
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
}

.checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox input {
    width: auto;
}

@media (max-width: 992px) {

    .hero-slider-section {
        height: auto;
    }

    .hero-slider {
        height: 420px;
    }

    .hero-overlay {
        position: relative;
        background: #0f4c81;
        padding: 50px 0;
    }

    .hero-overlay-container {
        display: block;
    }

    .hero-text {
        display: none;
    }

    .hero-mobile-content {
        display: block;

        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 50px;

        z-index: 3;

        color: #fff;
    }

    .hero-mobile-content h1,
    .hero-mobile-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-mobile-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-form {
        width: 100%;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }
}

/* MOBILE MENU */

.burger {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;

    width: 320px;
    max-width: 90vw;
    height: 100vh;

    background: #fff;

    z-index: 9999;

    padding: 30px;

    transition: .3s ease;

    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.5);

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    border: none;
    background: none;

    font-size: 40px;

    cursor: pointer;

    align-self: flex-end;

    margin-bottom: 30px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 20px;
}

.mobile-menu-list a {
    text-decoration: none;
    color: #0f4c81;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu-contacts {
    margin-top: auto;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-contacts a {
    color: #333;
    text-decoration: none;
}

@media (max-width: 992px) {

    .header-contacts {
        display: none;
    }

    .header-bottom {
        display: none;
    }

    .burger {
        display: flex;

        flex-direction: column;

        gap: 5px;

        border: none;
        background: none;

        cursor: pointer;
    }

    .burger span {
        width: 28px;
        height: 3px;
        background: #0f4c81;
        display: block;
    }

    .header-top__wrapper {
        justify-content: space-between;
    }

}

/* =======================
   NEWS
======================= */

.news-header {
    padding: 30px 0;
    background: #f5f8fb;
}

.news-header .page-title {
    margin-top: 20px;
}

.news-archive {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    gap: 30px;
}

.news-card {
    display: grid;
    grid-template-columns: 320px 1fr;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition: .3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-image {
    display: block;
    height: 100%;
}

.news-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.news-placeholder {
    height: 100%;
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e9eef3;
}

.news-card-content {
    padding: 35px;
}

.news-card-content h2 {
    margin-bottom: 15px;
}

.news-card-content h2 a {
    text-decoration: none;
    color: #0f4c81;
}

.news-card-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-link {
    color: #0f4c81;
    text-decoration: none;
    font-weight: 600;
}

.news-single {
    padding: 80px 0;
}

.news-article {
    max-width: 1000px;
    margin: 0 auto;
}

.news-article h1 {
    margin-bottom: 40px;
}

.news-article-image {
    margin-bottom: 40px;
}

.news-article-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.news-content {
    line-height: 1.8;
}

.news-content h2,
.news-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.news-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-card-image img {
        height: 250px;
    }

    .news-card-content {
        padding: 25px;
    }

    .news-header {
        padding: 20px 0;
    }

}

/* ==========================
        GALLERY
========================== */

/* ==========================
        GALLERY
========================== */

.pc-gallery{

    padding:80px 0;

}

.pc-gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:30px;

}

.pc-gallery-card{

    display:block;

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    text-decoration:none;

    color:inherit;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.pc-gallery-card:hover{

    transform:translateY(-8px);

}

.pc-gallery-card__image{

    aspect-ratio:1/1;

    overflow:hidden;

}

.pc-gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.pc-gallery-card:hover img{

    transform:scale(1.08);

}

.pc-gallery-card__title{

    padding:22px;

    text-align:center;

    font-size:22px;

    font-weight:600;

}

.pc-gallery-placeholder{

    display:flex;

    align-items:center;

    justify-content:center;

    height:100%;

    background:#edf2f7;

}

.pc-gallery-page{

    padding:80px 0;

}

.pc-gallery-images{

    display:grid;

    grid-template-columns:repeat(12,1fr);

    grid-auto-rows:110px;

    gap:18px;

}

.pc-gallery-image{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    display:block;

    grid-column:span 4;

    grid-row:span 2;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.pc-gallery-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.pc-gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(16,44,84,.55);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.35s;

}

.pc-gallery-overlay span{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:44px;

    color:var(--primary);

    font-weight:300;

    transform:scale(.7);

    transition:.35s;

}

.pc-gallery-image:hover img{

    transform:scale(1.08);

}

.pc-gallery-image:hover .pc-gallery-overlay{

    opacity:1;

}

.pc-gallery-image:hover .pc-gallery-overlay span{

    transform:scale(1);

}

.pc-gallery-empty{

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    border-radius:22px;

    background:#f5f7fb;

}

.pc-gallery-empty h2{

    margin-bottom:18px;

    color:var(--primary);

}

.pc-gallery-empty p{

    color:#666;

    max-width:500px;

}

.pc-gallery-image:nth-child(5n){

    grid-column:span 8;

    grid-row:span 4;

}

.pc-gallery-image:nth-child(7n){

    grid-column:span 4;

    grid-row:span 4;

}

.pc-gallery-image:nth-child(9n){

    grid-column:span 8;

    grid-row:span 2;

}

@media(max-width:992px){

.pc-gallery-images{

grid-template-columns:repeat(6,1fr);

grid-auto-rows:90px;

}

.pc-gallery-image{

grid-column:span 3;

grid-row:span 2;

}

.pc-gallery-image:nth-child(5n),

.pc-gallery-image:nth-child(7n),

.pc-gallery-image:nth-child(9n){

grid-column:span 6;

grid-row:span 3;

}

}

@media(max-width:768px){

.pc-gallery{

padding:60px 0;

}

.pc-gallery-grid{

grid-template-columns:1fr;

}

.pc-gallery-images{

display:grid;

grid-template-columns:1fr;

grid-auto-rows:auto;

}

.pc-gallery-image{

grid-column:auto;

grid-row:auto;

aspect-ratio:1/1;

}

.pc-gallery-card__title{

font-size:20px;

}

}

/*=========================
        CONTACTS
=========================*/

.contacts-page{

    padding:80px 0;

}

.contacts-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

}

.contacts-info{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.contact-item{

    padding:28px;

    border-radius:18px;

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.contact-item h3{

    margin-bottom:15px;

    color:var(--primary);

}

.contact-item a{

    color:#222;

    text-decoration:none;

}

.contacts-form{

    padding:40px;

    border-radius:22px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contacts-form h2{

    margin-bottom:30px;

}

.contacts-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contacts-form input,

.contacts-form textarea{

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

}

.contacts-form textarea{

    resize:vertical;

    min-height:150px;

}

.contacts-map{

    height:520px;

}

.contacts-map iframe{

    width:100%;

    height:100%;

    border:none;

}

@media(max-width:992px){

.contacts-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contacts-page{

padding:60px 0;

}

.contacts-form{

padding:25px;

}

.contacts-map{

height:400px;

}

}