:root {
    --company-blue: #0b2f67;
    --company-blue-deep: #061522;
    --company-blue-mid: #123f78;
    --company-text: #1d2430;
    --company-muted: #667085;
    --company-border: #dbe4ef;
    --company-light: #f6f9fc;
    --company-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.company-home {
    position: relative;
    min-width: 1200px;
    margin: 0;
    color: var(--company-text);
    background: var(--company-white);
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
}

.company-home a {
    color: inherit;
    text-decoration: none;
}

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

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.site-header {
    height: 92px;
    background: #ffffff;
    border-bottom: 1px solid rgba(219, 228, 239, 0.75);
}

.site-header__inner {
    width: 1320px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

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

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand__text strong {
    color: #121722;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.18;
}

.brand__text small {
    color: #6f7783;
    font-size: 14px;
    font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 74px;
    height: 100%;
}

.main-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: #222b38;
    font-size: 16px;
    font-weight: 500;
}

.main-nav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 3px;
    background: var(--company-blue);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.main-nav__link:hover,
.main-nav__link--active {
    color: var(--company-blue);
}

.main-nav__link:hover::after,
.main-nav__link--active::after {
    width: 38px;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #eef3f8;
}

.hero__swiper {
    position: absolute;
    inset: 0;
    z-index: auto;
    width: 100%;
    height: 100%;
}

.hero__swiper .swiper-wrapper,
.hero__slide {
    height: 100%;
}

.hero__slide {
    position: relative;
    overflow: hidden;
    background: #e9eef4;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__slide::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: min(860px, 68vw);
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.99) 0%,
        rgba(255, 255, 255, 0.97) 52%,
        rgba(255, 255, 255, 0.78) 72%,
        rgba(255, 255, 255, 0) 100%
    );
}

.hero__copy {
    position: relative;
    z-index: 3;
    width: min(1320px, calc(100% - 80px));
    height: 100%;
    margin: 0 auto;
    padding: 60px 0 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
}

.hero__label {
    position: relative;
    margin-bottom: 18px;
    padding-left: 46px;
    color: var(--company-blue);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.hero__label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--company-blue);
    transform: translateY(-50%);
}

.hero__copy h2 {
    max-width: 610px;
    margin: 0;
    color: #121722;
    font-size: 46px;
    font-weight: 850;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.hero__description {
    max-width: 570px;
    margin: 20px 0 0;
    color: #354154;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.85;
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.hero__actions a {
    pointer-events: auto;
}

.hero__disclaimer {
    margin: 16px 0 0;
    color: #687386;
    font-size: 12px;
    line-height: 1.5;
}

.btn {
    min-width: 168px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--company-blue);
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(11, 47, 103, 0.14);
}

.btn--primary {
    color: #ffffff;
    background: var(--company-blue);
}

.company-home .btn--primary,
.company-home .btn--primary:visited,
.company-home .btn--primary:hover,
.company-home .btn--primary span {
    color: #ffffff;
}

.btn--ghost {
    color: var(--company-blue);
    background: rgba(255, 255, 255, 0.9);
}

.hero__pagination {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(760px, calc(100% - 80px));
    height: 48px;
    align-items: center;
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(6, 21, 34, 0.76);
    box-shadow: 0 10px 28px rgba(6, 21, 34, 0.16);
    backdrop-filter: blur(8px);
}

.hero__pagination.swiper-pagination-horizontal {
    left: 50%;
    bottom: 22px;
    width: min(760px, calc(100% - 80px));
}

.hero__pagination:empty {
    display: none;
}

.hero__pagination .swiper-pagination-bullet {
    width: auto;
    height: 100%;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    opacity: 1;
    transition: color 0.2s ease, background 0.2s ease;
}

.hero__pagination .swiper-pagination-bullet:first-child {
    border-left: 0;
}

.hero__pagination .swiper-pagination-bullet-active {
    color: var(--company-blue);
    background: #ffffff;
}

.section {
    padding: 68px 0 72px;
}

.section__heading {
    width: 1320px;
    margin: 0 auto 44px;
    text-align: center;
}

.section__heading h2 {
    position: relative;
    margin: 0;
    color: var(--company-blue);
    font-size: 37px;
    font-weight: 850;
    line-height: 1.2;
}

.section__heading h2::after {
    content: "";
    display: block;
    width: 39px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--company-blue);
}

.section__heading p {
    margin: 16px 0 0;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
}

.section__heading--dark h2 {
    color: #111827;
}

.section__heading--dark h2::after {
    background: #111827;
}

.products {
    background: #ffffff;
}

.product-grid {
    width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.product-card {
    min-height: 430px;
    border: 1px solid #d6dde8;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 47, 103, 0.4);
    box-shadow: 0 18px 30px rgba(19, 38, 65, 0.08);
}

.product-card > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid #e6edf5;
    background: #f9fbfd;
}

