@charset "UTF-8";
/* LNC CLEAN home page - sample-inspired six-section layout */

.home-page {
    --home-content: min(90vw, 1280px);
    --home-blue: #00316a;
    --home-blue-dark: #062b55;
    --home-blue-light: #0e4496;
    --home-silver: #a6b4c0;
    --home-ink: #1a1a1a;
    --home-ease: 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
    overflow-x: hidden;
    color: var(--home-ink);
    background: #fff;
}

.home-page .content-wrap {
    position: relative;
    width: var(--home-content);
    margin-inline: auto;
}
.home-page .site-main > section {
    position: relative;
    min-height: 900px;
    min-height: 100svh;
    overflow: hidden;
}
.home-page .eyebrow {
    margin: 0;
    color: #84bcec;
    font-size: clamp(17px, 1.45vw, 24px);
    letter-spacing: -0.04em;
}
.home-page .eyebrow strong {
    font-weight: 800;
}
.home-page .section-title--side {
    flex: 0 0 238px;
}
.home-page .section-title h2 {
    margin: 20px 0 0;
    font-size: clamp(45px, 4vw, 67px);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.075em;
}
.home-page .section-title h2 strong {
    font-weight: 800;
}

/* Hero */
.home-page .hero {
    position: relative;
    color: #fff;
    background: var(--home-blue-dark);
    isolation: isolate;
}
.home-page .hero__slides,
.home-page .hero__slide {
    position: absolute;
    inset: 0;
}
.home-page .hero__slide {
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    transition:
        opacity 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
        visibility 0s linear 360ms;
}
.home-page .hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.home-page .hero-slide--01 {
    background-image: url("../images/main/home-hero-background.webp");
}
.home-page .hero-slide--02 {
    background-image: url("../images/main/home-hero-office.webp?v=20260814-opt1");
}
.home-page .hero-slide--03 {
    background-image: url("../images/main/home-hero-03.webp");
}
.home-page .hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 19, 37, 0.82), rgba(2, 28, 55, 0.28) 68%, rgba(2, 20, 39, 0.4));
}
.home-page .hero__content {
    position: relative;
    z-index: 1;
    opacity: 0;
    padding: 100px 0px 0;
    transform: translateY(12px);
    transition:
        opacity 320ms cubic-bezier(0.22, 0.61, 0.36, 1) 40ms,
        transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1) 40ms;
}
.home-page .hero__slide.is-active .hero__content {
    opacity: 1;
    transform: translateY(0);
}
.home-page .hero h1,
.home-page .hero h2 {
    max-width: 760px;
    margin: 27px 0 30px;
    font-size: clamp(42px, 4.1vw, 66px);
    font-weight: 350;
    line-height: 1.14;
    letter-spacing: -0.07em;
}
.home-page .hero h1 strong,
.home-page .hero h2 strong {
    font-weight: 800;
}
.home-page .hero__description {
    margin: 0;
    font-size: clamp(15px, 1.2vw, 19px);
    letter-spacing: -0.04em;
}
.home-page .hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 42px;
}
.home-page .button-link {
    display: inline-flex;
    min-width: 170px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    font-weight: 700;
    transition:
        color var(--home-ease),
        background var(--home-ease),
        border-color var(--home-ease),
        transform var(--home-ease);
}
.home-page .button-link--primary {
    border-color: var(--home-blue-light);
    background: var(--home-blue-light);
}
.home-page .button-link:hover,
.home-page .button-link:focus-visible {
    color: var(--home-blue);
    border-color: #fff;
    background: #fff;
    outline: 0;
    transform: translateY(-2px);
}
.home-page .hero__pagination {
    position: absolute;
    bottom: 38px;
    left: 50%;
    display: flex;
    z-index: 3;
    width: var(--home-content);
    gap: 10px;
    transform: translateX(-50%);
}
.home-page .hero__pagination button {
    position: relative;
    width: 44px;
    height: 44px;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
}
.home-page .hero__pagination button::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.38);
    content: "";
    transition: background-color var(--home-ease);
}
.home-page .hero__pagination button:hover::before,
.home-page .hero__pagination button:focus-visible::before {
    background: rgba(255, 255, 255, 0.7);
}
.home-page .hero__pagination button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 3px;
}
.home-page .hero__progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
}
/* Services carousel */
.home-page .products {
    display: grid;
    align-items: center;
    background: #fff;
}
.home-page .products__backdrop {
    position: absolute;
    inset: 0 auto 0 0;
    width: 52%;
    border-radius: 0 0 36% 0;
    background:
        linear-gradient(150deg, rgba(12, 67, 130, 0.98), rgba(5, 39, 78, 0.96)),
        url("../images/main/home-hero-building.webp") center/cover;
}
.home-page .products__inner {
    display: flex;
    z-index: 1;
    align-items: center;
    gap: 44px;
    padding-top: 70px;
}
.home-page .products .section-title {
    color: #fff;
}
.home-page .products .eyebrow {
    color: #9cccf4;
}
.home-page .carousel-arrows {
    display: flex;
    gap: 15px;
    margin-top: 72px;
}
.home-page .carousel-arrows button {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    font-size: 38px;
    font-weight: 200;
    line-height: 1;
    transition:
        color var(--home-ease),
        background var(--home-ease),
        border-color var(--home-ease);
}
.home-page .carousel-arrows button:hover,
.home-page .carousel-arrows button:focus-visible {
    color: var(--home-blue);
    border-color: #fff;
    background: #fff;
    outline: 0;
}
.home-page .product-carousel {
    flex: 1;
    min-width: 0;
    margin: -36px -32px -48px;
    padding: 36px 32px 48px;
    overflow: hidden;
    touch-action: pan-y;
}
.home-page .product-track {
    display: flex;
    gap: 40px;
    transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.home-page .product-card {
    position: relative;
    flex: 0 0 calc((100% - 80px) / 3);
    min-width: 0;
    overflow: hidden;
    color: #fff;
    background: #0c315b;
    box-shadow: 0 18px 44px rgba(0, 25, 54, 0.16);
    transition:
        transform var(--home-ease),
        box-shadow var(--home-ease);
}
.home-page .product-card:hover,
.home-page .product-card:focus-visible {
    outline: 0;
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(0, 25, 54, 0.25);
}
.home-page .product-card__image {
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.home-page .product-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(1, 19, 40, 0.92));
}
.home-page .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.home-page .product-card:hover img,
.home-page .product-card:focus-visible img {
    transform: scale(1.06);
}
.home-page .product-card > span:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 0 28px 27px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.05em;
}
.home-page .product-card small {
    display: block;
    margin-bottom: 7px;
    color: #9cccf4;
    font-size: 12px;
    letter-spacing: 0.08em;
}

