/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
#home, #about, #products { scroll-margin-top: 84px; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

:root {
    --bg: #0a0a0a;
    --bg-alt: #121212;
    --bg-card: #161616;
    --red: #bd0000;
    --red-dark: #970000;
    --white: #f5f5f5;
    --muted: #9a9a9a;
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.eyebrow {
    color: var(--red);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 0 0 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

/* ---------- buttons ---------- */
.btn[hidden] {
    display: none;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}
.btn-outline:hover { border-color: var(--white); }
.btn-outline--danger { border-color: rgba(214, 39, 43, 0.5); color: var(--red); }
.btn-outline--danger:hover { border-color: var(--red); background: rgba(214, 39, 43, 0.08); }
.btn-sm { padding: 11px 20px; }
.btn-icon { gap: 8px; }
.btn-icon svg { width: 16px; height: 16px; }
.icon-btn[hidden] {
    display: none;
}
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    padding: 0;
}
.icon-btn:hover { border-color: var(--white); }
.icon-btn svg { width: 16px; height: 16px; }
.back-btn { margin-bottom: 24px; }
.product-detail__category { color: #1a1a1a; margin-bottom: 16px; }

/* ---------- header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 84px;
}
.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
}
.mobile-nav-toggle svg {
    width: 22px;
    height: 22px;
}
.mobile-nav-backdrop[hidden],
.mobile-nav[hidden] {
    display: none;
}
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 82vw);
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    z-index: 100;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav__list a {
    display: block;
    padding: 14px 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    border-radius: 6px;
}
.mobile-nav__list li.is-active a {
    color: var(--red);
    background: rgba(214, 39, 43, 0.1);
}
.mobile-nav__cta {
    margin-top: 32px;
    text-align: center;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    align-self: stretch;
}
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}
.header-search__form {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    transform: translateY(-8px);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.header-search.is-open .header-search__form {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.header-search__form input {
    width: 220px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 9px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
}
.header-search__form input:focus {
    outline: none;
    border-color: var(--red);
}
.header-search__suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 280px;
    max-height: 360px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.header-search__suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    color: var(--white);
}
.header-search__suggestion:hover {
    background: rgba(255, 255, 255, 0.06);
}
.header-search__suggestion-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}
.header-search__suggestion-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-search__suggestion-name {
    font-size: 0.82rem;
    font-weight: 600;
}
.header-search__empty {
    padding: 10px 8px;
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    display: block;
    border-radius: 3px;
}
.logo-img--header { height: 40px; width: auto; }
.logo-img--footer { height: 36px; width: auto; }
.logo-wordmark {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
}
.logo-badge {
    position: relative;
    display: inline-flex;
}
.logo-registered {
    position: absolute;
    top: -4px;
    right: -11px;
    font-size: 0.6rem;
    color: var(--muted);
    line-height: 1;
}
.logo-registered--inline {
    position: static;
    font-size: 0.55em;
    vertical-align: super;
    margin-left: 2px;
    color: var(--muted);
}
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a,
.main-nav .nav-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.main-nav li.is-active a,
.main-nav li.is-active .nav-label {
    color: var(--white);
    border-bottom-color: var(--red);
}
.main-nav a:hover,
.main-nav li.has-dropdown:hover .nav-label,
.main-nav li.has-dropdown:focus-within .nav-label {
    color: var(--white);
}
.main-nav li.has-dropdown > a::after,
.main-nav li.has-dropdown > .nav-label::after {
    content: "";
    display: inline-block;
    margin-left: 5px;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.main-nav li.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -14px;
    margin-top: 14px;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 60;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.main-nav li.has-dropdown:hover .dropdown-menu,
.main-nav li.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--muted);
    border-bottom: none;
    border-radius: 4px;
}
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-bottom: none;
}
.dropdown-menu__divider {
    height: 1px;
    margin: 6px 4px;
    background: var(--border);
}
.dropdown-menu__empty {
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--muted);
}
.dropdown-menu li.has-submenu {
    position: relative;
}
.dropdown-menu li.has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropdown-menu li.has-submenu > a::after {
    content: "";
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.6;
}
.dropdown-submenu {
    position: absolute;
    top: -8px;
    left: 100%;
    margin-left: 8px;
    min-width: 260px;
    max-height: 360px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 61;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.dropdown-menu li.has-submenu:hover > .dropdown-submenu,
.dropdown-menu li.has-submenu:focus-within > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.dropdown-submenu a {
    display: block;
    padding: 9px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    border-radius: 4px;
    white-space: nowrap;
}
.dropdown-submenu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 0%, transparent 80%, var(--bg) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.89) 0%, rgba(0,0,0,0.64) 45%, rgba(0,0,0,0.43) 75%, rgba(0,0,0,0.3) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    margin: 0;
    padding: 60px 20px 60px clamp(24px, 5vw, 64px);
}
.hero__title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 36px;
}
.hero__subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 0 48px;
    text-align: justify;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero__actions--stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.hero__actions-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- features strip ---------- */
.features {
    padding: 60px 0;
    background: transparent;
}
.features__head {
    text-align: center;
    margin-bottom: 40px;
}
.features__head .section-title {
    margin: 8px 0 0;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.feature {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    opacity: 0;
    transform: translateY(-48px);
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.features__grid.is-visible .feature {
    opacity: 1;
    transform: translateY(0);
}
.feature:last-child { border-right: none; }
.feature__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    color: var(--red);
    margin-bottom: 16px;
    animation: feature-float 3s ease-in-out infinite;
    transition: transform 0.25s ease;
}
.feature:nth-child(1) .feature__icon { animation-delay: 0s; }
.feature:nth-child(2) .feature__icon { animation-delay: 0.2s; }
.feature:nth-child(3) .feature__icon { animation-delay: 0.4s; }
.feature:nth-child(4) .feature__icon { animation-delay: 0.6s; }
.feature:nth-child(5) .feature__icon { animation-delay: 0.8s; }
.feature:nth-child(6) .feature__icon { animation-delay: 1s; }
.feature:hover .feature__icon {
    animation-play-state: paused;
    transform: scale(1.15);
}
@keyframes feature-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
    .feature__icon { animation: none; }
}
.feature__title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    color: var(--white);
}
@media (prefers-reduced-motion: reduce) {
    .feature {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- products ---------- */
.products { padding: 56px 0 48px; background: transparent; }
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.products__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.products-category-block {
    margin-bottom: 56px;
}
.products-category-block:last-child {
    margin-bottom: 0;
}
.products-category-block[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.products-category-block[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.products-category-block__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.products-category-block__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}
.products-category-block__count {
    font-size: 0.85rem;
    color: var(--muted);
    white-space: nowrap;
}
.products__grid--carousel {
    display: flex;
    grid-template-columns: none;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px;
    scrollbar-width: none;
}
.products__grid--carousel::-webkit-scrollbar {
    display: none;
}
.products__grid--carousel .product-card {
    flex: 0 0 240px;
    padding: 16px 20px 18px;
    scroll-snap-align: start;
}
.products__grid--carousel .product-card__media {
    aspect-ratio: 16 / 10;
    padding: 20%;
    margin-bottom: 14px;
}
.products__grid--carousel .product-card__media--photo {
    padding: 6%;
}
.products__grid--carousel .product-card__title {
    min-height: 2.3rem;
    margin-bottom: 4px;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px 20px 28px;
    position: relative;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.product-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.product-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, #1e1e1e, #0d0d0d);
    border-radius: 3px;
    margin-bottom: 20px;
    color: var(--red);
    padding: 26%;
}
.product-card__media--photo {
    background: #ffffff;
    padding: 6%;
}
.product-card__media--photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-card__gallery {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.product-card__gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card__gallery-img.is-active {
    opacity: 1;
}
.product-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
    min-height: 2.7rem;
}
.product-card__desc {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0 0 16px;
}
.product-card__arrow {
    display: inline-flex;
    width: 18px;
    height: 18px;
    margin-top: auto;
    color: var(--red);
}
.product-card--view-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    border-style: dashed;
}
.product-card--view-all:hover {
    background: var(--bg-alt);
}
.product-card__view-all-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--red);
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.product-card__view-all-arrow svg {
    width: 20px;
    height: 20px;
}
.product-card--view-all:hover .product-card__view-all-arrow {
    border-color: var(--red);
    transform: translateX(4px);
}

/* ---------- product detail ---------- */
.product-detail {
    padding: 56px 0 100px;
}
.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "media info"
        "thumbs .";
    column-gap: 64px;
    row-gap: 16px;
    align-items: start;
}
.product-detail__media {
    grid-area: media;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: var(--red);
    overflow: hidden;
}
.product-detail__photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}
.product-detail__media:hover .product-detail__photo {
    transform: scale(1.15);
}
.product-detail__thumbs {
    grid-area: thumbs;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.product-detail__thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 4px;
    padding: 6px;
    cursor: pointer;
    overflow: hidden;
}
.product-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-detail__thumb.is-active {
    border-color: var(--red);
}
.product-detail__info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.product-detail__info .hero__actions {
    margin-bottom: 0;
}
.product-price {
    margin: 0 0 24px;
}
.product-price__row {
    display: flex;
    align-items: flex-end;
    gap: 28px;
    flex-wrap: wrap;
}
.product-price__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-price__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}
.product-price__select {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 160px;
    cursor: pointer;
}
.product-price__amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.product-price__value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--red);
}
.product-price__tax {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}
.product-price__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: var(--muted);
    max-width: 420px;
}
.product-price__note::before {
    content: "i";
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: 0.65rem;
    font-weight: 700;
    font-style: italic;
}
.product-detail__top .section-title {
    margin-bottom: 16px;
}
.product-detail__summary {
    font-size: 1.1rem;
    margin: 16px 0;
}
.product-detail__desc {
    color: #dedede;
    margin: 0 0 32px;
    max-width: 520px;
}
.product-detail__desc p {
    margin: 0 0 16px;
}
.product-detail__desc p:last-child {
    margin-bottom: 0;
}
.blog-post__body h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 36px 0 14px;
}
.blog-post__body h2:first-child {
    margin-top: 0;
}
.product-detail--empty {
    text-align: left;
}
.product-detail--empty .product-detail__desc {
    margin-top: 16px;
    margin-bottom: 32px;
}