.product-card__placeholder {
    width: 100%;
    height: 240px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid #e6edf5;
    color: #7b8795;
    background: #f9fbfd;
    font-size: 14px;
}

.product-grid__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 34px;
    border: 1px dashed #cbd8e7;
    color: #667085;
    text-align: center;
}

.product-card__body {
    padding: 28px 20px 26px;
    text-align: center;
}

.product-card__body h3 {
    margin: 0;
    color: #161b24;
    font-size: 22px;
    font-weight: 800;
}

.product-card__body p {
    min-height: 58px;
    margin: 16px 0 18px;
    color: #4f5c6b;
    font-size: 14px;
    line-height: 1.9;
}

.product-card__body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--company-blue);
    font-size: 14px;
    font-weight: 800;
}

.about {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.about__inner {
    width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 80px;
    align-items: start;
}

.about__gallery {
    width: 650px;
}

.about__main-img {
    width: 100%;
    height: 306px;
    object-fit: cover;
    border: 1px solid #cbd8e6;
}

.about__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.about__thumbs img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border: 1px solid #d8e1ee;
}

.about__content {
    padding-top: 8px;
}

.about__content h3 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 28px;
    font-weight: 850;
    line-height: 1.35;
}

.about__content > p {
    margin: 0 0 38px;
    color: #3e4753;
    font-size: 16px;
    line-height: 2.05;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 42px;
}

.advantage-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
}

.advantage-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.advantage-item strong {
    display: block;
    color: var(--company-blue);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.25;
}

.advantage-item span {
    display: block;
    margin-top: 7px;
    color: #5f6c7b;
    font-size: 13px;
    line-height: 1.5;
}

.contact-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 24, 51, 0.97), rgba(12, 58, 112, 0.94)),
        url("../img/company-home/photos/hero-lobby.jpg") center / cover no-repeat;
    color: #ffffff;
}

.contact-band::after {
    content: "";
    position: absolute;
    top: -42px;
    right: 110px;
    width: 360px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: skewX(-18deg);
}

.contact-band__inner {
    position: relative;
    z-index: 1;
    width: 1320px;
    min-height: 205px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 300px 360px 240px;
    gap: 40px;
    align-items: center;
}

.contact-band__title h2 {
    position: relative;
    margin: 0;
    font-size: 32px;
    font-weight: 850;
}

.contact-band__title h2::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 18px;
    background: #ffffff;
}

.contact-band__title p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.9;
}

.contact-band__title::after {
    content: "";
    position: absolute;
    left: 340px;
    top: 58px;
    width: 1px;
    height: 92px;
    background: rgba(255, 255, 255, 0.3);
}

.contact-band__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-band__item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-band__item span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.contact-band__item strong {
    display: block;
    margin-top: 5px;
    font-size: 22px;
    font-style: normal;
    font-weight: 850;
    line-height: 1.45;
}

.contact-band__item--phone strong {
    font-size: 25px;
    white-space: nowrap;
}

.contact-band__qr {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-band__qr img {
    width: 104px;
    height: 104px;
    padding: 7px;
    background: #ffffff;
}

.contact-band__qr p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
}

