:root {
    --brand-red: #b70f1f;
    --brand-red-soft: #ffe9ec;
    --brand-black: #121212;
    --ink: #4d4d4d;
    --ink-soft: #767676;
    --line: #e7e7ea;
    --surface: #ffffff;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --shadow-1: 0 10px 24px rgba(18, 18, 18, 0.08);
    --shadow-2: 0 16px 36px rgba(18, 18, 18, 0.12);
    --shadow-red: 0 20px 42px rgba(183, 15, 31, 0.24);
    --content-max: 1240px;
    --header-height: 68px;
    --top-bar-height: 38px;
    --font-body: "Barlow", "Segoe UI", sans-serif;
    --font-heading: "Barlow", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body) !important;
    color: var(--brand-black);
    line-height: 1.65;
    background:
        radial-gradient(circle at 2% 0%, #ffecee 0%, rgba(255, 236, 238, 0) 22%),
        radial-gradient(circle at 98% 5%, #ffecee 0%, rgba(255, 236, 238, 0) 18%),
        linear-gradient(180deg, #fff 0%, #f8f8fa 75%, #f3f3f5 100%);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--font-heading) !important;
    color: var(--brand-black);
    font-size: calc(1.325rem + .9vw);
    letter-spacing: 0.01em;
}

button,
input,
textarea,
select,
option {
    font-family: inherit;
}

p {
    color: var(--ink);
    margin-top: 0;
    margin-bottom: 0px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .24s ease;
}

img,
video,
iframe {
    max-width: 100%;
    display: block;
}

.top-contact-bar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: linear-gradient(130deg, #151515, #2c2c2c 50%, #87111e 130%);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.top-contact-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, .9);
    font-size: .77rem;
}

.top-contact-inner p {
    margin: 0;
    color: inherit;
}

.top-contact-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.top-contact-links a {
    color: rgba(255, 255, 255, .92);
}

.site-header {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(18, 18, 18, .08);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 12px 24px rgba(18, 18, 18, .08);
}

.nav-shell {
    max-width: var(--content-max);
    margin: 0 auto;
    min-height: var(--header-height);
    padding: 10px 18px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-wrap {
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-link.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 152px;
    max-height: 60px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-copy strong {
    color: var(--brand-red);
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: .02em;
}

.brand-copy small {
    color: #000;
    font-size: .69rem;
    letter-spacing: .04em;
    text-align: right;
    font-weight: 500;
}

.nav-bar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.nav-elements {
    position: relative;
    display: flex;
    align-items: center;
}

.down-elements::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: max(100%, 280px);
    height: 18px;
    transform: translateX(-50%);
}

.nav-heads {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .79rem;
    font-weight: 800;
    color: #2a2a2a;
}

.nav-heads .active-page:hover {
    color: var(--brand-red);
}

.nav-heads:hover,
.nav-heads:focus-visible {
    color: var(--brand-red);
    background: var(--brand-red-soft);
}

.nav-heads.active-page {
    color: #fff !important;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
    box-shadow: 0 8px 18px rgba(183, 15, 31, .28);
}

.arrow-down {
    color: #5a5a5a;
    font-size: .7rem;
    margin-left: -3px;
}

.dropdown-content {
    display: block;
    width: 200px;
    position: absolute;
    top: calc(100% + 10px);
    left: 80%;
    padding: 8px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.down-elements:hover .dropdown-content,
.down-elements:focus-within .dropdown-content,
.down-elements.is-open .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

.down-elements:hover>.nav-parent-link:not(.active-page),
.down-elements:focus-within>.nav-parent-link:not(.active-page),
.down-elements.is-open>.nav-parent-link:not(.active-page) {
    color: var(--brand-red);
    background: var(--brand-red-soft);
}

.dropdown-content .nav-heads {
    width: 100%;
    text-transform: none;
    letter-spacing: .01em;
    border-radius: 8px;
    font-size: .9rem;
}

.dropdown-content .nav-heads:hover {
    background: #f6f6f8;
    color: var(--brand-red) !important;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
    display: none;
    align-items: center;
    justify-content: center;
}

.sppb-btn {
    min-height: 44px;
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .76rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #141414, #222 45%, var(--brand-red) 120%);
}

.sppb-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.mobile-nav-bar {
    position: fixed !important;
    inset: var(--top-bar-height) auto 0 0;
    width: min(90vw, 360px);
    height: calc(100dvh - var(--top-bar-height));
    background: #fff;
    border-right: 1px solid var(--line);
    box-shadow: 30px 0 70px rgba(18, 18, 18, .22);
    z-index: 1002;
    transform: translateX(-104%);
    transition: transform .34s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-bar.active {
    transform: translateX(0);
}

.mobile-logo-box {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.mobile-logo {
    width: min(76%, 190px);
}

.mobile-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f4f4f6;
    flex-shrink: 0;
    cursor: pointer;
}

.cross {
    color: var(--brand-red);
}

.nav-mobile {
    flex: 1;
    overflow-y: auto;
    padding: 12px 14px 22px;
}

.mobile-nav-elements {
    border-bottom: 1px solid #f0f0f2;
}

.mobile-nav-elements .nav-heads {
    width: 100%;
    text-transform: none;
    letter-spacing: .01em;
    font-size: .9rem;
    padding: 12px 8px;
}

.mobile-link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mobile-dropdown-toggle {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f4f4f6;
    color: var(--brand-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.mobile-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    margin-bottom: 10px;
    padding: 2px;
    border-radius: 8px;
    background: #f7f7f9;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content .nav-heads {
    border-radius: 8px;
}

.social-float {
    position: fixed;
    right: 0;
    top: 42%;
    z-index: 880;
}

.media-link-box {
    width: 42px;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    background: #121212;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

.link-box {
    width: 100%;
    padding: 7px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.link-box:last-child {
    border-bottom: 0;
}

.link-box a i {
    color: #fff;
    font-size: 1.04rem;
}

.link-box:hover {
    background: var(--brand-red);
}

.page-intro {
    position: relative;
    padding: clamp(26px, 4vw, 42px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: #fff;
    background: linear-gradient(128deg, #121212 5%, #33070d 40%, var(--brand-red) 110%);
    box-shadow: var(--shadow-red);
}

.page-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 24%, rgba(255, 255, 255, .12), transparent 40%),
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, .14), transparent 36%);
}

.page-intro h1,
.page-intro p,
.page-intro a {
    position: relative;
    z-index: 1;
}

.page-intro h1 {
    color: #fff !important;
    margin-bottom: .6rem;
    font-size: clamp(1.7rem, 3vw, 2.7rem) !important;
}

.page-intro p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 0;
}

.bread-crumb {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.link-home {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: .8rem !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .1);
}

.home-page {
    margin-top: calc(var(--header-height) + 38px);
}

.home-page-div {
    margin-left: 3%;
    margin-right: 3%;
}

.hero-immersive {
    position: relative;
    min-height: min(90vh, 820px);
    border-radius: 0 0 clamp(20px, 4vw, 36px) clamp(20px, 4vw, 36px);
    overflow: hidden;
    background: linear-gradient(135deg, #121212 10%, #4d0b14 55%, #9b1322 100%);
    box-shadow: var(--shadow-2);
}

.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(108deg, rgba(0, 0, 0, .82) 18%, rgba(123, 11, 22, .86) 100%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .14), transparent 40%);
    height: auto;
}

.hero-inner {
    min-height: inherit;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items: center;
    padding-bottom: clamp(26px, 3vw, 40px);
}

.hero-copy {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .86rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
}

.hero-copy h1 {
    font-size: clamp(2.15rem, 5vw, 4.3rem);
    line-height: 1.05;
    color: #fff;
}

.hero-copy h1 span {
    color: #ff9fab;
}

.hero-copy p {
    color: rgba(255, 255, 255, .88);
    max-width: 690px;
}

.btn-primary-solid,
.btn-primary-outline,
.btn-dark-solid {
    min-height: 44px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.btn-primary-solid {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
    box-shadow: var(--shadow-red);
}

.btn-primary-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .44);
}

.btn-dark-solid {
    color: #fff;
    background: #171717;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.hero-proof-item {
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .09);
}

.hero-proof-item h4 {
    margin-bottom: 2px;
    color: #fff;
    font-size: 1.3rem;
}

.hero-proof-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .84);
    font-size: .83rem;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.brand-lockup-logo {
    width: 74px;
    height: auto;
    object-fit: contain;
}

.brand-signature {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-signature-name {
    color: var(--brand-red);
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: .02em;
}

.brand-signature-tag {
    margin-top: 6px;
    color: #161616;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
}

.section-head-compact {
    margin-bottom: 14px;
}

.hero-spotlight {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.hero-spotlight .card-surface {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .12);
}

.hero-spotlight h3 {
    color: #fff;
    margin-bottom: 8px;
}

.hero-spotlight p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 0;
    font-size: .92rem;
}

.metric-strip {
    margin-top: -56px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 18px 18px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.metric-card h3 {
    margin-bottom: 3px;
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: var(--brand-red);
}

.metric-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .9rem;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.section-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .74rem;
    font-weight: 800;
    color: var(--brand-red);
    background: var(--brand-red-soft);
}

.story-band {
    margin-top: clamp(34px, 6vw, 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.story-panel {
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    background: #fff;
}

.story-panel h3 {
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.story-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.story-checklist li {
    padding-left: 24px;
    position: relative;
}

.story-checklist li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
}

.assurance-shell {
    margin-top: clamp(34px, 6vw, 68px);
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
}

.assurance-card {
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.assurance-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.assurance-card h3 {
    font-size: clamp(1.14rem, 2vw, 1.45rem);
    margin-bottom: 10px;
}

.assurance-card p {
    margin-bottom: 14px;
    color: var(--ink-soft);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 16px;
}

.pillar-card {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--brand-red), #ed4557);
    transition: transform .24s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
}

.pillar-card:hover::after {
    transform: scaleX(1);
}

.pillar-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid #ececef;
}

.pillar-card h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.pillar-card p {
    margin-bottom: 12px;
    color: var(--ink-soft);
    font-size: .92rem;
}

.pillar-link {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid #d7d7da;
    font-weight: 700;
    font-size: .76rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.pillar-link:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.timeline-shell {
    margin-top: clamp(36px, 6vw, 68px);
    padding: clamp(20px, 3vw, 30px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 14px;
}

.timeline-step {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: #f7f7f9;
    border: 1px solid #ececef;
}

.timeline-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
}

.timeline-step h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.timeline-step p {
    margin-bottom: 0;
    font-size: .9rem;
}

.machine-showcase {
    margin-top: clamp(36px, 6vw, 66px);
}

.machine-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
}

.machine-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-1);
}

