

:root {
    --brand-red: #ec003d;
    --brand-red-dark: #d80037;
    --ink: #303846;
    --ink-deep: #222a35;
    --muted: #707784;
    --surface: #ffffff;
    --line: #e7e9ed;
    --radius-lg: 34px;
    --radius-md: 18px;
    --shadow-soft: 0 18px 50px rgba(20, 28, 38, .12);
    --content-width: 1400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    width: min(calc(100% - 48px), 1200px);
    margin-inline: auto;
}

.page-breadcrumb {
    padding-top: 50px;
    background: var(--surface, #ffffff);
}

.page-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.page-breadcrumb__list .breadcrumb-item,
.page-breadcrumb__list .breadcrumb-item a {
    color: #a1a3a7;
}

.page-breadcrumb__list .breadcrumb-item + .breadcrumb-item::before {
    padding-right: .55rem;
    color: #b9bbc0;
    content: "/";
}

.page-breadcrumb__list .breadcrumb-item + .breadcrumb-item {
    padding-left: .55rem;
}

.slider-button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: transparent;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.slider-button:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--brand-red);
}

.slider-button.dark {
    color: var(--ink);
}

.slider-button.dark:hover {
    background: var(--ink);
    color: #fff;
}

.navbar-shell {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 30;
}

.main-navbar {
    min-height: 82px;
    padding: 0 20px 0 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 16px 48px rgba(19, 24, 32, .13);
}

.navbar-brand {
    margin-right: 46px;
    color: var(--brand-red);
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -2.6px;
    line-height: 1;
}
.navbar-brand img {
    width: auto;
    height: 47px;
}
.main-navbar .navbar-nav {
    gap: 22px;
    margin: auto;
}

.main-navbar .nav-link {
    position: relative;
    padding: 31px 2px 26px !important;
    color: #171b22;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 20px;
    background: var(--brand-red);
    clip-path: polygon(50% 0, 100% 48%, 100% 100%, 0 100%, 0 48%);
    transform: translateX(-50%);
    transition: width .2s ease;
}

.main-navbar .nav-link.active::after,
.main-navbar .nav-link:hover::after {
    width: 24px;
}

.navbar-contact {
    min-width: 120px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--brand-red);
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
    transition: transform .2s ease, background-color .2s ease;
}

.navbar-contact:hover {
    color: #fff;
    background: var(--brand-red-dark);
    transform: translateY(-2px);
}

.cart-button {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--brand-red);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--brand-red);
    background: #fff;
    font-size: 1.15rem;
    transition: all .2s ease;
}

.cart-button:hover {
    color: #fff;
    background: var(--brand-red);
}

.hero-section {
    position: relative;
    min-height: 680px;
}

.hero-section.hero-section--inner {
    height: 140px;
    min-height: 140px;
    max-height: 140px;
}

.hero-slider {
    position: relative;
    height: 610px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .65s ease, transform 1.2s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 21, 30, .12), rgba(14, 21, 30, 0) 58%);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    right: max(7vw, calc((100vw - var(--content-width)) / 2 + 34px));
    bottom: 46px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-story {
    position: absolute;
    left: 50%;
    bottom: -56px;
    z-index: 14;
    width: min(820px, calc(100% - 56px));
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    transform: translateX(-50%);
    box-shadow: var(--shadow-soft);
}

.hero-story__copy {
    min-height: 238px;
    padding: 54px 46px;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--brand-red);
}

.hero-story__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.8px;
}

.hero-story__title strong {
    display: block;
    font-weight: 800;
}

.hero-story__media {
    position: relative;
    min-height: 238px;
    display: block;
    overflow: hidden;
    color: inherit;
    background: var(--ink-deep);
    cursor: pointer;
}

.hero-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.68) saturate(.82);
    transition: transform .5s ease;
}

.hero-story__media:hover img,
.hero-story__media:focus-visible img {
    transform: scale(1.04);
}

.hero-story__media:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand-red);
    font-size: 1.3rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px rgba(236, 0, 61, .38);
    pointer-events: none;
    transition: transform .25s ease, background-color .25s ease;
}

.hero-story__media:hover .play-button,
.hero-story__media:focus-visible .play-button {
    transform: translate(-50%, -50%) scale(1.08);
}

.hero-video-popup {
    display: none;
    position: relative;
    width: min(1120px, 92vw);
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.hero-video-fallback-layer {
    display: none;
}

.hero-video-fallback-layer.is-open {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(20, 25, 33, .94);
}

.hero-video-fallback-layer.is-open .hero-video-popup {
    display: block;
}

.hero-video-popup__close {
    display: none;
}

.hero-video-fallback-layer.is-open .hero-video-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, .68);
    font-size: 1.1rem;
}

body.hero-video-fallback-open {
    overflow: hidden;
}

.hero-story-video {
    display: block;
    width: 100%;
    max-height: 82vh;
    background: #000;
}

.hero-benefits {
    padding: 118px 0 64px;
    background: #fff;
}

.benefit-card {
    position: relative;
    height: 310px;
    padding: 12px;
    overflow: hidden;
    background: var(--ink);
}

.benefit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.benefit-card:hover img {
    transform: scale(1.045);
    filter: brightness(.9);
}

.benefit-card__label {
    position: absolute;
    top: 28px;
    left: 22px;
    z-index: 2;
    padding: 8px 13px;
    color: #fff;
    background: var(--brand-red);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.05;
}

.why-section {
    padding: 74px 0 46px;
    color: #fff;
    background: var(--ink);
}

.why-intro {
    align-items: center;
    margin-bottom: 38px;
}

.why-kicker {
    margin-bottom: 24px;
    font-size: 1.48rem;
    font-weight: 400;
}

.why-title {
    max-width: 560px;
    margin: 0 0 26px;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.why-description {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    line-height: 1.45;
}

.why-visual {
    height: 390px;
    overflow: hidden;
    background: #111722;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.why-visual:hover img {
    transform: scale(1.035);
}

.quality-card {
    min-height: 375px;
    padding: 40px 34px 34px;
    color: #fff;
    background: var(--brand-red);
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.quality-card:hover {
    transform: translateY(-8px);
    background: var(--brand-red-dark);
    box-shadow: 0 20px 36px rgba(14, 20, 28, .18);
}

.quality-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: #fff;
    font-size: 1.4rem;
}

.quality-card h3 {
    min-height: 60px;
    margin: 0 0 28px;
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.05;
}

.quality-card p {
    margin: 0;
    color: rgba(255, 255, 255, .95);
    font-size: .9rem;
    line-height: 1.45;
}

.featured-section {
    padding: 84px 0 22px;
    background: #fff;
}

.featured-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.featured-copy {
    padding-top: 4px;
}

.featured-copy h2 {
    margin: 0 0 22px;
    font-size: 2rem;
    font-weight: 800;
    line-height: .96;
    letter-spacing: -1px;
}

.featured-copy p {
    max-width: 260px;
    margin: 0 0 72px;
    color: #4f5663;
    font-size: .95rem;
    line-height: 1.45;
}

.featured-controls {
    display: flex;
    gap: 10px;
}

.product-slider {
    min-width: 0;
    overflow: hidden;
}

.product-track {
    display: flex;
    gap: 12px;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.product-card {
    position: relative;
    flex: 0 0 294px;
    height: 360px;
    overflow: hidden;
    background: #d7dadd;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-card:hover img {
    transform: scale(1.055);
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(9, 13, 18, .74));
    pointer-events: none;
}

.product-card__name {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: 1.26rem;
    font-weight: 500;
}

.project-section {
    margin-top: 10px;
    padding: 120px 0 76px;
    border-top: 6px solid var(--brand-red);
    background: #fff;
}

.project-stage {
    display: grid;
    grid-template-columns: 39% 61%;
    min-height: 520px;
}

.project-copy {
    padding: 72px 74px;
    color: #fff;
    background: var(--brand-red);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-kicker {
    margin-bottom: 30px;
    font-size: 1.62rem;
    font-weight: 400;
}

.project-title {
    max-width: 430px;
    margin: 0 0 32px;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1px;
}

.project-description {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, .95);
    font-size: .96rem;
    line-height: 1.45;
}

.project-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #d8dce0;
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .26s ease, transform .55s ease;
}

.project-stage.is-changing .project-media img {
    opacity: .35;
    transform: scale(1.025);
}

.project-controls {
    position: absolute;
    left: 26px;
    bottom: 24px;
    display: flex;
    gap: 10px;
}

.project-controls .slider-button {
    background: var(--brand-red);
    border-color: #fff;
}

.project-controls .slider-button:hover {
    color: var(--brand-red);
    background: #fff;
}

.cta-banner {
    position: relative;
    width: min(1120px, calc(100% - 48px));
    min-height: 128px;
    margin: 90px auto 64px;
    padding: 24px 56px;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    background: url("assets/img-000.jpg") center / cover no-repeat;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 33, 27, .44);
    backdrop-filter: blur(2px);
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-banner__text {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 500;
}

.cta-button {
    min-width: 220px;
    padding: 18px 32px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--brand-red);
    font-size: 1.18rem;
    font-weight: 600;
    text-align: center;
    transition: transform .2s ease, background-color .2s ease;
}

.cta-button:hover {
    color: #fff;
    background: var(--brand-red-dark);
    transform: translateY(-2px);
}

.contact-title {
    margin: 0 0 66px;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
}

.footer-wrap {
    padding-bottom: 38px;
    background: #fff;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 70px 72px 24px;
    border-radius: 34px;
    color: #fff;
    background: var(--brand-red);
}

.site-footer::after {
    content: "Alfella";
    position: absolute;
    left: 28%;
    bottom: -58px;
    color: rgba(255, 255, 255, .055);
    font-size: 12rem;
    font-weight: 800;
    letter-spacing: -12px;
    line-height: 1;
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1.2fr .9fr;
    gap: 44px;
}

.footer-brand {
    margin-bottom: 34px;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
}

.footer-about {
    max-width: 430px;
    margin: 0;
    font-size: .92rem;
    line-height: 1.5;
}

.footer-brand img {
    max-height: 75px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 15px 22px;
    padding-top: 18px;
}

.footer-nav a {
    font-size: .86rem;
    font-weight: 700;
    transition: opacity .2s ease;
}

.footer-nav a:hover {
    opacity: .72;
}

.footer-contact {
    padding: 18px 0 0 38px;
    border-left: 1px solid rgba(255, 255, 255, .42);
}