@media (max-width: 980px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "thumbs"
            "info";
    }
}

/* ---------- product page: black + white accents ----------
   The page stays on the site's usual dark background; white is used
   deliberately for the three "commercial" surfaces a buyer scans first —
   the photo, the price, and the spec sheet — so they read as distinct,
   scannable cards rather than blending into the page. */
.product-price {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 20px 24px;
}
.product-price__label {
    color: #6b6b6b;
}
.product-price__tax {
    color: #6b6b6b;
}
.product-price__note {
    color: #6b6b6b;
}
.product-price__select {
    border-color: rgba(0, 0, 0, 0.2);
}
.product-spec-table th {
    color: #ffffff;
    background: #0a0a0a;
}
.product-spec-table td {
    color: #1a1a1a;
}
.product-spec-table th,
.product-spec-table td {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}
.product-spec-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* ---------- product detail: video / features / specs ---------- */
.product-section__title {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    margin-bottom: 32px;
}
.product-video-section {
    padding: 0 0 100px;
}
.product-video-embed {
    max-width: 860px;
    aspect-ratio: 16 / 9;
    background: #000000;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.product-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
}
.product-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.product-video-thumb:hover img {
    transform: scale(1.04);
    filter: brightness(0.8);
}
.product-video-thumb__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.product-video-thumb__play::before {
    content: "";
    margin-left: 5px;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
}
.product-video-thumb:hover .product-video-thumb__play {
    background: var(--red-dark);
    transform: translate(-50%, -50%) scale(1.08);
}
.product-features-section {
    padding: 0 0 100px;
}
.product-features-heading {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 0 20px;
    margin: 0 0 32px;
}
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px 20px;
}
.product-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.product-features-grid.is-visible .product-feature-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.product-feature-card__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s ease;
}
.product-feature-card:hover .product-feature-card__icon {
    transform: scale(1.12);
}
.product-feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-feature-card__label {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--white);
}
.product-specs-section {
    padding: 0 0 100px;
}
.product-spec-table-wrap {
    background: #ffffff;
    overflow-x: auto;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.product-spec-table-wrap::-webkit-scrollbar {
    height: 6px;
}
.product-spec-table-wrap::-webkit-scrollbar-track {
    background: transparent;
}
.product-spec-table-wrap::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.product-spec-table-wrap::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.35);
}
.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}
.product-spec-table th,
.product-spec-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
}
.product-spec-table th {
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.72rem;
}
.product-spec-table tbody tr:last-child td {
    border-bottom: none;
}
.product-spec-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}
.product-spec-table__sticky-col {
    position: sticky;
    left: 0;
    background: #ffffff;
    box-shadow: 1px 0 0 rgba(0, 0, 0, 0.12);
}
.product-spec-table tbody tr:hover .product-spec-table__sticky-col {
    background: #fafafa;
}