.machine-media {
    position: relative;
    overflow: hidden;
    background: #101010;
}

.machine-media video {
    width: 100%;
    height: 188px;
    object-fit: cover;
    opacity: .82;
    transition: transform .34s ease, opacity .34s ease;
}

.machine-card:hover .machine-media video {
    transform: scale(1.05);
    opacity: 1;
}

.machine-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, .62);
}

.machine-content {
    padding: 14px;
}

.machine-content h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.machine-content p {
    margin-bottom: 10px;
    font-size: .9rem;
}

.machine-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.machine-meta span,
.machine-meta-link {
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid #e0e0e4;
    background: #f8f8fa;
    font-size: .68rem;
    letter-spacing: .03em;
    color: #666;
    text-transform: uppercase;
}

.machine-meta-link {
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.machine-meta-link:hover {
    color: var(--brand-red);
    border-color: rgba(180, 28, 46, .28);
    background: rgba(180, 28, 46, .08);
}

.machine-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.logo-wall-section {
    margin-top: clamp(36px, 6vw, 68px);
    padding: clamp(20px, 3vw, 30px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top left, rgba(183, 15, 31, .08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
    box-shadow: var(--shadow-1);
}

.logo-carousel-shell {
    --carousel-dot: rgba(255, 255, 255, .28);
    --carousel-dot-active: #fff;
    position: relative;
    padding: clamp(18px, 3vw, 28px);
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
    background: linear-gradient(135deg, #121212 0%, #251419 44%, #8c1120 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 54px rgba(18, 18, 18, .16);
    isolation: isolate;
}

.logo-carousel-shell::before,
.logo-carousel-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(4px);
    opacity: .92;
    animation: logoShellDrift 14s ease-in-out infinite;
}

.logo-carousel-shell::before {
    top: -120px;
    right: -90px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 70%);
}

.logo-carousel-shell::after {
    left: -110px;
    bottom: -140px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0) 72%);
    animation-delay: -6s;
}

