: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;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif !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: "Outfit", "Segoe UI", sans-serif !important;
    color: var(--brand-black);
    letter-spacing: 0.01em;
}

p {
    color: var(--ink);
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .24s ease;
}

img,
video,
iframe {
    max-width: 100%;
    display: block;
}

.site-shell,
.page,
.footer-shell,
.contact-box,
.enquiry-box,
.event-container,
.policies {
    width: min(var(--content-max), calc(100% - 34px));
    margin-left: auto;
    margin-right: auto;
}

.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: 38px;
    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 small {
    color: #6b6b6b;
    font-size: .69rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.nav-bar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.nav-elements {
    position: relative;
    display: flex;
    align-items: center;
}

.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: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: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 250px;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.down-elements:hover .dropdown-content,
.down-elements:focus-within .dropdown-content {
    display: block;
}

.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;
}

.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: 0 auto 0 0;
    width: min(90vw, 360px);
    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;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.mobile-logo {
    width: 76%;
}

.mobile-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f4f4f6;
}

.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;
}

.mobile-dropdown-toggle {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
}

.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 {
    padding-bottom: 52px;
}

.page-intro {
    position: relative;
    margin-top: calc(var(--header-height) + 64px) !important;
    margin-bottom: 26px;
    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;
    max-width: 760px;
}

.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);
}

.hero-immersive {
    min-height: min(90vh, 820px);
    border-radius: 0 0 clamp(20px, 4vw, 36px) clamp(20px, 4vw, 36px);
    overflow: hidden;
    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%);
}

.hero-inner {
    min-height: inherit;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items: center;
    padding-top: clamp(30px, 4vw, 52px);
    padding-bottom: clamp(26px, 3vw, 40px);
}

.hero-copy {
    color: #fff;
}

.hero-eyebrow {
    margin-bottom: 16px;
    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;
    margin-bottom: 16px;
    color: #fff;
}

.hero-copy h1 span {
    color: #ff9fab;
}

.hero-copy p {
    color: rgba(255, 255, 255, .88);
    max-width: 690px;
    margin-bottom: 24px;
}

.btn-primary-solid,
.btn-primary-outline,
.btn-dark-solid {
    min-height: 44px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .83rem;
    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: 24px;
}

.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;
}

.hero-spotlight {
    display: grid;
    gap: 14px;
}

.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);
}

.section-head h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    margin-bottom: 0;
    line-height: 1.18;
}

.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);
}

.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: 140px;
    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 {
    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-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: #fff;
    box-shadow: var(--shadow-1);
}

.logo-carousel .item-owl,
#clientele-carousel .item-owl,
#collaboration-carousel .item-owl {
    margin: 8px;
    border-radius: 8px;
    border: 1px solid #ececef;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(18, 18, 18, .06);
}

.logo-carousel .item-owl img,
#clientele-carousel .item-owl img,
#collaboration-carousel .item-owl img {
    width: 100%;
    aspect-ratio: 4 / 2.2;
    object-fit: contain;
    padding: 14px;
}

.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;
}

.about-page {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 40px;
}

.about-hero {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: min(62vh, 560px);
    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: cover;
}

.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;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding: clamp(24px, 4vw, 38px);
}

.about-hero-copy {
    max-width: 760px;
    color: #fff;
}

.about-hero-copy h1 {
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    margin-bottom: 14px;
}

.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 {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    border: 1px solid #ececef;
}

.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;
}

.photo-mosaic {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 10px;
}

.photo-mosaic img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ececef;
}

#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;
}

.main-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    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 {
    width: min(var(--content-max), calc(100% - 34px));
    margin: 0 auto;
    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 {
    margin-bottom: 12px;
    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: 8px;
    align-items: center;
    padding: 10px;
    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: -4px;
    color: var(--brand-red);
    font-size: .96rem;
}

.prod-detail-tabs {
    width: min(var(--content-max), calc(100% - 34px));
    margin: 24px auto 0;
    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);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.prod-detail-tabs>ul li a.current {
    color: #fff;
    border-bottom-color: #fff;
    background: rgba(255, 255, 255, .14);
}

.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;
    width: min(380px, 100%);
    margin-right: 18px;
    margin-bottom: 10px;
}