/* Brand introduction */
.home-page .brand-intro {
    display: grid;
    align-items: center;
    background: #fff;
}
.home-page .brand-intro__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(56px, 6vw, 84px);
    padding: 90px 0;
}
.home-page .brand-intro__visual {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid #e4e9ee;
    border-radius: 20px;
    background: #eef2f5;
    box-shadow: 0 24px 52px rgba(7, 37, 68, 0.1);
}
.home-page .brand-intro__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
}
.home-page .brand-intro__content {
    max-width: 620px;
}
.home-page .brand-intro__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    color: var(--home-blue-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}
.home-page .brand-intro__eyebrow span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--home-blue-light);
}
.home-page .brand-intro h2 {
    margin: 0;
    color: #071c34;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 350;
    line-height: 1.12;
    letter-spacing: -0.075em;
}
.home-page .brand-intro h2 strong {
    color: var(--home-blue);
    font-weight: 800;
}
.home-page .brand-intro__lead {
    margin: 30px 0 0;
    color: #536b82;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.75;
    letter-spacing: -0.04em;
}
.home-page .brand-intro__description {
    margin: 18px 0 0;
    color: #647587;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: -0.025em;
}
.home-page .brand-intro__link {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0 22px;
    border-radius: 28px;
    color: #fff;
    background: var(--home-blue);
    font-size: 14px;
    font-weight: 800;
    transition:
        background var(--home-ease),
        transform var(--home-ease),
        box-shadow var(--home-ease);
}
.home-page .brand-intro__link .material-symbols-outlined {
    font-size: 18px;
}
.home-page .brand-intro__link:hover,
.home-page .brand-intro__link:focus-visible {
    outline: 0;
    background: var(--home-blue-light);
    box-shadow: 0 12px 24px rgba(12, 67, 130, 0.18);
    transform: translateY(-2px);
}