.logo-carousel-shell--partners {
    --carousel-dot-active: #b9f4ff;
    background: linear-gradient(135deg, #101417 0%, #182733 46%, #0c6974 100%);
}

.logo-carousel-shell--industry {
    --carousel-dot-active: #ffd89d;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 216, 157, .16), transparent 22%),
        radial-gradient(circle at 86% 22%, rgba(255, 135, 152, .15), transparent 24%),
        linear-gradient(135deg, #100c0d 0%, #2f1217 36%, #7e1021 72%, #ca5c35 118%);
}

.logo-carousel-shell--industry .logo-carousel-label {
    color: #ffe4b7;
    background: rgba(255, 228, 183, .12);
    border-color: rgba(255, 228, 183, .22);
}

.logo-carousel-shell--minimal {
    --carousel-dot: rgba(183, 15, 31, .18);
    --carousel-dot-active: #b70f1f;
    padding-top: clamp(22px, 3vw, 30px);
    border: 1px solid #ececef;
    background:
        radial-gradient(circle at 12% 12%, rgba(183, 15, 31, .08), transparent 20%),
        radial-gradient(circle at 86% 18%, rgba(183, 15, 31, .06), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #faf9fb 100%);
    box-shadow: 0 18px 42px rgba(18, 18, 18, .06), inset 0 1px 0 rgba(255, 255, 255, .92);
}

.logo-carousel-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
    gap: 18px;
    align-items: end;
    margin-bottom: 18px;
}

.logo-carousel-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
}

.logo-carousel-shell--partners .logo-carousel-label {
    color: #d2f7ff;
    background: rgba(185, 244, 255, .12);
    border-color: rgba(185, 244, 255, .22);
}

.logo-carousel-intro h3 {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.28rem, 2.3vw, 1.92rem);
    line-height: 1.18;
    max-width: 620px;
}

.logo-carousel-intro p {
    justify-self: end;
    max-width: 500px;
    color: rgba(255, 255, 255, .78);
    font-size: .96rem;
}

.logo-carousel {
    position: relative;
    z-index: 1;
}

.logo-carousel::before {
    content: "";
    position: absolute;
    inset: 18px 16px auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .32), rgba(255, 255, 255, 0));
    opacity: .75;
    pointer-events: none;
}

.logo-carousel::after {
    content: "";
    position: absolute;
    top: 44%;
    left: 50%;
    width: min(420px, 56vw);
    height: min(420px, 56vw);
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, .15);
    transform: translate(-50%, -50%);
    opacity: .42;
    pointer-events: none;
    animation: logoOrbitSpin 24s linear infinite;
}

.logo-carousel-shell--minimal .logo-carousel::before {
    background: linear-gradient(90deg, rgba(183, 15, 31, 0), rgba(183, 15, 31, .18), rgba(183, 15, 31, 0));
    opacity: .4;
}

.logo-carousel-shell--minimal .logo-carousel::after {
    border-color: rgba(183, 15, 31, .08);
    opacity: .28;
}

.logo-carousel:not(.owl-loaded) {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.logo-carousel:not(.owl-loaded) .item-owl {
    padding: 0;
}

.logo-carousel:not(.owl-loaded) .logo-card {
    transform: none;
}

.logo-carousel:not(.owl-loaded) .logo-card-body p {
    max-height: 110px;
    opacity: 1;
    transform: translateY(0);
}

.logo-carousel .owl-stage-outer {
    padding: 10px 0 26px;
    overflow: visible;
}

.logo-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.logo-carousel .owl-item {
    display: flex;
    opacity: .34;
    filter: saturate(.82);
    transition: opacity .38s ease, transform .38s ease, filter .38s ease;
}

.logo-carousel .owl-item.active {
    opacity: .74;
}

.logo-carousel .owl-item.center {
    opacity: 1;
    z-index: 2;
}

.logo-carousel .item-owl {
    width: 100%;
    height: 100%;
    padding: 12px 8px 20px;
}

.logo-card {
    position: relative;
    min-height: 292px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid transparent;
    background:
        radial-gradient(circle at top right, var(--logo-accent-soft), rgba(255, 255, 255, 0) 34%) padding-box,
        linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(248, 249, 252, .98)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, .85), var(--logo-accent-soft), rgba(18, 18, 18, .1)) border-box;
    box-shadow: 12px 12px 0 rgba(183, 15, 31, .16), 0 20px 38px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .78);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
    transform-style: preserve-3d;
}

.logo-card::before {
    content: "";
    position: absolute;
    left: -28px;
    top: -34px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.logo-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--logo-accent-soft), rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.logo-card--minimal {
    min-height: 138px;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.logo-card--minimal .logo-card-media {
    width: 100%;
    min-height: 122px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid #edf0f3;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    box-shadow: 0 14px 28px rgba(18, 18, 18, .08), 6px 8px 18px rgba(18, 18, 18, .04);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.logo-card--minimal img {
    width: auto;
    max-width: 76%;
}

.logo-card .logo-card-media::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 16px;
    border: 1px dashed rgba(18, 18, 18, .08);
    opacity: .8;
    pointer-events: none;
}

.logo-card--minimal .logo-card-media::after {
    inset: 0;
    border-radius: inherit;
    border: 0;
}