/* ---------- product page: full white background (matches old-site reference) ---------- */
.product-page-light {
    background: #ffffff;
    color: #1a1a1a;
}
.product-page-light .section-title {
    color: #111111;
}
.product-page-light .icon-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}
.product-page-light .icon-btn:hover {
    border-color: #1a1a1a;
}
.product-page-light .product-detail__media {
    border-color: rgba(0, 0, 0, 0.12);
}
.product-page-light .product-detail__thumb {
    border-color: rgba(0, 0, 0, 0.15);
}
.product-page-light .product-detail__thumb.is-active {
    border-color: var(--red);
}
.product-page-light .product-detail__summary,
.product-page-light .product-detail__desc {
    color: #4a4a4a;
}
.product-page-light .btn-outline {
    border-color: rgba(0, 0, 0, 0.28);
    color: #1a1a1a;
}
.product-page-light .btn-outline:hover {
    border-color: #1a1a1a;
    background: rgba(0, 0, 0, 0.04);
}
.product-page-light .product-video-embed {
    border-color: rgba(0, 0, 0, 0.12);
}
.product-page-light .product-features-heading {
    color: #111111;
    border-bottom-color: rgba(0, 0, 0, 0.12);
}
.product-page-light .product-feature-card__label {
    color: #1a1a1a;
}
.product-page-light .product-spec-table-wrap {
    border-color: rgba(0, 0, 0, 0.12);
}