/* Strengths */
.home-page .factory {
    display: grid;
    align-items: center;
    color: #fff;
    background: url("../images/main/home-hero-03.webp") center/cover;
}
.home-page .factory__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(3, 24, 47, 0.95), rgba(5, 43, 82, 0.75));
}
.home-page .factory__inner {
    display: flex;
    z-index: 1;
    gap: 70px;
    align-items: center;
    padding-top: 70px;
}
.home-page .factory .eyebrow {
    color: #91c7f2;
}
.home-page .factory-list {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}
.home-page .factory-card {
    position: relative;
    display: flex;
    min-height: 390px;
    overflow: hidden;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 18px;
    background: #071d32;
    isolation: isolate;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
    transition:
        transform var(--home-ease),
        border-color var(--home-ease),
        box-shadow var(--home-ease);
}
.home-page .factory-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 15, 30, 0.06) 18%, rgba(3, 23, 44, 0.44) 52%, rgba(2, 18, 35, 0.96) 100%);
    content: "";
}
.home-page .factory-card:hover {
    border-color: rgba(157, 205, 243, 0.8);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.3);
    transform: translateY(-7px);
}
.home-page .factory-card__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.home-page .factory-card:hover .factory-card__image {
    transform: scale(1.06);
}
.home-page .factory-card__content {
    width: 100%;
    padding: 34px 30px;
}
.home-page .factory-card h3 {
    margin: 0 0 12px;
    font-size: 31px;
    letter-spacing: -0.06em;
}
.home-page .factory-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: -0.025em;
}