.logo-card--minimal .logo-card-media::before {
    opacity: .12;
}

.logo-carousel .owl-item.center .logo-card,
.logo-card:hover {
    transform: translateY(-14px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 18px 18px 0 rgba(183, 15, 31, .24), 0 30px 62px rgba(0, 0, 0, .24), 0 0 0 1px rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .3);
}

.logo-carousel .owl-item.center .logo-card--minimal,
.logo-card--minimal:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: none;
    border-color: transparent;
}

.logo-carousel .owl-item.center .logo-card .logo-card-media::after,
.logo-card:hover .logo-card-media::after {
    border-color: rgba(18, 18, 18, .12);
    animation: logoFramePulse 2.2s ease-in-out infinite;
}

.logo-carousel .owl-item.center .logo-card--minimal .logo-card-media,
.logo-card--minimal:hover .logo-card-media {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(183, 15, 31, .12);
    box-shadow: 0 18px 34px rgba(18, 18, 18, .1), 12px 14px 24px rgba(183, 15, 31, .12);
}

.logo-carousel .owl-item:not(.center) .logo-card {
    transform: translateY(14px) scale(.9) rotate(-1.8deg);
    box-shadow: 8px 9px 0 rgba(183, 15, 31, .12), 0 14px 28px rgba(0, 0, 0, .14);
}

.logo-carousel .owl-item:not(.center):nth-child(even) .logo-card {
    transform: translateY(14px) scale(.9) rotate(1.8deg);
}

.logo-carousel .owl-item:not(.center) .logo-card:hover {
    transform: translateY(-4px) scale(.95) rotate(0deg);
}

.logo-carousel .owl-item:not(.center) .logo-card--minimal .logo-card-media {
    transform: scale(.97);
}

.logo-card-badge {
    position: relative;
    z-index: 1;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--logo-accent-soft);
    color: var(--logo-accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.logo-card-media {
    position: relative;
    z-index: 1;
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid transparent;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .94), rgba(255, 255, 255, .72)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 251, 253, .9)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, .9), var(--logo-accent-soft), rgba(18, 18, 18, .08)) border-box;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 24px rgba(18, 18, 18, .06);
}

.logo-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, var(--logo-accent-soft), transparent 55%);
    opacity: 1;
    pointer-events: none;
}

.logo-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(1.02);
    transition: transform .4s ease, filter .4s ease;
}

.logo-card-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.logo-card-body h3 {
    position: relative;
    margin-bottom: 0;
    font-size: clamp(1.02rem, 1.8vw, 1.22rem);
    padding-bottom: 10px;
}

.logo-card-body h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--logo-accent), rgba(255, 255, 255, 0));
}

.logo-card-body p {
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    color: #555866;
    font-size: .92rem;
    line-height: 1.55;
    transition: max-height .35s ease, opacity .35s ease, transform .35s ease;
}

.logo-carousel .owl-item.center .logo-card-body p,
.logo-card:hover .logo-card-body p {
    max-height: 110px;
    opacity: 1;
    transform: translateY(0);
}

.logo-carousel .owl-item.center .logo-card-media img {
    animation: logoMediaFloat 4.8s ease-in-out infinite;
}

.logo-carousel .owl-item.center .logo-card-badge {
    animation: logoBadgePulse 2.8s ease-in-out infinite;
}

.logo-carousel .owl-item:not(.center) .logo-card-media img {
    filter: grayscale(.08) opacity(.92);
    transform: scale(.92);
}

.logo-carousel .owl-item.center .logo-card-badge {
    box-shadow: 0 12px 24px rgba(18, 18, 18, .12);
}

.logo-card--partner .logo-card-media img {
    height: 44px;
}

.logo-card--partner .logo-card-media {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .92), rgba(242, 250, 252, .78)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(246, 252, 253, .9)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, .92), var(--logo-accent-soft), rgba(12, 105, 116, .12)) border-box;
}

.logo-carousel .owl-dots {
    margin-top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: var(--carousel-dot) !important;
    transition: width .3s ease, transform .3s ease, background-color .3s ease;
}

.logo-carousel .owl-dot.active span {
    width: 34px !important;
    background: var(--carousel-dot-active) !important;
}

.logo-carousel .owl-dot:hover span {
    transform: scale(1.08);
}

@keyframes logoShellDrift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(18px, -14px, 0) scale(1.08);
    }
}

@keyframes logoCardSweep {
    from {
        transform: translateX(-150%) rotate(10deg);
    }

    to {
        transform: translateX(260%) rotate(10deg);
    }
}

@keyframes logoMediaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes logoOrbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes logoBadgePulse {

    0%,
    100% {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 0 0 0 rgba(18, 18, 18, 0);
    }

    50% {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 0 0 10px rgba(18, 18, 18, .03);
    }
}

@keyframes logoFramePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .8;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

.home-cta-band {
    margin-top: clamp(34px, 6vw, 66px);
    margin-bottom: 8px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(125deg, #121212, #2b2b2b 48%, var(--brand-red) 120%);
    color: #fff;
    box-shadow: var(--shadow-2);
}

.home-cta-band h2 {
    color: #fff;
    margin-bottom: 10px;
}

.home-cta-band p {
    color: rgba(255, 255, 255, .88);
    margin-bottom: 18px;
}

.context-section {
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(183, 15, 31, .08), transparent 28%),
        linear-gradient(180deg, #fff, #faf9fa);
    box-shadow: var(--shadow-1);
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
}

.context-card {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid #ececef;
    background: rgba(255, 255, 255, .94);
}

.context-card h3 {
    margin-bottom: 8px;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.context-card p {
    margin-bottom: 0;
    color: var(--ink);
}

.context-closing {
    margin: 18px 0 0;
    color: var(--ink);
}

.about-page {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 40px;
}

.about-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #121212 12%, #4d0b14 54%, #9b1322 100%);
    box-shadow: var(--shadow-2);
}

.about-hero-media,
.about-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.about-hero-overlay {
    background: linear-gradient(110deg, rgba(18, 18, 18, .85), rgba(183, 15, 31, .66));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 12px 14px 16px;
}

.about-hero-copy h1 {
    color: #fff;
}

.about-hero-copy.reveal.is-visible p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.about-summary-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
}

