﻿/* ============================
   CSS Variables
   ============================ */
:root {
    --primary: #a6192e;
    --primary-dark: #7f1022;
    --primary-light: #f9e8eb;
    --secondary: #1a1a1a;
    --text: #555555;
    --text-soft: #6a6a6a;
    --white: #ffffff;
    --surface: #f8f9fa;
    --surface-alt: #f0f2f5;
    --line: rgba(26, 26, 26, 0.08);
    --shadow: 0 24px 60px rgba(21, 31, 26, 0.08);
    --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --container: 1280px;
    --transition: 0.32s ease;
    --font-sans: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================
   Reset & Base
   ============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============================
   Layout
   ============================ */
.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

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

.section--alt {
    background: var(--surface-alt);
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.section__eyebrow::before {
    content: "";
    width: 48px;
    height: 1px;
    background: rgba(166, 25, 46, 0.4);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 44px;
}

.section__header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1.2;
}

.section__header p {
    color: var(--text-soft);
    font-size: 1rem;
}

.reveal-ready [data-reveal] {
    --reveal-y: 24px;
    opacity: 0;
    transform: translateY(var(--reveal-y));
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        border-color var(--transition),
        box-shadow var(--transition);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-revealed {
    --reveal-y: 0px;
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.text-accent {
    color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--secondary);
    line-height: 1.2;
}

/* ============================
   Buttons
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 32px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(166, 25, 46, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--secondary);
}

.btn--small {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.88rem;
}

.btn--arrow::after {
    content: "->";
    margin-left: 10px;
    transition: transform var(--transition);
}

.btn--arrow:hover::after {
    transform: translateX(4px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
}

.text-link::after {
    content: "->";
    transition: transform var(--transition);
}

.text-link:hover::after {
    transform: translateX(4px);
}

/* ============================
   Top Bar
   ============================ */
.hero-vr {
    position: relative;
    min-height: 82vh;
    background: #000;
    overflow: hidden;
}

.hero-vr--embed::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.04) 28%, rgba(8, 8, 8, 0) 58%);
}

.home .hero-vr--embed::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(5, 9, 14, 0.5) 0%, rgba(5, 9, 14, 0.26) 24%, rgba(5, 9, 14, 0.06) 44%, rgba(5, 9, 14, 0) 62%);
}

.hero-vr__carousel,
.hero-vr__slides,
.hero-vr__slide,
.hero-vr__preview-image {
    width: 100%;
    height: 82vh;
}

.hero-vr__carousel {
    position: relative;
}

.hero-vr__slides {
    position: relative;
}

.hero-vr__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.hero-vr__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-vr__slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-vr__preview-image {
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-vr__copy {
    position: absolute;
    left: clamp(34px, 7.6vw, 156px);
    top: 46%;
    z-index: 2;
    width: clamp(300px, 36vw, 560px);
    max-width: calc(100vw - clamp(68px, 15.2vw, 312px));
    color: #ffffff;
    pointer-events: none;
    transform: translateY(-50%);
}

.hero-vr__copy p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1.18rem, 1.52vw, 2rem);
    font-weight: 650;
    line-height: 1.42;
    letter-spacing: 0;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
    overflow: hidden;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.hero-vr__copy-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(0.82rem, 0.82vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-vr__copy-label::before {
    content: "";
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 10px 26px rgba(166, 25, 46, 0.32);
}

.hero-vr__action {
    pointer-events: auto;
    width: fit-content;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 26px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 16px 36px rgba(166, 25, 46, 0.28);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-vr__action:hover {
    background: #8f1427;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(166, 25, 46, 0.34);
}

.hero-vr__controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.hero-vr__arrow {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background var(--transition), transform var(--transition), color var(--transition);
}

.hero-vr__arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-vr__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-vr__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.hero-vr__dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__contact {
    display: flex;
    gap: 24px;
}

.top-bar__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: opacity var(--transition);
}

.top-bar__contact a:hover {
    opacity: 0.85;
}

.top-bar__social {
    display: flex;
    gap: 12px;
}

.top-bar__social a {
    color: var(--white);
    transition: opacity var(--transition);
}

.top-bar__social a:hover {
    opacity: 0.85;
}

/* ============================
   Header
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 0;
    transition: all var(--transition);
}

.home .header {
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.72) 0%, rgba(8, 12, 18, 0.18) 64%, rgba(8, 12, 18, 0) 100%);
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom-color: transparent;
    box-shadow: 0 12px 32px rgba(17, 24, 20, 0.08);
}

.header .container {
    width: min(calc(100% - 72px), 1360px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    transition: min-height var(--transition);
}

.header.scrolled .container {
    min-height: 76px;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.home .header:not(.scrolled) .logo {
    background: transparent;
    box-shadow: none;
}

.header.scrolled .logo,
body:not(.home) .logo {
    padding: 8px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.header.scrolled .logo__image,
body:not(.home) .logo__image {
    filter:
        drop-shadow(0 1px 0 rgba(15, 23, 28, 0.46))
        drop-shadow(0 0 2px rgba(15, 23, 28, 0.3));
}

.logo__image {
    display: block;
    width: auto;
    height: 54px;
    max-width: 190px;
    object-fit: contain;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav__list > li {
    position: relative;
}

.nav__link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 8px 0;
    transition: color var(--transition);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.home .header:not(.scrolled) .nav__link {
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.34);
}

.home .header:not(.scrolled) .nav__link:hover,
.home .header:not(.scrolled) .nav__link.active {
    color: var(--white);
}

.home .header:not(.scrolled) .nav__link::after {
    background: rgba(255, 255, 255, 0.96);
}

/*
Homepage preview mode: disable all links for client review
.home a,
.home a:hover,
.home a:focus,
.home a:active {
    pointer-events: none !important;
    cursor: default !important;
}
*/

/* Dropdown */
.nav__list > .has-dropdown,
.nav__list > .menu-item-has-children {
    position: relative;
}

.nav__list > .has-dropdown > .nav__link,
.nav__list > .menu-item-has-children > .nav__link {
    padding-right: 16px;
}

.nav__list > .has-dropdown > .nav__link::before,
.nav__list > .menu-item-has-children > .nav__link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    opacity: 0.72;
    transition: transform var(--transition);
}

.nav__list > .has-dropdown:hover > .nav__link::before,
.nav__list > .has-dropdown:focus-within > .nav__link::before,
.nav__list > .menu-item-has-children:hover > .nav__link::before,
.nav__list > .menu-item-has-children:focus-within > .nav__link::before {
    transform: translateY(-35%) rotate(225deg);
}

.dropdown {
    position: absolute;
    z-index: 50;
    top: calc(100% + 14px);
    left: 0;
    width: max-content;
    min-width: 150px;
    max-width: 280px;
    margin: 0;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 54px rgba(15, 23, 32, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    padding: 10px;
}

.dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    height: 15px;
}

.nav__list > .has-dropdown:hover > .dropdown,
.nav__list > .has-dropdown:focus-within > .dropdown,
.nav__list > .menu-item-has-children:hover > .dropdown,
.nav__list > .menu-item-has-children:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition);
}

.dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search {
    width: clamp(210px, 17vw, 280px);
    min-height: 48px;
    padding: 0 6px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 6px;
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.header-search:focus-within {
    border-color: rgba(166, 25, 46, 0.38);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 26px rgba(15, 23, 32, 0.08);
}

.header-search__field {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--secondary);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
}

.header-search__field::placeholder {
    color: rgba(57, 70, 80, 0.62);
}

.header-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header-search__submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(166, 25, 46, 0.22);
}

.home .header:not(.scrolled) .header-search {
    background: rgba(255, 255, 255, 0.66);
    border-color: rgba(255, 255, 255, 0.28);
}

.header.scrolled .header-search,
body:not(.home) .header-search {
    border-color: rgba(17, 17, 17, 0.08);
    background: rgba(242, 242, 242, 0.96);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.82),
        0 8px 18px rgba(17, 17, 17, 0.045);
}

.header.scrolled .header-search__field::placeholder,
body:not(.home) .header-search__field::placeholder {
    color: rgba(57, 70, 80, 0.76);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.header__cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(166, 25, 46, 0.24);
}

.home .header:not(.scrolled) .header__cta {
    background: rgba(166, 25, 46, 0.9);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(247, 248, 249, 0.92);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--secondary);
    transition: all var(--transition);
}

.home .header:not(.scrolled) .nav-toggle {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.home .header:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   Hero
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 120px 0 80px;
}

.hero__subtitle {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(166, 25, 46, 0.9);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================
   Intro
   ============================ */
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro__content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.intro__content > p {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.intro__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.intro__feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.intro__feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
}

.intro__feature strong {
    font-size: 0.95rem;
    color: var(--secondary);
}

.intro__media {
    position: relative;
}

.intro__image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro__image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(166, 25, 46, 0.1), transparent);
    z-index: 1;
}

.intro__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background: var(--surface-alt);
}

/* ============================
   Products
   ============================ */
.products__tabs {
    display: grid;
    gap: 34px;
}

.products__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.products__tab {
    min-height: 48px;
    padding: 0 24px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--secondary);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.products__tab:hover,
.products__tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 380px));
    justify-content: center;
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #ffffff;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ffffff;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.08);
}

.product-card__body {
    padding: 24px;
}

.product-card__category {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-card__body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    min-height: 2.76em;
    display: flex;
    align-items: center;
}

.product-card__body h3 a {
    color: var(--secondary);
    transition: color var(--transition);
}

.product-card__body h3 a:hover {
    color: var(--primary);
}

.product-card__body p {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

/* ============================
   Technical
   ============================ */
.technical__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technical__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.technical__media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: var(--surface-alt);
}

.technical__points {
    display: grid;
    gap: 0;
}

.technical__point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 76px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.technical__point:last-child {
    border-bottom: none;
}

.technical__point-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    position: relative;
}

.technical__point-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 12px;
    height: 8px;
    border-left: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

.technical__point h3 {
    font-size: 1.1rem;
    margin: 0;
}

.technical__point p {
    color: var(--text-soft);
    font-size: 0.92rem;
}

/* ============================
   Applications
   ============================ */
.applications__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.application-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.application-card__media {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.application-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--surface-alt);
    transition: transform 0.4s ease;
}

.application-card:hover .application-card__media img {
    transform: scale(1.08);
}

.application-card__body {
    min-height: 86px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.application-card__body h3 {
    font-size: 1.1rem;
    margin: 0;
}

.application-card__body p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* ============================
   Factory
   ============================ */
.factory--cert-display {
    background: #fff;
    min-height: clamp(760px, 96vh, 900px);
    padding: 18px 0 24px;
    display: flex;
    align-items: center;
}

.factory__display-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    margin-bottom: 34px;
}

.factory__display-copy h2 {
    margin: 0;
    color: var(--secondary);
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.factory__display-copy p {
    margin: 0;
    max-width: 820px;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.45;
}

.factory__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border: 1.5px solid rgba(12, 175, 183, 0.88);
    border-radius: 999px;
    color: #0ca0a7;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.factory__more::after {
    content: "->";
    margin-left: 10px;
}

.factory__more:hover {
    color: var(--white);
    background: #0ca0a7;
    border-color: #0ca0a7;
    transform: translateY(-2px);
}

.factory__display-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.factory__nav {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: #eef2f2;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.factory__nav:hover {
    background: #0ca0a7;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(12, 160, 167, 0.18);
}

.factory__display-stage {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.factory__featured-panel {
    position: relative;
    min-height: clamp(430px, 62vh, 600px);
}

.factory__display-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}

.cert-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(15, 23, 28, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(15, 23, 28, 0.1);
}

.cert-card--featured {
    position: absolute;
    inset: 0;
    min-height: clamp(360px, 54vh, 520px);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.985);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.cert-card--featured.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cert-card--featured img {
    aspect-ratio: 3 / 4.2;
}

.cert-thumb {
    display: none;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: transform var(--transition), filter var(--transition), opacity var(--transition);
}

.cert-thumb.is-visible {
    display: block;
}

.cert-thumb:hover {
    transform: translateY(-4px);
    filter: saturate(1.03);
}

.cert-thumb__frame {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 12px;
    display: block;
    box-shadow: 0 14px 28px rgba(15, 23, 28, 0.05);
}

.cert-thumb__frame img {
    width: 100%;
    aspect-ratio: 3 / 4.2;
    object-fit: contain;
    display: block;
}

.factory__marks {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.factory__mark {
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    background: #f7f8f9;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.factory__mark:hover {
    transform: translateY(-2px);
    border-color: rgba(166, 25, 46, 0.24);
}

.factory__mark.is-active {
    background: rgba(166, 25, 46, 0.08);
    border-color: rgba(166, 25, 46, 0.28);
    box-shadow: 0 14px 26px rgba(166, 25, 46, 0.09);
}

.factory__mark-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ca0a7 0%, #a6192e 100%);
    flex-shrink: 0;
}