/* ---------- about ---------- */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}
.about__media-bg {
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/about-bg.png");
    background-size: cover;
    background-position: center;
}
.about__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--bg) 0%, transparent 35%, transparent 65%, var(--bg) 100%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.6) 55%, rgba(10, 10, 10, 0.88) 100%),
        rgba(10, 10, 10, 0.35);
}
.about__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: 0;
    padding-right: clamp(24px, 5vw, 64px);
    gap: 64px;
    align-items: center;
}
.about__desc {
    color: var(--muted);
    margin: 20px 0 32px;
    max-width: 480px;
}

/* ---------- clientele ---------- */
.clientele {
    padding: 80px 0;
    background: transparent;
}
.clientele__title {
    color: var(--white);
    text-align: center;
    margin: 0 0 48px;
}
.clientele__track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clientele__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientele-scroll 36s linear infinite;
}
.clientele__track-wrap:hover .clientele__track {
    animation-play-state: paused;
}
.clientele__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 170px;
    height: 88px;
    margin: 0 10px;
    background: #ffffff;
    border-radius: 6px;
    padding: 0 20px;
}
.clientele__logo img {
    max-width: 100%;
    max-height: 42px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.2s ease, opacity 0.2s ease;
}
.clientele__logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
@keyframes clientele-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .clientele__track {
        animation: none;
    }
    .clientele__track-wrap {
        overflow-x: auto;
    }
}

/* ---------- stats ---------- */
.stats {
    padding: 24px 0;
    background: transparent;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 48px 20px;
    border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__icon {
    width: 30px;
    height: 30px;
    color: var(--red);
}
.stat__value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}
.stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

/* ---------- testimonials ---------- */
.testimonials {
    padding: 80px 0;
    background: transparent;
}
.testimonials__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}
.testimonials__panel {
    min-width: 0;
}
.testimonials__viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonials__track {
    position: relative;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 7%;
}
.testimonials__track::-webkit-scrollbar {
    display: none;
}
.testimonial-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
}
.testimonial-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.testimonial-card__quote {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 28px;
}
.testimonial-card__name {
    color: #111111;
    font-weight: 700;
    margin: 0;
}
.testimonial-card__role {
    color: #6a6a6a;
    font-size: 0.82rem;
    margin: 4px 0 0;
}
.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}
.testimonials__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}
.testimonials__dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: var(--red);
}

/* ---------- cta ---------- */
.cta {
    padding: 120px 0;
    background: transparent;
}
.cta__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.cta__text,
.cta .enquiry-form {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.cta__text {
    transform: translateX(-60px);
}
.cta .enquiry-form {
    transform: translateX(60px);
}
.cta__text.is-visible,
.cta .enquiry-form.is-visible {
    opacity: 1;
    transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
    .cta__text,
    .cta .enquiry-form {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.cta__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 16px;
}
.cta__subtitle {
    color: var(--muted);
    margin: 0 0 32px;
}

.enquiry-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
}
.enquiry-form h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #111111;
}
.enquiry-form .form-note {
    color: #5a5a5a;
    font-size: 0.85rem;
    margin: 0 0 20px;
}
.form-field {
    margin-bottom: 16px;
}
.form-field--checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-transform: none;
}
.form-field--checkbox input[type="checkbox"] {
    width: auto;
}
.form-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5a5a5a;
    margin-bottom: 6px;
}
.required-mark {
    color: var(--red);
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 12px 14px;
    color: #111111;
    font-family: inherit;
    font-size: 0.9rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--red);
}
.form-field textarea {
    resize: vertical;
    min-height: 90px;
}
.phone-field {
    display: flex;
}
.phone-field__code {
    width: auto;
    flex: 0 0 100px;
    border-radius: 4px 0 0 4px;
    border-right: none;
    padding: 12px 6px;
}
.phone-field__number {
    flex: 1;
    min-width: 0;
    border-radius: 0 4px 4px 0;
}
.enquiry-form button.btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

@media (max-width: 980px) {
    .cta__content { grid-template-columns: 1fr; }
}