.videobox {
    width: min(var(--content-max), calc(100% - 34px));
    margin: 6px auto 0;
    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 {
    min-height: calc(100vh - 1px);
    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 {
    margin-top: 46px;
    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;
        padding-top: clamp(18px, 4vw, 34px);
    }

    .hero-spotlight {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .metric-strip,
    .timeline-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));
    }

    .photo-mosaic,
    .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) {
    .top-contact-inner {
        justify-content: center;
        text-align: center;
        padding: 6px 0;
        min-height: 44px;
    }

    .top-contact-inner p {
        display: none;
    }

    .site-header {
        top: 44px;
    }

    .home-page {
        margin-top: calc(var(--header-height) + 44px);
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-spotlight {
        grid-template-columns: 1fr;
    }

    .partner-list,
    .photo-mosaic,
    .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) {

    .site-shell,
    .page,
    .footer-shell,
    .contact-box,
    .enquiry-box,
    .event-container,
    .policies,
    .product-main-section,
    .prod-detail-tabs {
        width: calc(100% - 20px) !important;
    }

    .detail-page-intro,
    .videobox,
    .detail-story-stack {
        width: calc(100% - 20px) !important;
    }

    .nav-shell {
        min-height: var(--header-height);
        padding: 8px 12px !important;
    }

    .logo-image {
        width: 122px;
    }

    .sppb-btn {
        padding: 9px 13px;
        font-size: .72rem;
    }

    .metric-strip,
    .timeline-grid,
    .pillar-grid,
    .machine-showcase-grid,
    .footer-top,
    .partner-list,
    .reasons-grid,
    .photo-mosaic,
    .gallery-page .event-container,
    .news-gallery,
    .vmv-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .page-intro {
        margin-top: calc(var(--header-height) + 52px) !important;
    }

    .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;
    }
}

@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 (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal],
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Compact mode requested */
html {
    font-size: 14px;
}

body,
p,
li,
a,
span,
strong,
small,
i,
label,
input,
textarea,
button,
th,
td {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
}

.brand-copy strong {
    font-size: 1.25rem !important;
    font-weight: 800;
    color: var(--brand-red) !important;
}

i,
.fa,
.fas,
.far,
.fab {
    font-size: 0.8rem !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 0.9rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.4rem !important;
}

.section-kicker,
.hero-eyebrow,
.nav-heads,
.sppb-btn,
.btn-primary-solid,
.btn-primary-outline,
.btn-dark-solid,
.footer-btn,
.view-details-btn-back,
.pillar-link,
.category-link,
.category-card a,
.download_content {
    font-size: 0.75rem !important;
    letter-spacing: 0.03em !important;
}

.page-intro,
.hero-immersive,
.timeline-shell,
.logo-wall-section,
.home-cta-band,
.collaboration-block,
.contact-box,
.enquiry-box,
.product-main-section,
.videobox,
.detail-story-card {
    padding: 20px !important;
}

.metric-card,
.story-panel,
.pillar-card,
.machine-card,
.category-card,
.about-panel,
.vmv-card,
.reason-card,
.timeline-step,
.event-details,
.footer-col,
.spec-item,
.detail-story-card,
.videobox,
.product-main-section {
    border-radius: 6px !important;
    box-shadow: none !important;
}

.detail-quick-links a,
.detail-action-row a {
    min-height: auto !important;
    padding: 3px 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    text-decoration: underline !important;
    font-size: 0.7rem !important;
}

.hero-copy h1,
.about-hero-copy h1,
.page-intro h1,
.section-head h2,
.detail_msg .heading {
    font-size: 0.9rem !important;
    margin-bottom: 0.4rem !important;
}

.about-hero-copy h1 {
    font-size: 1.3rem !important;
}

.product-card-item {
    height: 240px !important;
}

.product-card-img-wrap {
    height: 140px !important;
}

.product-card-front-info {
    height: auto !important;
    min-height: 42px !important;
    padding: 4px 6px !important;
}

.prod-name-front,
.prod-name-back {
    font-size: 0.85rem !important;
}

.paragraph-back {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.product-image img {
    max-height: 220px !important;
}

.product-gallery-thumbnails {
    grid-template-columns: repeat(auto-fit, minmax(48px, 1fr)) !important;
}

.gallery-thumbnail img {
    height: 48px !important;
}

.product-specs-overview {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
}

.spec-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 4px 6px !important;
}

.spec-item img {
    display: none !important;
}

.spec-item span,
.spec-item strong {
    grid-column: auto !important;
    margin: 0 !important;
    font-size: 0.7rem !important;
}

.detail-story-head {
    padding: 4px 6px !important;
    background: #f4f4f6 !important;
    border-bottom: 1px solid #ececef !important;
}

.detail-story-head span {
    width: 16px !important;
    height: 16px !important;
    font-size: 0.6rem !important;
    background: #111 !important;
    border: 0 !important;
}

.detail-story-head h3 {
    color: #111 !important;
    font-size: 0.8rem !important;
}

.detail-story-content {
    padding: 8px !important;
}

.detail-story-content p,
.detail-story-content li,
.detail_msg p,
.spec-list li,
.feature-item p {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 3px !important;
}

.detail-story-content img,
.prod-detail-wrap img.float-left {
    width: 110px !important;
    max-width: 110px !important;
    height: auto !important;
    float: none !important;
    margin: 0 0 4px 0 !important;
}

.feature-item {
    padding: 4px !important;
    margin-bottom: 4px !important;
}

.feature-item img {
    width: 24px !important;
    height: 24px !important;
    padding: 2px !important;
}

.prod-detail-video-wrap iframe {
    min-height: 180px !important;
}