.factory__mark-label {
    color: rgba(17, 24, 39, 0.82);
    font-size: clamp(0.9rem, 1.2vw, 1.12rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .factory__display-stage {
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        gap: 18px;
    }

    .factory__featured-panel,
    .cert-card--featured {
        min-height: 440px;
    }

    .factory__marks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .factory--cert-display {
        min-height: auto;
        padding: 54px 0 42px;
    }

    .factory__display-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 14px;
    }

    .factory__display-shell {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .factory__display-stage {
        grid-template-columns: 1fr;
    }

    .factory__nav {
        display: none;
    }

    .factory__display-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .factory__featured-panel {
        min-height: 400px;
    }

    .cert-card--featured {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .factory__display-grid {
        display: none;
    }

    .factory__featured-panel {
        min-height: 350px;
    }

    .cert-card--featured {
        min-height: 350px;
    }

    .factory__more {
        min-height: 50px;
        padding: 0 26px;
    }

    .factory__marks {
        display: flex;
        justify-content: center;
        grid-template-columns: none;
        gap: 10px;
        margin-top: 18px;
    }

    .factory__mark {
        min-height: 0;
        width: 12px;
        height: 12px;
        padding: 0;
        border-radius: 999px;
        justify-content: center;
        background: rgba(166, 25, 46, 0.18);
        border-color: transparent;
        box-shadow: none;
    }

    .factory__mark.is-active {
        background: var(--primary);
        border-color: transparent;
    }

    .factory__mark-dot {
        display: none;
    }

    .factory__mark-label {
        display: none;
    }
}

@media (max-width: 560px) {
    .factory__display-header {
        margin-bottom: 22px;
    }

    .factory__display-copy h2 {
        font-size: 1.9rem;
    }

    .factory__display-shell {
        gap: 12px;
    }

    .factory__featured-panel {
        min-height: 260px;
    }

    .cert-card--featured {
        min-height: 260px;
        padding: 10px;
    }

    .factory__marks {
        gap: 8px;
    }
}

/* ============================
   CTA
   ============================ */
.cta {
    background:
        radial-gradient(circle at top left, rgba(166, 25, 46, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    padding: 16px 0 26px;
}

.cta__shell {
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(420px, 1.1fr);
    gap: 0;
    align-items: start;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 247, 247, 0.98) 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 32, 0.04);
}

.cta__intro {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 20px;
    background:
        radial-gradient(circle at top left, rgba(166, 25, 46, 0.12), transparent 34%),
        linear-gradient(180deg, #fbf6f4 0%, #f4f5f7 100%);
    align-self: start;
    border-radius: 20px 0 16px 16px;
}

.cta__intro::after {
    content: "";
    position: absolute;
    inset: 24px 0 24px auto;
    width: 1px;
    background: linear-gradient(180deg, rgba(16, 24, 40, 0), rgba(16, 24, 40, 0.1), rgba(16, 24, 40, 0));
}

.cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cta__eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(166, 25, 46, 0.42);
}

.cta__intro h2 {
    margin: 10px 0 0;
    color: #101820;
    font-size: clamp(1.9rem, 2.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.cta__intro > p {
    margin: 10px 0 0;
    color: #536171;
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: none;
    white-space: nowrap;
}

.cta__points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.cta__points span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(16, 24, 40, 0.1);
    background: rgba(255, 255, 255, 0.72);
    color: #243140;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cta__contact-list {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 12px;
    margin-top: 18px;
    padding-top: 0;
}

.cta__contact-line {
    min-height: 74px;
    padding: 14px 16px;
    border-top: 0;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.54);
    color: #101820;
    text-decoration: none;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cta__contact-line:hover {
    transform: translateY(-1px);
    color: var(--primary);
    border-color: rgba(166, 25, 46, 0.18);
    background: rgba(255, 255, 255, 0.86);
}

.cta__contact-line small {
    color: #7b8794;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta__contact-line strong {
    color: currentColor;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.contact-channel-list {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 8px;
    margin-top: 18px;
    align-items: start;
}

.contact-channel-card {
    padding: 12px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
}

.contact-channel-card__head {
    margin-bottom: 8px;
}

.contact-channel-card__head span {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-channel-card__head strong {
    display: block;
    margin-top: 3px;
    color: #536171;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

.contact-channel-card__items {
    display: grid;
    gap: 6px;
}

.contact-channel-card__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 47px;
    padding: 8px;
    border: 1px solid rgba(16, 24, 40, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.68);
    color: #101820;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-channel-card__item:hover {
    transform: translateY(-1px);
    border-color: rgba(166, 25, 46, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

.contact-channel-card__item small {
    color: #7b8794;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-channel-card__item strong {
    color: currentColor;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: normal;
    white-space: nowrap;
}

.cta__form-panel {
    padding: 24px 24px 20px;
    background: rgba(255, 255, 255, 0.92);
    min-height: 100%;
}

.cta__shell--inquiry {
    align-items: stretch;
}

.cta__shell--inquiry .cta__intro--inquiry {
    align-self: stretch;
    min-height: 100%;
    padding-bottom: 28px;
    border-radius: 20px 0 0 20px;
}

.cta__shell--inquiry .cta__form-panel--inquiry {
    min-height: 100%;
}

.cta__form-panel .inquiry-form {
    margin-top: 0;
}

.cta__form-panel--inquiry .inquiry-form {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cta__form-panel--inquiry .form-row {
    gap: 14px;
    margin-bottom: 14px;
}

.cta__form-panel--inquiry .form-group {
    margin-bottom: 14px;
}

.cta__form-panel--inquiry .form-group input {
    min-height: 50px;
    padding: 13px 16px;
}

.cta__form-panel--inquiry .form-group textarea {
    min-height: clamp(150px, 23vh, 240px);
    padding: 14px 16px;
}

.cta__form-panel--inquiry .cta__form-submit {
    margin-top: auto;
    padding-top: 18px;
}

.cta__form-panel--inquiry .inquiry-form .btn {
    min-height: 48px;
    min-width: 178px;
    padding: 0 22px;
}

.cta__form-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    margin-bottom: 12px;
}

.cta__form-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(166, 25, 46, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cta__form-heading h3 {
    margin: 0;
    color: #101820;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.cta__form-heading p {
    margin: 6px 0 0;
    color: #667380;
    font-size: 0.84rem;
    line-height: 1.35;
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 8px;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #101820;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(16, 24, 40, 0.1);
    border-radius: 14px;
    background: #fbfbfc;
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(166, 25, 46, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 92px;
    border-radius: 16px;
}

.cta__form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.cta__form-submit p {
    margin: 0;
    color: #6d7a87;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.inquiry-form .btn {
    width: auto;
    min-width: 156px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   News
   ============================ */
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news {
    padding: 54px 0 72px;
}

.news__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.news__header-copy h2 {
    margin: 0;
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    line-height: 0.98;
}

.news__header-copy p {
    margin: 0;
    max-width: 680px;
    color: var(--text-soft);
}

.news__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 28, 0.14);
    font-weight: 700;
    transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.news__more:hover {
    transform: translateY(-2px);
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.news-card {
    background: var(--white);
    border: 1px solid #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(15, 23, 28, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(15, 23, 28, 0.1);
    border-color: rgba(166, 25, 46, 0.2);
}

.news-card__media {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--surface-alt);
    transition: transform 0.4s ease;
}

.news-card:hover .news-card__media img {
    transform: scale(1.08);
}

.news-card__body {
    min-height: 182px;
    padding: 22px 24px;
    display: grid;
    align-content: start;
    gap: 14px;
}

.news-card__top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.news-card__number {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-card__meta time,
.news-card__meta span {
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f6f7f8;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.news-card__body h3 {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.35;
}

.news-card__body h3 a {
    color: var(--secondary);
    transition: color var(--transition);
}

.news-card__body h3 a:hover {
    color: var(--primary);
}

.news-card__excerpt {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-card__link::after {
    content: "->";
    margin-left: 8px;
}

.news-card__link:hover {
    color: var(--primary);
}

/* ============================
   Footer
   ============================ */
.footer {
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 80px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__brand {
    display: grid;
    gap: 20px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
}

.logo__image--footer {
    height: 46px;
    filter: brightness(0) invert(1);
}

.footer__brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.footer__social a:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.32);
}

.footer__social svg {
    display: block;
    width: 18px;
    height: 18px;
}

.footer__links h3,
.footer__contact h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer__links ul {
    display: grid;
    gap: 14px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    font-size: 0.92rem;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact ul {
    display: grid;
    gap: 16px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
}

.footer__contact svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--primary);
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__link-label--mobile {
    display: none;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer__bottom-links a:hover {
    color: var(--white);
}

/* ============================
   Floating Contact Rail
   ============================ */
.contact-rail {
    position: fixed;
    right: 24px;
    bottom: 220px;
    z-index: 92;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.contact-rail__group,
.contact-rail__item {
    position: relative;
}

.contact-rail__action {
    appearance: none;
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    display: inline-grid;
    place-items: center;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.contact-rail__tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    min-width: 0;
    max-width: min(240px, calc(100vw - 110px));
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(20, 27, 34, 0.94);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 14px 26px rgba(15, 23, 32, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(10px, -50%, 0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.contact-rail__tooltip--panel {
    top: auto;
    bottom: 0;
    min-width: 0;
    width: max-content;
    max-width: min(420px, calc(100vw - 110px));
    padding: 14px 16px;
    border-radius: 18px;
    display: grid;
    gap: 10px;
    white-space: normal;
    pointer-events: auto;
    background: rgba(166, 25, 46, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(120, 16, 33, 0.26);
    transform: translate3d(10px, 0, 0);
}

.contact-rail__tooltip-line {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 7px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    white-space: nowrap;
    text-align: left;
}

.contact-rail__tooltip-line:first-of-type {
    border-top: 0;
}

.contact-rail__tooltip-line:hover,
.contact-rail__tooltip-line:focus-visible {
    color: #fff;
    outline: none;
}

.contact-rail__mobile-only {
    display: none;
}

.contact-rail__desktop-only {
    display: contents;
}

.contact-rail__desktop-only.contact-rail__qr-grid {
    display: grid;
}

.contact-rail__mobile-only.contact-rail__qr-grid {
    display: none;
}

.contact-rail__tooltip--qr {
    min-width: 0;
    width: auto;
    max-width: none;
    padding: 12px;
    background: rgba(166, 25, 46, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(120, 16, 33, 0.26);
}

.contact-rail__qr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-rail__qr-card {
    display: grid;
    gap: 10px;
    justify-items: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-rail__qr-card img {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 180px;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
}

.contact-rail__qr-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.contact-rail__panel {
    position: absolute;
    right: calc(100% + 14px);
    bottom: 0;
    width: min(320px, calc(100vw - 110px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(15, 23, 32, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(14px, 0, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.contact-rail__panel-head {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

.contact-rail__panel-head strong {
    font-size: 1rem;
    line-height: 1.2;
    color: #18222b;
}

.contact-rail__panel-head span {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #5e6a75;
}

.contact-rail__list {
    display: grid;
    gap: 10px;
}

.contact-rail__card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(244, 247, 249, 0.88);
    border: 1px solid rgba(218, 224, 230, 0.85);
    color: #24313b;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-rail__card:hover,
.contact-rail__card:focus-visible {
    transform: translateX(-2px);
    border-color: rgba(166, 25, 46, 0.25);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 26px rgba(15, 23, 32, 0.08);
    outline: none;
}

.contact-rail__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 225, 231, 0.95);
    color: var(--primary);
}

.contact-rail__card-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.contact-rail__card-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7a8691;
}

.contact-rail__card-value {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: #18222b;
    overflow-wrap: anywhere;
}

.contact-rail__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #24313b;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(15, 23, 32, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-rail__action:hover .contact-rail__tooltip,
.contact-rail__action:focus-visible .contact-rail__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -50%, 0);
}

.contact-rail__item:hover .contact-rail__tooltip,
.contact-rail__item:focus-within .contact-rail__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -50%, 0);
}

.contact-rail__item:hover .contact-rail__tooltip--panel,
.contact-rail__item:focus-within .contact-rail__tooltip--panel {
    transform: translate3d(0, 0, 0);
}

.contact-rail__group:hover .contact-rail__panel,
.contact-rail__group:focus-within .contact-rail__panel {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.contact-rail__action:hover .contact-rail__icon,
.contact-rail__action:focus-visible .contact-rail__icon {
    transform: translateX(-2px);
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 16px 28px rgba(166, 25, 46, 0.24);
}

.contact-rail__action:focus-visible {
    outline: none;
}

.contact-rail__action:focus-visible .contact-rail__icon {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(166, 25, 46, 0.16), 0 16px 28px rgba(166, 25, 46, 0.24);
}

.contact-rail__action--inquiry .contact-rail__icon,
.contact-rail__action--top .contact-rail__icon {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.58);
    color: #24313b;
    box-shadow: 0 12px 24px rgba(15, 23, 32, 0.12);
}

.contact-rail__action--top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.contact-rail__action--top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .contact-rail {
        top: clamp(140px, 24vh, 260px);
        bottom: auto;
    }

    .contact-rail__tooltip--qr {
        position: fixed;
        top: max(104px, env(safe-area-inset-top));
        right: 108px;
        bottom: auto;
        max-height: calc(100vh - 128px);
        overflow: auto;
        transform: translate3d(10px, 0, 0);
        z-index: 420;
    }

    .contact-rail__item:hover .contact-rail__tooltip--qr,
    .contact-rail__item:focus-within .contact-rail__tooltip--qr {
        transform: translate3d(0, 0, 0);
    }

    .contact-rail__tooltip--qr .contact-rail__qr-card img {
        max-width: clamp(96px, 15vh, 180px);
        max-height: clamp(96px, 15vh, 180px);
    }

    .home .hero-vr,
    .home .hero-vr__carousel,
    .home .hero-vr__slides,
    .home .hero-vr__slide,
    .home .hero-vr__preview-image {
        min-height: clamp(460px, 39vw, 760px);
        height: clamp(460px, 39vw, 760px);
        max-height: 760px;
    }

    .home .hero-vr {
        background: #eef3f7;
    }

    .home .hero-vr__slide {
        background: #eef3f7;
    }

    .home .hero-vr__preview-image {
        object-fit: contain;
        object-position: center center;
    }
}

@media (max-width: 767px) {
    .contact-rail__mobile-only {
        display: contents;
    }

    .contact-rail__desktop-only {
        display: none;
    }

    .contact-rail__desktop-only.contact-rail__qr-grid {
        display: none;
    }

    .contact-rail__mobile-only.contact-rail__qr-grid {
        display: grid;
    }

    .contact-rail {
        right: 14px;
        bottom: 18px;
        gap: 8px;
    }

    .contact-rail__icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .contact-rail__tooltip:not(.contact-rail__tooltip--panel) {
        display: none;
    }

    .contact-rail__tooltip--panel {
        display: grid;
        position: fixed;
        right: 68px;
        bottom: 14px;
        max-width: min(calc(100vw - 88px), 320px);
        max-height: min(62vh, 460px);
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(10px, 0, 0);
        z-index: 999;
    }

    .contact-rail__tooltip--panel:not(.contact-rail__tooltip--qr) {
        position: absolute;
        top: 50%;
        right: calc(100% + 10px);
        bottom: auto;
        width: max-content;
        max-width: min(calc(100vw - 92px), 320px);
        max-height: none;
        overflow: visible;
        padding: 4px 0;
        transform: translate3d(10px, -50%, 0);
    }

    .contact-rail__tooltip--panel:not(.contact-rail__tooltip--qr) .contact-rail__tooltip-line {
        padding: 12px 16px;
        font-size: 0.86rem;
        line-height: 1.25;
    }

    .contact-rail__item.is-open .contact-rail__tooltip--panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .contact-rail__item.is-open .contact-rail__tooltip--panel:not(.contact-rail__tooltip--qr),
    .contact-rail__item:focus-within .contact-rail__tooltip--panel:not(.contact-rail__tooltip--qr),
    .contact-rail__action:focus + .contact-rail__tooltip--panel:not(.contact-rail__tooltip--qr),
    .contact-rail__action:active + .contact-rail__tooltip--panel:not(.contact-rail__tooltip--qr) {
        transform: translate3d(0, -50%, 0);
    }

    .contact-rail__item:focus-within .contact-rail__tooltip--panel,
    .contact-rail__action:focus + .contact-rail__tooltip--panel,
    .contact-rail__action:active + .contact-rail__tooltip--panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .contact-rail__tooltip--panel.contact-rail__tooltip--qr {
        width: min(calc(100vw - 92px), 236px);
        max-height: none;
        overflow: visible;
        padding: 8px;
    }

    .contact-rail__tooltip--qr .contact-rail__qr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .contact-rail__tooltip--qr .contact-rail__qr-card {
        gap: 6px;
        padding: 6px;
    }

    .contact-rail__tooltip--qr .contact-rail__qr-card img {
        width: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: 1 / 1;
    }

    .contact-rail__tooltip--qr .contact-rail__qr-label {
        font-size: 0.68rem;
    }

    .contact-rail__item:hover .contact-rail__tooltip:not(.contact-rail__tooltip--panel),
    .contact-rail__item:focus-within .contact-rail__tooltip:not(.contact-rail__tooltip--panel) {
        opacity: 0;
        visibility: hidden;
    }

    .contact-rail__panel {
        right: 0;
        bottom: calc(100% + 10px);
        width: min(280px, calc(100vw - 28px));
        transform: translate3d(0, 10px, 0);
    }
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1240px) {
    .header {
        z-index: 300;
    }

    .header .container {
        position: relative;
        z-index: 3;
        width: min(calc(100% - 32px), 1360px);
        min-height: 78px;
    }

    .logo,
    .header__actions {
        position: relative;
        z-index: 4;
    }

    .logo {
        padding: 8px 0;
    }

    .logo__image {
        height: 48px;
        max-width: 170px;
    }

    .nav {
        position: fixed;
        top: var(--mobile-nav-offset, 78px);
        left: 0;
        right: 0;
        z-index: 2;
        display: none !important;
        padding: 8px 20px 18px;
        background: #ffffff;
        backdrop-filter: none;
        border-top: 1px solid rgba(16, 24, 40, 0.06);
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: 0 24px 46px rgba(15, 23, 32, 0.08);
    }

    .nav.active {
        display: block !important;
    }

    .nav__list {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav__list > li,
    .nav__list > .has-dropdown,
    .nav__list > .menu-item-has-children {
        width: 100%;
    }

    .nav__link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
        line-height: 1.4;
        font-weight: 800;
        color: var(--secondary) !important;
        text-shadow: none !important;
        white-space: normal;
    }

    .nav__list > .has-dropdown > .nav__link,
    .nav__list > .menu-item-has-children > .nav__link {
        padding-right: 0;
    }

    .nav__list > .has-dropdown > .nav__link::before,
    .nav__list > .menu-item-has-children > .nav__link::before {
        display: none;
    }

    .dropdown {
        display: none !important;
    }

    .nav-toggle {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .home .header:not(.scrolled) .nav.active {
        background: #ffffff !important;
    }

    .home .header:not(.scrolled) .nav.active .nav__link {
        color: var(--secondary) !important;
        text-shadow: none !important;
    }

    .home .header:not(.scrolled) .nav.active .nav__link:hover,
    .home .header:not(.scrolled) .nav.active .nav__link.active {
        color: var(--primary);
    }

    .home .header:not(.scrolled) .nav.active .nav__link::after {
        background: var(--primary);
    }
}

@media (max-width: 1024px) {
    .header {
        margin-top: 0;
    }

    .top-bar {
        display: none;
    }

    .nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 18px 20px 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        margin: -4px 0 8px;
        border: 0;
        border-radius: 14px;
        background: rgba(166, 25, 46, 0.045);
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 6px 0 6px 14px;
    }

    .dropdown::before {
        content: none;
    }

    .dropdown a {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    .nav__list > .has-dropdown > .nav__link::before,
    .nav__list > .menu-item-has-children > .nav__link::before {
        right: 2px;
    }

    .nav-toggle {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .header-search {
        width: min(34vw, 220px);
    }

    .intro__grid,
    .technical__grid,
    .cta__shell {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cta__intro::after {
        display: none;
    }

    .cta__intro {
        border-radius: 20px 20px 0 0;
    }

    .cta__shell--inquiry .cta__intro--inquiry {
        border-radius: 20px 20px 0 0;
    }

    .products__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
        justify-content: center;
    }

    .applications__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .factory__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news__header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .intro__features {
        grid-template-columns: 1fr;
    }

    .section__header {
        margin-bottom: 34px;
    }

    .intro__content {
        text-align: center;
        padding: 34px 24px;
    }

    .intro__features {
        justify-content: center;
    }

    .cta__intro,
    .cta__form-panel {
        padding: 18px 16px 16px;
    }

    .cta__intro {
        border-radius: 18px 18px 0 0;
    }

    .cta__form-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta__contact-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cta__contact-line {
        grid-template-columns: 1fr;
        gap: 4px;
        min-height: 0;
    }

    .contact-channel-list {
        grid-template-columns: 1fr;
    }

    .contact-channel-card {
        padding: 13px;
    }

    .contact-channel-card__head {
        margin-bottom: 9px;
    }

    .contact-channel-card__head strong {
        text-align: left;
    }

    .contact-channel-card__item {
        grid-template-columns: 1fr;
        gap: 3px;
        min-height: 0;
    }

    .contact-channel-card__item strong {
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .cta__intro h2,
    .cta__intro > p,
    .cta__form-heading h3 {
        white-space: normal;
    }

    .cta__form-heading h3 {
        font-size: 1.3rem;
    }

    .products__grid,
    .applications__grid,
    .certificates__grid,
    .news__grid {
        grid-template-columns: 1fr;
    }

    .header .container {
        min-height: 78px;
    }

    .logo {
        padding: 8px 0;
    }

    .factory__stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta__form-submit {
        flex-direction: column;
        align-items: flex-start;
    }

    .inquiry-form .btn {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 18px;
    }

    .footer {
        padding: 48px 0 24px;
        background: #050505;
    }

    .footer .container {
        width: min(calc(100% - 28px), 480px);
    }

    .footer__brand {
        gap: 14px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo__image--footer {
        height: 38px;
    }

    .footer__brand p {
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.74);
    }

    .footer__social,
    .footer__links,
    .footer__bottom-links {
        display: none;
    }

    .footer__contact {
        padding-top: 18px;
    }

    .footer__contact h3 {
        display: none;
    }

    .footer__contact ul {
        gap: 10px;
    }

    .footer__contact li {
        gap: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.82);
    }

    .footer__contact li:first-child {
        display: none;
    }

    .footer__contact svg {
        display: none;
    }

    .footer__contact li::before {
        flex-shrink: 0;
        margin-right: 6px;
        color: rgba(255, 255, 255, 0.66);
        font-weight: 600;
    }

    .footer__contact li:nth-child(2)::before {
        content: "Phone:";
    }

    .footer__contact li:nth-child(3)::before {
        content: "WhatsApp:";
    }

    .footer__contact li:nth-child(4)::before {
        content: "Email:";
    }

    .footer__contact a,
    .footer__contact span {
        color: rgba(255, 255, 255, 0.82);
    }

    .footer__bottom {
        padding-top: 18px;
        margin-top: 18px;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .footer__bottom p {
        max-width: 320px;
        font-size: 0.82rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .header .container {
        width: min(calc(100% - 20px), 1360px);
        gap: 8px;
    }

    .header-search {
        width: 42px;
        min-height: 42px;
        padding: 0;
        grid-template-columns: 42px;
        gap: 0;
    }

    .header-search__field {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .header-search__submit {
        width: 42px;
        height: 42px;
    }

    .search-results-page {
        padding-top: 96px;
    }

    .search-result-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        min-height: 104px;
        padding: 10px;
    }

    .search-result-item__media {
        width: 92px;
        height: 78px;
    }

    .search-result-item__type {
        min-height: 20px;
        padding: 0 7px;
        font-size: 0.68rem;
    }

    .search-result-item__title {
        margin-top: 6px;
        font-size: 0.94rem;
    }

    .search-result-item__excerpt {
        margin-top: 5px;
        font-size: 0.8rem;
        line-height: 1.45;
        -webkit-line-clamp: 2;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .factory__stats {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Popular Products carousel
   ============================ */
.products--popular {
    background: #f2f2f2;
    min-height: auto;
    padding: 42px 0 42px;
    display: flex;
    align-items: center;
}

.products--popular .container {
    width: min(calc(100% - 72px), 1360px);
}

.popular-products__header {
    text-align: left;
    margin-bottom: 72px;
    transform: none;
}

.popular-products__header h2 {
    margin: 0;
    color: #000;
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    font-weight: 800;
    line-height: 0.98;
}

.popular-products__header h2 span {
    color: var(--primary);
}

.popular-products__carousel {
    --popular-gap: 22px;
    --product-image-size: 230px;
}

.popular-products__viewport {
    overflow: hidden;
}

.popular-products__track {
    display: flex;
    gap: var(--popular-gap);
    align-items: stretch;
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.product-card--popular {
    flex: 0 0 calc((100% - (var(--popular-gap) * 3)) / 4);
    height: clamp(430px, 57vh, 500px);
    display: grid;
    grid-template-rows: minmax(168px, auto) 1fr;
    background: #ebebeb;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    text-align: center;
}

.product-card--popular:hover {
    transform: none;
    box-shadow: none;
}

.product-card--popular .product-card__body {
    min-height: 168px;
    padding: 34px 26px 12px;
    display: grid;
    align-content: start;
    justify-items: center;
}

.product-card--popular .product-card__body h3 {
    display: block;
    min-height: calc(1.22em * 2);
    max-width: 250px;
    margin: 0 0 8px;
    color: #000;
    font-size: clamp(1.16rem, 1.7vw, 1.48rem);
    font-weight: 500;
    line-height: 1.22;
}

.product-card--popular .product-card__body h3 a {
    color: inherit;
}

.product-card--popular .product-card__body p {
    min-height: calc(1.45em * 2);
    max-width: 260px;
    margin: 0 0 12px;
    color: #000;
    font-size: 1rem;
    line-height: 1.45;
}

.product-card--popular .product-card__actions {
    width: 100%;
    max-width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

.popular-products__pill {
    min-width: 104px;
    min-height: 32px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    transition: background var(--transition), color var(--transition);
}

.popular-products__pill--light {
    background: var(--white);
    color: #000;
}

.popular-products__pill--light:hover {
    color: var(--primary);
}

.popular-products__pill--primary {
    background: var(--primary);
    color: var(--white);
}

.popular-products__pill--primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.product-card--popular .product-card__media {
    width: var(--product-image-size);
    height: var(--product-image-size);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: end;
    margin: 0 auto 28px;
    padding: 16px;
    background: #ffffff;
    border-radius: 14px;
}

.product-card--popular .product-card__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    padding: 0;
    background: transparent;
    border-radius: inherit;
}

.product-card--popular:hover .product-card__media img {
    transform: scale(1.035);
}

.popular-products__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 34px;
}

/* ============================
   Customization
   ============================ */
.customization {
    padding: 28px 0 52px;
    background: #f2f2f2;
}

.customization .container {
    width: min(calc(100% - 72px), 1360px);
}

.customization__shell {
    display: grid;
    grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
    align-items: stretch;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 56px rgba(15, 23, 28, 0.08);
}

.customization__copy {
    position: relative;
    min-height: 460px;
    padding: 52px 56px;
    display: grid;
    align-items: center;
    background: linear-gradient(135deg, #b21d33 0%, #a3182e 100%);
}

.customization__copy::after {
    content: "BORRA";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.1);
    font-size: clamp(3.6rem, 5.4vw, 5.3rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.customization__copy-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    max-width: 500px;
}

.customization__copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.05;
}

.customization__media {
    min-height: 460px;
    background: #f4f5f7;
    border-radius: 0 0 0 56px;
    overflow: hidden;
}

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

.customization__cta {
    width: min(100%, 360px);
    min-height: 56px;
    padding: 0 30px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 18px 36px rgba(12, 18, 22, 0.14);
    color: var(--primary);
    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.customization__cta:hover {
    transform: translateY(-2px);
}

.popular-products__arrow {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 0;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), opacity var(--transition);
}

.popular-products__arrow span {
    display: block;
    margin-top: -4px;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}

.popular-products__arrow:hover {
    background: var(--primary-dark);
}

.popular-products__arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.popular-products__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.popular-products__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(166, 25, 46, 0.28);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.popular-products__dot.active {
    background: var(--primary);
    transform: scale(1.08);
}

@media (max-width: 1099px) {
    .about-page .about-vr-hero,
    .about-page .about-vr-hero .about-vr--hero,
    .about-page .about-vr-hero .about-vr__frame-wrap,
    .about-page .about-vr-hero .about-vr__frame {
        min-height: clamp(360px, 44vw, 450px);
        height: clamp(360px, 44vw, 450px);
        max-height: 450px;
    }

    .hero-vr,
    .hero-vr__frame-wrap,
    .hero-vr__frame,
    .hero-vr__preview-wrap,
    .hero-vr__preview-image {
        min-height: 76vh;
        height: 76vh;
    }

    .products--popular {
        min-height: auto;
    }

    .product-card--popular {
        flex-basis: calc((100% - var(--popular-gap)) / 2);
    }

    .customization__shell {
        grid-template-columns: 1fr;
    }

    .customization__copy,
    .customization__media {
        min-height: 380px;
    }

    .customization__media {
        border-radius: 0;
    }
}

@media (max-width: 639px) {
    .hero-vr,
    .hero-vr__frame-wrap,
    .hero-vr__frame,
    .hero-vr__preview-wrap,
    .hero-vr__preview-image {
        min-height: 68vh;
        height: 68vh;
    }

    .products--popular {
        padding: 34px 0 46px;
    }

    .products--popular .container {
        width: min(calc(100% - 32px), 1360px);
    }

    .header .container,
    .customization .container {
        width: min(calc(100% - 32px), 1360px);
    }

    .popular-products__header {
        margin-bottom: 34px;
        transform: none;
    }

    .popular-products__carousel {
        --product-image-size: 230px;
    }

    .product-card--popular {
        flex-basis: 100%;
        height: 460px;
    }

    .product-card--popular .product-card__body {
        padding: 34px 22px 12px;
    }

    .product-card--popular .product-card__actions {
        flex-direction: row;
    }

    .popular-products__arrow {
        width: 56px;
        height: 56px;
    }

    .popular-products__controls {
        gap: 18px;
        margin-top: 28px;
    }

    .customization {
        padding: 20px 0 38px;
    }

    .customization__copy {
        min-height: 320px;
        padding: 34px 28px;
    }

    .customization__copy-inner {
        gap: 20px;
    }

    .customization__media {
        min-height: 250px;
    }

    .customization__cta {
        width: 100%;
        min-height: 50px;
    }
}

/* ============================
   Markets / Applications
   ============================ */
.applications--merged {
    background:
        radial-gradient(circle at top left, rgba(166, 25, 46, 0.06), transparent 28%),
        linear-gradient(180deg, #f7f8fa 0%, #edf1f4 100%);
    min-height: 100vh;
    padding: 14px 0 24px;
    display: flex;
    align-items: center;
}

.applications--story {
    background:
        radial-gradient(circle at top left, rgba(166, 25, 46, 0.06), transparent 28%),
        linear-gradient(180deg, #f7f8fa 0%, #edf1f4 100%);
    padding-top: 72px;
}

.applications--story .container {
    width: min(calc(100% - 40px), 1280px);
}

.applications--merged .container {
    width: min(calc(100% - 40px), 1480px);
}

.applications__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
    margin-bottom: 38px;
    transform: translateY(-30px);
}

.applications__header-main {
    max-width: 100%;
}

.applications__header h2 {
    margin: 0;
    color: var(--secondary);
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    line-height: 0.98;
}

.applications__header-main p {
    margin: 0;
    color: var(--text-soft);
    max-width: 760px;
    font-size: 0.9rem;
    line-height: 1.38;
}

.applications--story .applications__header {
    transform: none;
}

.applications--story .applications__header-main p {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.72;
}

.applications-story-list {
    display: grid;
    gap: 30px;
}

.applications-story-item {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.applications-story-item--reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.applications-story-item--reverse .applications-story-item__copy {
    order: 2;
}

.applications-story-item--reverse .applications-story-item__image {
    order: 1;
}

.applications-story-item__copy {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.applications-story-item__copy .content-panel__header span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.applications-story-item__copy .content-panel__header h3 {
    margin: 0;
    color: #111;
    font-size: clamp(1.85rem, 2.4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.08;
}

.applications-story-item__copy .content-panel__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    font-size: 1.04rem;
    line-height: 1.78;
}

.applications-story-item__copy .content-panel__body p {
    margin: 0;
}

.applications-story-item__copy .catalog-inline-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 14px;
    font-size: 0.98rem;
}

.applications-story-item__image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: clamp(390px, 28vw, 430px);
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    display: block;
    background: #fff;
    box-shadow: 0 24px 54px rgba(15, 23, 32, 0.12);
}

.applications-story-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.applications-story-item__image:hover img {
    transform: scale(1.04);
}

.applications-story-item__video {
    position: relative;
    aspect-ratio: auto;
    align-self: stretch;
    contain: layout paint;
}

.applications-story-item__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: inherit;
}

.applications__stage {
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.applications__carousel {
    --applications-gap: 22px;
}

.applications__viewport {
    overflow: hidden;
}

.applications__track {
    display: flex;
    gap: var(--applications-gap);
    align-items: stretch;
    will-change: transform;
    transition: transform 0.45s ease;
}

.application-card--slide {
    flex: 0 0 calc((100% - (var(--applications-gap) * 2)) / 3);
}

.application-card--solution {
    position: relative;
    border-radius: 18px;
    min-height: clamp(380px, 54vh, 500px);
    box-shadow: 0 18px 42px rgba(15, 23, 28, 0.08);
    overflow: hidden;
    background: #dfe5ea;
    transition: transform var(--transition), box-shadow var(--transition);
}

.application-card--solution:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 28, 0.16);
}

.application-card__visual {
    position: relative;
    display: block;
    min-height: inherit;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    color: inherit;
}

.application-card__visual::before,
.application-card__visual::after {
    content: "";
    position: absolute;
    inset: 0;
}

.application-card__visual::before {
    background-image: var(--application-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.01);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.application-card__visual::after {
    background:
        linear-gradient(180deg, rgba(11, 16, 22, 0.08) 0%, rgba(11, 16, 22, 0.18) 32%, rgba(11, 16, 22, 0.5) 100%);
    pointer-events: none;
}

.application-card--solution:hover .application-card__visual::before {
    transform: scale(1.06);
    filter: saturate(1.04);
}

.application-card__panel {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    z-index: 1;
    max-width: min(68%, 300px);
    padding: 18px 20px 54px 20px;
    display: grid;
    gap: 12px;
    align-content: start;
    justify-items: start;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(15, 23, 28, 0.1);
    backdrop-filter: blur(4px);
    transition: transform 0.34s ease, background 0.34s ease, box-shadow 0.34s ease;
}

.application-card__panel-copy {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.application-card__panel-copy span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.application-card__panel-copy h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.3rem, 1.6vw, 1.72rem);
    line-height: 1.14;
    text-wrap: pretty;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
}

.application-card__panel-copy p {
    max-width: 24ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    line-height: 1.5;
    opacity: 0.92;
    transform: translateY(0);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.application-card__launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    bottom: -14px;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: #4a57a6;
    color: #fff;
    font-size: 1.18rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 20px rgba(74, 87, 166, 0.22);
    transition: transform 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.application-card--solution:hover .application-card__panel {
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.24));
    box-shadow: 0 18px 34px rgba(15, 23, 28, 0.14);
}

.application-card--solution:hover .application-card__launch {
    transform: translateX(8px);
    background: var(--primary);
    box-shadow: 0 18px 28px rgba(166, 25, 46, 0.24);
}

.applications__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.applications__arrow {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 0;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), opacity var(--transition);
}

.applications__arrow span {
    display: block;
    margin-top: -2px;
    min-width: 1ch;
    text-align: center;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1;
}

.applications__arrow:hover {
    background: var(--primary-dark);
}

.applications__arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.applications__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.applications__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(166, 25, 46, 0.28);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.applications__dot.active {
    background: var(--primary);
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .applications--merged {
        min-height: auto;
        padding: 38px 0 18px;
    }

    .applications__carousel {
        --applications-gap: 16px;
    }

    .application-card--slide {
        flex-basis: calc((100% - var(--applications-gap)) / 2);
    }

    .application-card--solution {
        min-height: 340px;
    }

    .application-card__panel {
        top: 20px;
        left: 20px;
        right: 20px;
        max-width: min(74%, 280px);
        padding: 16px 18px 52px 18px;
    }

    .application-card__launch {
        left: 18px;
        width: 42px;
        height: 42px;
    }

    .applications-story-item,
    .applications-story-item--reverse {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .applications-story-item--reverse .applications-story-item__copy,
    .applications-story-item--reverse .applications-story-item__image {
        order: initial;
    }

    .applications-story-item__image {
        min-height: 260px;
        height: auto;
    }

    .applications-story-item__video {
        aspect-ratio: 16 / 9;
    }

    .applications-story-item__copy {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .applications--merged .container {
        width: min(calc(100% - 24px), 1480px);
    }

    .applications__header {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
    }

    .application-card--slide {
        flex-basis: 100%;
    }

    .application-card--solution {
        min-height: 320px;
    }

    .application-card__panel-copy h3 {
        font-size: 1.3rem;
    }

    .application-card__panel-copy p {
        font-size: 0.9rem;
    }

    .application-card__panel {
        top: 16px;
        left: 16px;
        right: 16px;
        max-width: min(78%, 260px);
        padding: 14px 16px 48px 16px;
    }

    .application-card__launch {
        left: 18px;
        bottom: -12px;
        width: 38px;
        height: 38px;
    }

    .applications__controls {
        gap: 14px;
        margin-top: 22px;
    }

    .applications__arrow {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 560px) {
    .applications--merged {
        padding: 26px 0 20px;
    }

    .applications__header {
        margin-bottom: 16px;
        transform: translateY(-18px);
    }

    .application-card--solution {
        min-height: 280px;
    }

    .applications--story .container {
        width: min(calc(100% - 24px), 1280px);
    }

    .applications--story {
        padding-top: 42px;
    }

    .applications-story-list {
        gap: 22px;
    }

    .applications-story-item__image {
        min-height: 210px;
        height: auto;
        border-radius: 22px;
    }

    .applications-story-item__video {
        aspect-ratio: 16 / 9;
    }

    .applications-story-item__copy .content-panel__header h3 {
        font-size: 1.62rem;
    }

    .applications-story-item__copy .content-panel__body {
        font-size: 0.98rem;
    }
}

/* ============================
   About spotlight
   ============================ */
.intro--spotlight {
    padding: 0;
    background: #0f1718;
}

.intro--spotlight .container {
    width: min(100%, 100%);
}

.intro__spotlight {
    position: relative;
    min-height: 760px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro__spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 18, 20, 0.48) 0%, rgba(10, 18, 20, 0.4) 32%, rgba(10, 18, 20, 0.58) 100%),
        linear-gradient(90deg, rgba(7, 15, 16, 0.24) 0%, rgba(7, 15, 16, 0.06) 100%);
}

.intro__spotlight-overlay {
    position: relative;
    z-index: 1;
    min-height: 760px;
    padding: 136px min(9vw, 140px) 58px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.intro__copy {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.intro__copy h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 4.6vw, 3.85rem);
    font-weight: 800;
    line-height: 1.08;
    text-wrap: balance;
}

.intro__divider {
    width: 104px;
    height: 4px;
    margin: 24px auto 30px;
    background: var(--primary);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.04);
}

.intro__copy p {
    max-width: 1100px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1rem, 1.28vw, 1.12rem);
    font-weight: 600;
    line-height: 1.56;
    text-wrap: pretty;
}

.intro__cta {
    width: 68px;
    height: 68px;
    margin: 34px auto 0;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    line-height: 1;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.intro__cta:hover {
    background: rgba(166, 25, 46, 0.84);
    border-color: rgba(166, 25, 46, 0.84);
    transform: translateX(2px);
}

.intro__stats--overlay {
    width: min(100%, 1260px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.intro__stats--overlay .intro__stat {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 10px;
}

.intro__stats--overlay .intro__stat strong {
    color: var(--white);
    font-size: clamp(2.1rem, 3.8vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0;
}

.intro__stats--overlay .intro__stat span {
    color: rgba(255, 255, 255, 0.96);
    max-width: 220px;
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.25;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .intro__spotlight,
    .intro__spotlight-overlay {
        min-height: 680px;
    }

    .intro__spotlight-overlay {
        padding: 108px 34px 50px;
    }

    .intro__stats--overlay {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .intro__spotlight,
    .intro__spotlight-overlay {
        min-height: 740px;
    }

    .intro__spotlight-overlay {
        padding: 92px 24px 40px;
    }

    .intro__copy p {
        max-width: 820px;
        font-weight: 500;
    }

    .intro__stats--overlay {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }
}

@media (max-width: 520px) {
    .intro__spotlight,
    .intro__spotlight-overlay {
        min-height: 620px;
    }

    .intro__spotlight-overlay {
        padding: 58px 18px 28px;
    }

    .intro__copy h2 {
        font-size: 2.1rem;
    }

    .intro__copy p {
        max-width: 320px;
        font-size: 0.95rem;
        line-height: 1.48;
    }

    .intro__divider {
        width: 84px;
        margin: 16px auto 20px;
    }

    .intro__cta {
        width: 54px;
        height: 54px;
        margin-top: 22px;
        font-size: 1.65rem;
    }

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

    .intro__stats--overlay .intro__stat {
        gap: 6px;
    }

    .intro__stats--overlay .intro__stat strong {
        font-size: 2rem;
    }

    .intro__stats--overlay .intro__stat span {
        max-width: 120px;
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: normal;
    }
}

/* ============================
   Secondary Pages
============================ */
.subpage-hero {
    position: relative;
    padding: 150px 0 54px;
    background:
        radial-gradient(circle at top left, rgba(166, 25, 46, 0.08), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.breadcrumb {
    margin: 0 0 18px;
    color: #7b8793;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: "/";
    margin-right: 8px;
    color: rgba(123, 135, 147, 0.62);
}

.breadcrumb a {
    color: #667380;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: #101820;
}

.contact-page .subpage-hero--page .breadcrumb,
.contact-page .subpage-hero--page .breadcrumb a,
.contact-page .subpage-hero--page .breadcrumb span {
    color: rgba(255, 255, 255, 0.86);
}

.contact-page .subpage-hero--page .breadcrumb__item + .breadcrumb__item::before {
    color: rgba(255, 255, 255, 0.48);
}

.about-page__breadcrumb {
    padding: 126px 0 14px;
    background: #ffffff;
}

.about-page__breadcrumb + .about-vr-hero {
    padding-top: 0;
}

.subpage-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.subpage-hero__eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: rgba(166, 25, 46, 0.45);
}

.subpage-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 34px;
    align-items: center;
}

.subpage-hero__copy h1 {
    margin: 0;
    color: #111;
    font-size: clamp(2.5rem, 4.4vw, 4.25rem);
    font-weight: 800;
    line-height: 0.98;
}

.subpage-hero__copy h1 span {
    color: var(--primary);
}

.subpage-hero__copy p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #51606f;
    font-size: 1.05rem;
    line-height: 1.78;
}

.contact-page .subpage-hero--page {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 10, 14, 0.78) 0%, rgba(7, 10, 14, 0.58) 46%, rgba(7, 10, 14, 0.18) 100%),
        url("../images/contact/customer-service-headset.webp") center / cover no-repeat;
}

.contact-page .subpage-hero--page .container {
    position: relative;
    z-index: 1;
}

.contact-page .subpage-hero--page .subpage-hero__eyebrow,
.contact-page .subpage-hero--page .subpage-hero__copy h1 {
    color: #fff;
}

.contact-page .subpage-hero--page .subpage-hero__copy p {
    color: rgba(255, 255, 255, 0.86);
}

.contact-page .subpage-hero--page .subpage-hero__eyebrow::before {
    background: rgba(255, 255, 255, 0.62);
}

.subpage-hero__copy--narrow {
    max-width: 860px;
}

.subpage-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.subpage-button {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(16, 24, 40, 0.14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    color: #0f1720;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.subpage-button:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 24, 40, 0.28);
    color: #000;
}

.subpage-button--primary {
    border-color: transparent;
    background: var(--primary);
    color: #fff;
}

.subpage-button--primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.subpage-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.subpage-stat {
    min-height: 138px;
    padding: 24px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(15, 23, 32, 0.08);
}

.subpage-stat strong {
    color: #111;
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
}

.subpage-stat span {
    color: #5d6b78;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

.catalog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.catalog-page .subpage-hero > .container,
.catalog-page .section--alt > .container {
    width: min(calc(100% - 72px), 1360px);
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 104px;
}

.catalog-sidebar__inner {
    padding: 24px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 56px rgba(15, 23, 32, 0.08);
}

.catalog-sidebar__inner .subpage-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 0.78rem;
}

.catalog-sidebar__inner h2 {
    margin: 0 0 18px;
    color: #111;
    font-size: 1.38rem;
    font-weight: 800;
}

.catalog-category-list {
    display: grid;
    gap: 10px;
}

.catalog-category-link {
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    color: #17212b;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.catalog-category-link:hover,
.catalog-category-link.is-active {
    background: rgba(166, 25, 46, 0.08);
    color: var(--primary);
    transform: translateY(-1px);
}

.catalog-category-link strong {
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 24, 40, 0.06);
    color: #5f6d7a;
    font-size: 0.78rem;
}

.catalog-category-link.is-active strong {
    background: var(--primary);
    color: #fff;
}

.catalog-pill {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(16, 24, 40, 0.12);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.catalog-pill:hover,
.catalog-pill.is-active {
    border-color: rgba(166, 25, 46, 0.18);
    background: rgba(166, 25, 46, 0.08);
    color: var(--primary);
}

.catalog-shell {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 64px rgba(15, 23, 32, 0.08);
}

.catalog-shell__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.catalog-shell__header h2,
.content-panel__header h2,
.about-capabilities__header h2,
.about-markets__header h2,
.about-certs__header h2,
.detail-side-panel__section h2,
.detail-side-panel__section h3 {
    margin: 0;
    color: #111;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.08;
}

.catalog-shell__header p,
.content-panel__header span,
.about-capabilities__header p,
.catalog-empty p {
    margin: 10px 0 0;
    color: #62707d;
    font-size: 1rem;
    line-height: 1.7;
}

.catalog-inline-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.catalog-inline-link:hover {
    color: var(--primary-dark);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.catalog-card {
    min-width: 0;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.catalog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(166, 25, 46, 0.14);
    box-shadow: none;
}

.catalog-card__media {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: #ffffff;
}

.catalog-card__media img {
    width: min(94%, 390px);
    height: min(94%, 390px);
    object-fit: contain;
    transition: transform 0.28s ease;
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.05);
}

.catalog-card__body {
    padding: 24px;
}

.catalog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.catalog-card__term,
.catalog-card__model {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(16, 24, 40, 0.05);
    color: #4f5c69;
    font-size: 0.82rem;
    font-weight: 700;
}

.catalog-card__title {
    margin: 0;
    color: #111;
    font-family: Inter, var(--font-sans);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.24;
    min-height: 2.48em;
}

.catalog-card__title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-card__excerpt {
    margin: 14px 0 0;
    color: #62707d;
    font-size: 0.97rem;
    line-height: 1.75;
    min-height: 3.5em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-card__actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.catalog-card__link {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(16, 24, 40, 0.14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #101820;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.catalog-card__link:hover {
    color: var(--primary);
    border-color: rgba(166, 25, 46, 0.2);
}

.search-results-page {
    padding-top: 118px;
}

.search-results-page .container {
    max-width: 980px;
}

.search-results-page h1 {
    margin-bottom: 22px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-result-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 132px;
    padding: 14px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    background: #fff;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.search-result-item:hover {
    border-color: rgba(166, 25, 46, 0.18);
    transform: translateY(-2px);
}

.search-result-item__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 104px;
    background: #ffffff;
    overflow: hidden;
}

.search-result-item__media img {
    display: block;
    width: 92%;
    height: 92%;
    object-fit: contain;
}

.search-result-item__body {
    min-width: 0;
}

.search-result-item__type {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(166, 25, 46, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.search-result-item__title {
    margin: 8px 0 0;
    font-size: 1.06rem;
    line-height: 1.35;
    font-weight: 800;
}

.search-result-item__title a {
    color: #101820;
}

.search-result-item__title a:hover {
    color: var(--primary);
}

.search-result-item__excerpt {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    color: #62707d;
    font-size: 0.92rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-card__link--primary {
    border-color: transparent;
    background: var(--primary);
    color: #fff;
}

.catalog-card__link--primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.catalog-empty {
    padding: 48px 28px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef2f5 100%);
}

.catalog-empty h2 {
    margin: 0;
    color: #111;
    font-size: clamp(1.8rem, 2.4vw, 2.2rem);
    font-weight: 800;
}

.catalog-empty .subpage-button {
    margin-top: 18px;
}

.product-detail__grid,
.about-story-grid,
.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    gap: 26px;
    align-items: start;
}

.product-detail__media-shell,
.about-hero__visual,
.about-story__image {
    min-width: 0;
}

.product-detail__media-shell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.product-page .product-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

.product-detail__media-frame,
.about-hero__visual,
.about-story__image {
    border-radius: 28px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 24px 54px rgba(15, 23, 32, 0.12);
}

.product-detail__media-frame {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    cursor: zoom-in;
    border-radius: 8px;
    background: #ffffff;
}

.product-detail__video-frame {
    position: relative;
    padding: 0;
    aspect-ratio: 1 / 1;
    cursor: default;
    overflow: hidden;
}

.product-detail__video-frame.is-image-active {
    padding: 10px;
    cursor: zoom-in;
}

.product-detail__video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.product-detail__video-frame.is-image-active iframe,
.product-detail__video-frame.is-video-active .product-detail__image {
    display: none;
}

.product-detail__video-frame.is-image-active .product-detail__image {
    display: block;
}

.product-detail__image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transform-origin: 50% 50%;
    transition: transform 0.18s ease;
    will-change: transform;
}

.product-detail__media-frame.is-zooming {
    cursor: zoom-out;
}

.product-detail__thumbs-shell {
    --product-thumb-size: 112px;
    --product-thumb-gap: 10px;
    --product-thumb-arrow-size: 40px;
    display: grid;
    grid-template-columns:
        var(--product-thumb-arrow-size)
        minmax(0, calc((var(--product-thumb-size) * 4) + (var(--product-thumb-gap) * 3)))
        var(--product-thumb-arrow-size);
    align-items: center;
    gap: 12px;
    margin-top: 0;
    width: fit-content;
    max-width: 100%;
    justify-content: center;
}

.product-detail__thumbs-viewport {
    overflow: hidden;
    width: calc((var(--product-thumb-size) * 4) + (var(--product-thumb-gap) * 3));
}

.product-detail__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--product-thumb-size);
    gap: var(--product-thumb-gap);
    justify-content: flex-start;
    transition: transform 0.35s ease;
    will-change: transform;
}

.product-page .product-detail__media-frame {
    --product-media-size: clamp(520px, 38vw, 610px);
    min-height: 0;
    height: auto;
    width: min(100%, var(--product-media-size));
    margin-right: auto;
}

.product-page .product-detail__summary {
    min-height: clamp(520px, 38vw, 610px);
    align-self: start;
}

.product-page .product-detail__summary {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-detail__thumb {
    appearance: none;
    aspect-ratio: 1;
    padding: 12px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    cursor: pointer;
    outline: 0;
    outline-offset: -3px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-detail__thumb:hover {
    transform: translateY(-1px);
}

.product-detail__thumb--video {
    position: relative;
    overflow: hidden;
}

.product-detail__thumb--video span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 22px rgba(166, 25, 46, 0.26);
}

.product-detail__thumb--video span::before {
    content: "";
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #ffffff;
}

.product-detail__thumb.is-active {
    border-color: rgba(166, 25, 46, 0.72);
    outline: 2px solid rgba(166, 25, 46, 0.72);
    box-shadow: none;
}

.product-page .product-detail__thumb {
    width: 112px;
    height: 112px;
    padding: 9px;
    border-radius: 16px;
}

.product-detail__thumbs-arrow {
    width: var(--product-thumb-arrow-size);
    height: var(--product-thumb-arrow-size);
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(166, 25, 46, 0.12);
    color: #a6192e;
    box-shadow: inset 0 0 0 1px rgba(166, 25, 46, 0.16);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.product-detail__thumbs-arrow:hover {
    background: rgba(166, 25, 46, 0.18);
    transform: translateY(-1px);
}

.product-detail__thumbs-arrow:disabled {
    opacity: 0.38;
    cursor: default;
    transform: none;
}

.product-detail__thumbs-arrow span {
    font-size: 1.6rem;
    line-height: 1;
}

.product-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail__summary {
    min-width: 0;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 54px rgba(15, 23, 32, 0.08);
}

.product-detail__backlink {
    display: inline-flex;
    margin-bottom: 18px;
    color: #687684;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.product-detail__summary h1 {
    margin: 0;
    color: #111;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.02;
}

.product-page .product-detail__summary h1 {
    max-width: 100%;
    font-size: clamp(1.16rem, 1.45vw, 1.48rem);
    line-height: 1.18;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-detail__lead {
    margin: 18px 0 0;
    color: #5d6b78;
    font-size: 1rem;
    line-height: 1.8;
}

.product-page .product-detail__lead {
    font-size: 0.94rem;
    line-height: 1.72;
}

.product-detail__quote-card {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(184, 22, 49, 0.14);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(184, 22, 49, 0.055) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.product-detail__quote-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-detail__quote-card ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    list-style: none;
}

.product-detail__quote-card li {
    position: relative;
    padding-left: 18px;
    color: #4d5c68;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 700;
}

.product-detail__quote-card li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
}

.product-detail__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.product-highlight {
    min-height: 116px;
    padding: 18px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #fff 0%, #f4f6f8 100%);
}

.product-highlight span {
    color: #7a8591;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-highlight strong {
    color: #111;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.product-detail__body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 30px;
}

.product-page .product-detail__body-grid {
    grid-template-columns: minmax(0, 1fr);
}

.product-page .content-panel__body {
    font-size: 0.96rem;
    line-height: 1.78;
}

.product-related-products {
    position: relative;
    padding: 38px 0 84px;
    background: #ffffff;
}

.product-related-products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100% - 64px, 1360px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(166, 25, 46, 0) 0%, rgba(166, 25, 46, 0.16) 18%, rgba(16, 24, 40, 0.08) 100%);
}

.product-related-products__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.product-related-products__header p {
    margin: 0 0 6px;
    color: rgba(166, 25, 46, 0.76);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.product-related-products__header h2 {
    margin: 0;
    color: #151b22;
    font-size: clamp(1.18rem, 1.42vw, 1.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.product-related-products .catalog-grid {
    gap: 20px;
}

.product-related-products .catalog-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    border-color: rgba(16, 24, 40, 0.07);
}

.product-related-products .catalog-card__body {
    padding: 20px 20px 22px;
}

.product-related-products .catalog-card__excerpt {
    color: #73808c;
}

.product-page .subpage-button {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.92rem;
}

.product-detail__manual-link {
    color: var(--primary);
    border-color: rgba(166, 25, 46, 0.26);
    background: #ffffff;
}

.product-detail__manual-link:hover {
    color: var(--primary-dark);
    border-color: rgba(166, 25, 46, 0.46);
    background: #fff6f7;
}

.content-panel,
.detail-side-panel__section,
.inquiry-panel,
.about-capability-card,
.about-cert-card,
.news-archive-card {
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 56px rgba(15, 23, 32, 0.08);
}

.content-panel__header,
.detail-side-panel__section {
    padding: 26px 28px 0;
}

.content-panel__body {
    padding: 22px 28px 28px;
    color: #42505d;
    line-height: 1.86;
}

.content-panel__body p:first-child {
    margin-top: 0;
}

.product-faq {
    overflow: hidden;
}

.product-faq .content-panel__header {
    padding-bottom: 4px;
}

.product-faq__list {
    display: grid;
    gap: 12px;
    padding: 18px 28px 28px;
}

.product-faq__item {
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.product-faq__item[open] {
    border-color: rgba(166, 25, 46, 0.2);
    box-shadow: 0 12px 28px rgba(15, 23, 32, 0.06);
}

.product-faq__item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 16px 52px 16px 18px;
    color: #151b22;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.42;
    cursor: pointer;
    list-style: none;
}

.product-faq__item summary::-webkit-details-marker {
    display: none;
}

.product-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    background: rgba(166, 25, 46, 0.08);
    color: var(--primary);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1;
}

.product-faq__item[open] summary::after {
    content: "-";
    background: var(--primary);
    color: #ffffff;
}

.product-faq__answer {
    padding: 0 18px 18px;
    color: #4f5c69;
    font-size: 0.95rem;
    line-height: 1.75;
}

.product-faq__answer p {
    margin: 0;
}

.product-faq__answer p + p {
    margin-top: 10px;
}

.content-panel__body table,
.post-page .post-article__body table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse !important;
    border: 1px solid rgba(16, 24, 40, 0.18) !important;
    background: #ffffff;
}

.content-panel__body h2 + table,
.content-panel__body h3 + table,
.post-page .post-article__body h2 + table,
.post-page .post-article__body h3 + table {
    margin-top: 18px;
}

.content-panel__body th,
.content-panel__body td,
.post-page .post-article__body th,
.post-page .post-article__body td {
    border: 1px solid rgba(16, 24, 40, 0.18) !important;
    padding: 10px 12px;
    background: #ffffff;
    text-align: center;
    vertical-align: middle;
}

.content-panel__body tr:first-child td,
.content-panel__body tr:first-child th,
.post-page .post-article__body tr:first-child td,
.post-page .post-article__body tr:first-child th,
.content-panel__body thead th,
.post-page .post-article__body thead th {
    background: #a6192e !important;
    color: #ffffff !important;
    font-weight: 700;
}

.content-panel__body tbody tr,
.post-page .post-article__body tbody tr {
    border-bottom: 1px solid rgba(16, 24, 40, 0.18) !important;
}

.detail-side-panel {
    display: grid;
    gap: 18px;
}

.detail-side-panel__section {
    padding-bottom: 26px;
}

.detail-specs {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
}

.detail-specs div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.detail-specs div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-specs dt {
    margin: 0 0 8px;
    color: #7a8591;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.detail-specs dd {
    margin: 0;
    color: #101820;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.detail-downloads {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.detail-downloads a,
.post-side-list__item {
    padding: 14px 16px;
    border-radius: 18px;
    display: block;
    background: #f5f7f9;
    color: #0f1720;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.detail-downloads a:hover,
.post-side-list__item:hover {
    transform: translateY(-2px);
    background: #edf1f4;
}

.inquiry-panel {
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
}

.inquiry-panel__copy h2 {
    margin: 0;
    color: #111;
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.05;
}

.inquiry-panel__copy p {
    margin: 16px 0 0;
    color: #5f6d7a;
    line-height: 1.8;
}

.inquiry-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.inquiry-panel__tags span {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(166, 25, 46, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.inquiry-form--panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.inquiry-form--panel label {
    display: grid;
    gap: 8px;
    color: #101820;
    font-weight: 700;
}

.inquiry-form--panel label span {
    font-size: 0.92rem;
}

.inquiry-form--panel input,
.inquiry-form--panel textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(16, 24, 40, 0.12);
    border-radius: 16px;
    background: #f9fafb;
    color: #101820;
    font: inherit;
}

.inquiry-form--panel textarea {
    min-height: 132px;
    padding: 14px 16px;
    resize: vertical;
}

.inquiry-form--panel .form-wide {
    grid-column: 1 / -1;
}

.inquiry-form--panel .button {
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.96rem;
    font-weight: 700;
}

.about-hero__visual img,
.about-story__image img,
.about-market-card img,
.about-cert-card img,
.news-archive-card__media img,
.post-side-list__media img,
.post-article__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.about-vr-hero {
    min-height: clamp(420px, 46vw, 620px);
    height: clamp(420px, 46vw, 620px);
    background: #000;
}

.about-vr-hero .about-vr--hero,
.about-vr-hero .about-vr__frame-wrap,
.about-vr-hero .about-vr__frame {
    width: 100%;
    height: clamp(420px, 46vw, 620px);
    min-height: 0;
}

.about-vr-hero .about-vr--hero {
    border-radius: 0;
    box-shadow: none;
}

.about-vr-hero .about-vr__frame-wrap {
    border-radius: 0;
}

.about-vr-hero .about-vr__guard p {
    display: none;
}

.about-vr-intro {
    padding-top: 42px;
    padding-bottom: 42px;
}

.about-stats-section {
    padding: clamp(28px, 3.2vw, 42px) 0;
    background: var(--primary);
}

.about-company-section {
    padding-top: 56px;
    padding-bottom: 96px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.about-certs-section {
    padding-top: 78px;
    padding-bottom: 82px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 30%),
        linear-gradient(135deg, #eef4f1 0%, #f8faf8 45%, #e6efeb 100%);
}

.about-page .about-story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    align-items: stretch;
}

.about-page .about-story__image {
    min-height: 100%;
}

.about-profile {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: clamp(42px, 5vw, 78px);
    align-items: stretch;
}

.about-profile::before {
    content: none;
}

.about-profile__content {
    position: relative;
    padding: 0 0 8px;
}

.about-profile__content h2 {
    margin: 0;
    color: #2c343c;
    font-size: clamp(2.25rem, 3.55vw, 4.15rem);
    font-weight: 780;
    line-height: 1;
    letter-spacing: 0;
}

.about-profile__rule {
    width: min(100%, 470px);
    height: 1px;
    margin: 32px 0 20px;
    background: linear-gradient(90deg, var(--primary) 0 72px, rgba(44, 52, 60, 0.16) 72px 100%);
}

.about-profile__company {
    margin: 0;
    color: #111827;
    font-size: clamp(1.2rem, 1.6vw, 1.55rem);
    font-weight: 500;
    line-height: 1.5;
}

.about-profile__text {
    display: grid;
    gap: 28px;
    max-width: 1110px;
    margin-top: 38px;
}

.about-profile__text p {
    margin: 0;
    color: #4e5b68;
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.88;
}

.about-profile__side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 610px;
    background: #f7f8f8;
    overflow: hidden;
}

.about-profile__side span {
    color: rgba(84, 94, 104, 0.28);
    font-size: clamp(3.4rem, 5.3vw, 5.6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: none;
}

.about-profile__side small {
    position: absolute;
    top: 0;
    right: -8px;
    color: rgba(84, 94, 104, 0.12);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    writing-mode: vertical-rl;
}

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

.about-vr__header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.about-vr__header h2 {
    margin: 0;
    color: #111;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.08;
}

.about-vr__header > p {
    margin: 0;
    color: #5f6d7a;
    font-size: 1rem;
    line-height: 1.75;
}

.about-vr__header--compact {
    margin-bottom: 0;
}

.about-vr {
    min-height: clamp(460px, 62vh, 680px);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(15, 23, 32, 0.18);
}

.about-vr.hero-vr::before {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.04) 46%, rgba(8, 8, 8, 0.16) 100%);
}

.about-vr__frame-wrap,
.about-vr__frame {
    width: 100%;
    height: clamp(460px, 62vh, 680px);
}

.about-vr__frame-wrap {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: #050505;
}

.about-vr__frame {
    display: block;
    border: 0;
}

.about-vr__guard {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    padding: 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.08));
    transition: opacity var(--transition), visibility var(--transition);
}

.about-vr.is-interactive .about-vr__guard {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.about-vr-hero.is-interactive .about-vr__guard {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.about-vr__trigger {
    position: relative;
    width: 118px;
    height: 118px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(166, 25, 46, 0.94);
    color: #fff;
    cursor: pointer;
    box-shadow: none;
}

.about-vr__trigger span:last-child {
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-vr__pulse,
.about-vr__trigger::before {
    position: absolute;
    inset: 0;
    border-radius: 999px;
}

.about-vr__trigger::before {
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.38);
    transform: scale(1.14);
}

.about-vr__pulse {
    display: none;
    animation: none;
}

.about-vr__guard p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

@keyframes aboutVrPulse {
    0% {
        opacity: 0.95;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(1.48);
    }
    100% {
        opacity: 0;
        transform: scale(1.48);
    }
}

.about-stat-card {
    min-height: 122px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.about-stat-card strong {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    font-size: clamp(2.7rem, 4.2vw, 3.9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.about-stat-card sup {
    margin-left: 6px;
    color: #fff;
    font-size: clamp(1.15rem, 1.45vw, 1.65rem);
    font-weight: 800;
    line-height: 1;
}

.about-stat-card span {
    max-width: 210px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.9rem, 0.96vw, 1rem);
    font-weight: 600;
    line-height: 1.45;
}

.about-capabilities__header,
.about-certs__header,
.about-markets__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.about-capabilities__header p {
    max-width: 620px;
    text-align: left;
}

.about-certs__meta {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.about-certs__count {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 16px;
    border: 1px solid rgba(166, 25, 46, 0.16);
    border-radius: 999px;
    background: rgba(166, 25, 46, 0.06);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-certs {
    max-width: 100%;
    margin: 0 auto;
}

.about-certs__intro {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-certs__intro h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-certs__grid {
    --certs-gap: 14px;
    display: flex;
    gap: var(--certs-gap);
    align-items: stretch;
    will-change: transform;
    transition: transform 0.45s ease;
}

.about-certs__showcase {
    position: relative;
    max-width: none;
    margin: 0;
}

.about-certs__viewport {
    overflow: hidden;
}

.about-culture-section {
    padding-top: 78px;
    padding-bottom: 96px;
    background: #fff;
}

.about-culture__header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.about-culture__header h2 {
    margin: 0;
    color: #101418;
    font-size: clamp(2.05rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.about-culture__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-culture-card {
    position: relative;
    min-height: 282px;
    padding: 44px 30px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(16, 24, 40, 0.22);
    background: #fff;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-culture-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.about-culture-card::after {
    content: "";
    position: absolute;
    top: 49px;
    left: 52%;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateY(8px);
}

.about-culture-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 16px 30px rgba(15, 23, 32, 0.18);
}

.about-culture-card:hover::before,
.about-culture-card:hover::after {
    opacity: 1;
}

.about-culture-card:hover::after {
    transform: translateY(0);
}

.about-culture-card__icon {
    position: relative;
    z-index: 1;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    color: var(--primary);
}

.about-culture-card__icon svg {
    width: 64px;
    height: 64px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-culture-card h3 {
    position: relative;
    z-index: 1;
    margin: 4px 0 0;
    color: #101418;
    font-size: clamp(1.1rem, 1.35vw, 1.35rem);
    font-weight: 900;
    line-height: 1.2;
}

.about-culture-card p {
    position: relative;
    z-index: 1;
    max-width: 270px;
    margin: 0;
    color: #4c4c4c;
    font-size: clamp(0.96rem, 1vw, 1.05rem);
    line-height: 1.55;
}

.about-culture-card:hover .about-culture-card__icon,
.about-culture-card:hover h3,
.about-culture-card:hover p {
    color: #fff;
}

.about-workshop-section {
    padding: 76px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
    overflow: hidden;
}

.about-workshop__header {
    padding: 0 0 38px;
    text-align: center;
}

.about-workshop__header h2 {
    margin: 0;
    color: #020817;
    font-size: clamp(2.1rem, 3.4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.about-workshop__stage {
    position: relative;
    padding-bottom: 42px;
}

.about-workshop__stage::before {
    content: none;
}

.about-workshop__stage .container {
    position: relative;
    z-index: 1;
}

.about-workshop__viewport {
    overflow: hidden;
}

.about-workshop__track {
    --workshop-gap: 30px;
    display: flex;
    gap: var(--workshop-gap);
    align-items: stretch;
    will-change: transform;
    transition: transform 0.45s ease;
}

.about-workshop-card {
    flex: 0 0 calc((100% - (var(--workshop-gap) * 2)) / 3);
    min-width: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 32, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(15, 23, 32, 0.14);
}

.about-workshop-card img {
    width: 100%;
    height: clamp(300px, 26vw, 390px);
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.about-workshop-card:hover img {
    transform: scale(1.035);
}

.about-workshop__controls {
    position: absolute;
    left: -34px;
    right: -34px;
    top: 45%;
    z-index: 2;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.about-workshop__arrow {
    width: 68px;
    height: 68px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.34);
    color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 18px 44px rgba(15, 23, 32, 0.2);
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(16px);
    transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.about-workshop__arrow span {
    margin-top: -4px;
    text-shadow: 0 1px 8px rgba(15, 23, 32, 0.28);
    font-size: 2.85rem;
    font-weight: 200;
    line-height: 1;
}

.about-workshop__arrow:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(166, 25, 46, 0.74);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 22px 52px rgba(15, 23, 32, 0.26);
}

.about-workshop__arrow:disabled {
    opacity: 1;
    cursor: default;
    background: rgba(255, 255, 255, 0.34);
    color: #fff;
    transform: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 18px 44px rgba(15, 23, 32, 0.2);
}

.about-workshop__arrow:disabled:hover {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.34);
    color: #fff;
    transform: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 18px 44px rgba(15, 23, 32, 0.2);
}

.about-capability-card {
    min-height: 178px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.about-capability-card:hover {
    transform: translateY(-4px);
    border-color: rgba(166, 25, 46, 0.18);
    box-shadow: 0 24px 54px rgba(15, 23, 32, 0.12);
}

.about-capability-card__marker {
    width: 44px;
    height: 4px;
    display: block;
    border-radius: 999px;
    background: var(--primary);
}

.about-capability-card__marker::after {
    content: none;
}

.about-capability-card p {
    margin: 0;
    color: #27313b;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.7;
}

.about-markets__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-market-card {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 23, 32, 0.12);
}

.about-market-card__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 26px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 17, 24, 0.82) 100%);
}

.about-market-card__overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 1.34rem;
    font-weight: 800;
}

.about-cert-card {
    flex: 0 0 calc((100% - (var(--certs-gap) * 4)) / 5);
    margin: 0;
    min-width: 0;
    min-height: clamp(326px, 23vw, 368px);
    padding: clamp(12px, 0.9vw, 14px) clamp(12px, 0.9vw, 14px) clamp(14px, 0.95vw, 16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    text-align: center;
    border-radius: 22px;
    border: 1px solid rgba(16, 24, 40, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(24, 38, 34, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
}

.about-cert-card:hover {
    transform: translateY(-4px);
    border-color: rgba(166, 25, 46, 0.22);
    box-shadow: 0 24px 52px rgba(15, 23, 32, 0.1);
}

.about-cert-card__media {
    width: 100%;
    height: clamp(254px, 18.5vw, 300px);
    padding: 0;
    border: 0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.about-cert-card img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0;
    border: 1px solid rgba(16, 24, 40, 0.1);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 32, 0.08);
}

.about-cert-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    min-height: 34px;
}

.about-cert-card figcaption strong {
    color: #111827;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.25;
}

.about-certs__controls {
    position: absolute;
    left: -26px;
    right: -26px;
    top: 44%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.about-certs__arrow {
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.42);
    color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 18px 44px rgba(15, 23, 32, 0.18);
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(14px);
    transition: background var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.about-certs__arrow span {
    margin-top: -3px;
    text-shadow: 0 1px 8px rgba(15, 23, 32, 0.28);
    font-size: 2.35rem;
    font-weight: 200;
    line-height: 1;
}

.about-certs__arrow:hover {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(166, 25, 46, 0.76);
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 22px 52px rgba(15, 23, 32, 0.24);
}

.about-certs__arrow:disabled,
.about-certs__arrow:disabled:hover {
    opacity: 1;
    cursor: default;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.42);
    color: #fff;
    transform: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 18px 44px rgba(15, 23, 32, 0.18);
}

.about-certs__header p {
    margin: 0;
    color: #62707d;
    line-height: 1.7;
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.news-sidebar {
    position: sticky;
    top: 104px;
}

.news-sidebar__inner {
    padding: 24px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 56px rgba(15, 23, 32, 0.08);
}

.news-sidebar__inner .subpage-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 0.78rem;
}

.news-sidebar__inner h2 {
    margin: 0 0 18px;
    color: #111;
    font-size: 1.38rem;
    font-weight: 800;
}

.news-category-list {
    display: grid;
    gap: 10px;
}

.news-category-link {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    color: #17212b;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.news-category-link:hover,
.news-category-link.is-active {
    border-color: rgba(166, 25, 46, 0.18);
    background: rgba(166, 25, 46, 0.08);
    color: var(--primary);
    transform: translateY(-1px);
}

.news-category-link strong {
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 24, 40, 0.06);
    color: #5f6d7a;
    font-size: 0.78rem;
}

.news-category-link.is-active strong {
    background: var(--primary);
    color: #fff;
}

.news-archive-card {
    overflow: hidden;
}

.news-archive-card__media {
    aspect-ratio: 16 / 10;
    display: block;
}

.news-archive-card__body {
    padding: 22px 24px 26px;
}

.news-archive-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    color: #7a8591;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-archive-card__body h2 {
    margin: 0;
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.28;
}

.news-archive-card__body h2 a {
    color: #111;
    text-decoration: none;
}

.news-archive-card__body p {
    margin: 14px 0 0;
    color: #5f6d7a;
    line-height: 1.78;
}

.news-page .section--alt {
    padding-top: 56px;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 12% 0%, rgba(166, 25, 46, 0.055) 0, rgba(166, 25, 46, 0) 32%),
        linear-gradient(180deg, #f5f7f8 0%, #eef2f5 100%);
}

.news-page .news-layout {
    grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
    gap: 24px;
}

.news-page .news-sidebar {
    top: 94px;
}

.news-page .news-sidebar__inner {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(15, 23, 32, 0.065);
}

.news-page .news-sidebar__inner h2 {
    margin-bottom: 14px;
    font-size: 1.22rem;
}

.news-page .news-category-list {
    gap: 8px;
}

.news-page .news-category-link {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 0.92rem;
}

.news-popular {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.news-popular__label {
    margin: 0 0 12px;
    color: #111827;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-popular__list {
    display: grid;
    gap: 10px;
}

.news-popular__item {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(16, 24, 40, 0.07);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-popular__item:hover {
    transform: translateY(-1px);
    border-color: rgba(166, 25, 46, 0.16);
    box-shadow: 0 12px 28px rgba(15, 23, 32, 0.08);
}

.news-popular__media {
    width: 66px;
    height: 52px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #f2f4f6;
}

.news-popular__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
    display: block;
}

.news-popular__body {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.news-popular__body time {
    color: #8a95a1;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.news-popular__body strong {
    color: #17212b;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.28;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-archive-list {
    display: grid;
    gap: 12px;
}

.news-main {
    min-width: 0;
}

.news-page .news-archive-card {
    position: relative;
    min-height: 168px;
    display: grid;
    grid-template-columns: 252px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(15, 23, 32, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-page .news-archive-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.news-page .news-archive-card:hover {
    transform: translateY(-2px);
    border-color: rgba(166, 25, 46, 0.16);
    box-shadow: 0 22px 54px rgba(15, 23, 32, 0.095);
}

.news-page .news-archive-card:hover::before {
    opacity: 1;
}

.news-page .news-archive-card__media {
    width: 252px;
    height: 168px;
    min-height: 168px;
    aspect-ratio: auto;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafb 0%, #edf1f4 100%);
}

.news-page .news-archive-card__media img {
    object-fit: contain;
    padding: 8px;
    transition: transform 0.35s ease;
}

.news-page .news-archive-card:hover .news-archive-card__media img {
    transform: scale(1.045);
}

.news-page .news-archive-card__body {
    min-width: 0;
    padding: 20px 24px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-page .news-archive-card__meta {
    margin-bottom: 9px;
    color: #7b8792;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
}

.news-page .news-archive-card__body h2 {
    max-width: 680px;
    font-size: clamp(1.14rem, 1.34vw, 1.42rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-page .news-archive-card__body h2 a:hover {
    color: var(--primary);
}

.news-page .news-archive-card__body p {
    max-width: 690px;
    margin-top: 10px;
    color: #62707d;
    font-size: 0.94rem;
    line-height: 1.62;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}


.post-article__featured {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.post-page {
    --post-content-width: 100%;
}

.post-page .subpage-hero--post {
    padding-top: 132px;
    padding-bottom: 48px;
    background: #fff;
}

.post-page .subpage-hero__copy {
    max-width: var(--post-content-width);
    margin: 0 auto;
}

.post-page .subpage-hero__copy h1 {
    max-width: none;
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    line-height: 1.1;
}

.post-page .subpage-hero__copy p {
    margin-top: 18px;
    color: #7a8591;
    font-size: 0.95rem;
    font-weight: 700;
}

.post-page__content {
    padding-top: 54px;
    background: #f6f8fa;
}

.post-page .post-layout {
    max-width: var(--post-content-width);
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
}

.post-page .post-article {
    min-width: 0;
}

.post-page .post-article__featured {
    width: 100%;
    max-width: var(--post-content-width);
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(15, 23, 32, 0.1);
}

.post-page .post-article__body {
    max-width: var(--post-content-width);
    margin: 0 auto;
    padding: 30px 0 0;
    color: #42505d;
    font-size: 1.04rem;
    line-height: 1.9;
}

.post-page .post-article__body p {
    margin: 0 0 1.25em;
}

.post-page .post-article__body p:last-child {
    margin-bottom: 0;
}

.post-related {
    padding-top: 34px;
    border-top: 1px solid rgba(16, 24, 40, 0.1);
}

.post-related__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.post-related__header h2 {
    margin: 0;
    color: #111;
    font-size: 1.12rem;
    font-weight: 800;
}

.post-related__header a {
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.post-related__header a:hover {
    color: var(--primary-dark);
}

.post-side-list {
    display: grid;
    gap: 12px;
}

.post-related .post-side-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.post-side-list__item {
    display: block;
    padding: 16px 0;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
    color: inherit;
    text-decoration: none;
}

.post-related .post-side-list__item {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(15, 23, 32, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.post-related .post-side-list__item:hover {
    transform: translateY(-3px);
    border-color: rgba(166, 25, 46, 0.14);
    box-shadow: 0 20px 44px rgba(15, 23, 32, 0.1);
}

.post-side-list__media {
    height: clamp(118px, 8vw, 150px);
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #eef2f5;
}

.post-side-list__body {
    display: block;
    padding: 14px 2px 2px;
}

.post-side-list__item strong {
    display: block;
    color: #111;
    line-height: 1.55;
}

.post-side-list__body > span {
    display: block;
    margin-top: 6px;
    color: #7a8591;
    font-size: 0.84rem;
    font-weight: 700;
}

.pagination,
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(16, 24, 40, 0.12);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
    border-color: transparent;
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1199px) {
    .catalog-grid,
    .news-archive-grid,
    .about-markets__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-capabilities__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-detail__highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .about-certs__grid {
        --certs-gap: 14px;
    }

    .about-cert-card {
        flex-basis: calc((100% - (var(--certs-gap) * 2)) / 3);
    }
}

@media (max-width: 991px) {
    .subpage-hero {
        padding-top: 132px;
    }

    .subpage-hero__grid,
    .product-detail__grid,
    .product-detail__body-grid,
    .about-story-grid,
    .post-layout,
    .inquiry-panel {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-culture__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-workshop__track {
        --workshop-gap: 22px;
    }

    .about-workshop-card {
        flex-basis: calc((100% - var(--workshop-gap)) / 2);
    }

    .catalog-shell__header,
    .about-vr__header,
    .about-capabilities__header,
    .about-certs__header,
    .about-markets__header,
    .product-related-products__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-capabilities__header p {
        text-align: left;
    }

    .about-certs__meta {
        max-width: none;
    }

    .about-certs {
        max-width: 100%;
    }

    .about-certs__grid {
        --certs-gap: 14px;
    }

    .about-vr__header {
        grid-template-columns: 1fr;
    }

    .about-profile {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-profile__side {
        display: none;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-page .news-archive-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .news-page .news-archive-card__media {
        width: 220px;
        height: 158px;
        min-height: 158px;
    }

    .news-page .news-archive-card__body {
        padding: 22px 24px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-page .subpage-hero > .container,
    .catalog-page .section--alt > .container {
        width: min(calc(100% - 32px), 1360px);
    }

    .catalog-sidebar,
    .news-sidebar {
        position: static;
    }

    .catalog-category-list,
    .news-category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .product-detail__media-frame,
    .product-detail__media-frame.is-zooming {
        cursor: default;
    }

    .product-detail__media-frame {
        padding: 8px;
    }

    .product-page .product-detail__thumbs-shell {
        --product-thumb-size: 78px;
        --product-thumb-gap: 8px;
        --product-thumb-arrow-size: 30px;
        grid-template-columns:
            var(--product-thumb-arrow-size)
            minmax(0, calc((var(--product-thumb-size) * 3) + (var(--product-thumb-gap) * 2)))
            var(--product-thumb-arrow-size);
        align-items: center;
        gap: 6px;
        padding: 0;
        margin-top: 12px;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

.product-page .product-detail__thumbs-viewport {
    width: calc((var(--product-thumb-size) * 3) + (var(--product-thumb-gap) * 2));
    margin: 0;
    }

    .product-page .product-detail__thumb {
        width: 78px;
        height: 78px;
        padding: 8px;
        border-radius: 12px;
    }

    .product-page .product-detail__thumbs-arrow {
        position: static;
        flex: 0 0 auto;
        transform: none;
    }

    .product-page .product-detail__thumbs-arrow:hover {
        transform: none;
    }

    .contact-rail {
        right: 12px;
        bottom: max(14px, env(safe-area-inset-bottom));
        gap: 8px;
    }

    .contact-rail__tooltip:not(.contact-rail__tooltip--panel) {
        display: none;
    }

    .contact-rail__tooltip--panel {
        display: grid;
        right: 64px;
        bottom: max(12px, env(safe-area-inset-bottom));
    }

    .contact-rail__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .news-page .news-layout {
        grid-template-columns: 1fr;
    }

    .news-page .news-sidebar {
        display: none;
    }

    .news-page .news-main {
        min-width: 0;
    }

    .subpage-hero {
        padding: 118px 0 42px;
    }

    .about-vr-hero .about-vr__guard p {
        display: none;
    }

    .about-page .about-vr-hero,
    .about-page .about-vr-hero .about-vr--hero,
    .about-page .about-vr-hero .about-vr__frame-wrap,
    .about-page .about-vr-hero .about-vr__frame {
        min-height: 300px;
        height: clamp(300px, 60vw, 340px);
        max-height: 340px;
    }

    .about-vr-hero .about-vr__trigger {
        width: 72px;
        height: 72px;
    }

    .about-vr-hero .about-vr__trigger span:last-child {
        font-size: 0.82rem;
    }

    .catalog-shell,
    .inquiry-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .catalog-grid,
    .news-archive-grid,
    .about-capabilities__grid,
    .about-markets__grid {
        grid-template-columns: 1fr;
    }

    .product-detail__thumbs-shell {
        --product-thumb-size: 92px;
        --product-thumb-gap: 10px;
        --product-thumb-arrow-size: 34px;
        gap: 8px;
    }

    .product-detail__thumb {
        width: 92px;
        height: 92px;
        padding: 10px;
        border-radius: 14px;
    }

    .product-page .product-detail__media-frame,
    .product-page .product-detail__summary {
        min-height: 0;
    }

    .news-sidebar__inner {
        padding: 18px;
        border-radius: 20px;
    }

    .post-page .subpage-hero--post {
        padding-top: 118px;
        padding-bottom: 36px;
    }

    .post-page__content {
        padding-top: 34px;
    }

    .post-page .post-layout {
        gap: 28px;
    }

    .post-page .post-article__featured {
        height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }

    .post-page .post-article__body {
        padding-top: 22px;
        font-size: 0.98rem;
        line-height: 1.82;
    }

    .post-related .post-side-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-page .news-archive-list {
        gap: 14px;
    }

    .news-page .news-archive-card {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 22px;
    }

    .news-page .news-archive-card::before {
        inset: 0 0 auto 0;
        width: 100%;
        height: 4px;
    }

    .news-page .news-archive-card__media {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .news-page .news-archive-card__body {
        padding: 22px;
    }

    .news-page .news-archive-card__body h2 {
        font-size: 1.24rem;
    }

    .news-page .news-archive-card__body p {
        font-size: 0.94rem;
    }

    .post-related .post-side-list__item {
        padding: 10px;
        border-radius: 16px;
    }

    .post-side-list__media {
        height: clamp(130px, 44vw, 190px);
        border-radius: 12px;
    }

    .post-related__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .catalog-sidebar__inner {
        padding: 18px;
        border-radius: 20px;
    }

    .catalog-category-list,
    .news-category-list {
        grid-template-columns: 1fr;
    }

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

    .about-stats-section {
        padding: 24px 0 30px;
    }

    .about-company-section {
        padding-top: 18px;
        padding-bottom: 58px;
    }

    .about-profile__content {
        padding: 0;
    }

    .about-profile__content h2 {
        font-size: clamp(2.15rem, 9vw, 3.45rem);
    }

    .about-profile__rule {
        margin: 22px 0 16px;
    }

    .about-profile__company {
        font-size: 1.08rem;
    }

    .about-profile__text {
        gap: 20px;
        margin-top: 28px;
    }

    .about-certs-section {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .about-culture-section {
        padding-top: 46px;
        padding-bottom: 54px;
    }

    .about-culture__header {
        margin-bottom: 24px;
    }

    .about-culture__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-culture-card {
        min-height: 220px;
        padding: 30px 22px;
    }

    .about-workshop__header {
        padding-bottom: 28px;
    }

    .about-workshop__stage {
        padding-bottom: 34px;
    }

    .about-workshop__stage::before {
        width: 100%;
        height: 36%;
    }

    .about-workshop__track {
        --workshop-gap: 16px;
    }

    .about-workshop-card {
        flex-basis: 100%;
    }

    .about-workshop-card img {
        height: clamp(240px, 62vw, 340px);
    }

    .about-workshop__controls {
        left: 12px;
        right: 12px;
        top: 46%;
    }

    .about-workshop__arrow {
        width: 56px;
        height: 56px;
    }

    .about-workshop__arrow span {
        font-size: 2.35rem;
    }

    .about-certs__grid {
        --certs-gap: 12px;
        gap: 12px;
    }

    .about-cert-card {
        flex-basis: calc((100% - var(--certs-gap)) / 2);
    }

    .about-certs__controls {
        left: 8px;
        right: 8px;
        top: 42%;
    }

    .about-certs__arrow {
        width: 46px;
        height: 46px;
    }

    .about-certs__arrow span {
        font-size: 2rem;
    }

    .about-certs__meta {
        gap: 10px;
    }

    .about-certs__count {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .about-cert-card__media {
        height: clamp(184px, 48vw, 236px);
        padding: 0;
        border-radius: 12px;
    }

    .about-cert-card {
        min-height: 0;
        padding: 12px 12px 14px;
        gap: 10px;
        border-radius: 16px;
    }

    .about-cert-card figcaption strong {
        font-size: 0.82rem;
    }

    .catalog-card__actions,
    .subpage-hero__actions,
    .product-detail__actions {
        flex-direction: column;
    }

    .catalog-card__link,
    .subpage-button {
        width: 100%;
    }

    .product-page .product-detail__summary h1 {
        font-size: 1.08rem;
        white-space: nowrap;
    }

    .inquiry-form--panel {
        grid-template-columns: 1fr;
    }

    .about-vr,
    .about-vr__frame-wrap,
    .about-vr__frame {
        min-height: 420px;
        height: 420px;
    }

    .about-vr__trigger {
        width: 96px;
        height: 96px;
    }
}

/* ============================
   Mobile Refinements
   ============================ */
body {
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .header {
        z-index: 300;
    }

    .header .container {
        position: relative;
        z-index: 3;
        width: min(calc(100% - 32px), 1360px);
        min-height: 78px;
    }

    .logo,
    .header__actions {
        position: relative;
        z-index: 4;
    }

    .logo__image {
        height: 48px;
        max-width: 170px;
    }

    .nav {
        position: fixed;
        top: var(--mobile-nav-offset, 78px);
        left: 0;
        right: 0;
        z-index: 2;
        display: none !important;
        padding: 8px 20px 18px;
        max-height: none;
        overflow: visible;
        background: #ffffff !important;
        backdrop-filter: none;
        border-top: 1px solid rgba(16, 24, 40, 0.06);
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: 0 24px 46px rgba(15, 23, 32, 0.08);
    }

    .nav.active {
        display: block !important;
    }

    .nav__list {
        display: flex !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav__list > li,
    .nav__list > .has-dropdown,
    .nav__list > .menu-item-has-children {
        width: 100%;
    }

    .nav__link {
        font-size: 1rem;
        line-height: 1.4;
        white-space: normal;
        padding: 15px 0;
        font-weight: 800;
        color: var(--secondary) !important;
        text-shadow: none !important;
    }

    .nav__list > .has-dropdown > .nav__link,
    .nav__list > .menu-item-has-children > .nav__link {
        padding-right: 0;
    }

    .nav__list > .has-dropdown > .nav__link::before,
    .nav__list > .menu-item-has-children > .nav__link::before {
        display: none;
    }

    .dropdown {
        display: none !important;
    }

    .hero-vr,
    .hero-vr__carousel,
    .hero-vr__slides,
    .hero-vr__slide,
    .hero-vr__preview-image {
        min-height: clamp(420px, 70svh, 760px);
        height: clamp(420px, 70svh, 760px);
    }

    .hero-vr__controls {
        left: 14px;
        right: 14px;
        bottom: 18px;
    }

    .products__tabs {
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
    }

    .products__tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .partners__header {
        margin-top: -28px;
    }
}

@media (max-width: 767px) {
    .container,
    .catalog-page .subpage-hero > .container,
    .catalog-page .section--alt > .container {
        width: min(calc(100% - 24px), 1360px);
    }

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

    .section__header {
        margin-bottom: 26px;
    }

    .section__header h2,
    .subpage-hero__copy h1,
    .post-page .subpage-hero__copy h1 {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        line-height: 1.12;
    }

    .section__header p,
    .subpage-hero__copy p,
    .post-page .subpage-hero__copy p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .header .container {
        min-height: 72px;
    }

    .logo__image {
        height: 42px;
        max-width: 150px;
    }

    .nav {
        top: var(--mobile-nav-offset, 72px);
        padding: 6px 16px 16px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .hero-vr,
    .hero-vr__carousel,
    .hero-vr__slides,
    .hero-vr__slide,
    .hero-vr__preview-image {
        min-height: clamp(360px, 62svh, 620px);
        height: clamp(360px, 62svh, 620px);
    }

    .hero-vr__preview-image {
        object-position: center;
    }

    .hero-vr__copy {
        left: 24px;
        right: 24px;
        top: 46%;
        width: auto;
    }

    .hero-vr__copy p {
        max-width: 330px;
        font-size: clamp(1.1rem, 4.9vw, 1.55rem);
        line-height: 1.45;
    }

    .hero-vr__copy-label {
        gap: 10px;
        margin-bottom: 12px;
        font-size: 0.72rem;
    }

    .hero-vr__copy-label::before {
        width: 48px;
        height: 4px;
    }

    .hero-vr__action {
        min-height: 42px;
        margin-top: 18px;
        padding: 0 20px;
        font-size: 0.84rem;
    }

    .hero-vr__controls {
        gap: 10px;
        bottom: 14px;
    }

    .hero-vr__arrow {
        width: 40px;
        height: 40px;
    }

    .hero-vr__dots {
        gap: 8px;
        padding: 0 6px;
    }

    .cta__shell,
    .catalog-shell,
    .inquiry-panel,
    .surface-card,
    .news-page .news-archive-card,
    .catalog-card,
    .news-card,
    .about-culture-card,
    .about-capability-card,
    .about-cert-card {
        border-radius: 18px;
    }

    .cta__intro,
    .cta__form-panel,
    .catalog-shell,
    .inquiry-panel,
    .content-panel,
    .news-sidebar__inner,
    .catalog-sidebar__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta__points {
        gap: 8px;
    }

    .cta__points span,
    .product-detail__quote-card li {
        font-size: 0.9rem;
    }

    .cta__form-submit,
    .catalog-card__actions,
    .subpage-hero__actions,
    .product-detail__actions {
        gap: 10px;
    }

    .subpage-button,
    .catalog-card__link,
    .product-detail__actions .subpage-button,
    .cta__form-submit .btn,
    .inquiry-form .btn {
        width: 100%;
    }

    .form-group input,
    .form-group textarea,
    .inquiry-form--panel input,
    .inquiry-form--panel textarea {
        min-height: 48px;
    }

    .form-group textarea,
    .inquiry-form--panel textarea {
        min-height: 136px;
    }

    .product-page .product-detail__summary h1 {
        font-size: 1.6rem;
        white-space: normal;
    }

    .product-detail__backlink {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .product-detail__quote-card {
        padding: 18px 16px;
    }

    .product-detail__thumbs-shell {
        --product-thumb-size: 84px;
        --product-thumb-gap: 10px;
        --product-thumb-arrow-size: 34px;
    }

    .product-detail__thumb {
        width: 84px;
        height: 84px;
    }

    .about-stats-grid,
    .factory__stats {
        gap: 12px;
    }

    .partners__header {
        margin-top: 0;
    }

    .footer {
        padding-top: 48px;
    }

    .footer__bottom-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .container,
    .catalog-page .subpage-hero > .container,
    .catalog-page .section--alt > .container {
        width: min(calc(100% - 20px), 1360px);
    }

    .section {
        padding: 42px 0 50px;
    }

    .intro--spotlight {
        padding: 0;
    }

    .intro__spotlight,
    .intro__spotlight-overlay {
        min-height: 560px;
    }

    .intro__spotlight {
        background-position: center top;
    }

    .intro__spotlight-overlay {
        padding: 40px 16px 22px;
    }

    .intro__copy h2 {
        font-size: 1.95rem;
    }

    .intro__copy p {
        max-width: 300px;
        font-size: 0.91rem;
        line-height: 1.42;
    }

    .intro__divider {
        margin: 14px auto 18px;
    }

    .intro__cta {
        width: 50px;
        height: 50px;
        margin-top: 18px;
        font-size: 1.5rem;
    }

    .intro__stats--overlay {
        gap: 16px 10px;
    }

    .intro__stats--overlay .intro__stat strong {
        font-size: 1.85rem;
    }

    .intro__stats--overlay .intro__stat span {
        max-width: 110px;
        font-size: 0.86rem;
    }

    .hero-vr,
    .hero-vr__carousel,
    .hero-vr__slides,
    .hero-vr__slide,
    .hero-vr__preview-image {
        min-height: clamp(320px, 56svh, 520px);
        height: clamp(320px, 56svh, 520px);
    }

    .about-page .about-vr-hero,
    .about-page .about-vr-hero .about-vr--hero,
    .about-page .about-vr-hero .about-vr__frame-wrap,
    .about-page .about-vr-hero .about-vr__frame {
        min-height: 320px;
        height: clamp(320px, 58vw, 400px);
        max-height: 400px;
    }

    .cta__intro,
    .cta__form-panel,
    .catalog-shell,
    .inquiry-panel,
    .content-panel,
    .news-sidebar__inner,
    .catalog-sidebar__inner,
    .news-page .news-archive-card__body {
        padding: 16px 14px;
    }

    .section__eyebrow {
        gap: 8px;
        margin-bottom: 14px;
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .section__eyebrow::before,
    .subpage-hero__eyebrow::before {
        width: 30px;
    }

    .products__tab {
        padding: 10px 14px;
        font-size: 0.86rem;
    }

    .news-page .news-archive-card,
    .catalog-card,
    .news-card,
    .about-culture-card,
    .about-capability-card,
    .about-cert-card {
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .product-page .subpage-hero--product {
        padding-top: 104px;
        padding-bottom: 32px;
    }

    .product-page .subpage-hero--product > .container {
        width: min(calc(100% - 24px), 1360px);
        overflow: hidden;
    }

    .product-page .breadcrumb {
        margin-bottom: 22px;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .product-page .breadcrumb__list {
        gap: 8px;
    }

    .product-page .subpage-hero__eyebrow {
        margin-bottom: 22px;
        font-size: 0.86rem;
        line-height: 1.35;
    }

    .product-page .product-detail__grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        width: 100%;
        min-width: 0;
    }

    .product-page .product-detail__media-shell,
    .product-page .product-detail__summary {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .product-page .product-detail__media-shell {
        align-items: stretch;
    }

    .product-page .product-detail__media-frame {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        margin: 0;
        border-radius: 18px;
    }

    .product-page .product-detail__video-frame {
        aspect-ratio: 16 / 10;
    }

    .product-page .product-detail__video-frame.is-image-active {
        aspect-ratio: 1 / 1;
    }

    .product-page .product-detail__thumbs-shell {
        --product-thumb-size: clamp(66px, 21vw, 78px);
        --product-thumb-gap: 8px;
        --product-thumb-arrow-size: 30px;
        grid-template-columns:
            var(--product-thumb-arrow-size)
            minmax(0, 1fr)
            var(--product-thumb-arrow-size);
        width: 100%;
        max-width: 100%;
        margin: 12px 0 0;
        gap: 6px;
    }

    .product-page .product-detail__thumbs-viewport {
        width: 100%;
        max-width: 100%;
    }

    .product-page .product-detail__thumbs {
        grid-auto-columns: var(--product-thumb-size);
        gap: var(--product-thumb-gap);
    }

    .product-page .product-detail__thumb {
        width: var(--product-thumb-size);
        height: var(--product-thumb-size);
        padding: 7px;
        border-radius: 12px;
    }

    .product-page .product-detail__thumb--video span {
        width: 30px;
        height: 30px;
    }

    .product-page .product-detail__thumbs-arrow:disabled {
        visibility: hidden;
    }

    .product-page .product-detail__summary {
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        display: block;
    }

    .product-page .product-detail__backlink {
        margin-bottom: 12px;
        font-size: 0.88rem;
    }

    .product-page .product-detail__summary h1 {
        max-width: 100%;
        font-size: clamp(1.52rem, 7.2vw, 1.95rem);
        line-height: 1.12;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .product-page .product-detail__lead {
        max-width: 100%;
        margin-top: 16px;
        font-size: 1rem;
        line-height: 1.68;
        overflow-wrap: anywhere;
        word-break: normal;
    }
}

@media (max-width: 767px) {
    .home .header:not(.scrolled) .nav.active {
        background: #ffffff !important;
        backdrop-filter: none !important;
    }

    .home .header:not(.scrolled) .nav.active .nav__link {
        color: var(--secondary) !important;
        text-shadow: none !important;
    }

    .home .header:not(.scrolled) .nav.active .nav__link:hover,
    .home .header:not(.scrolled) .nav.active .nav__link.active {
        color: var(--primary);
    }

    .home .header:not(.scrolled) .nav.active .nav__link::after {
        background: var(--primary);
    }

    .home .hero-vr,
    .home .hero-vr__carousel,
    .home .hero-vr__slides,
    .home .hero-vr__slide,
    .home .hero-vr__preview-image {
        min-height: 300px;
        height: clamp(300px, 42svh, 360px);
        max-height: 360px;
    }

    .home .hero-vr__preview-image {
        object-position: center;
    }

    .home .hero-vr--embed::after,
    .home .hero-vr__copy {
        display: none;
    }

    .home .hero-vr__controls {
        bottom: 10px;
        gap: 8px;
    }

    .home .hero-vr__arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .home .hero-vr__dot {
        width: 9px;
        height: 9px;
    }

    .home .products--popular {
        padding: 24px 0 34px;
    }

    .home .products--popular .container,
    .home .customization .container,
    .home .applications--merged .container {
        width: min(calc(100% - 24px), 1360px);
    }

    .home .popular-products__header {
        margin-bottom: 18px;
    }

    .home .popular-products__header h2 {
        max-width: 300px;
        font-size: clamp(1.72rem, 7.6vw, 2.18rem);
        line-height: 1.06;
    }

    .home .popular-products__carousel {
        --product-image-size: 170px;
        --popular-gap: 14px;
    }

    .home .product-card--popular {
        height: auto;
        min-height: 356px;
        border-radius: 18px;
        grid-template-rows: auto auto;
    }

    .home .product-card--popular .product-card__body {
        min-height: 0;
        padding: 22px 16px 8px;
    }

    .home .product-card--popular .product-card__body h3 {
        margin-bottom: 6px;
        min-height: 0;
        font-size: 1.04rem;
        line-height: 1.18;
    }

    .home .product-card--popular .product-card__body p {
        min-height: 0;
        margin-bottom: 10px;
        font-size: 0.9rem;
        line-height: 1.38;
    }

    .home .product-card--popular .product-card__actions {
        max-width: none;
        gap: 6px;
    }

    .home .popular-products__pill {
        flex: 1 1 0;
        min-width: 0;
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

    .home .product-card--popular .product-card__media {
        width: var(--product-image-size);
        height: var(--product-image-size);
        margin-bottom: 18px;
        padding: 12px;
        border-radius: 16px;
    }

    .home .popular-products__controls {
        gap: 10px;
        margin-top: 14px;
        padding-right: 0;
    }

    .home .popular-products__arrow {
        width: 40px;
        height: 40px;
    }

    .home .popular-products__arrow span {
        font-size: 2.1rem;
    }

    .home .popular-products__dots {
        gap: 8px;
    }

    .home .customization {
        padding: 16px 0 28px;
    }

    .home .customization__shell {
        border-radius: 22px;
    }

    .home .customization__copy {
        min-height: 280px;
        padding: 28px 22px;
    }

    .home .customization__copy::after {
        right: -4px;
        font-size: clamp(3rem, 16vw, 4.2rem);
    }

    .home .customization__copy-inner {
        gap: 18px;
    }

    .home .customization__copy h2 {
        font-size: clamp(2rem, 10.5vw, 3rem);
    }

    .home .customization__media {
        min-height: 220px;
    }

    .home .customization__cta {
        min-height: 48px;
        border-radius: 14px;
        font-size: 0.9rem;
    }

    .home .applications--merged {
        padding: 18px 0 20px;
    }

    .home .applications__header {
        margin-bottom: 14px;
        transform: none;
    }

    .home .applications__header h2 {
        font-size: clamp(1.95rem, 9vw, 2.6rem);
        line-height: 1.02;
    }

    .home .applications__carousel {
        --applications-gap: 14px;
    }

    .home .application-card--solution {
        min-height: 300px;
        border-radius: 20px;
    }

    .home .application-card__panel {
        top: 14px;
        left: 14px;
        right: 14px;
        max-width: min(74%, 250px);
        padding: 12px 14px 42px 14px;
        border-radius: 14px;
    }

    .home .application-card__panel-copy {
        gap: 8px;
    }

    .home .application-card__panel-copy h3 {
        font-size: 1.18rem;
    }

    .home .application-card__panel-copy p {
        font-size: 0.84rem;
        line-height: 1.42;
        -webkit-line-clamp: 3;
    }

    .home .application-card__launch {
        left: 14px;
        bottom: -10px;
        width: 40px;
        height: 40px;
        font-size: 1.06rem;
    }

    .home .applications__controls {
        gap: 12px;
        margin-top: 16px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        padding-right: 0;
    }

    .home .applications__arrow {
        width: 44px;
        height: 44px;
    }

    .home .applications__arrow span {
        font-size: 2.35rem;
    }

    .home .applications__dots {
        gap: 10px;
    }

    .home .whatsapp-float {
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 52px;
        height: 52px;
    }

    .home .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .home .back-to-top {
        right: 14px;
        bottom: 76px;
        width: 44px;
        height: 44px;
    }
}

.surface-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.06);
}

.applications--merged {
    padding-bottom: 0;
}

.partners {
    padding-top: 0;
}

.partners__header {
    margin-top: -68px;
}

.partners__header,
.capability__header {
    margin-bottom: 34px;
}

.partners__copy h2,
.capability__copy h2 {
    margin: 0;
    color: #111;
    font-size: clamp(2.6rem, 4vw, 3.55rem);
    font-weight: 800;
    line-height: 1.02;
}

.partners__copy p,
.capability__copy p {
    margin: 14px 0 0;
    max-width: 720px;
    color: #5f6d7a;
    font-size: 1.08rem;
    line-height: 1.72;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.partners__cases-carousel {
    --cases-gap: 22px;
    margin-bottom: 24px;
}

.partners__cases-viewport {
    overflow: hidden;
}

.partners__cases-track {
    display: flex;
    gap: var(--cases-gap);
    align-items: stretch;
    will-change: transform;
    transition: transform 0.45s ease;
}

.case-card--slide {
    flex: 0 0 calc((100% - (var(--cases-gap) * 3)) / 4);
}

.case-card {
    overflow: hidden;
}

.case-card__link {
    height: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
}

.case-card a.case-card__link:hover .case-card__body h3 {
    color: var(--primary);
}

.case-card a.case-card__link:hover img {
    transform: scale(1.04);
}

.case-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.case-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform var(--transition);
}

.case-card__body {
    padding: 18px 20px 22px;
}

.case-card__body h3 {
    margin: 0;
    color: #111;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.26;
}

.case-card__body p {
    margin: 10px 0 0;
    color: #5f6d7a;
    font-size: 0.95rem;
    line-height: 1.64;
}

.partners__cases-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.partners__cases-arrow {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 0;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), opacity var(--transition);
}

.partners__cases-arrow span {
    display: block;
    min-width: 1ch;
    margin-top: -2px;
    text-align: center;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1;
}

.partners__cases-arrow:hover {
    background: var(--primary-dark);
}

.partners__cases-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.partners__cases-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.partners__cases-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(166, 25, 46, 0.28);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.partners__cases-dot.active {
    background: var(--primary);
    transform: scale(1.08);
}

.partners__logo-shell {
    overflow: hidden;
    padding: 18px 0;
}

.partners__logo-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: partners-marquee 28s linear infinite;
}

.partners__logo-shell:hover .partners__logo-track {
    animation-play-state: paused;
}

.partners__logo-item {
    width: 188px;
    min-width: 188px;
    height: 86px;
    padding: 14px 22px;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(16, 24, 40, 0.08);
}

.partners__logo-item img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
}

@keyframes partners-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-card {
    padding: 22px 22px 18px;
    text-align: center;
}

.partner-card__media {
    min-height: 132px;
    display: grid;
    place-items: center;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.partner-card__media img {
    max-width: 100%;
    max-height: 84px;
    object-fit: contain;
}

.partner-card__body {
    padding-top: 16px;
}

.partner-card__body h3 {
    margin: 0;
    color: #111;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.35;
}

.partner-card__body span {
    display: block;
    margin-top: 8px;
    color: #7a8591;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.capability {
    padding-top: 92px;
}

.capability__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.capability__hero {
    overflow: hidden;
}

.capability__hero-media {
    aspect-ratio: 16 / 11;
}

.capability__hero-media img,
.capability-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.capability__hero-body {
    padding: 22px 24px 24px;
}

.capability__hero-body h3,
.capability-card__body h3 {
    margin: 0;
    color: #111;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.capability__hero-body p {
    margin: 10px 0 0;
    color: #5f6d7a;
    line-height: 1.72;
}

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

.capability-card {
    overflow: hidden;
}

.capability-card__media {
    aspect-ratio: 16 / 11;
}

.capability-card__body {
    padding: 18px 20px 20px;
}

@media (max-width: 1199px) {
    .partners__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .partners__cases-carousel {
        --cases-gap: 18px;
    }

    .case-card--slide {
        flex-basis: calc((100% - var(--cases-gap)) / 2);
    }

    .capability__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .partners,
    .capability {
        padding-top: 78px;
    }

    .partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners__cases-controls {
        gap: 14px;
        margin-top: 22px;
    }
}

@media (max-width: 767px) {
    .partners,
    .capability {
        padding-top: 62px;
    }

    .partners__header,
    .capability__header {
        margin-bottom: 24px;
    }

    .partners__grid,
    .capability__grid {
        grid-template-columns: 1fr;
    }

    .case-card--slide {
        flex-basis: 100%;
    }

    .partner-card,
    .case-card__body,
    .capability__hero-body,
    .capability-card__body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .partners__cases-arrow {
        width: 48px;
        height: 48px;
    }

    .partners__logo-item {
        width: 156px;
        min-width: 156px;
        height: 76px;
        padding: 12px 18px;
    }
}