/* ---------- enquiry modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 200;
}
.modal-overlay[hidden] {
    display: none;
}
.modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
}
.modal-box .enquiry-form {
    border-radius: 8px;
    margin: 0;
}
.modal-box__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
    font-size: 1.2rem;
    line-height: 1;
}
.modal-box__close:hover {
    border-color: #1a1a1a;
}
.video-modal-box {
    position: relative;
    width: 100%;
    max-width: 960px;
}
.video-modal-box .modal-box__close {
    top: -44px;
    right: 0;
}
.video-modal-box__frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 6px;
    overflow: hidden;
}
.video-modal-box__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- footer ---------- */
.site-footer {
    background: #060606;
    padding: 72px 0 40px;
    border-top: 1px solid var(--border);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.footer__brand p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 16px 0 20px;
    max-width: 320px;
}
.footer__social {
    display: flex;
    gap: 12px;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
}
.footer__social svg { width: 16px; height: 16px; }
.footer__col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--muted); font-size: 0.85rem; }
.footer__col a:hover { color: var(--white); }
.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.85rem;
}
.footer__contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--red);
}
.footer__connect {
    border-top: 1px solid var(--border);
    margin-top: 56px;
}
.footer__connect-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
}
.footer__connect-inner h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    color: var(--white);
}
.footer__connect .footer__social a:hover {
    border-color: var(--red);
    color: var(--red);
}
.footer__legal {
    border-top: 1px solid var(--border);
}
.footer__legal-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
}
.footer__legal-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}
.footer__legal-links {
    display: flex;
    gap: 24px;
}
.footer__legal-links a {
    color: var(--muted);
    font-size: 0.8rem;
}
.footer__legal-links a:hover {
    color: var(--white);
}

/* ---------- blog ---------- */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.blog-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.blog-card__figure {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--bg-card);
    overflow: hidden;
}
.blog-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__figure img {
    transform: scale(1.05);
}
.blog-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 3px;
}
.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}
.blog-card__meta {
    display: block;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.35;
}
.blog-card__excerpt {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 20px;
    flex: 1;
}
.blog-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--red);
}
.blog-card__readmore svg {
    width: 14px;
    height: 14px;
    transition: transform 0.15s ease;
}
.blog-card:hover .blog-card__readmore svg {
    transform: translateX(4px);
}
.blog-post__date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.85rem;
    margin: 16px 0 0;
}
.blog-post__date svg {
    width: 14px;
    height: 14px;
}

/* ---------- blog post: full-bleed hero banner ---------- */
.blog-hero {
    position: relative;
    height: clamp(320px, 56vh, 620px);
    overflow: hidden;
    background-color: var(--bg-card);
}
.blog-hero__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-hero + .product-detail {
    position: relative;
    z-index: 1;
    background: var(--bg);
}
.blog-hero + .product-detail .product-detail__summary {
    margin-top: 0;
}
.blog-hero .back-btn {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    margin: 0;
}
.blog-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.7) 60%, var(--bg) 100%);
}
.blog-hero__inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-hero__badge {
    position: static;
}
.blog-hero__title {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
}
.blog-hero__date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}
.blog-hero__date svg {
    width: 14px;
    height: 14px;
}


/* ---------- legal content ---------- */
.legal-content {
    max-width: 720px;
}
.legal-content .section-title {
    margin-bottom: 28px;
}
.legal-content h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 32px 0 16px;
}
.legal-content p {
    color: var(--muted);
    margin: 0 0 12px;
}
.legal-list {
    margin: 0 0 12px;
    padding-left: 22px;
    list-style: disc;
}
.legal-list li {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.legal-list li::marker {
    color: var(--red);
}
.legal-content a {
    color: var(--red);
}
.legal-content a.icon-btn {
    color: var(--white);
}

/* ---------- about page ---------- */
.page-hero {
    padding: 56px 0 60px;
    background: var(--bg-alt);
}
.page-hero .section-title {
    margin: 12px 0 20px;
}
.page-hero__subtitle {
    color: var(--muted);
    max-width: 640px;
    font-size: 1.05rem;
    margin: 12px 0 0;
}

.founder-note {
    padding: 80px 0;
}
.founder-note__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 72px;
    align-items: stretch;
}
.founder-note__mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--red);
}
.founder-note__mark--inline {
    display: block;
    font-size: 6rem;
    margin-bottom: -45px;
}
.founder-note__photo {
    width: 280px;
    height: 100%;
    min-height: 280px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.founder-note__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-note__text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 560px;
}
.founder-note__name {
    font-weight: 700;
    margin: 0;
}
.founder-note__title {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 4px 0 0;
}

.about-story {
    padding: 80px 0;
    background: var(--bg-alt);
}
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.about-story__text {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.presence {
    padding: 80px 0;
    text-align: center;
}
.presence .section-title,
.presence .page-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
}
.presence__map {
    margin: 40px 0;
    border-radius: 6px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
}
.presence__map img {
    width: 100%;
    height: auto;
    display: block;
}
.country-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.country-chip {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--muted);
}