/* Company */
.home-page .company {
    display: grid;
    align-items: center;
    background: #f7f9fb;
}
.home-page .company__inner {
    padding-top: 70px;
}
.home-page .company__heading {
    text-align: left;
}
.home-page .company__heading h2 {
    max-width: 880px;
    margin: 24px 0 0;
    font-size: clamp(36px, 3.25vw, 52px);
    font-weight: 300;
    line-height: 1.28;
    letter-spacing: -0.07em;
}
.home-page .company__heading h2 strong {
    color: var(--home-blue);
    font-weight: 800;
}
.home-page .company-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 58px 0 0;
    padding: 0;
    border-top: 1px solid #dce3ea;
    border-left: 1px solid #dce3ea;
    list-style: none;
}
.home-page .company-counter {
    display: flex;
    min-height: 190px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    overflow: hidden;
    padding: 34px 40px;
    border-right: 1px solid #dce3ea;
    border-bottom: 1px solid #dce3ea;
    background: #fff;
}
.home-page .company-counter__icon {
    display: block;
    width: 64px;
    height: 52px;
    flex: 0 0 64px;
    margin-top: 2px;
    color: var(--home-blue);
    background-color: currentColor;
    -webkit-mask-image: var(--company-counter-icon);
    mask-image: var(--company-counter-icon);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 52px 52px;
    mask-size: 52px 52px;
}
.home-page .company-counter__icon--building { --company-counter-icon: url("../images/icons/ui/lucide/building-2.svg"); }
.home-page .company-counter__icon--projects { --company-counter-icon: url("../images/icons/ui/lucide/circle-check-big.svg"); }
.home-page .company-counter__icon--safety { --company-counter-icon: url("../images/icons/ui/lucide/shield-check.svg"); }
.home-page .company-counter__icon--support { --company-counter-icon: url("../images/icons/ui/lucide/headphones.svg"); }
.home-page .company-counter__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}
.home-page .company-counter__value {
    display: flex;
    align-items: baseline;
    color: var(--home-blue);
    font-size: clamp(50px, 4.4vw, 70px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.065em;
    font-variant-numeric: tabular-nums;
}
.home-page .company-counter__unit {
    margin-left: 7px;
    font-size: clamp(18px, 1.55vw, 24px);
    font-weight: 700;
    letter-spacing: -0.05em;
}
.home-page .company-counter__label {
    margin-top: 18px;
    color: #43576b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

/* Shared horizontal ticker */
.home-page .auto-ticker {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.home-page .auto-ticker::-webkit-scrollbar {
    display: none;
}
.home-page .auto-ticker__track {
    display: flex;
    width: max-content;
    animation: auto-ticker var(--ticker-duration, 30s) linear infinite;
    animation-play-state: paused;
    will-change: transform;
}
.home-page .auto-ticker.is-running .auto-ticker__track {
    animation-play-state: running;
}
.home-page .auto-ticker:hover .auto-ticker__track {
    animation-play-state: paused;
}

@keyframes auto-ticker {
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Work gallery ticker */
.home-page .home-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    background: #fff radial-gradient(circle at 12% 20%, rgba(45, 114, 184, 0.1), transparent 32%);
}
.home-page .home-gallery__inner {
    width: 100%;
    min-width: 0;
    padding: 118px 0 96px;
}
.home-page .home-gallery__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}
.home-page .home-gallery .section-title h2 {
    color: var(--home-ink);
    font-size: clamp(37px, 3.4vw, 56px);
    line-height: 1.18;
}
.home-page .home-gallery .section-title h2 strong {
    color: var(--home-blue);
}
.home-page .home-gallery__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}
.home-page .home-gallery__more {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 1px solid #d4dee8;
    border-radius: 26px;
    color: #445361;
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
    transition:
        color var(--home-ease),
        border-color var(--home-ease),
        background var(--home-ease),
        transform var(--home-ease);
}
.home-page .home-gallery__more .material-symbols-outlined {
    font-size: 20px;
}
.home-page .home-gallery__more:hover,
.home-page .home-gallery__more:focus-visible {
    color: #fff;
    border-color: var(--home-blue);
    background: var(--home-blue);
    outline: 0;
    transform: translateY(-2px);
}
.home-page .home-gallery__ticker {
    --ticker-duration: 58s;
    margin: 34px 0 -44px;
    padding: 24px 0 44px;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.home-page .home-gallery__group {
    display: flex;
    flex: 0 0 auto;
    gap: 24px;
    padding-right: 24px;
}
.home-page .home-gallery-card {
    position: relative;
    display: block;
    width: clamp(285px, 24vw, 370px);
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    background: var(--home-blue-dark);
    box-shadow: 0 20px 40px rgba(8, 46, 85, 0.14);
}
.home-page .home-gallery-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 23, 44, 0.02) 24%, rgba(3, 24, 47, 0.86) 100%);
    content: "";
}
.home-page .home-gallery-card__image,
.home-page .home-gallery-card__image img {
    display: block;
    width: 100%;
    height: 100%;
}
.home-page .home-gallery-card__image img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.home-page .home-gallery-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    z-index: 1;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 7px 18px;
    padding: 28px;
}
.home-page .home-gallery-card__content small {
    grid-column: 1/-1;
    color: #9fd0f5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}
.home-page .home-gallery-card__content strong {
    font-size: clamp(21px, 1.65vw, 27px);
    line-height: 1.24;
    letter-spacing: -0.06em;
}
.home-page .home-gallery-card__content .material-symbols-outlined {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 21px;
    transition:
        color var(--home-ease),
        background var(--home-ease),
        transform var(--home-ease);
}
.home-page .home-gallery-card:hover img,
.home-page .home-gallery-card:focus-visible img {
    transform: scale(1.06);
}
.home-page .home-gallery-card:hover .material-symbols-outlined,
.home-page .home-gallery-card:focus-visible .material-symbols-outlined {
    color: var(--home-blue);
    background: #fff;
    transform: rotate(45deg);
}
.home-page .home-gallery-card:focus-visible {
    outline: 3px solid var(--home-blue-light);
    outline-offset: 4px;
}
@media (min-width: 1281px) {
    .home-page .home-gallery__heading {
        padding-right: 96px;
    }
}

/* Customer */
.home-page .customer {
    display: grid;
    align-items: center;
    color: #fff;
    background: url("../images/main/consultation-customer-model.webp") right center/cover;
}
@media (max-width: 920px) {
    .home-page .customer {
        background: url("../images/main/consultation-customer-model-mobile-jpg.webp") center/cover;
    }
}
.home-page .customer__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(12, 67, 130, 0.92), rgba(3, 34, 68, 0.97));
}
.home-page .customer__inner {
    display: block;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: left;
}
.home-page .customer .eyebrow {
    color: #a8d5f7;
}
.home-page .customer-content {
    margin-top: 36px;
    width: 100%;
    min-width: 0;
    text-align: left;
}
.home-page .notice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.home-page .notice-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    transition:
        background var(--home-ease),
        transform var(--home-ease);
}
.home-page .notice-card:hover,
.home-page .notice-card:focus-visible {
    background: rgba(0, 26, 56, 0.28);
    outline: 0;
    transform: translateY(-4px);
}
.home-page .notice-card > span {
    color: #a8d5f7;
    font-size: 13px;
    letter-spacing: 0.08em;
}
.home-page .notice-card strong {
    margin-top: 22px;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.07em;
}
.home-page .notice-card p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.55;
}
.home-page .notice-card b {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px dotted rgba(255, 255, 255, 0.5);
    font-size: 14px;
}
.home-page .service-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
    text-align: left;
}
.home-page .service-link {
    display: flex;
    min-height: 150px;
    align-items: center;
    gap: 24px;
    padding: 30px 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition:
        background var(--home-ease),
        transform var(--home-ease);
    text-align: left;
}
.home-page .service-link:hover,
.home-page .service-link:focus-visible {
    background: rgba(0, 26, 56, 0.28);
    outline: 0;
    transform: translateY(-4px);
}
.home-page .service-link > .material-symbols-outlined {
    font-size: 48px;
}
.home-page .service-link strong,
.home-page .service-link small {
    display: block;
    text-align: left;
}
.home-page .service-link strong {
    font-size: 22px;
    letter-spacing: -0.05em;
}
.home-page .service-link small {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

/* Procurement */
.home-page .site-main > .partners {
    min-height: auto ;
    background: #fff radial-gradient(circle at 88% 20%, rgba(12, 67, 130, 0.08), transparent 35%);
}
.home-page .partners__inner {
    display: block;
    min-height: auto;
    padding: 90px 0 100px;
    text-align: left;
}
.home-page .partners .section-title {
    text-align: left;
}
.home-page .partner-grid {
    --ticker-duration: 30s;
    margin-top: 36px;
    width: 100%;
    min-width: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.home-page .partner-grid__group {
    display: flex;
    flex: none;
    gap: 20px;
    margin: 0;
    padding: 0 20px 0 0;
    list-style: none;
}
.home-page .partner-grid__group li {
    display: grid;
    width: 220px;
    min-height: 138px;
    flex: 0 0 220px;
    place-items: center;
    border: 1px solid #dfe5ea;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(9, 49, 89, 0.05);
}
.home-page .partner-grid__group img {
    display: block;
    width: 78%;
    max-width: 172px;
    height: 66px;
    object-fit: contain;
    filter: grayscale(0.15);
}

@media (max-width: 1100px) {
    .home-page .products__inner,
    .home-page .factory__inner,
    .home-page .customer__inner {
        gap: 36px;
    }
    .home-page .section-title--side {
        flex-basis: 205px;
    }
    .home-page .factory-card__content {
        padding-inline: 24px;
    }
    .home-page .notice-card {
        padding: 25px;
    }
}

@media (max-width: 920px) {
    .home-page .site-main > section {
        min-height: auto;
    }
    .home-page .site-main > .hero {
        min-height: 100dvh;
    }
    .home-page .products__backdrop {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .home-page .products__inner,
    .home-page .factory__inner,
    .home-page .customer__inner {
        display: block;
        padding: 125px 0 80px;
    }
    .home-page .section-title--side {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
    }
    .home-page .section-title h2 {
        margin-top: 10px;
    }
    .home-page .carousel-arrows {
        margin: 0 0 6px;
    }
    .home-page .product-carousel {
        margin-top: 4px;
    }
    .home-page .product-card {
        flex-basis: calc((100% - 40px) / 2);
    }
    .home-page .brand-intro__inner {
        grid-template-columns: 1fr;
        gap: 54px;
        padding: 100px 0;
    }
    .home-page .brand-intro__visual {
        width: min(100%, 620px);
        aspect-ratio: 16/11;
    }
    .home-page .brand-intro__content {
        max-width: 720px;
    }
    .home-page .factory-list {
        margin-top: 60px;
    }
    .home-page .company {
        min-height: 760px ;
    }
    .home-page .company__inner {
        padding: 115px 0 90px;
    }
    .home-page .company-links {
        margin-top: 54px;
    }
    .home-page .home-gallery__inner {
        padding: 105px 0 80px;
    }
    .home-page .home-gallery__heading {
        align-items: flex-start;
    }
    .home-page .home-gallery__ticker {
        margin-top: 24px;
    }
    .home-page .customer-content {
        margin-top: 48px;
    }
    .home-page .partners__inner {
        display: block;
        padding-top: 100px;
    }
    .home-page .partners .section-title {
        display: block;
    }
    .home-page .partner-grid {
        margin-top: 42px;
    }
}

@media (max-width: 640px) {
    .home-page {
        --home-content: 90vw;
    }
    .home-page .hero__slide {
        background-position: 57% center;
    }
    .home-page .hero__content {
        padding: 75px 0 0;
    }
    .home-page .hero h1,
    .home-page .hero h2 {
        margin: 19px 0 28px;
        font-size: 40px;
    }
    .home-page .hero__description {
        max-width: 290px;
        font-size: 14px;
        line-height: 1.6;
    }
    .home-page .hero__actions {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 32px;
    }
    .home-page .button-link {
        min-width: 164px;
        min-height: 48px;
    }
    .home-page .hero__pagination {
        bottom: 58px;
        gap: 8px;
    }
    .home-page .hero__pagination button {
        width: 44px;
    }
    .home-page .products__inner,
    .home-page .factory__inner,
    .home-page .customer__inner {
        padding-top: 98px;
        padding-bottom: 58px;
    }
    .home-page .section-title--side {
        display: block;
    }
    .home-page .section-title h2 {
        font-size: 47px;
    }
    .home-page .carousel-arrows {
        margin-top: 30px;
    }
    .home-page .carousel-arrows button {
        width: 48px;
        height: 48px;
    }
    .home-page .product-carousel {
        margin-top: -6px;
        margin-right: -5vw;
        margin-left: -12px;
        padding-left: 28px;
    }
    .home-page .product-track {
        gap: 14px;
    }
    .home-page .product-card {
        flex-basis: 78%;
    }
    .home-page .product-card > span:last-child {
        padding: 0 22px 24px;
        font-size: 23px;
    }
    .home-page .brand-intro__inner {
        gap: 38px;
        padding: 76px 0;
    }
    .home-page .brand-intro__visual {
        aspect-ratio: 4/3;
        border-radius: 14px;
    }
    .home-page .brand-intro__content {
        max-width: none;
    }
    .home-page .brand-intro__eyebrow {
        margin-bottom: 20px;
        font-size: 11px;
    }
    .home-page .brand-intro h2 {
        font-size: 38px;
        line-height: 1.17;
    }
    .home-page .brand-intro__lead {
        max-width: calc(100% - 60px);
        margin-top: 24px;
        font-size: 17px;
        line-height: 1.7;
    }
    .home-page .brand-intro__description {
        max-width: calc(100% - 60px);
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.8;
    }
    .home-page .brand-intro__link {
        margin-top: 26px;
    }
    .home-page .factory-list {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 52px;
    }
    .home-page .factory-card {
        min-height: 300px;
    }
    .home-page .factory-card__content {
        padding: 28px 26px;
    }
    .home-page .factory-card h3 {
        margin-bottom: 10px;
        font-size: 28px;
    }
    .home-page .company {
        min-height: 720px ;
    }
    .home-page .company__inner {
        padding-top: 95px;
    }
    .home-page .company__heading h2 {
        font-size: clamp(34px, 9vw, 36px);
    }
    .home-page .company-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 42px;
    }
    .home-page .company-counter {
        min-height: 168px;
        gap: 10px;
        padding: 24px 10px;
    }
    .home-page .company-counter__icon {
        width: 32px;
        height: 30px;
        flex-basis: 32px;
        margin-top: 1px;
        -webkit-mask-size: 30px 30px;
        mask-size: 30px 30px;
    }
    .home-page .company-counter__value {
        font-size: clamp(30px, 8.2vw, 38px);
    }
    .home-page .company-counter__unit {
        margin-left: 3px;
        font-size: 11px;
        line-height: 1.15;
        white-space: nowrap;
    }
    .home-page .company-counter__label {
        margin-top: 14px;
        font-size: 14px;
    }
    .home-page .home-gallery__inner {
        padding: 88px 0 64px;
    }
    .home-page .home-gallery__heading {
        display: block;
    }
    .home-page .home-gallery .section-title h2 {
        font-size: 35px;
    }
    .home-page .home-gallery__actions {
        margin-top: 28px;
    }
    .home-page .home-gallery__more {
        min-height: 46px;
        padding: 0 16px;
        font-size: 13px;
    }
    .home-page .home-gallery__ticker {
        margin-top: 14px;
        margin-inline: -5vw;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .home-page .home-gallery__group {
        gap: 14px;
        padding-right: 14px;
    }
    .home-page .home-gallery-card {
        width: 78vw;
        max-width: 330px;
        border-radius: 14px;
    }
    .home-page .home-gallery-card__content {
        padding: 22px;
    }
    .home-page .home-gallery-card__content strong {
        font-size: 22px;
    }
    .home-page .notice-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .home-page .notice-card {
        min-height: 205px;
    }
    .home-page .notice-card strong {
        margin-top: 12px;
        font-size: 23px;
    }
    .home-page .notice-card p {
        margin-top: 10px;
    }
    .home-page .notice-card b {
        padding-top: 12px;
    }
    .home-page .service-links {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }
    .home-page .service-link {
        min-height: 125px;
        padding: 24px 20px;
    }
    .home-page .service-link > .material-symbols-outlined {
        font-size: 40px;
    }
    .home-page .site-main > .partners {
        min-height: auto ;
    }
    .home-page .partners__inner {
        min-height: 0;
        padding-top: 88px;
        padding-bottom: 65px;
    }
    .home-page .partner-grid {
        width: calc(100% + 5vw);
        margin-top: 32px;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }
    .home-page .partner-grid {
        --ticker-duration: 24s;
    }
    .home-page .partner-grid__group {
        gap: 12px;
        padding-right: 12px;
    }
    .home-page .partner-grid__group li {
        width: 178px;
        min-height: 112px;
        flex-basis: 178px;
    }
    .home-page .partner-grid__group img {
        width: 82%;
        height: 58px;
    }

}