.footer-contact h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 700;
}

.footer-social {
    width: 32px;
    height: 32px;
    margin-bottom: 34px;
    border: 4px solid rgba(255, 255, 255, 1);
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    transition: background-color .2s ease, color .2s ease;
}

.footer-social:hover {
    color: var(--brand-red);
    background: #fff;
}

.footer-contact address,
.footer-contact p {
    margin: 0 0 12px;
    font-style: normal;
    font-size: .88rem;
    line-height: 1.5;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .6);
    font-size: .8rem;
}

@media (max-width: 1199.98px) {
    :root {
        --content-width: 1120px;
    }

    .main-navbar {
        padding-left: 26px;
    }

    .navbar-brand {
        margin-right: 24px;
        font-size: 2rem;
    }

    .main-navbar .navbar-nav {
        gap: 12px;
    }

    .main-navbar .nav-link {
        font-size: .7rem;
    }

    .hero-story {
        width: min(760px, calc(100% - 48px));
    }

    .benefit-card {
        height: 270px;
    }

    .benefit-card__label {
        font-size: 1rem;
    }

    .quality-card {
        min-height: 340px;
    }

    .featured-layout {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .product-card {
        flex-basis: 250px;
        height: 330px;
    }

    .project-copy {
        padding: 58px 48px;
    }
}

@media (max-width: 991.98px) {
    .page-shell {
        width: min(calc(100% - 36px), var(--content-width));
    }

    .navbar-shell {
        top: 14px;
    }

    .main-navbar {
        min-height: 66px;
        padding: 8px 14px 8px 22px;
        border-radius: 28px;
    }

    .navbar-brand {
        font-size: 1.9rem;
    }

    .navbar-toggler {
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 50%;
        color: #fff;
        background: var(--brand-red);
        box-shadow: none !important;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 10px 14px 18px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(20, 28, 38, .14);
    }

    .main-navbar .navbar-nav {
        gap: 0;
    }

    .main-navbar .nav-link {
        padding: 12px 8px !important;
        font-size: .85rem;
    }

    .main-navbar .nav-link::after {
        display: none;
    }

    .nav-actions {
        padding: 8px;
    }

    .hero-section {
        min-height: 635px;
    }

    .hero-section.hero-section--inner {
        height: 94px;
        min-height: 94px;
        max-height: 94px;
    }

    .hero-slider {
        height: 545px;
    }

    .hero-story {
        bottom: -90px;
        grid-template-columns: 1fr 1.05fr;
    }

    .hero-story__copy,
    .hero-story__media {
        min-height: 210px;
    }

    .hero-story__copy {
        padding: 38px 30px;
    }

    .hero-story__title {
        font-size: 1.6rem;
    }

    .hero-benefits {
        padding-top: 132px;
    }

    .why-title {
        font-size: 1.9rem;
    }

    .why-visual {
        height: 330px;
    }

    .quality-card {
        min-height: 300px;
    }

    .featured-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .featured-copy p {
        margin-bottom: 44px;
    }

    .product-card {
        flex-basis: 235px;
        height: 310px;
    }

    .project-stage {
        grid-template-columns: 44% 56%;
        min-height: 470px;
    }

    .project-copy {
        padding: 48px 36px;
    }

    .project-title {
        font-size: 1.9rem;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
        padding: 28px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .4);
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    .page-shell {
        width: min(calc(100% - 28px), var(--content-width));
    }

    .hero-section {
        min-height: auto;
        background: #fff;
    }

    .hero-slider {
        height: 520px;
    }

    .hero-slide img {
        object-position: 55% center;
    }

    .hero-controls {
        right: 20px;
        bottom: 20px;
    }

    .hero-story {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(calc(100% - 28px), 600px);
        margin: -44px auto 0;
        grid-template-columns: 1fr;
        transform: none;
    }

    .hero-story__copy {
        min-height: 170px;
        padding: 34px 28px;
    }

    .hero-story__title {
        max-width: 290px;
        font-size: 1.75rem;
    }

    .hero-story__media {
        min-height: 215px;
    }

    .hero-benefits {
        padding: 38px 0 54px;
    }

    .benefit-card {
        height: 285px;
    }

    .why-section {
        padding: 58px 0 24px;
    }

    .why-intro {
        margin-bottom: 28px;
    }

    .why-kicker {
        margin-bottom: 16px;
        font-size: 1.15rem;
    }

    .why-title {
        font-size: 1.85rem;
    }

    .why-description {
        font-size: .93rem;
    }

    .why-visual {
        height: 300px;
        margin-top: 30px;
    }

    .quality-card {
        min-height: 0;
        padding: 30px 26px;
    }

    .quality-card__icon {
        margin-bottom: 24px;
    }

    .quality-card h3 {
        min-height: auto;
        margin-bottom: 18px;
    }

    .featured-section {
        padding: 58px 0 26px;
    }

    .featured-layout {
        display: block;
    }

    .featured-copy {
        position: relative;
        padding-right: 104px;
        margin-bottom: 26px;
    }

    .featured-copy h2 {
        font-size: 1.85rem;
    }

    .featured-copy p {
        max-width: 420px;
        margin-bottom: 0;
    }

    .featured-controls {
        position: absolute;
        top: 8px;
        right: 0;
    }

    .product-slider {
        overflow: visible;
    }

    .product-track {
        gap: 10px;
    }

    .product-card {
        flex: 0 0 min(78vw, 330px);
        height: 390px;
    }

    .project-section {
        padding: 78px 0 58px;
    }

    .project-stage {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .project-copy {
        min-height: 370px;
        padding: 44px 30px;
    }

    .project-kicker {
        margin-bottom: 22px;
        font-size: 1.3rem;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-media {
        min-height: 340px;
    }

    .cta-banner {
        min-height: 172px;
        margin: 56px auto 48px;
        padding: 28px;
        border-radius: 28px;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        text-align: center;
    }

    .cta-banner__text {
        font-size: 1.4rem;
    }

    .cta-button {
        width: 100%;
        min-width: 0;
    }

    .contact-title {
        margin-bottom: 38px;
        font-size: 1.65rem;
    }

    .site-footer {
        padding: 46px 28px 24px;
        border-radius: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        font-size: 2.8rem;
    }

    .footer-nav {
        padding-top: 0;
    }

    .footer-contact {
        grid-column: auto;
        padding-top: 28px;
    }

    .site-footer::after {
        left: 2%;
        bottom: -30px;
        font-size: 7rem;
    }
}

@media (max-width: 479.98px) {
    .main-navbar {
        padding-left: 18px;
    }

    .navbar-brand {
        font-size: 1.72rem;
    }

    .hero-slider {
        height: 470px;
    }

    .hero-slide img {
        object-position: 62% center;
    }

    .hero-story__copy {
        min-height: 160px;
    }

    .hero-story__title {
        font-size: 1.55rem;
    }

    .benefit-card {
        height: 245px;
    }

    .benefit-card__label {
        top: 22px;
        left: 20px;
        font-size: .92rem;
    }

    .why-visual {
        height: 260px;
    }

    .featured-copy {
        padding-right: 0;
    }

    .featured-controls {
        position: static;
        margin-top: 22px;
    }

    .product-card {
        flex-basis: 82vw;
        height: 350px;
    }

    .project-copy {
        min-height: 350px;
    }

    .project-media {
        min-height: 290px;
    }

    .project-controls {
        left: 18px;
        bottom: 18px;
    }

    .site-footer {
        padding-inline: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/*############################################################
-> PRODUCTS
############################################################*/


.product-category-page {
    min-height: 100vh;
    padding: 36px 0 180px;
    background: var(--surface, #ffffff);
}

.product-category-shell {
    width: min(calc(100% - 48px), 1200px);
    margin-right: auto;
    margin-left: auto;
}

.category-heading {
    margin: 0 0 50px;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 2.1vw, 2.45rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.7px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 20px;
    margin: 0;
}

.category-grid > [class*="col-"] {
    width: auto;
    padding: 0;
}

.category-card {
    position: relative;
    display: block;
    aspect-ratio: 1.64 / 1;
    overflow: hidden;
    border-radius: 22px;
    background: #dde0e3;
    isolation: isolate;
    transition: transform .3s ease, box-shadow .3s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 17, 24, 0) 55%, rgba(12, 17, 24, .11) 100%);
    pointer-events: none;
    transition: background-color .3s ease;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .72, .24, 1), filter .35s ease;
}

.category-card__label {
    position: absolute;
    left: 50%;
    bottom: 17px;
    z-index: 2;
    min-width: 150px;
    padding: 10px 30px 11px;
    border-radius: 999px;
    color: #fff;
    background: var(--brand-red, #ec003d);
    font-size: 1.23rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
    box-shadow: 0 7px 18px rgba(236, 0, 61, .18);
    transition: padding .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft, 0 18px 50px rgba(20, 28, 38, .12));
}

.category-card:hover .category-card__image,
.category-card:focus-visible .category-card__image {
    transform: scale(1.045);
    filter: saturate(1.03) contrast(1.02);
}

.category-card:hover .category-card__label,
.category-card:focus-visible .category-card__label {
    padding-inline: 38px;
    background: var(--brand-red-dark, #d80037);
    box-shadow: 0 10px 24px rgba(216, 0, 55, .3);
}

.category-card:focus-visible {
    outline: 3px solid rgba(236, 0, 61, .28);
    outline-offset: 5px;
}

@media (max-width: 991.98px) {
    .page-breadcrumb {
        padding-top: 36px;
    }

    .product-category-page {
        padding-top: 30px;
        padding-bottom: 120px;
    }

    .product-category-shell {
        width: min(calc(100% - 36px), 1200px);
    }

    .category-heading {
        margin-bottom: 42px;
    }

    .category-grid {
        gap-block: 28px;
    }

    .category-card__label {
        bottom: 15px;
        min-width: 136px;
        padding: 9px 25px 10px;
        font-size: 1.08rem;
    }
}

@media (max-width: 767.98px) {
    .page-breadcrumb {
        padding-top: 28px;
    }

    .page-breadcrumb__list {
        font-size: .9rem;
    }

    .product-category-page {
        padding: 26px 0 84px;
    }

    .product-category-shell {
        width: min(calc(100% - 28px), 620px);
    }

    .category-heading {
        margin-bottom: 34px;
        font-size: 2rem;
        text-align: left;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap-block: 20px;
    }

    .category-card {
        aspect-ratio: 1.48 / 1;
        border-radius: var(--radius-md, 18px);
    }

    .category-card__label {
        bottom: 14px;
        min-width: 132px;
        font-size: 1.02rem;
    }
}

@media (max-width: 479.98px) {
    .page-breadcrumb {
        padding-top: 22px;
    }

    .product-category-page {
        padding-top: 22px;
        padding-bottom: 64px;
    }

    .category-heading {
        margin-bottom: 28px;
        font-size: 1.75rem;
    }

    .category-card {
        aspect-ratio: 1.34 / 1;
    }

    .category-card__label {
        bottom: 12px;
        min-width: 124px;
        padding: 9px 22px 10px;
        font-size: .96rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
 


/*############################################################
<- PRODUCTS
############################################################*/




/*############################################################
-> PRODUCTS-2
############################################################*/





.subcategory-page {
    min-height: 100vh;
    background: var(--surface, #ffffff);
}

.subcategory-shell {
    width: min(calc(100% - 48px), var(--content-width, 1400px));
    margin-inline: auto;
}

.subcategory-hero {
    padding: 42px 0 36px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
    margin: 0 auto 62px;
}

.feature-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--brand-red, #ec003d);
    background: transparent;
    transition: color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-label {
    margin: 0;
    color: var(--ink-deep, #222a35);
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.feature-item:hover .feature-icon {
    color: #fff;
    background: var(--brand-red, #ec003d);
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(236, 0, 61, .22);
}

.subcategory-title {
    margin: 0;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 2.4vw, 2.72rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.045em;
    text-align: center;
}

.product-listing {
    padding: 0 0 86px;
}

.product-grid {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 52px;
}

.fence-card {
    position: relative;
    height: 100%;
    padding: 16px 16px 18px;
    overflow: hidden;
    border: 1px solid rgba(231, 233, 237, .45);
    border-radius: 28px;
    background: #f5f6f8;
    box-shadow: 0 8px 26px rgba(24, 31, 42, .025);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.fence-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 21px;
    aspect-ratio: 1.42 / 1;
    background: #dde1e4;
    isolation: isolate;
}

.fence-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(18, 25, 34, .18));
    transition: opacity .28s ease;
    pointer-events: none;
}

.fence-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .48s cubic-bezier(.22, .61, .36, 1), filter .28s ease;
}

.fence-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 3px 0;
}

.fence-card__title {
    min-width: 0;
    margin: 0;
    color: var(--ink, #303846);
    font-size: 1.24rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.025em;
    transition: color .22s ease, transform .22s ease;
}

.fence-card__colors {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 50%;
}

.fence-card__color {
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    position: relative;
    z-index: 4;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    appearance: none;
    box-shadow: 0 0 0 1px rgba(35, 43, 54, .22);
    cursor: pointer;
}

.fence-card__color.is-active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(35, 43, 54, .82);
}

.fence-card__color:focus-visible {
    outline: 2px solid var(--brand-red, #ec003d);
    outline-offset: 3px;
}

.fence-card__link {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
}

.fence-card:focus-within {
    outline: 3px solid rgba(236, 0, 61, .22);
    outline-offset: 4px;
}

.fence-card:hover {
    border-color: rgba(236, 0, 61, .18);
    background: #fff;
    box-shadow: var(--shadow-soft, 0 18px 50px rgba(20, 28, 38, .12));
    transform: translateY(-8px);
}

.fence-card:hover .fence-card__media img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.045);
}

.fence-card:hover .fence-card__media::after {
    opacity: 1;
}

.fence-card:hover .fence-card__title {
    color: var(--brand-red, #ec003d);
    transform: translateX(3px);
}

@media (max-width: 1199.98px) {
    .subcategory-shell {
        width: min(calc(100% - 40px), var(--content-width, 1400px));
    }

    .subcategory-hero {
        padding-top: 34px;
    }

    .feature-strip {
        gap: 12px;
        margin-bottom: 54px;
    }

    .feature-label {
        font-size: .7rem;
    }

    .product-grid {
        --bs-gutter-x: 26px;
        --bs-gutter-y: 40px;
    }
}

@media (max-width: 991.98px) {
    .subcategory-hero {
        padding-bottom: 30px;
    }

    .feature-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 28px;
        max-width: 760px;
        margin-bottom: 48px;
    }

    .feature-item:last-child {
        grid-column: 2 / 4;
    }

    .feature-label {
        font-size: .75rem;
    }

    .product-grid {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 34px;
    }

    .fence-card {
        border-radius: 24px;
    }

    .fence-card__media {
        border-radius: 18px;
    }
}

@media (max-width: 767.98px) {
    .subcategory-shell {
        width: min(calc(100% - 28px), var(--content-width, 1400px));
    }

    .subcategory-hero {
        padding: 22px 0 28px;
    }

    .feature-strip-wrap {
        position: relative;
        width: calc(100% + 14px);
        margin-right: -14px;
        overflow: hidden;
    }

    .feature-strip-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 12px;
        width: 34px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--surface, #ffffff));
        pointer-events: none;
    }

    .feature-strip {
        display: flex;
        max-width: none;
        margin: 0 0 40px;
        padding: 4px 38px 14px 0;
        gap: 8px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .feature-strip::-webkit-scrollbar {
        display: none;
    }

    .feature-item,
    .feature-item:last-child {
        flex: 0 0 118px;
        grid-column: auto;
        scroll-snap-align: start;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-label {
        max-width: 112px;
        min-height: 30px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        font-size: .68rem;
        line-height: 1.25;
        white-space: normal;
    }

    .subcategory-title {
        font-size: 2rem;
        text-align: left;
        letter-spacing: -.04em;
    }

    .product-listing {
        padding-bottom: 58px;
    }

    .product-grid {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 26px;
    }

    .fence-card {
        padding: 12px 12px 16px;
        border-radius: 22px;
    }

    .fence-card__media {
        border-radius: 16px;
    }

    .fence-card__info {
        gap: 12px;
        margin: 14px 2px 0;
    }

    .fence-card__title {
        font-size: 1.08rem;
    }

    .fence-card__colors {
        gap: 7px;
    }

    .fence-card__color {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 575.98px) {
    .subcategory-title {
        font-size: 1.85rem;
    }

    .fence-card__media {
        aspect-ratio: 1.38 / 1;
    }

    .fence-card__title {
        font-size: 1.12rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}



/*############################################################
<- PRODUCTS-2
############################################################*/



/*############################################################
-> PRODUCT
############################################################*/


.pd4-product-page,
.pd4-product-page * {
    box-sizing: border-box;
}

.pd4-product-page {
    min-height: 100vh;
    padding: 12px 0 72px;
    color: var(--ink, #303846);
    background: var(--surface, #fff);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.pd4-product-page img {
    display: block;
    max-width: 100%;
}

.pd4-shell {
    width: min(calc(100% - 48px), var(--content-width, 1400px));
    margin-inline: auto;
}

.pd4-product-title {
    margin: 0 0 44px;
    color: var(--ink, #303846);
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.pd4-gallery-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 18px;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, .88fr);
    gap: 30px;
    align-items: stretch;
}

.pd4-gallery-row > *,
.pd4-config-row > *,
.pd4-action-row > *,
.pd4-related-grid > * {
    width: 100%;
    max-width: none;
    padding: 0;
}

.pd4-main-visual {
    position: relative;
    width: 100%;
    height: clamp(500px, 48vw, 690px);
    padding: 0;
    border: 0;
    border-radius: var(--radius-md, 18px);
    overflow: hidden;
    display: block;
    background: #eef0f3;
    cursor: zoom-in;
    box-shadow: 0 1px 0 rgba(20, 28, 38, .03);
}

.pd4-main-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(24, 31, 40, .05);
    pointer-events: none;
}

.pd4-main-visual__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .22s ease, transform .55s cubic-bezier(.2, .75, .25, 1);
}

.pd4-main-visual:hover .pd4-main-visual__image {
    transform: scale(1.018);
}

.pd4-main-visual.is-changing .pd4-main-visual__image {
    opacity: .38;
}

.pd4-zoom-button {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand-red, #ec003d);
    font-size: 1.16rem;
    box-shadow: 0 14px 30px rgba(236, 0, 61, .28);
    transition: transform .2s ease, background-color .2s ease;
    pointer-events: auto;
    cursor: zoom-in;
}

.pd4-main-visual:hover .pd4-zoom-button {
    transform: translateY(-2px) scale(1.04);
    background: var(--brand-red-dark, #d80037);
}

.pd4-thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-content: start;
}

.pd4-thumbnail {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    background: #eef0f3;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pd4-thumbnail:nth-child(3) {
    grid-column: 1;
}

.pd4-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.pd4-thumbnail:hover,
.pd4-thumbnail:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(236, 0, 61, .38);
    box-shadow: 0 14px 28px rgba(20, 28, 38, .12);
    outline: 0;
}

.pd4-thumbnail:hover img {
    transform: scale(1.055);
}

.pd4-thumbnail.is-active {
    border-color: var(--brand-red, #ec003d);
    box-shadow: 0 0 0 4px rgba(236, 0, 61, .09);
}

.pd4-product-config {
    padding-top: 76px;
}

.pd4-config-row {
    --bs-gutter-x: 56px;
    --bs-gutter-y: 44px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "purchase variations";
    column-gap: 56px;
    row-gap: 40px;
}

.pd4-purchase-panel {
    grid-area: purchase;
}

.pd4-variation-panel {
    grid-area: variations;
}

.pd4-product-description {
    grid-area: description;
    max-width: 670px;
    margin: 0;
    color: #8a9099;
    font-size: .98rem;
    font-weight: 400;
    line-height: 1.47;
}

.pd4-field-label {
    margin: 0 0 17px;
    color: #a0a4ab;
    font-size: .85rem;
    font-weight: 400;
    line-height: 1.2;
}

.pd4-quantity-control {
    width: 164px;
    height: 48px;
    margin-bottom: 52px;
    border: 1.5px solid var(--ink, #303846);
    border-radius: 999px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.pd4-quantity-button {
    height: 100%;
    padding: 0;
    border: 0;
    color: var(--ink, #303846);
    background: transparent;
    font-size: 1rem;
    transition: color .2s ease, background-color .2s ease;
}

.pd4-quantity-button:hover {
    color: #fff;
    background: var(--ink, #303846);
}

.pd4-quantity-button:disabled,
.pd4-quantity-button:disabled:hover {
    color: #b8bcc3;
    background: transparent;
    cursor: not-allowed;
}

.pd4-quantity-value {
    border: 0;
    width: 100%;
    color: var(--ink, #303846);
    background: transparent;
    font-size: .92rem;
    text-align: center;
    pointer-events: none;
    outline: 0;
}

.pd4-action-row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 12px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pd4-action-button {
    width: 100%;
    min-height: 58px;
    padding: 14px 26px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pd4-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(20, 28, 38, .14);
}

.pd4-action-button--cart {
    color: #fff;
    background: var(--ink, #303846);
}

.pd4-action-button--cart:hover {
    color: #fff;
    background: var(--ink-deep, #222a35);
}

.pd4-action-button--quote {
    color: #fff;
    background: var(--brand-red, #ec003d);
}

.pd4-action-button--quote:hover {
    color: #fff;
    background: var(--brand-red-dark, #d80037);
}

.pd4-action-button:disabled,
.pd4-action-button:disabled:hover {
    opacity: .54;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pd4-action-note {
    margin: 13px 6px 0;
    color: #a0a4ab;
    font-size: .76rem;
    line-height: 1.4;
}

.pd4-variation-panel .ef-product-variations {
    width: 100%;
}

.pd4-variation-panel .ef-var-group {
    position: relative;
    transition: opacity .2s ease;
}

.pd4-variation-panel .ef-var-group + .ef-var-group {
    margin-top: 38px;
}

.pd4-variation-panel .ef-var-title {
    margin: 0 0 17px;
    color: #a0a4ab;
    font-size: .85rem;
    font-weight: 400;
    line-height: 1.2;
}

.pd4-variation-panel .ef-var-options:not(select) {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 17px;
}

.pd4-variation-panel button.ef-var-option {
    min-height: 43px;
    padding: 10px 21px;
    border: 1.5px solid var(--ink, #303846);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--ink, #303846);
    background: #fff;
    font-size: .85rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.pd4-variation-panel button.ef-var-option:hover,
.pd4-variation-panel button.ef-var-option:focus-visible {
    transform: translateY(-2px);
    border-color: var(--brand-red, #ec003d);
    color: var(--brand-red, #ec003d);
    outline: 0;
}

.pd4-variation-panel button.ef-var-option.ef-var-option-selected,
.pd4-variation-panel button.ef-var-option.ef-var-option-selected:hover {
    color: #fff;
    border-color: var(--ink, #303846);
    background: var(--ink, #303846);
}

.pd4-variation-panel button.ef-var-option.ef-var-option-disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
}

.pd4-variation-panel .ef-var-group[data-variation-index="2"]:not(.pd4-variation-locked) button.ef-var-option-disabled {
    display: none;
}

.pd4-variation-panel .ef-var-select {
    width: min(100%, 360px);
    min-height: 46px;
    padding: 10px 42px 10px 17px;
    border: 1.5px solid var(--ink, #303846);
    border-radius: 999px;
    color: var(--ink, #303846);
    background-color: #fff;
    font-size: .88rem;
    outline: 0;
}

.pd4-variation-panel .ef-var-select:focus-visible {
    border-color: var(--brand-red, #ec003d);
    box-shadow: 0 0 0 4px rgba(236, 0, 61, .09);
}

.pd4-variation-panel .pd4-variation-locked .ef-var-options {
    display: none;
}

.pd4-variation-panel .pd4-variation-locked::after {
    content: "Choose the first option to see available values.";
    display: block;
    color: #a0a4ab;
    font-size: .82rem;
    line-height: 1.4;
}

.pd4-variation-panel .ef-var-clear {
    margin-top: 22px;
    padding: 0;
    border: 0;
    color: var(--brand-red, #ec003d);
    background: transparent;
    font-size: .8rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pd4-variation-panel .ef-var-warning {
    margin-top: 13px;
    color: var(--brand-red, #ec003d);
    font-size: .8rem;
}

.pd4-variation-panel .ef-var-group-missing {
    animation: pd4-variation-pulse .6s ease 2;
}

.pd4-selected-variation,
.pd4-variation-empty {
    margin: 24px 0 0;
    color: #8a9099;
    font-size: .86rem;
    line-height: 1.45;
}

.pd4-selected-variation.is-complete {
    color: var(--ink, #303846);
    font-weight: 600;
}

@keyframes pd4-variation-pulse {
    50% {
        opacity: .45;
    }
}

.pd4-option-group + .pd4-option-group {
    margin-top: 38px;
}

.pd4-option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 17px;
}

.pd4-option-button {
    min-height: 43px;
    padding: 10px 21px;
    border: 1.5px solid var(--ink, #303846);
    border-radius: 999px;
    color: var(--ink, #303846);
    background: #fff;
    font-size: .85rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.pd4-option-button:hover {
    transform: translateY(-2px);
    border-color: var(--brand-red, #ec003d);
    color: var(--brand-red, #ec003d);
}

.pd4-option-button.is-selected {
    color: #fff;
    border-color: var(--ink, #303846);
    background: var(--ink, #303846);
}

.pd4-product-tabs-section {
    padding-top: 104px;
}

.pd4-product-tabs {
    width: 100%;
}

.pd4-product-tablist {
    border-bottom: 3px solid var(--brand-red, #ec003d);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pd4-product-tab {
    min-height: 58px;
    padding: 14px 22px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink, #303846);
    background: #fff;
    font-size: clamp(.96rem, 1.35vw, 1.22rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    transition: color .2s ease, background-color .2s ease;
}

.pd4-product-tab:hover {
    color: var(--brand-red, #ec003d);
    background: #f8f8f9;
}

.pd4-product-tab.is-active,
.pd4-product-tab.is-active:hover {
    color: #fff;
    background: var(--brand-red, #ec003d);
}

.pd4-product-tab:focus-visible {
    position: relative;
    z-index: 2;
    outline: 3px solid rgba(48, 56, 70, .42);
    outline-offset: -5px;
}

.pd4-product-tabpanels {
    min-height: 210px;
}

.pd4-product-tabpanel {
    padding: 32px 6px 0;
}

.pd4-product-tabpanel[hidden] {
    display: none !important;
}

.pd4-product-tabpanel:focus-visible {
    outline: 2px solid rgba(236, 0, 61, .25);
    outline-offset: 8px;
}

.pd4-product-tabpanel__title {
    margin: 0 0 22px;
    color: var(--ink, #303846);
    font-size: clamp(1.45rem, 2.15vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.pd4-product-tab-description,
.pd4-product-tab-empty {
    max-width: 1120px;
    margin: 0;
    color: #2a2d32;
    font-size: .98rem;
    line-height: 1.68;
    white-space: pre-line;
}

.pd4-product-tab-description > :first-child,
.pd4-specification-description > :first-child {
    margin-top: 0;
}

.pd4-product-tab-description > :last-child,
.pd4-specification-description > :last-child {
    margin-bottom: 0;
}

.pd4-product-tab-description ul,
.pd4-product-tab-description ol,
.pd4-specification-description ul,
.pd4-specification-description ol {
    margin: 0;
    padding-left: 1.25rem;
}

.pd4-specification-table {
    border-top: 1px solid #e2e5e9;
}

.pd4-specification-row {
    min-height: 62px;
    border-bottom: 1px solid #e2e5e9;
    display: grid;
    grid-template-columns: minmax(190px, .72fr) minmax(0, 1.5fr);
}

.pd4-specification-title,
.pd4-specification-description {
    padding: 18px 20px;
    color: #737b86;
    font-size: .94rem;
    line-height: 1.5;
}

.pd4-specification-title {
    color: var(--ink, #303846);
    background: #f6f7f8;
    font-weight: 600;
}

.pd4-brochure-list {
    max-width: 840px;
    display: grid;
    gap: 12px;
}

.pd4-brochure-item {
    min-height: 82px;
    padding: 16px 18px;
    border: 1px solid #e2e5e9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: inherit;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pd4-brochure-item:hover,
.pd4-brochure-item:focus-visible {
    border-color: rgba(236, 0, 61, .45);
    color: inherit;
    box-shadow: 0 10px 26px rgba(40, 48, 61, .08);
    text-decoration: none;
    transform: translateY(-1px);
}

.pd4-brochure-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red, #ec003d);
    background: rgba(236, 0, 61, .08);
}

.pd4-brochure-item__body {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.pd4-brochure-item__title {
    overflow: hidden;
    color: var(--ink, #303846);
    font-size: .96rem;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pd4-brochure-item__meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8b929c;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .035em;
}

.pd4-brochure-item__action {
    margin-left: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red, #ec003d);
    font-size: .83rem;
    font-weight: 600;
}

.pd4-related-section {
    padding-top: 122px;
}

.pd4-related-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.pd4-related-title {
    margin: 0 0 14px;
    color: var(--ink, #303846);
    font-size: clamp(1.8rem, 2.5vw, 2.55rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.pd4-related-subtitle {
    margin: 0;
    color: #a0a4ab;
    font-size: .87rem;
    line-height: 1.4;
}

.pd4-view-all {
    padding: 6px 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #a0a4ab;
    background: transparent;
    font-size: .84rem;
    transition: color .2s ease;
}

.pd4-view-all__icon {
    width: 38px;
    height: 38px;
    border: 2px solid var(--ink, #303846);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink, #303846);
    font-size: 1rem;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.pd4-view-all:hover {
    color: var(--ink, #303846);
}

.pd4-view-all:hover .pd4-view-all__icon {
    color: #fff;
    background: var(--ink, #303846);
    transform: translateX(3px);
}

.pd4-related-grid {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.pd4-related-card {
    height: 100%;
    padding: 14px 14px 18px;
    border-radius: var(--radius-md, 18px);
    overflow: hidden;
    background: #f5f6f8;
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.pd4-related-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: var(--shadow-soft, 0 18px 50px rgba(20, 28, 38, .12));
}

.pd4-related-card__image {
    aspect-ratio: 1.42 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #e7e9ed;
}

.pd4-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pd4-related-card:hover .pd4-related-card__image img {
    transform: scale(1.045);
}

.pd4-related-card__title {
    margin: 22px 3px 0;
    color: var(--ink, #303846);
    font-size: 1.24rem;
    font-weight: 500;
    line-height: 1.2;
}

.pd4-related-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.pd4-related-empty,
.pd4-gallery-empty {
    margin: 0;
    padding: 24px;
    border-radius: var(--radius-md, 18px);
    color: #8a9099;
    background: #f5f6f8;
    font-size: .9rem;
}

@media (max-width: 1199.98px) {
    .pd4-main-visual {
        height: 560px;
    }

    .pd4-thumbnail-grid {
        gap: 20px;
    }

    .pd4-config-row {
        --bs-gutter-x: 38px;
        column-gap: 38px;
    }
}

@media (max-width: 991.98px) {
    .pd4-product-page {
        padding-top: 18px;
    }

    .pd4-shell {
        width: min(calc(100% - 36px), var(--content-width, 1400px));
    }

    .pd4-product-title {
        margin-bottom: 30px;
    }

    .pd4-main-visual {
        height: 490px;
    }

    .pd4-gallery-row {
        grid-template-columns: minmax(0, 3fr) minmax(150px, 1fr);
        gap: 18px;
    }

    .pd4-thumbnail-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pd4-thumbnail:nth-child(3) {
        grid-column: auto;
    }

    .pd4-product-config {
        padding-top: 58px;
    }

    .pd4-product-tabs-section {
        padding-top: 78px;
    }

    .pd4-related-section {
        padding-top: 90px;
    }
}

@media (max-width: 767.98px) {
    .pd4-product-page {
        padding: 18px 0 52px;
    }

    .pd4-shell {
        width: min(calc(100% - 28px), var(--content-width, 1400px));
    }

    .pd4-gallery-row {
        --bs-gutter-y: 14px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pd4-main-visual {
        height: min(72vw, 480px);
        min-height: 310px;
        border-radius: 16px;
    }

    .pd4-zoom-button {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }

    .pd4-thumbnail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .pd4-thumbnail {
        border-radius: 12px;
    }

    .pd4-product-config {
        padding-top: 44px;
    }

    .pd4-config-row {
        --bs-gutter-y: 54px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "variations"
            "purchase";
        gap: 44px;
    }

    .pd4-product-tabs-section {
        padding-top: 66px;
    }

    .pd4-product-tablist {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
    }

    .pd4-product-tab {
        flex: 1 0 190px;
        min-height: 54px;
        padding: 13px 16px;
        scroll-snap-align: start;
        font-size: .95rem;
    }

    .pd4-product-tabpanel {
        padding: 28px 2px 0;
    }

    .pd4-product-tabpanels {
        min-height: 190px;
    }

    .pd4-quantity-control {
        margin-bottom: 34px;
    }

    .pd4-option-group + .pd4-option-group {
        margin-top: 30px;
    }

    .pd4-variation-panel .ef-var-group + .ef-var-group {
        margin-top: 30px;
    }

    .pd4-option-list {
        gap: 11px 10px;
    }

    .pd4-option-button {
        min-height: 41px;
        padding: 10px 16px;
        font-size: .8rem;
    }

    .pd4-variation-panel .ef-var-options:not(select) {
        gap: 11px 10px;
    }

    .pd4-variation-panel button.ef-var-option {
        min-height: 41px;
        padding: 10px 16px;
        font-size: .8rem;
    }

    .pd4-related-section {
        padding-top: 78px;
    }

    .pd4-related-heading {
        margin-bottom: 28px;
        align-items: center;
    }

    .pd4-view-all {
        gap: 10px;
    }

    .pd4-view-all__label {
        display: none;
    }

    .pd4-related-grid {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 575.98px) {
    .pd4-product-title {
        margin-bottom: 24px;
        font-size: 1.55rem;
    }

    .pd4-main-visual {
        min-height: 278px;
    }

    .pd4-thumbnail-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 2px 2px 8px;
        scrollbar-width: thin;
    }

    .pd4-thumbnail {
        flex: 0 0 92px;
        width: 92px;
    }

    .pd4-action-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pd4-action-button {
        min-height: 54px;
    }

    .pd4-product-tabpanel__title {
        margin-bottom: 18px;
        font-size: 1.35rem;
    }

    .pd4-product-tab-description,
    .pd4-product-tab-empty {
        font-size: .92rem;
        line-height: 1.62;
    }

    .pd4-specification-row {
        grid-template-columns: 1fr;
    }

    .pd4-specification-title,
    .pd4-specification-description {
        padding: 15px 16px;
    }

    .pd4-specification-description {
        padding-top: 13px;
        padding-bottom: 18px;
    }

    .pd4-brochure-item {
        padding: 14px;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .pd4-brochure-item__body {
        width: calc(100% - 60px);
    }

    .pd4-brochure-item__action {
        margin-left: 60px;
    }

    .pd4-related-heading {
        gap: 14px;
    }

    .pd4-related-title {
        font-size: 1.85rem;
    }

    .pd4-related-grid {
        grid-template-columns: 1fr;
    }

    .pd4-related-card {
        padding: 11px 11px 16px;
    }

    .pd4-related-card__title {
        margin-top: 16px;
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pd4-product-page *,
    .pd4-product-page *::before,
    .pd4-product-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}



/*############################################################
<- PRODUCT
############################################################*/




/*############################################################
-> PROJECTS
############################################################*/


.cp5-page,
.cp5-page * {
    box-sizing: border-box;
}

.cp5-page {
    overflow: hidden;
    color: var(--ink, #303846);
    background: var(--surface, #ffffff);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.cp5-page img {
    display: block;
    max-width: 100%;
}

.cp5-page a {
    color: inherit;
    text-decoration: none;
}

.cp5-shell {
    width: min(calc(100% - 48px), 1240px);
    margin-inline: auto;
}

.cp5-projects-section {
    width: 100%;
    padding: 66px 0 112px;
    background: var(--surface, #ffffff);
}

.cp5-section-title {
    margin: 0 0 58px;
    color: var(--ink-deep, #222a35);
    font-size: clamp(2rem, 2.55vw, 2.75rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.045em;
    text-align: center;
}

.cp5-project-grid {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 54px;
}

.cp5-project-card {
    height: 100%;
    padding: 14px 14px 13px;
    border: 1px solid rgba(34, 42, 53, .035);
    border-radius: 20px;
    background: #f7f8fa;
    box-shadow: 0 7px 20px rgba(20, 28, 38, .025);
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.cp5-project-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: var(--shadow-soft, 0 18px 50px rgba(20, 28, 38, .12));
}

.cp5-project-media {
    position: relative;
    display: block;
    aspect-ratio: 1.56 / 1;
    overflow: hidden;
    border-radius: 17px;
    background: #d9dde2;
    cursor: zoom-in;
}

.cp5-project-media::after {
    content: "";
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(180deg, transparent, rgba(15, 20, 28, .13));
    pointer-events: none;
    opacity: 0;
    transition: opacity .28s ease;
}

.cp5-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1), filter .35s ease;
}

.cp5-project-card:hover .cp5-project-media img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
}

.cp5-project-card:hover .cp5-project-media::after {
    opacity: 1;
}

.cp5-project-zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand-red, #ec003d);
    font-size: 1.08rem;
    box-shadow: 0 10px 24px rgba(236, 0, 61, .3);
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
    pointer-events: none;
}

.cp5-project-card:hover .cp5-project-zoom {
    transform: scale(1.08) rotate(-4deg);
    background: var(--brand-red-dark, #d80037);
    box-shadow: 0 14px 30px rgba(236, 0, 61, .38);
}

.cp5-project-content {
    padding: 17px 5px 5px;
}

.cp5-project-name {
    margin: 0;
    color: var(--ink-deep, #222a35);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.35;
}

.cp5-project-meta {
    min-height: 46px;
    padding: 14px 5px 2px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink, #303846);
    font-size: .91rem;
    font-weight: 500;
    line-height: 1.35;
}

.cp5-project-meta i {
    flex: 0 0 auto;
    color: var(--ink, #303846);
    font-size: .92rem;
}

.cp5-project-content .cp5-project-meta {
    min-height: 0;
    padding: 8px 0 0;
    align-items: flex-start;
}

.cp5-project-description {
    margin: 12px 0 0;
    overflow: hidden;
    color: #667080;
    font-size: .9rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.cp5-project-media--empty {
    display: grid;
    place-items: center;
    color: #8a93a0;
    cursor: default;
}

.cp5-project-media--empty i {
    font-size: 2rem;
}

.cp5-projects-empty {
    margin: 0;
    padding: 40px 24px;
    border: 1px dashed #d7dce3;
    border-radius: 18px;
    color: #667080;
    background: #f7f8fa;
    text-align: center;
}

.cp5-hidden-gallery {
    display: none;
}

.cp5-testimonials-section {
    width: 100%;
    padding: 76px 0 104px;
    background: #fbfbfc;
}

.cp5-testimonials-heading {
    margin-bottom: 66px;
    text-align: center;
}

.cp5-testimonials-kicker {
    margin: 0 0 14px;
    color: var(--ink, #303846);
    font-size: .96rem;
    font-weight: 500;
    line-height: 1.3;
}

.cp5-testimonials-title {
    margin: 0;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 2.45vw, 2.7rem);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -.035em;
}

.cp5-review-grid {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 44px;
}

.cp5-review-card {
    min-height: 282px;
    height: 100%;
    padding: 38px 38px 26px;
    border: 1px solid #eceef1;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 28, 38, .018);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.cp5-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 0, 61, .16);
    box-shadow: 0 22px 48px rgba(20, 28, 38, .09);
}

.cp5-review-brand {
    margin-bottom: 30px;
    color: var(--brand-red, #ec003d);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -.045em;
}

.cp5-review-text {
    margin: 0 0 30px;
    color: var(--ink-deep, #222a35);
    font-size: .91rem;
    font-weight: 400;
    line-height: 1.65;
}

.cp5-review-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.cp5-review-author {
    margin: 0;
    color: var(--ink, #303846);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.cp5-review-stars {
    flex: 0 0 auto;
    display: inline-flex;
    gap: 3px;
    color: var(--brand-red, #ec003d);
    font-size: .72rem;
    line-height: 1;
}

.fancybox__container.cp5-fancybox {
    --fancybox-bg: rgba(20, 25, 33, .94);
}

.cp5-fancybox .fancybox__caption {
    color: #fff;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: .95rem;
}

@media (max-width: 1199.98px) {
    .cp5-shell {
        width: min(calc(100% - 40px), 1080px);
    }

    .cp5-project-grid,
    .cp5-review-grid {
        --bs-gutter-x: 22px;
    }

    .cp5-project-grid {
        --bs-gutter-y: 42px;
    }

    .cp5-review-card {
        padding: 32px 30px 24px;
    }
}

@media (max-width: 991.98px) {
    .cp5-projects-section {
        padding: 56px 0 88px;
    }

    .cp5-section-title {
        margin-bottom: 42px;
    }

    .cp5-project-grid {
        --bs-gutter-y: 30px;
    }

    .cp5-testimonials-section {
        padding: 68px 0 86px;
    }

    .cp5-testimonials-heading {
        margin-bottom: 46px;
    }

    .cp5-review-grid {
        --bs-gutter-y: 30px;
    }
}

@media (max-width: 767.98px) {
    .cp5-shell {
        width: min(calc(100% - 28px), 620px);
    }

    .cp5-projects-section {
        padding: 42px 0 68px;
    }

    .cp5-section-title {
        margin-bottom: 32px;
        font-size: 2rem;
        letter-spacing: -.035em;
    }

    .cp5-project-grid {
        --bs-gutter-y: 22px;
    }

    .cp5-project-card {
        padding: 10px 10px 11px;
        border-radius: 18px;
    }

    .cp5-project-media {
        border-radius: 14px;
    }

    .cp5-project-zoom {
        right: 11px;
        bottom: 11px;
        width: 43px;
        height: 43px;
        font-size: 1rem;
    }

    .cp5-project-meta {
        min-height: 42px;
        padding: 12px 4px 1px;
        font-size: .87rem;
    }

    .cp5-testimonials-section {
        padding: 54px 0 68px;
    }

    .cp5-testimonials-heading {
        margin-bottom: 34px;
    }

    .cp5-testimonials-kicker {
        margin-bottom: 10px;
        font-size: .9rem;
    }

    .cp5-testimonials-title {
        font-size: 2rem;
    }

    .cp5-review-grid {
        --bs-gutter-y: 20px;
    }

    .cp5-review-card {
        min-height: 0;
        padding: 28px 25px 24px;
        border-radius: 18px;
    }

    .cp5-review-brand {
        margin-bottom: 22px;
    }

    .cp5-review-text {
        margin-bottom: 24px;
        font-size: .9rem;
    }
}

@media (max-width: 479.98px) {
    .cp5-section-title,
    .cp5-testimonials-title {
        font-size: 1.72rem;
    }

    .cp5-project-media {
        aspect-ratio: 1.42 / 1;
    }

    .cp5-project-meta {
        align-items: flex-start;
    }

    .cp5-review-footer {
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cp5-page *,
    .cp5-page *::before,
    .cp5-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}



/*############################################################
<- PROJECTS
############################################################*/



/*############################################################
-> CORPORATE
############################################################*/


.corp6-preview-body {
    margin: 0;
    color: var(--ink, #303846);
    background: var(--surface, #ffffff);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.corp6-page,
.corp6-page * {
    box-sizing: border-box;
}

.corp6-page img {
    display: block;
    max-width: 100%;
}

.corp6-shell {
    width: min(calc(100% - 48px), 1160px);
    margin-inline: auto;
}

.corp6-hero {
    padding: 86px 0 82px;
    background: var(--surface, #ffffff);
}

.corp6-hero__content {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.corp6-hero__title {
    margin: 0 0 24px;
    color: var(--ink, #303846);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.corp6-hero__title span {
    display: block;
    color: var(--brand-red, #ec003d);
}

.corp6-hero__description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--ink, #303846);
    font-size: 1.04rem;
    line-height: 1.45;
}

.corp6-manufacturing {
    padding: 72px 0;
    background: #f8f9fa;
}

.corp6-manufacturing__stage {
    display: grid;
    grid-template-columns: minmax(0, 1.13fr) minmax(340px, .87fr);
    gap: 18px;
    align-items: stretch;
    max-width: 1010px;
    margin-inline: auto;
}

.corp6-manufacturing__copy {
    padding: 54px 52px 46px;
    border: 1px solid var(--line, #e7e9ed);
    border-radius: var(--radius-md, 18px);
    background: var(--surface, #ffffff);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.corp6-manufacturing__copy:hover {
    border-color: rgba(236, 0, 61, .2);
    box-shadow: var(--shadow-soft, 0 18px 50px rgba(20, 28, 38, .12));
    transform: translateY(-4px);
}

.corp6-eyebrow {
    margin: 0 0 27px;
    color: var(--brand-red, #ec003d);
    font-size: .7rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.corp6-manufacturing__title {
    max-width: 530px;
    margin: 0 0 34px;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.corp6-manufacturing__text {
    margin: 0 0 20px;
    color: var(--ink, #303846);
    font-size: .91rem;
    line-height: 1.5;
}

.corp6-manufacturing__statement {
    margin: 34px 0 0;
    padding: 2px 0 2px 25px;
    border-left: 4px solid var(--brand-red, #ec003d);
    color: var(--ink, #303846);
    font-size: 1.18rem;
    line-height: 1.35;
}

.corp6-manufacturing__visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: var(--radius-md, 18px);
    background: #d9dde1;
    box-shadow: 0 8px 22px rgba(20, 28, 38, .06);
}

.corp6-manufacturing__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(21, 28, 37, .08));
    pointer-events: none;
}

.corp6-manufacturing__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2, .65, .3, 1);
}

.corp6-manufacturing__visual:hover img {
    transform: scale(1.035);
}

.corp6-value-intro {
    padding: 82px 0 76px;
    background: var(--surface, #ffffff);
    text-align: center;
}

.corp6-value-intro__eyebrow {
    margin-bottom: 31px;
}

.corp6-value-intro__title {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 3.7vw, 3.05rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.corp6-advantages {
    padding: 58px 0 76px;
    background: #fafafa;
}

.corp6-section-heading {
    margin-bottom: 54px;
    text-align: center;
}

.corp6-section-heading__kicker {
    margin: 0 0 18px;
    color: var(--ink, #303846);
    font-size: .96rem;
    font-weight: 400;
    line-height: 1.3;
}

.corp6-section-heading__title {
    margin: 0;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.corp6-advantage-card {
    height: 100%;
    min-height: 320px;
    padding: 34px 34px 30px;
    border: 1px solid var(--line, #e7e9ed);
    border-radius: var(--radius-md, 18px);
    background: var(--surface, #ffffff);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.corp6-advantage-card:hover {
    border-color: rgba(236, 0, 61, .24);
    box-shadow: 0 18px 38px rgba(20, 28, 38, .09);
    transform: translateY(-7px);
}

.corp6-advantage-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--brand-red, #ec003d);
    font-size: 2.05rem;
    line-height: 1;
    transition: transform .28s ease;
}

.corp6-advantage-card__icon svg {
    width: 42px;
    height: 42px;
}

.corp6-advantage-card:hover .corp6-advantage-card__icon {
    transform: translateY(-2px) scale(1.06);
}

.corp6-advantage-card__title {
    margin: 0 0 25px;
    color: var(--ink, #303846);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
}

.corp6-advantage-card__text {
    margin: 0;
    color: var(--ink, #303846);
    font-size: .9rem;
    line-height: 1.65;
}

.corp6-quality {
    padding: 82px 0 106px;
    background: var(--surface, #ffffff);
}

.corp6-quality__layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 18px;
    max-width: 980px;
    margin-inline: auto;
}

.corp6-quality__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.corp6-quality-fact {
    min-height: 174px;
    padding: 24px 18px;
    border: 1px solid var(--line, #e7e9ed);
    border-radius: var(--radius-md, 18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fbfbfb;
    transition: transform .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.corp6-quality-fact:hover {
    border-color: rgba(236, 0, 61, .24);
    background: var(--surface, #ffffff);
    box-shadow: 0 15px 32px rgba(20, 28, 38, .08);
    transform: translateY(-5px);
}

.corp6-quality-fact__value {
    margin: 0 0 9px;
    color: var(--ink, #303846);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.7px;
}

.corp6-quality-fact__label {
    margin: 0;
    color: var(--brand-red, #ec003d);
    font-size: .77rem;
    font-weight: 500;
    line-height: 1.35;
}

.corp6-quality__policy {
    padding: 46px 48px;
    border: 1px solid var(--line, #e7e9ed);
    border-radius: var(--radius-md, 18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fbfbfb;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.corp6-quality__policy:hover {
    border-color: rgba(236, 0, 61, .2);
    box-shadow: 0 18px 42px rgba(20, 28, 38, .08);
    transform: translateY(-4px);
}

.corp6-quality__policy .corp6-eyebrow {
    margin-bottom: 24px;
}

.corp6-quality__title {
    max-width: 440px;
    margin: 0 0 28px;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.corp6-quality__text {
    margin: 0;
    color: var(--ink, #303846);
    font-size: .92rem;
    line-height: 1.62;
}

@media (max-width: 991.98px) {
    .corp6-shell {
        width: min(calc(100% - 36px), 1160px);
    }

    .corp6-hero {
        padding: 70px 0 68px;
    }

    .corp6-manufacturing__stage {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .corp6-manufacturing__visual {
        min-height: 560px;
    }

    .corp6-advantage-card {
        min-height: 290px;
    }

    .corp6-quality__layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .corp6-quality__policy {
        min-height: 390px;
    }
}

@media (max-width: 767.98px) {
    .corp6-shell {
        width: min(calc(100% - 28px), 1160px);
    }

    .corp6-hero {
        padding: 54px 0 50px;
    }

    .corp6-hero__title {
        margin-bottom: 19px;
        font-size: 2.2rem;
        letter-spacing: -1.2px;
    }

    .corp6-hero__description {
        max-width: 520px;
        font-size: .94rem;
    }

    .corp6-manufacturing {
        padding: 42px 0;
    }

    .corp6-manufacturing__stage {
        gap: 14px;
    }

    .corp6-manufacturing__copy {
        padding: 38px 28px 34px;
    }

    .corp6-eyebrow {
        margin-bottom: 20px;
    }

    .corp6-manufacturing__title {
        margin-bottom: 26px;
        font-size: 2.15rem;
    }

    .corp6-manufacturing__text {
        font-size: .9rem;
    }

    .corp6-manufacturing__statement {
        margin-top: 28px;
        padding-left: 20px;
        font-size: 1.05rem;
    }

    .corp6-manufacturing__visual {
        min-height: 470px;
    }

    .corp6-value-intro {
        padding: 58px 0 54px;
    }

    .corp6-value-intro__eyebrow {
        margin-bottom: 22px;
    }

    .corp6-value-intro__title {
        font-size: 2.15rem;
    }

    .corp6-advantages {
        padding: 46px 0 58px;
    }

    .corp6-section-heading {
        margin-bottom: 36px;
    }

    .corp6-section-heading__title {
        font-size: 2.2rem;
    }

    .corp6-advantage-card {
        min-height: 0;
        padding: 30px 28px;
    }

    .corp6-advantage-card__icon {
        margin-bottom: 22px;
    }

    .corp6-advantage-card__title {
        margin-bottom: 18px;
    }

    .corp6-quality {
        padding: 58px 0 72px;
    }

    .corp6-quality__facts {
        gap: 12px;
    }

    .corp6-quality-fact {
        min-height: 145px;
        padding: 20px 12px;
    }

    .corp6-quality-fact__value {
        font-size: 1.45rem;
    }

    .corp6-quality__policy {
        min-height: 0;
        padding: 38px 30px;
    }

    .corp6-quality__title {
        font-size: 2.15rem;
    }
}

@media (max-width: 479.98px) {
    .corp6-hero__title {
        font-size: 1.9rem;
    }

    .corp6-manufacturing__copy {
        padding-inline: 22px;
    }

    .corp6-manufacturing__title,
    .corp6-value-intro__title,
    .corp6-section-heading__title,
    .corp6-quality__title {
        font-size: 1.85rem;
    }

    .corp6-manufacturing__visual {
        min-height: 400px;
    }

    .corp6-quality__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .corp6-quality-fact {
        min-height: 128px;
    }

    .corp6-quality-fact__value {
        font-size: 1.22rem;
    }

    .corp6-quality-fact__label {
        font-size: .68rem;
    }

    .corp6-quality__policy {
        padding-inline: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .corp6-page *,
    .corp6-page *::before,
    .corp6-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}



/*############################################################
<- CORPORATE
############################################################*/




/*############################################################
-> CONTACT
############################################################*/


.ct7-body {
    margin: 0;
    color: var(--ink, #303846);
    background: var(--surface, #fff);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.ct7-page,
.ct7-page * {
    box-sizing: border-box;
}

.ct7-page img {
    display: block;
    max-width: 100%;
}

.ct7-icon-svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.ct7-shell {
    width: min(calc(100% - 48px), 1120px);
    margin-inline: auto;
}

.ct7-hero {
    position: relative;
    padding: 72px 0 70px;
    border-bottom: 1px solid var(--line, #e7e9ed);
    background: var(--surface, #fff);
    text-align: center;
}

.ct7-hero__title {
    margin: 0;
    color: var(--ink, #303846);
    font-size: clamp(2.45rem, 4.2vw, 3.7rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.ct7-hero__title span {
    display: block;
    margin-top: 4px;
    color: var(--brand-red, #ec003d);
}

.ct7-hero__description {
    max-width: 730px;
    margin: 30px auto 0;
    color: var(--ink, #303846);
    font-size: 1.03rem;
    line-height: 1.45;
}

.ct7-contact {
    padding: 76px 0 86px;
    background: var(--surface, #fff);
}

.ct7-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 48px;
    align-items: flex-start;
    margin: 0;
}

.ct7-contact__grid > [class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
}

.ct7-form-card .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    margin: 0;
}

.ct7-form-card .row > [class*="col-"] {
    width: auto;
    max-width: none;
    padding: 0;
}

.ct7-form-card .row > .col-12 {
    grid-column: 1 / -1;
}

.ct7-info {
    padding-top: 12px;
}

.ct7-section-title {
    margin: 0 0 24px;
    color: var(--ink, #303846);
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: .01em;
}

.ct7-info__intro {
    max-width: 390px;
    margin: 0 0 28px;
    color: var(--ink, #303846);
    font-size: .94rem;
    line-height: 1.52;
}

.ct7-info-list {
    display: grid;
    gap: 16px;
}

.ct7-info-card {
    min-height: 92px;
    padding: 16px 18px;
    border: 1px solid var(--line, #e7e9ed);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    background: var(--surface, #fff);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ct7-info-card:hover {
    border-color: rgba(236, 0, 61, .28);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(20, 28, 38, .08);
}

.ct7-info-card__icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--brand-red, #ec003d);
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: var(--brand-red, #ec003d);
    background: var(--surface, #fff);
    font-size: 1.35rem;
    transition: color .22s ease, background-color .22s ease;
}

.ct7-info-card:hover .ct7-info-card__icon {
    color: #fff;
    background: var(--brand-red, #ec003d);
}

.ct7-info-card__title {
    margin: 0 0 7px;
    color: var(--ink, #303846);
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.25;
}

.ct7-info-card__text,
.ct7-info-card__text address,
.ct7-info-card__text p {
    margin: 0;
    color: var(--ink, #303846);
    font-size: .74rem;
    font-style: normal;
    line-height: 1.55;
}

.ct7-info-card__text a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.ct7-info-card__text a:hover {
    color: var(--brand-red, #ec003d);
}

.ct7-info-card__muted {
    color: #a0a4aa !important;
}

.ct7-form-card {
    padding: 26px 26px 30px;
    border: 1px solid var(--line, #e7e9ed);
    border-radius: 7px;
    background: var(--surface, #fff);
    box-shadow: 0 8px 24px rgba(20, 28, 38, .025);
}

.ct7-form-card__heading {
    margin-bottom: 20px;
}

.ct7-form-card__title {
    margin: 0 0 13px;
    color: var(--ink, #303846);
    font-size: 1.26rem;
    font-weight: 500;
    line-height: 1.25;
}

.ct7-form-card__description {
    margin: 0;
    color: var(--ink, #303846);
    font-size: .82rem;
    line-height: 1.45;
}

.ct7-field {
    margin-bottom: 14px;
}

.ct7-field__label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink, #303846);
    font-size: .77rem;
    font-weight: 400;
    line-height: 1.2;
}

.ct7-field__control {
    width: 100%;
    min-height: 42px;
    display: block;
    padding: 10px 13px;
    border: 1px solid var(--line, #e7e9ed);
    border-radius: 5px;
    color: var(--ink, #303846);
    background: var(--surface, #fff);
    font-size: .76rem;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ct7-field__control::placeholder {
    color: #a7abb2;
    opacity: 1;
}

.ct7-field__control:focus {
    border-color: var(--brand-red, #ec003d);
    box-shadow: 0 0 0 3px rgba(236, 0, 61, .1);
}

textarea.ct7-field__control {
    min-height: 98px;
    resize: vertical;
}

.ct7-form-actions {
    padding-top: 8px;
    display: flex;
    justify-content: center;
}

.ct7-submit {
    min-width: 176px;
    min-height: 48px;
    padding: 9px 12px 9px 26px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
    background: var(--brand-red, #ec003d);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(236, 0, 61, .2);
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.ct7-submit:hover {
    color: #fff;
    background: var(--brand-red-dark, #d80037);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(236, 0, 61, .28);
}

.ct7-submit:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
    box-shadow: none;
}

.ct7-submit__icon {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .88rem;
}

.ct7-form-status {
    min-height: 20px;
    margin-top: 14px;
    color: var(--brand-red, #ec003d);
    font-size: .78rem;
    text-align: center;
}

.ct7-form-status.is-success {
    color: #14804a;
}

.ct7-form-status.is-error {
    color: var(--brand-red, #ec003d);
}

.ct7-map {
    margin-top: 50px;
    border-radius: 7px;
    overflow: hidden;
    background: #eef2f5;
}

.ct7-map__image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease, filter .35s ease;
}

.ct7-map:hover .ct7-map__image {
    transform: scale(1.015);
    filter: saturate(1.04);
}

@media (max-width: 991.98px) {
    .ct7-shell {
        width: min(calc(100% - 36px), 820px);
    }

    .ct7-hero {
        padding: 62px 0 58px;
    }

    .ct7-contact {
        padding: 58px 0 68px;
    }

    .ct7-contact__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ct7-info {
        padding-top: 0;
    }

    .ct7-info__intro {
        max-width: 620px;
    }

    .ct7-form-card {
        margin-top: 12px;
    }

    .ct7-map {
        margin-top: 36px;
    }
}

@media (max-width: 767.98px) {
    .ct7-shell {
        width: min(calc(100% - 28px), 620px);
    }

    .ct7-hero {
        padding: 46px 0 44px;
        text-align: left;
    }

    .ct7-hero__title {
        font-size: clamp(2.25rem, 11vw, 3.1rem);
        line-height: 1.02;
    }

    .ct7-hero__title span {
        margin-top: 8px;
    }

    .ct7-hero__description {
        margin: 24px 0 0;
        font-size: .96rem;
        line-height: 1.55;
    }

    .ct7-contact {
        padding: 44px 0 52px;
    }

    .ct7-section-title {
        margin-bottom: 18px;
        font-size: 1.2rem;
    }

    .ct7-info__intro {
        margin-bottom: 22px;
        font-size: .9rem;
    }

    .ct7-info-card {
        min-height: 0;
        padding: 15px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .ct7-info-card__icon {
        width: 46px;
        height: 46px;
        font-size: 1.16rem;
    }

    .ct7-form-card {
        padding: 24px 18px;
        border-radius: 10px;
    }

    .ct7-form-card__heading {
        margin-bottom: 18px;
    }

    .ct7-form-card__title {
        font-size: 1.2rem;
    }

    .ct7-form-card .row {
        grid-template-columns: 1fr;
    }

    .ct7-form-card .row > .col-12 {
        grid-column: auto;
    }

    .ct7-field {
        margin-bottom: 13px;
    }

    .ct7-form-actions {
        padding-top: 5px;
    }

    .ct7-submit {
        width: 100%;
        min-width: 0;
        min-height: 50px;
    }

    .ct7-map {
        margin-top: 28px;
        border-radius: 10px;
    }

    .ct7-map__image {
        height: 290px;
        object-position: 44% center;
    }
}

@media (max-width: 479.98px) {
    .ct7-hero__title {
        font-size: 2.2rem;
    }

    .ct7-info-card {
        align-items: flex-start;
    }

    .ct7-info-card__title {
        margin-top: 2px;
    }

    .ct7-map__image {
        height: 250px;
        object-position: 38% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ct7-page *,
    .ct7-page *::before,
    .ct7-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}



/*############################################################
<- CONTACT
############################################################*/



/*############################################################
-> Installer
############################################################*/


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink, #303846);
    background: var(--surface, #ffffff);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.ins8-page {
    min-height: 100vh;
    background: var(--surface, #ffffff);
}

.ins8-shell {
    width: min(calc(100% - 48px), 1120px);
    margin-inline: auto;
}

.ins8-hero {
    padding: 104px 0 94px;
    background: var(--surface, #ffffff);
}

.ins8-hero__row {
    align-items: center;
    --bs-gutter-x: 72px;
    --bs-gutter-y: 44px;
}

.ins8-hero__title {
    max-width: 470px;
    margin: 0 0 28px;
    color: var(--ink, #303846);
    font-size: clamp(2.6rem, 4.45vw, 4.15rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2.4px;
}

.ins8-hero__title-accent {
    display: block;
    color: var(--brand-red, #ec003d);
}

.ins8-hero__description {
    max-width: 485px;
    margin: 0 0 38px;
    color: var(--ink, #303846);
    font-size: 1.03rem;
    line-height: 1.45;
}

.ins8-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ins8-button {
    min-height: 48px;
    padding: 13px 29px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.ins8-button:hover {
    transform: translateY(-2px);
}

.ins8-button--primary {
    color: #fff;
    background: var(--brand-red, #ec003d);
    box-shadow: 0 12px 28px rgba(236, 0, 61, .2);
}

.ins8-button--primary:hover {
    color: #fff;
    background: var(--brand-red-dark, #d80037);
    box-shadow: 0 15px 30px rgba(236, 0, 61, .27);
}

.ins8-button--dark {
    color: #fff;
    background: var(--ink, #303846);
}

.ins8-button--dark:hover {
    color: #fff;
    background: var(--ink-deep, #222a35);
    box-shadow: 0 12px 28px rgba(34, 42, 53, .2);
}

.ins8-hero__visual {
    position: relative;
    min-height: 410px;
    border-radius: var(--radius-md, 18px);
    overflow: hidden;
    background: #dce5ef;
    box-shadow: 0 20px 55px rgba(26, 35, 47, .12);
    isolation: isolate;
}

.ins8-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: inherit;
    pointer-events: none;
}

.ins8-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2, .65, .3, 1);
}

.ins8-hero__visual:hover img {
    transform: scale(1.035);
}

.ins8-benefits {
    padding: 58px 0 72px;
    color: #fff;
    background: var(--ink, #303846);
}

.ins8-benefits__heading {
    margin: 0 0 14px;
    text-align: center;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.ins8-benefits__lead {
    max-width: 650px;
    margin: 0 auto 45px;
    color: rgba(255, 255, 255, .9);
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
}

.ins8-benefits__grid {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 18px;
}

.ins8-benefit-card {
    height: 100%;
    min-height: 250px;
    padding: 23px 22px 24px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 22px;
    background: rgba(255, 255, 255, .018);
    transition: transform .24s ease, background-color .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ins8-benefit-card:hover {
    transform: translateY(-7px);
    border-color: var(--brand-red, #ec003d);
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 18px 40px rgba(9, 13, 19, .2);
}

.ins8-benefit-card:hover p, .ins8-benefit-card:hover h3  {
        color: var(--brand-red, #ec003d);

}

.ins8-benefit-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 19px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    transition: background-color .24s ease, color .24s ease, transform .24s ease;
}

.ins8-benefit-card:hover .ins8-benefit-card__icon {
    color: var(--brand-red, #303846);
    background: #fff;
    transform: rotate(-3deg);
}

.ins8-benefit-card__icon svg {
    width: 25px;
    height: 25px;
}

.ins8-benefit-card__title {
    min-height: 58px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -.35px;
}

.ins8-benefit-card__text {
    margin: 0;
    color: rgba(255, 255, 255, .94);
    font-size: .88rem;
    line-height: 1.38;
}

.ins8-application {
    padding: 72px 0 120px;
    background: var(--surface, #ffffff);
}

.ins8-form-card {
    width: min(100%, 910px);
    margin-inline: auto;
    padding: 62px 88px 48px;
    border: 1px solid rgba(48, 56, 70, .35);
    background: #fff;
    box-shadow: 0 12px 36px rgba(26, 34, 45, .055);
}

.ins8-form-card__heading {
    margin: 0 0 13px;
    text-align: center;
    color: var(--ink, #303846);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.ins8-form-card__intro {
    margin: 0 0 52px;
    color: var(--ink, #303846);
    text-align: center;
    font-size: .96rem;
    line-height: 1.5;
}

.ins8-form-card__columns {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 20px;
}

.ins8-form-card__group-title {
    margin: 0 0 18px;
    color: var(--brand-red, #ec003d);
    font-size: .66rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ins8-field {
    margin-bottom: 14px;
}

.ins8-field__label {
    margin: 0 0 6px;
    display: block;
    color: var(--ink, #303846);
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.2;
}

.ins8-field__control {
    width: 100%;
    min-height: 42px;
    padding: 10px 13px;
    border: 1px solid rgba(48, 56, 70, .65);
    border-radius: 6px;
    color: var(--ink, #303846);
    background: #fff;
    font-size: .78rem;
    line-height: 1.3;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ins8-field__control::placeholder {
    color: #a9aeb7;
    opacity: 1;
}

.ins8-field__control:hover {
    border-color: var(--ink, #303846);
}

.ins8-field__control:focus {
    border-color: var(--brand-red, #ec003d);
    box-shadow: 0 0 0 3px rgba(236, 0, 61, .11);
}

select.ins8-field__control {
    appearance: none;
    padding-right: 38px;
    background-image: linear-gradient(45deg, transparent 50%, #6d7480 50%), linear-gradient(135deg, #6d7480 50%, transparent 50%);
    background-position: calc(100% - 17px) 18px, calc(100% - 12px) 18px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

textarea.ins8-field__control {
    min-height: 108px;
    resize: vertical;
}

.ins8-form-card__wide-field {
    margin-top: 10px;
}

.ins8-agreement {
    margin: 19px 0 28px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.ins8-agreement__input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    border: 1px solid #8d949f;
    border-radius: 50%;
    appearance: none;
    background: #fff;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ins8-agreement__input:checked {
    border-color: var(--brand-red, #ec003d);
    background: radial-gradient(circle, var(--brand-red, #ec003d) 0 43%, #fff 47% 100%);
}

.ins8-agreement__input:focus-visible {
    box-shadow: 0 0 0 3px rgba(236, 0, 61, .13);
    outline: none;
}

.ins8-agreement__label {
    color: #989da6;
    font-size: .7rem;
    line-height: 1.4;
    cursor: pointer;
}

.ins8-submit-wrap {
    text-align: center;
}

.ins8-submit {
    min-width: 350px;
    min-height: 46px;
    padding: 11px 20px 11px 30px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    color: #fff;
    background: var(--brand-red, #ec003d);
    font-size: .95rem;
    font-weight: 500;
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.ins8-submit:hover {
    transform: translateY(-2px);
    background: var(--brand-red-dark, #d80037);
    box-shadow: 0 14px 28px rgba(236, 0, 61, .22);
}

.ins8-submit__icon {
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.ins8-submit__icon svg {
    width: 13px;
    height: 13px;
}

.ins8-form-status {
    min-height: 22px;
    margin: 14px 0 0;
    color: var(--brand-red, #ec003d);
    text-align: center;
    font-size: .77rem;
    line-height: 1.4;
}

.ins8-wordmark {
    margin: 53px 0 0;
    color: var(--brand-red, #ec003d);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.6px;
}

@media (max-width: 991.98px) {
    .ins8-shell {
        width: min(calc(100% - 36px), 900px);
    }

    .ins8-hero {
        padding: 76px 0 70px;
    }

    .ins8-hero__row {
        --bs-gutter-x: 38px;
    }

    .ins8-hero__title {
        font-size: clamp(2.45rem, 6vw, 3.55rem);
    }

    .ins8-hero__visual,
    .ins8-hero__visual img {
        min-height: 360px;
    }

    .ins8-benefit-card {
        min-height: 226px;
    }

    .ins8-form-card {
        padding: 54px 48px 44px;
    }
}

@media (max-width: 767.98px) {
    .ins8-shell {
        width: min(calc(100% - 28px), 650px);
    }

    .ins8-hero {
        padding: 52px 0 58px;
    }

    .ins8-hero__row {
        --bs-gutter-y: 34px;
    }

    .ins8-hero__copy {
        display: contents;
    }

    .ins8-hero__title {
        order: 1;
        flex: 0 0 100%;
        width: 100%;
        max-width: 600px;
        margin-bottom: 0;
        font-size: clamp(2.45rem, 11vw, 3.55rem);
        letter-spacing: -1.8px;
    }

    .ins8-hero__media-col {
        order: 2;
        flex: 0 0 100%;
        width: 100%;
    }

    .ins8-hero__visual,
    .ins8-hero__visual img {
        min-height: 330px;
    }

    .ins8-hero__description {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        max-width: 600px;
        margin-bottom: 0;
        font-size: .96rem;
    }

    .ins8-hero__actions {
        order: 4;
        width: 100%;
    }

    .ins8-benefits {
        padding: 50px 0 58px;
    }

    .ins8-benefits__lead {
        margin-bottom: 34px;
        font-size: .93rem;
    }

    .ins8-benefit-card {
        min-height: 0;
        padding: 22px;
    }

    .ins8-benefit-card__title {
        min-height: 0;
        margin-bottom: 13px;
        font-size: 1.25rem;
    }

    .ins8-application {
        padding: 52px 0 72px;
    }

    .ins8-form-card {
        padding: 42px 25px 36px;
    }

    .ins8-form-card__intro {
        margin-bottom: 38px;
    }

    .ins8-form-card__group-title {
        margin-top: 4px;
    }

    .ins8-submit {
        width: 100%;
        min-width: 0;
    }

    .ins8-wordmark {
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .ins8-hero__visual,
    .ins8-hero__visual img {
        min-height: 275px;
    }

    .ins8-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ins8-button {
        width: 100%;
    }

    .ins8-benefits__grid {
        --bs-gutter-y: 12px;
    }

    .ins8-form-card {
        padding-inline: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/*############################################################
<- Installer
############################################################*/




/*############################################################
-> XXXX
############################################################*/

/*############################################################
<- XXXX
############################################################*/

@media (min-width: 1200px) and (max-width: 1599.98px) {
}/*@media (min-width: 1200px) and (max-width: 1599.98px)*/