.dealers {
    padding: 40px 0 80px;
}
.dealers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: left;
}
.dealer-group__country {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--red);
    margin: 0 0 16px;
}
.dealer-card {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}
.dealer-card:first-of-type {
    border-top: none;
}
.dealer-card__name {
    font-weight: 600;
    margin: 0 0 6px;
}
.dealer-card__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 4px;
    font-size: 0.85rem;
    color: var(--muted);
}
.dealer-card__contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.dealer-card__contact a {
    color: inherit;
}

.work-with-us {
    padding: 80px 0;
    background: var(--bg-alt);
}
.work-with-us__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}
.work-with-us__inner .page-hero__subtitle {
    margin-top: 12px;
}

/* ---------- admin dashboard ---------- */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
.admin-panel--span-2 {
    grid-column: 1 / -1;
}
.admin-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}
.admin-panel h3 {
    margin: 0 0 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.admin-panel--wide {
    margin-top: 0;
}
.admin-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 32px;
}
.admin-page-head .section-title {
    margin: 0;
}
.admin-content-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 12px;
}
.admin-page-head .admin-content-actions {
    margin: 0;
}
.admin-content-actions + .admin-layout {
    margin-top: 0;
}
.admin-table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.admin-table th {
    text-align: left;
    padding: 14px 12px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8a8a8a;
    white-space: nowrap;
}
.admin-table td {
    padding: 12px;
    border-top: 1px solid #ececec;
    vertical-align: middle;
    color: #262626;
}
.admin-table .admin-product__media {
    width: 60px;
    height: 60px;
    padding: 10px;
}
.admin-table-wrap .admin-list__desc {
    color: #8a8a8a;
}
.admin-table-wrap .admin-icon-btn {
    border-color: #ddd;
    color: #767676;
}
.admin-table-wrap .admin-icon-btn:hover {
    color: var(--red);
    border-color: var(--red);
}
.admin-table-wrap tbody tr:hover {
    background: #fafafa;
}
.admin-table__sticky-col {
    position: sticky;
    left: 0;
    background: #ffffff;
    box-shadow: 1px 0 0 #ececec;
}
.admin-table-wrap tbody tr:hover .admin-table__sticky-col {
    background: #fafafa;
}
.admin-current-file {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 6px;
}
.admin-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.admin-photo-grid__item {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.admin-photo-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.admin-photo-grid__item form {
    position: absolute;
    top: 6px;
    right: 6px;
}
.admin-photo-add {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-current-file a {
    color: var(--red);
}
.admin-panel--narrow {
    margin-top: 0;
    max-width: 460px;
}
.admin-panel--form-grid {
    margin-top: 0;
    width: 100%;
}
.admin-panel--stacked-below {
    margin-top: 24px;
}
.admin-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: 32px;
}
.admin-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    position: sticky;
    top: 24px;
}
.admin-sidebar h4 {
    margin: 0 0 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}