.about-panel {
    padding: clamp(18px, 3vw, 24px);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-1);
    background: #fff;
}

.about-panel h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 8px;
}

.about-fact-grid {
    display: grid;
    gap: 10px;
}

.about-fact {
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #ececef;
    background: #fafafd;
}

.about-fact h3 {
    margin-bottom: 2px;
    color: var(--brand-red);
    font-size: 1.35rem;
}

.about-fact p {
    margin-bottom: 0;
    font-size: .9rem;
}

.vmv-grid {
    margin-top: clamp(30px, 5vw, 48px);
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
}

.vmv-card {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-1);
    background: #fff;
}

.vmv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--brand-red);
    font-size: 2rem;
    line-height: 1;
}

.vmv-icon i {
    display: block;
}

.vmv-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.vmv-card p {
    margin-bottom: 0;
    font-size: .92rem;
}

.collaboration-block {
    margin-top: clamp(30px, 5vw, 52px);
    padding: clamp(20px, 3vw, 28px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.partner-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 10px;
}

.partner-list li {
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #ececef;
    background: #f8f8fa;
    font-size: .9rem;
}

.reasons-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 12px;
}

.reason-card {
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid #ececef;
    background: #fff;
}

.reason-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.reason-card p {
    margin-bottom: 0;
    font-size: .9rem;
}

#sp-main-body {
    width: 100%;
}

.product-categories {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.category-card {
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid #ececef;
}

.category-card h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.category-card p {
    margin-bottom: 0;
    font-size: .9rem;
    color: var(--ink-soft);
}

.category-card a,
.category-link {
    width: fit-content;
    margin-top: auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid #d8d8dc;
    font-size: .74rem;
    letter-spacing: .05em;
    font-weight: 800;
    text-transform: uppercase;
}

.category-card a:hover,
.category-link:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.product-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    justify-items: center;
}

.product-card-item {
    width: min(100%, 365px);
    height: 334px;
    perspective: 1200px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    transition: transform .34s ease;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-1);
}

.product-card-item:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.flip-card-front {
    border: 1px solid var(--line);
    background: #fff;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #131313 0%, #410811 38%, var(--brand-red) 120%);
}

.product-card-img-wrap {
    width: 100%;
    height: 235px;
    background: #f6f6f8;
    overflow: hidden;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .34s ease;
}

.product-card-item:hover .product-card-img-wrap img {
    transform: scale(1.04);
}

.product-card-front-info {
    height: calc(100% - 235px);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.prod-name-front {
    margin-bottom: 0;
    font-size: 1rem;
}

.product-card-back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 14px;
}

.prod-name-back {
    margin-bottom: 0;
    color: #fff;
    font-size: 1.18rem;
}

.paragraph-back {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .92);
    font-size: .88rem;
    line-height: 1.55;
}

.view-details-btn-back {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, .42);
    color: #fff;
    font-size: .72rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-weight: 800;
}

.view-details-btn-back:hover {
    color: var(--brand-black);
    background: #fff;
    border-color: #fff;
}

.machine-catalog-page {
    padding-top: calc(var(--header-height) + var(--top-bar-height) + 22px);
    padding-bottom: 36px;
    margin-left: 3%;
    margin-right: 3%;
}

.catalog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
    gap: 18px;
    align-items: stretch;
}

.catalog-hero-copy,
.catalog-hero-media,
.catalog-highlight-card,
.catalog-card,
.catalog-cta-band {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.catalog-hero-copy {
    position: relative;
    padding: clamp(14px, 4vw, 18px);
    color: #fff;
    background: linear-gradient(138deg, #111 8%, #3e0911 40%, var(--brand-red) 120%);
    box-shadow: var(--shadow-red);
}


.catalog-hero-copy::before {
    width: 260px;
    height: 260px;
    top: -120px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 0) 68%);
}


.catalog-hero-copy>* {
    position: relative;
    z-index: 1;
}

.catalog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.catalog-breadcrumbs a,
.catalog-breadcrumbs span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
    font-size: .76rem;
    letter-spacing: .04em;
}

.catalog-breadcrumbs a:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.catalog-eyebrow,
.catalog-cta-kicker {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .92);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-hero-copy h1,
.catalog-cta-band h2 {
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.06;
}

.catalog-hero-text,
.catalog-cta-band p {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    line-height: 1.72;
}

.catalog-hero-points,
.catalog-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-hero-points {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.catalog-hero-points li,
.catalog-feature-list li {
    position: relative;
    padding-left: 24px;
}

.catalog-hero-points li::before,
.catalog-feature-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #ffccd4);
}

.catalog-hero-actions,
.catalog-cta-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-hero-media {
    padding: 16px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(183, 15, 31, .08), rgba(183, 15, 31, 0) 36%),
        linear-gradient(180deg, #fff 0%, #f6f6f8 100%);
    box-shadow: var(--shadow-1);
    display: flex;
}

.catalog-hero-image {
    border-radius: calc(var(--radius-lg) - 10px);
    overflow: hidden;
    border: 1px solid #ececef;
}

.catalog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.catalog-stat-card {
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid #ececef;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 24px rgba(18, 18, 18, .06);
}

.catalog-stat-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--brand-red);
    font-size: clamp(1.12rem, 2vw, 1.5rem);
    line-height: 1.08;
}

.catalog-stat-card span {
    color: var(--ink-soft);
    font-size: .84rem;
}