.site-footer {
    color: rgba(255, 255, 255, 0.86);
    background:
        radial-gradient(circle at 12% 20%, rgba(31, 86, 145, 0.4), transparent 35%),
        linear-gradient(115deg, #0b2036 0%, #061522 100%);
}

.site-footer__inner {
    width: 1320px;
    min-height: 342px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 372px 156px 156px 156px 1fr;
    gap: 58px;
    align-items: start;
    padding: 54px 0 44px;
}

.footer-brand {
    padding-right: 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-brand__head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand__head img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand__head strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.35;
}

.footer-brand__head span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.footer-brand p {
    margin: 34px 0 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 2;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
}

.footer-social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links h3 {
    margin: 0 0 19px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 850;
}

.footer-links a,
.footer-links__text {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    margin: 0;
    padding-left: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    font-style: normal;
}

.footer-contact p {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-contact__qr {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.7;
}

.footer-contact__qr img {
    width: 82px;
    height: 82px;
    padding: 5px;
    object-fit: contain;
    background: #ffffff;
    filter: none;
}

.site-footer__record {
    width: 1320px;
    margin: 0 auto;
    padding: 0 0 24px;
    display: flex;
    gap: 26px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.site-footer__record a:hover {
    color: #ffffff;
}

.back-to-top {
    position: absolute;
    right: 42px;
    bottom: 34px;
    z-index: 20;
    width: 94px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4deea;
    color: #38445a;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 26px rgba(21, 42, 75, 0.12);
    font-size: 12px;
    font-weight: 700;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    body.company-home {
        min-width: 0;
        overflow-x: hidden;
    }

    .site-header__inner,
    .section__heading,
    .product-grid,
    .about__inner,
    .contact-band__inner,
    .site-footer__inner,
    .site-footer__record {
        width: calc(100% - 48px);
    }

    .main-nav {
        gap: 44px;
    }

    .about__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 48px;
    }

    .about__gallery {
        width: 100%;
    }

    .contact-band__inner {
        grid-template-columns: 1.1fr 1fr 1.25fr 0.85fr;
        gap: 24px;
    }

    .contact-band__title::after {
        display: none;
    }

    .contact-band__item,
    .contact-band__qr {
        gap: 12px;
    }

    .contact-band__item strong {
        font-size: 18px;
    }

    .contact-band__item--phone strong {
        font-size: 21px;
    }

    .contact-band__qr img {
        width: 88px;
        height: 88px;
    }

    .site-footer__inner {
        grid-template-columns: 2.2fr repeat(3, minmax(0, 1fr)) 2fr;
        gap: 28px;
    }

    .footer-brand {
        padding-right: 24px;
    }

    .footer-contact {
        padding-left: 24px;
    }
}

@media (max-width: 1199px) {
    body.company-home {
        min-width: 0;
        overflow-x: hidden;
    }

    .site-header {
        height: auto;
    }

    .site-header__inner {
        width: 100%;
        min-height: 108px;
        padding: 13px 18px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .brand {
        width: 100%;
        gap: 11px;
    }

    .brand__mark {
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
    }

    .brand__text {
        min-width: 0;
        gap: 2px;
    }

    .brand__text strong {
        font-size: 18px;
        line-height: 1.25;
    }

    .brand__text small {
        font-size: 12px;
        line-height: 1.35;
    }

    .main-nav {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid #edf2f7;
    }

    .main-nav__link {
        height: 34px;
        justify-content: center;
        color: #263244;
        font-size: 13px;
        white-space: nowrap;
    }

    .main-nav__link::after {
        bottom: -1px;
        height: 2px;
    }

    .main-nav__link:hover::after,
    .main-nav__link--active::after {
        width: 28px;
    }

    .hero {
        height: clamp(500px, 55vw, 570px);
        min-height: 500px;
    }

    .hero__media img {
        object-position: center;
    }

    .hero__slide::before {
        width: min(720px, 78vw);
    }

    .hero__copy {
        width: 100%;
        padding: 54px 36px 108px;
    }

    .hero__label {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .hero__copy h2 {
        max-width: 520px;
        font-size: 38px;
        line-height: 1.22;
    }

    .hero__description {
        max-width: 500px;
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.8;
    }

    .hero__actions {
        width: auto;
        gap: 12px;
        margin-top: 26px;
    }

    .btn {
        width: auto;
        min-width: 160px;
        height: 50px;
        gap: 10px;
        font-size: 15px;
    }

    .hero__pagination,
    .hero__pagination.swiper-pagination-horizontal {
        bottom: 20px;
        width: calc(100% - 48px);
    }

    .section {
        padding: 48px 0 52px;
    }

    .section__heading {
        width: 100%;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .section__heading h2 {
        font-size: 28px;
    }

    .section__heading h2::after {
        margin-top: 11px;
    }

    .section__heading p {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.75;
    }

    .product-grid {
        width: 100%;
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card {
        min-height: 0;
    }

    .product-card > img {
        height: 218px;
    }

    .product-card__placeholder {
        height: 218px;
    }

    .product-card__body {
        padding: 22px 18px 24px;
    }

    .product-card__body h3 {
        font-size: 20px;
    }

    .product-card__body p {
        min-height: 0;
        margin: 12px 0 16px;
        font-size: 14px;
        line-height: 1.85;
    }

    .about__inner {
        width: 100%;
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about__gallery {
        width: 100%;
    }

    .about__main-img {
        height: 220px;
    }

    .about__thumbs {
        gap: 7px;
        margin-top: 8px;
    }

    .about__thumbs img {
        height: 78px;
    }

    .about__content {
        padding-top: 0;
    }

    .about__content h3 {
        margin-bottom: 14px;
        font-size: 22px;
        line-height: 1.45;
    }

    .about__content > p {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.95;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .advantage-item {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .advantage-item img {
        width: 40px;
        height: 40px;
    }

    .advantage-item strong {
        font-size: 16px;
    }

    .advantage-item span {
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-band::after {
        right: -150px;
        width: 280px;
        height: 230px;
    }

    .contact-band__inner {
        width: 100%;
        min-height: 0;
        padding: 34px 20px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-band__title h2 {
        font-size: 28px;
    }

    .contact-band__title p {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-band__title::after {
        display: none;
    }

    .contact-band__item {
        gap: 16px;
    }

    .contact-band__item img {
        width: 36px;
        height: 36px;
    }

    .contact-band__item strong {
        font-size: 18px;
        line-height: 1.45;
    }

    .contact-band__item--phone strong {
        font-size: 21px;
    }

    .contact-band__qr {
        align-items: center;
        gap: 16px;
    }

    .contact-band__qr img {
        width: 96px;
        height: 96px;
    }

    .site-footer__inner {
        width: 100%;
        min-height: 0;
        padding: 36px 20px 28px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        padding-right: 0;
        border-right: 0;
    }

    .footer-brand__head {
        align-items: flex-start;
        gap: 13px;
    }

    .footer-brand__head img {
        width: 48px;
        height: 48px;
    }

    .footer-brand__head strong {
        font-size: 18px;
    }

    .footer-brand p {
        margin: 22px 0 20px;
        font-size: 13px;
        line-height: 1.9;
    }

    .footer-links {
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .footer-links h3 {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .footer-links a,
    .footer-links__text {
        display: inline-flex;
        margin: 0 18px 10px 0;
        font-size: 13px;
    }

    .footer-contact {
        padding: 24px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        border-left: 0;
    }

    .footer-contact p {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .site-footer__record {
        width: 100%;
        padding: 0 20px 76px;
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
        line-height: 1.6;
    }

    .back-to-top {
        position: absolute;
        right: 16px;
        bottom: 16px;
        width: 82px;
        height: 32px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__swiper .swiper-wrapper {
        transition-duration: 0ms !important;
    }

    .hero__pagination .swiper-pagination-bullet {
        transition: none;
    }
}

@media (min-width: 640px) and (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about__main-img {
        height: 330px;
    }

    .about__thumbs img {
        height: 120px;
    }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: 0;
        overflow: hidden;
        background: #ffffff;
    }

    .hero__swiper {
        position: relative;
        inset: auto;
        height: auto;
    }

    .hero__swiper .swiper-wrapper {
        height: auto;
        align-items: stretch;
    }

    .hero__slide {
        height: auto;
        display: grid;
        grid-template-rows: clamp(210px, 60vw, 240px) auto;
        align-content: stretch;
        background: #ffffff;
    }

    .hero__slide::before {
        display: none;
    }

    .hero__media {
        position: static;
        inset: auto;
        width: 100%;
        height: clamp(210px, 60vw, 240px);
    }

    .hero__media img {
        object-position: center;
    }

    .hero__copy {
        position: static;
        width: 100%;
        height: auto;
        min-height: 300px;
        margin: 0;
        padding: 22px 18px 76px;
        display: block;
        background: #fff;
        pointer-events: none;
    }

    .hero__label {
        margin-bottom: 10px;
        padding-left: 34px;
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .hero__label::before {
        width: 24px;
    }

    .hero__copy h2 {
        max-width: none;
        font-size: clamp(24px, 6.6vw, 28px);
        line-height: 1.28;
        letter-spacing: -0.015em;
    }

    .hero__description {
        max-width: none;
        margin-top: 11px;
        color: #4a5565;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero__actions {
        width: 100%;
        margin-top: 18px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero__actions .btn {
        width: 100%;
        min-width: 0;
        height: 44px;
        gap: 7px;
        font-size: 14px;
    }

    .hero__disclaimer {
        margin-top: 12px;
        font-size: 11px;
        line-height: 1.45;
    }

    .hero__pagination,
    .hero__pagination.swiper-pagination-horizontal {
        bottom: 16px;
        width: calc(100% - 36px);
        height: 42px;
    }

    .hero__pagination .swiper-pagination-bullet {
        padding: 0 3px;
        font-size: 11px;
        white-space: nowrap;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-card > img,
    .product-card__placeholder {
        height: clamp(112px, 34vw, 218px);
    }

    .product-card__body {
        padding: 14px 10px 16px;
    }

    .product-card__body h3 {
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.35;
    }

    .product-card__body p {
        margin: 8px 0 11px;
        font-size: 12px;
        line-height: 1.65;
    }

    .product-card__body a {
        gap: 5px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .site-header__inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand__text strong {
        font-size: 16px;
    }

    .main-nav__link {
        font-size: 12px;
    }

    .hero__copy {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero__copy h2 {
        font-size: 23px;
    }

    .hero__description {
        font-size: 13px;
    }

    .hero__pagination,
    .hero__pagination.swiper-pagination-horizontal {
        width: calc(100% - 32px);
    }

    .hero__pagination .swiper-pagination-bullet {
        font-size: 10px;
    }

    .product-grid,
    .about__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-grid {
        gap: 10px;
    }

    .product-card__body {
        padding: 12px 8px 13px;
    }

    .product-card__body p {
        font-size: 11px;
    }

    .contact-band__inner,
    .site-footer__inner,
    .site-footer__record {
        padding-right: 16px;
        padding-left: 16px;
    }
}