.admin-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.admin-sidebar__link {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--white);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.admin-sidebar__link:hover {
    background: rgba(255, 255, 255, 0.06);
}
.admin-sidebar__link.is-active {
    background: var(--red);
    color: var(--white);
}
.admin-sidebar__link--add {
    color: var(--red);
    font-weight: 600;
}
.admin-sidebar__link--add:hover {
    background: rgba(214, 39, 43, 0.12);
}
.admin-content {
    flex: 1;
    min-width: 0;
}
.admin-panel--link {
    display: block;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.admin-panel--link:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.admin-panel__subhead {
    margin: 0 0 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}
.admin-notice {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(46, 160, 67, 0.12);
    border: 1px solid rgba(46, 160, 67, 0.35);
    border-radius: 4px;
    color: #4ade80;
    font-size: 0.85rem;
}
.admin-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.admin-form.admin-form--stacked {
    flex-direction: column;
    align-items: stretch;
}
.admin-form.admin-form--stacked .form-field {
    flex: none;
}
.admin-form--tight {
    gap: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.admin-form.admin-form--tight .form-field {
    margin-bottom: 18px;
}
.admin-form--tight .admin-form__actions {
    margin-top: 14px;
}
.admin-form .form-field {
    flex: 1 1 160px;
    margin-bottom: 0;
}
.admin-form .form-field label {
    color: var(--muted);
}
.admin-form.admin-form--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}
.admin-form.admin-form--grid .form-field {
    flex: none;
    margin-bottom: 10px;
}
.admin-form.admin-form--grid .form-field--full {
    grid-column: 1 / -1;
}
.admin-form.admin-form--grid .admin-form__actions {
    grid-column: 1 / -1;
    margin-top: 10px;
}
.form-field input[type="file"] {
    padding: 8px 10px;
    font-size: 0.8rem;
}
.admin-form textarea {
    resize: vertical;
}
.admin-form__actions {
    display: flex;
    gap: 12px;
}
.admin-form__actions--final {
    margin-top: 24px;
}
.admin-empty {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 0 16px;
}
.admin-empty a {
    color: var(--red);
}
.admin-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.admin-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #262626;
}
.admin-list__title {
    font-weight: 600;
}
.admin-list__desc {
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 2px;
}
.admin-list li .admin-list__desc {
    color: #8a8a8a;
}
.admin-list li .admin-toggle {
    color: #262626;
}
.admin-list li .admin-list__edit {
    color: #767676;
}
.admin-list li .admin-list__edit:hover {
    color: var(--red);
}
.admin-list__tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--red);
    white-space: nowrap;
}
.admin-list li.admin-product {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}
.admin-product__media {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1e1e1e, #0d0d0d);
    color: var(--red);
    padding: 12px;
}
.admin-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.admin-product__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.admin-product__row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.admin-product__links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.admin-item-count {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--muted);
}
.admin-product__links a {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--red);
}
.admin-product__links a:hover {
    color: var(--white);
}
.admin-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.admin-badge--on {
    background: rgba(46, 160, 67, 0.15);
    color: #4ade80;
}
.admin-badge--off {
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted);
}
.form-field__ghost-label {
    visibility: hidden;
}
.admin-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--white);
}
.form-field label.admin-toggle {
    display: inline-flex;
}
.admin-toggle input,
.form-field--toggle .admin-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
}
.admin-toggle__track {
    width: 40px;
    height: 22px;
    background: #4a4a4a;
    border-radius: 11px;
    position: relative;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.admin-toggle__thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.2s ease;
}
.admin-toggle input:checked + .admin-toggle__track {
    background: var(--red);
}
.admin-toggle input:checked + .admin-toggle__track .admin-toggle__thumb {
    transform: translateX(18px);
}
.admin-list__edit {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--red);
    white-space: nowrap;
}
.admin-list__edit:hover {
    color: var(--white);
}
.admin-list__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.admin-list__delete-form {
    display: contents;
}
.admin-list__delete {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--muted);
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.admin-list__delete:hover {
    color: var(--red);
}
.admin-list__delete--disabled {
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}
.admin-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.admin-category-list__item {
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
}
.admin-category-list__item .admin-list__title {
    color: #262626;
}
.admin-category-list__item .admin-list__desc {
    color: #8a8a8a;
}
.admin-category-list__item .admin-caret-btn {
    border-color: #ddd;
    color: #767676;
}
.admin-category-list__item .admin-caret-btn:hover {
    color: var(--red);
    border-color: var(--red);
}
.admin-category-list__item .admin-icon-btn {
    border-color: #ddd;
    color: #767676;
}
.admin-category-list__item .admin-icon-btn:hover {
    color: var(--red);
    border-color: var(--red);
}
.admin-category-list__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 0.9rem;
}
.admin-category-list__main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.admin-caret-btn {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
}
.admin-caret-btn:hover {
    color: var(--white);
    border-color: var(--white);
}
.admin-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.15s ease;
}
.admin-caret-btn[aria-expanded="true"] .admin-caret {
    transform: rotate(-180deg);
}
.admin-category-list__products {
    list-style: none;
    margin: 0;
    padding: 4px 14px 14px;
}
.admin-category-list__products:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.admin-category-list__products li {
    display: grid;
    grid-template-columns: 1fr 100px auto;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: #262626;
    padding: 6px 0;
    border-top: 1px solid #ececec;
}
.admin-category-list__products li:first-child {
    border-top: none;
}
.admin-category-list__products li a:hover {
    color: var(--red);
}
.admin-category-list__products .admin-empty {
    margin: 0;
    padding: 6px 0;
    color: #8a8a8a;
}
.admin-category-list__products .admin-item-count {
    color: #8a8a8a;
}
.admin-icon-btn-form {
    display: contents;
}
.admin-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.admin-icon-btn svg {
    width: 14px;
    height: 14px;
}
.admin-icon-btn:hover {
    color: var(--white);
    border-color: var(--white);
}
.admin-icon-btn--danger:hover {
    color: var(--red);
    border-color: var(--red);
}
.admin-icon-btn--locked {
    opacity: 0.35;
    cursor: not-allowed;
}
.admin-icon-btn--locked:hover {
    color: var(--muted);
    border-color: var(--border);
}
.admin-spec-picker {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}
.admin-spec-dropdown {
    position: relative;
    flex: 1;
    max-width: 320px;
}
.admin-spec-dropdown__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 12px;
    color: #111111;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
}
.admin-spec-dropdown.is-open .admin-spec-dropdown__toggle {
    border-color: var(--red);
}
.admin-spec-dropdown__arrow {
    width: 0;
    height: 0;
    flex-shrink: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666666;
}
.admin-spec-dropdown__panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 5;
    max-height: 220px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    padding: 6px;
}
.admin-spec-dropdown__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 4px;
    color: #111111;
    font-size: 0.85rem;
    cursor: pointer;
}
.admin-spec-dropdown__option:hover {
    background: rgba(0, 0, 0, 0.06);
}
.admin-spec-dropdown__option--all {
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    margin-bottom: 4px;
}
.admin-spec-dropdown__option input {
    margin: 0;
}
.admin-spec-item-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--muted);
    white-space: nowrap;
}
.admin-spec-item-count input {
    width: 64px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px 10px;
    color: #111111;
    font-family: inherit;
    font-size: 0.85rem;
}
.admin-table input[type="text"] {
    width: 100%;
    min-width: 110px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px 10px;
    color: #111111;
    font-family: inherit;
    font-size: 0.85rem;
}
.admin-spec-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.admin-spec-pending {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.admin-spec-pending li {
    padding: 5px 12px;
    background: rgba(214, 39, 43, 0.12);
    border: 1px solid rgba(214, 39, 43, 0.35);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--white);
}
.admin-spec-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
}
.admin-spec-list__body {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.admin-feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 4px;
    background: linear-gradient(160deg, #1e1e1e, #0d0d0d);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
}
.admin-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 780px) {
    .admin-grid { grid-template-columns: 1fr; }
}