.catalog-highlight-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.catalog-highlight-card {
    position: relative;
    padding: 22px 18px 20px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.catalog-highlight-card span {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
}

.catalog-highlight-card h2 {
    margin-bottom: 8px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.25;
}

.catalog-highlight-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.catalog-collection-section {
    margin-top: clamp(28px, 5vw, 42px);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.catalog-card-shell.product-card-item {
    width: 100%;
    height: auto;
    perspective: none;
}

.catalog-card {
    min-height: 100%;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
    display: flex;
    flex-direction: column;
    transition: transform .24s ease, box-shadow .24s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
}

.catalog-card-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.catalog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .36s ease, opacity .36s ease;
}

.catalog-card:hover .catalog-card-media img {
    transform: scale(1.04);
    opacity: .94;
}

.catalog-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.catalog-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-card-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid #e2e2e6;
    background: #f6f6f8;
    color: var(--ink-soft);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.catalog-card-pill-primary {
    border-color: rgba(183, 15, 31, .14);
    background: var(--brand-red-soft);
    color: var(--brand-red);
}

.catalog-card-copy h3 {
    margin-bottom: 8px;
    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.catalog-card-copy p,
.catalog-card-note {
    color: var(--ink-soft);
}

.catalog-feature-list {
    display: grid;
    gap: 8px;
}

.catalog-feature-list li {
    color: var(--ink);
    font-size: .92rem;
}

.catalog-feature-list li::before {
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
}

.catalog-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.catalog-card-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
    box-shadow: 0 12px 28px rgba(183, 15, 31, .22);
}

.catalog-card-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.catalog-card-note {
    font-size: .82rem;
    text-align: right;
}

.catalog-cta-band {
    margin-top: clamp(30px, 5vw, 46px);
    padding: clamp(24px, 4vw, 34px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #121212 0%, #3b0810 42%, var(--brand-red) 120%);
    box-shadow: var(--shadow-red);
}

.catalog-cta-band .btn-primary-outline {
    border-color: rgba(255, 255, 255, .42);
}

.main-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 3%;
    margin-right: 3%;
    gap: 16px;
    padding: calc(var(--header-height) + 68px) 0 36px;
}

.detail-page-intro {
    width: min(var(--content-max), calc(100% - 34px));
    margin-top: 0 !important;
    margin-bottom: 8px;
}

.detail-page-intro .detail-intro-copy {
    max-width: 840px;
}

.detail-page-intro .detail-intro-copy p {
    color: rgba(255, 255, 255, .9);
}

.detail-quick-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-quick-links a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .12);
}

.detail-quick-links a:hover {
    background: rgba(255, 255, 255, .22);
}

.detail-action-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-action-row a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid #d8d8dc;
    background: #fff;
    font-size: .72rem;
    letter-spacing: .05em;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-action-row a:hover {
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.product-main-section {
    padding: clamp(14px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.product-details-container {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 18px;
    align-items: start;
}

.product-image {
    border: 1px solid #ececef;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.product-gallery-thumbnails {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(64px, 1fr));
    gap: 8px;
}

.gallery-thumbnail {
    border: 1px solid #ececef;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumbnail.selected {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(183, 15, 31, .15);
}

.gallery-thumbnail img {
    width: 100%;
    height: 64px;
    object-fit: cover;
}

.detail_msg .heading {
    color: var(--brand-red) !important;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem) !important;
}

.detail_msg p {
    color: var(--ink);
}

.product-specs-overview {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 10px;
}

.spec-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 3px;
    align-items: center;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fafafd;
}

.spec-item img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.spec-item span {
    grid-column: 2;
    font-size: .82rem;
    color: var(--ink-soft);
}

.spec-item strong {
    grid-column: 2;
    margin-top: -3px;
    color: var(--brand-red);
    font-size: .96rem;
}

.prod-detail-tabs {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-1);
}

.prod-detail-tabs>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    background: #131313;
}

.prod-detail-tabs>ul li a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: rgba(255, 255, 255, .8) !important;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.prod-detail-wrap {
    padding: clamp(18px, 3vw, 30px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feature-item {
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ececef;
    background: #fafafa;
}

.feature-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #ececef;
    background: #fff;
    padding: 4px;
}

.float-left.media-responsive {
    float: left;
    margin-right: 18px;
    margin-bottom: 10px;
}

.videobox {
    width: 100%;
    padding: clamp(18px, 3vw, 26px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.videobox .heading {
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.prod-detail-video-wrap {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #ececef;
    background: #111;
    box-shadow: var(--shadow-1);
}

.prod-detail-video-wrap iframe {
    width: 100%;
    min-height: clamp(220px, 34vw, 560px);
    display: block;
    border: 0;
}

.detail-story-stack {
    width: min(var(--content-max), calc(100% - 34px));
    margin: 8px auto 0;
    display: grid;
    gap: 14px;
}

.detail-story-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-1);
    overflow: hidden;
}

.detail-story-head {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ececef;
    background: linear-gradient(90deg, #131313, #1f1f1f 48%, #8a101d 130%);
}

.detail-story-head span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}

.detail-story-head h3 {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.02rem, 1.9vw, 1.28rem);
}

.detail-story-content {
    padding: clamp(16px, 2.6vw, 24px);
}

.detail-story-content h4 {
    margin-bottom: 8px;
    color: var(--brand-black);
}

.detail-story-content ul {
    margin: 0;
    padding-left: 16px;
}

.detail-story-content ul li {
    margin-bottom: 8px;
    color: var(--ink);
}

.contact-section,
.enquiry-section {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 32px;
}

.contact-bg-photo,
.enquiry-bg-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: clamp(16px, 3vw, 24px);
    background:
        linear-gradient(128deg, rgba(18, 18, 18, .8), rgba(183, 15, 31, .68)),
        url("../images/contactus-backdrop.jpg") center/cover no-repeat;
}

.contact-box,
.enquiry-box {
    margin-top: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow-2);
    padding: clamp(18px, 3vw, 28px);
}

.contact-box h4,
.enquiry-box h4 {
    margin-bottom: 16px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.contact-layout,
.con-box2,
.en-box2 {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 14px;
}

.contact-meta,
.address-box1 {
    display: grid;
    gap: 10px;
}

.meta-card,
.add-box1 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #ececef;
    background: #fff;
}

.meta-card i,
.add-box1 i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
}

.meta-card p,
.add-box1 p {
    margin-bottom: 0;
    font-size: .92rem;
}