/* ---------- auth pages ---------- */
.auth-section {
    padding: 56px 0 100px;
}
.auth-section__inner {
    display: flex;
    justify-content: center;
}
.auth-form {
    width: 100%;
    max-width: 420px;
}
.auth-form__footnote {
    margin: 16px 0 0;
    text-align: center;
}
.auth-form__footnote a {
    color: var(--red);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .features__grid { grid-template-columns: repeat(3, 1fr); }
    .feature { border-right: none; border-bottom: 1px solid var(--border); }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-bottom: 1px solid var(--border); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .blog__grid { grid-template-columns: repeat(2, 1fr); }
    .about-story__grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials__grid { grid-template-columns: 1fr; gap: 32px; }
}

.admin-mobile-hub-wrap {
    display: none;
}
.admin-mobile-hub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 0;
}
.admin-mobile-hub__card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 12px;
    min-height: 90px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #262626;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.admin-mobile-hub__card:hover,
.admin-mobile-hub__card:active {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

@media (max-width: 640px) {
    .main-nav { display: none; }
    .header-row {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
        min-height: 68px;
    }
    .mobile-nav-toggle { display: inline-flex; }
    .logo { justify-self: center; }
    .header-actions { justify-self: end; }
    .header-actions__quote { display: none; }
    .hero { min-height: auto; }
    .hero__content { padding-top: 28px; padding-bottom: 40px; }
    .hero__title { margin-bottom: 32px; line-height: 1.4; }
    .hero__subtitle { margin-bottom: 28px; line-height: 1.7; }
    .hero__actions { flex-direction: column; align-items: stretch; margin-bottom: 32px; }
    .product-detail { padding-top: 20px; }
    .back-btn { margin-bottom: 16px; }
    /* Section-to-section padding stacks up on mobile (one section's
       bottom padding + the next one's top padding), leaving a big empty
       gap between the end of one section and the next heading. */
    .about { padding: 56px 0; }
    .products { padding: 40px 0 56px; }
    .features { padding: 40px 0; }
    .presence { padding: 48px 0; }
    .testimonials { padding: 48px 0; }
    .cta { padding: 64px 0; }
    .products__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .header-actions .btn-icon span { display: none; }
    .header-search__form { right: auto; left: 0; }
    .header-search__form input { width: 180px; }
    .blog__grid { grid-template-columns: 1fr; }
    .founder-note__grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: repeat(3, 1fr); }
    .feature { padding: 20px 10px; }
    .feature__icon { width: 24px; height: 24px; margin-bottom: 10px; }
    /* The watermark "M" in this image sits in the left ~35% of a wide
       landscape source file — background-position:center crops straight
       past it on a narrow portrait viewport with background-size:cover. */
    .about__media-bg { background-position: 18% center; }
    .footer__connect-inner { flex-direction: column; align-items: flex-start; }
    .admin-spec-picker .btn-icon span {
        display: none;
    }
    .admin-content-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-content-actions .btn {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
    .admin-mobile-hub-wrap {
        display: block;
    }
    .admin-mobile-hub-wrap.is-entered {
        display: none;
    }
    .admin-mobile-section {
        display: none;
    }
    .admin-mobile-section.is-visible {
        display: block;
    }
}