.website-link {
    color: var(--brand-red);
}

.map-box,
.contact-map {
    min-height: 330px;
    border-radius: var(--radius-md);
    border: 1px solid #ececef;
    overflow: hidden;
}

.map-box iframe,
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 12px;
}

.form-grid .en-input-box:last-child {
    grid-column: 1 / -1;
}

.en-input-box p {
    margin-bottom: 6px;
    font-size: .86rem;
    color: var(--ink-soft);
}

.touch-input {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #d8d8dc;
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: .93rem;
}

.touch-input:focus {
    outline: 0;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(183, 15, 31, .12);
}

textarea.touch-input {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    margin-top: 16px;
    border: 0;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .77rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
    box-shadow: var(--shadow-red);
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.message {
    margin-top: 14px;
    margin-bottom: 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cde9d6;
    background: #eef7f1;
    color: #1f7b46;
}

.hide {
    display: none;
}

.news-page {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 24px;
}

.event-banner {
    margin-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.event-container {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.news-feature {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
    align-items: center;
    padding: clamp(16px, 3vw, 24px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.event-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #ececef;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    padding: clamp(16px, 2vw, 24px);
    border-radius: var(--radius-md);
    border: 1px solid #ececef;
    background: #fafafd;
}

.event-details h2 {
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}

.event-details p {
    margin-bottom: 8px;
}

.news-gallery {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 12px;
}

.news-gallery .event-image img {
    aspect-ratio: 4 / 3;
}

.gallery-page .event-container {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.gallery-page .event-image img {
    aspect-ratio: 4 / 3;
}

.privacy-main-body {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 30px;
}

.policies {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-1);
    padding: clamp(16px, 3vw, 30px);
}

.policies h5 {
    color: var(--brand-red);
    margin-bottom: 6px;
}

.policies a {
    color: var(--brand-red);
}

.footer {
    padding: 44px 0 22px;
    color: #fff;
    background: linear-gradient(130deg, #121212 0%, #202020 44%, #8a101d 120%);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-box {
    display: grid;
    gap: 22px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.05fr .9fr 1fr 1fr;
    gap: 16px;
}

.footer-col {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.footer-col h5,
.footer-col h6 {
    color: #fff;
    margin-bottom: 8px;
}

.footer-col p {
    color: rgba(255, 255, 255, .84);
    margin-bottom: 10px;
    font-size: .9rem;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, .88);
    font-size: .9rem;
}

.footer-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    color: #121212;
    background: #fff;
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-btn:hover {
    background: #ffe4e8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .24);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: .85rem;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.footer-social a:hover {
    background: #fff;
    color: #121212;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .56s ease, transform .56s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"].reveal {
    transform: translateX(-22px);
}

[data-reveal="right"].reveal {
    transform: translateX(22px);
}

[data-reveal="left"].reveal.is-visible,
[data-reveal="right"].reveal.is-visible {
    transform: translateX(0);
}

@media (max-width: 1180px) {
    .brand-copy {
        display: none;
    }

    .logo-image {
        width: 136px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-spotlight {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .logo-carousel-intro {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .logo-carousel-intro p {
        justify-self: start;
        max-width: none;
    }

    .metric-strip,
    .timeline-grid,
    .assurance-grid,
    .context-grid,
    .pillar-grid,
    .machine-showcase-grid,
    .footer-top,
    .reasons-grid {
        grid-template-columns: repeat(2, minmax(210px, 1fr));
    }

    .story-band,
    .about-summary-grid,
    .product-details-container,
    .news-feature,
    .contact-layout,
    .con-box2,
    .en-box2 {
        grid-template-columns: 1fr;
    }

    .vmv-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .gallery-page .event-container,
    .news-gallery {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-bar {
        display: none;
    }

    .social-float {
        right: 8px;
        top: auto;
        bottom: 18px;
    }

    .media-link-box {
        width: auto;
        border-radius: var(--radius-pill);
        padding: 0 4px;
        display: flex;
    }

    .link-box {
        width: 34px;
        height: 34px;
        padding: 0;
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, .12);
        border-radius: 50%;
        margin: 4px;
    }

    .link-box:last-child {
        border-right: 0;
    }
}

@media (max-width: 900px) {
    :root {
        --top-bar-height: 44px;
    }

    .top-contact-inner {
        justify-content: center;
        text-align: center;
        padding: 6px 0;
        min-height: 44px;
    }

    .top-contact-inner p {
        display: none;
    }

    .home-page {
        margin-top: calc(var(--header-height) + var(--top-bar-height));
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .metric-strip {
        margin-top: 18px;
    }

    .logo-carousel-shell {
        padding: 18px;
    }

    .logo-card {
        min-height: 258px;
    }

    .logo-card--minimal {
        min-height: 180px;
    }

    .assurance-grid {
        grid-template-columns: 1fr;
    }

    .context-grid {
        grid-template-columns: 1fr;
    }

    .hero-spotlight {
        grid-template-columns: 1fr;
    }

    .partner-list,
    .gallery-page .event-container,
    .news-gallery,
    .vmv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-specs-overview {
        grid-template-columns: 1fr;
    }

    .float-left.media-responsive {
        float: none;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {

    .detail-page-intro,
    .videobox,
    .detail-story-stack {
        width: calc(100% - 20px) !important;
    }

    .nav-shell {
        min-height: var(--header-height);
        padding: 8px 12px !important;
    }

    .home-page {
        margin-top: calc(var(--header-height) + var(--top-bar-height) + 8px);
    }

    .hero-immersive {
        min-height: auto;
        padding-bottom: 28px;
        background:
            linear-gradient(160deg, rgba(18, 18, 18, .98) 0%, rgba(81, 10, 19, .95) 62%, rgba(150, 18, 35, .92) 100%),
            radial-gradient(circle at top right, rgba(255, 255, 255, .12), transparent 34%);
    }

    .hero-inner {
        gap: 16px;
        align-items: start;
        padding-top: 18px;
        padding-bottom: 12px;
        min-height: 0;
    }

    .hero-video {
        opacity: .22;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(10, 10, 10, .82) 0%, rgba(76, 8, 18, .78) 52%, rgba(133, 16, 31, .7) 100%),
            radial-gradient(circle at 18% 14%, rgba(255, 255, 255, .12), transparent 34%);
    }

    .hero-copy {
        padding: 0 6px;
    }

    .hero-copy p {
        font-size: .98rem;
        line-height: 1.7;
    }

    .cta-row {
        width: 100%;
    }

    .cta-row a {
        flex: 1 1 100%;
    }

    .hero-proof-item,
    .hero-spotlight .card-surface {
        background: rgba(20, 20, 20, .42);
        border: 1px solid rgba(255, 255, 255, .2);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
        backdrop-filter: blur(8px);
    }

    .hero-proof-item h4,
    .hero-spotlight h3 {
        color: #fff;
    }

    .hero-proof-item p,
    .hero-spotlight p {
        color: rgba(255, 255, 255, .92);
    }

    .metric-strip {
        margin-top: 16px;
    }

    .logo-carousel-intro {
        gap: 12px;
        margin-bottom: 14px;
    }

    .logo-carousel-intro h3 {
        font-size: clamp(1.16rem, 6vw, 1.48rem);
    }

    .logo-carousel-intro p {
        font-size: .92rem;
    }

    .logo-card {
        min-height: 242px;
        padding: 16px;
        border-radius: 22px;
    }

    .logo-card--minimal {
        min-height: 160px;
        padding: 12px;
    }

    .logo-card-media {
        min-height: 102px;
        padding: 12px;
    }

    .logo-card--minimal .logo-card-media {
        min-height: 98px;
        padding: 12px;
    }

    .logo-card img {
        max-width: 68%;
        max-height: 32px;
    }

    .logo-card--partner .logo-card-media img {
        max-height: 30px;
    }

    .logo-mark--small {
        max-width: 52% !important;
        height: 22px !important;
    }

    .logo-image {
        width: 122px;
    }

    .brand-lockup {
        align-items: flex-start;
        gap: 10px;
    }

    .brand-lockup-logo {
        width: 58px;
    }

    .brand-signature-name {
        font-size: 1.45rem;
    }

    .brand-signature-tag {
        font-size: .72rem;
    }

    .sppb-btn {
        padding: 9px 13px;
        font-size: .72rem;
    }

    .metric-strip,
    .timeline-grid,
    .assurance-grid,
    .context-grid,
    .pillar-grid,
    .machine-showcase-grid,
    .footer-top,
    .partner-list,
    .reasons-grid,
    .gallery-page .event-container,
    .news-gallery,
    .vmv-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-card-item {
        height: 320px;
    }

    .product-card-item .flip-card-inner {
        transform: none !important;
    }

    .flip-card-back {
        display: none;
    }

    .footer {
        margin-top: 30px;
        padding-top: 34px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .prod-detail-tabs>ul {
        flex-direction: column;
    }

    .social-float {
        left: 50%;
        right: auto;
        bottom: 12px;
        transform: translateX(-50%);
        max-width: calc(100vw - 24px);
    }

    .media-link-box {
        max-width: 100%;
    }

    .about-page {
        padding-top: calc(var(--header-height) + var(--top-bar-height) + 8px);
    }

    .about-hero {
        min-height: auto;
        background:
            linear-gradient(160deg, rgba(18, 18, 18, .98) 0%, rgba(81, 10, 19, .95) 62%, rgba(150, 18, 35, .92) 100%),
            radial-gradient(circle at top right, rgba(255, 255, 255, .12), transparent 34%);
    }

    .about-hero-media {
        opacity: .22;
    }

    .about-hero-overlay {
        background:
            linear-gradient(180deg, rgba(10, 10, 10, .86) 0%, rgba(76, 8, 18, .8) 54%, rgba(133, 16, 31, .72) 100%),
            radial-gradient(circle at 18% 14%, rgba(255, 255, 255, .12), transparent 34%);
    }

    .about-hero-content {
        align-items: flex-start;
        padding: 8px 4px 6px;
        min-height: 0;
    }

    .about-hero-copy {
        width: 100%;
        max-width: none;
        padding: 14px;
        border-radius: var(--radius-md);
        background: rgba(20, 20, 20, .38);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
        backdrop-filter: blur(8px);
    }

    .about-hero-copy p,
    .about-hero-copy.reveal.is-visible p {
        color: rgba(255, 255, 255, .94);
        font-size: .98rem;
        line-height: 1.72;
    }
}

@media (max-width: 575px) {
    .sp-module {
        display: none;
    }

    .site-header {
        border-bottom-width: 0;
    }

    .top-contact-inner {
        font-size: .72rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-intro h1 {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }

    .mobile-nav-bar {
        width: min(92vw, 340px);
    }
}

@media (max-width: 1180px) {

    .catalog-grid,
    .catalog-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .catalog-stat-grid {
        grid-template-columns: 1fr;
    }

    .catalog-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .machine-catalog-page {
        padding-top: calc(var(--header-height) + var(--top-bar-height) + 12px);
        padding-bottom: 24px;
    }

    .catalog-hero-copy,
    .catalog-hero-media,
    .catalog-highlight-card,
    .catalog-card-body,
    .catalog-cta-band {
        padding-left: 16px;
        padding-right: 16px;
    }

    .catalog-highlight-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-hero-copy h1,
    .catalog-cta-band h2 {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
    }

    .catalog-hero-text,
    .catalog-hero-points li,
    .catalog-card-copy p,
    .catalog-feature-list li,
    .catalog-cta-band p {
        font-size: .95rem;
        line-height: 1.68;
    }

    .catalog-hero-actions a,
    .catalog-cta-actions a {
        flex: 1 1 100%;
    }

    .catalog-card-footer {
        align-items: flex-start;
    }

    .catalog-card-note {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal],
    .reveal {
        opacity: 1;
        transform: none;
    }
}
