/* ── Contact section polish (v6) ── */

/* Both columns stretch to equal height */
.kt__grid {
    align-items: stretch;
}

/* Left column: heading at top, trust points anchored near bottom */
.kt__info {
    gap: 0;
}
.kt__head {
    margin-bottom: 44px;
}
.kt__details {
    margin-bottom: 0;
}

/* Contact details: more vertical breathing room per item */
.kt__detail {
    padding: 16px 0;
}

/* Trust points: structured selling points with clear hierarchy */
.kt__trust-points {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
    padding-top: 40px;
}
.kt__trust-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--dark-border);
}
.kt__trust-point:last-child {
    border-bottom: 1px solid var(--dark-border);
}
.kt__trust-dot {
    width: 5px;
    height: 5px;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 7px;
}
.kt__trust-title {
    display: block;
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark-text);
    line-height: 1.4;
    margin-bottom: 3px;
}
.kt__trust-desc {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: var(--dark-muted);
    line-height: 1.6;
}

/* Form: more internal breathing room */
.kt__form {
    padding: 48px 40px;
}
.kt__form .form-field {
    margin-bottom: 28px;
}
.kt__form .form-row-2 {
    gap: 24px;
}
.kt__form .form-submit-row {
    margin-top: 4px;
}

/* Map below form: smaller, tidier */
.kt__mini-map--below {
    margin-top: 20px;
    aspect-ratio: 2.4 / 1;
}

/* Location line below trust points */
.kt__location-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 0;
}
.kt__location-line svg {
    width: 14px;
    height: 14px;
    stroke: var(--red);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    opacity: 0.6;
}
.kt__location-line a {
    font-family: var(--f-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: var(--dark-muted);
    text-decoration: none;
    transition: color var(--fast);
}
.kt__location-line a:hover {
    color: var(--dark-text);
}

@media (max-width: 600px) {
    .kt__form {
        padding: 28px 20px;
    }
}
@media (max-width: 1023px) {
    .kt__trust-points {
        margin-top: 40px;
    }
}

/* ─── Usluge redesign (v6) ─── */

/* Intro band */
.us-intro__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}
.us-intro__text p:first-child {
    max-width: 52ch;
}
.us-intro__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px;
    border: 1px solid var(--dark-border-2);
    min-width: 160px;
}
.us-intro__stat-num {
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--red);
}
.us-intro__stat-label {
    color: var(--dark-muted);
    text-align: center;
}
@media (max-width: 767px) {
    .us-intro__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .us-intro__stat {
        flex-direction: row;
        padding: 24px;
        min-width: 0;
    }
}

/* Horizontal process steps */
.us-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.us-step {
    display: flex;
    flex-direction: column;
    padding: 28px 24px 32px;
    border: 1px solid var(--border);
    background: var(--white);
    transition:
        border-color var(--med) var(--ease),
        background var(--med);
    position: relative;
}
.us-step::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--med) var(--ease);
}
.us-step:hover::before {
    transform: scaleX(1);
}
.us-step:hover {
    border-color: var(--border-2);
    background: var(--light);
}

.us-step__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.us-step__num {
    color: var(--red);
    font-weight: 600;
    flex-shrink: 0;
}
.us-step__line {
    flex: 1;
    height: 1px;
    background: var(--border);
}
.us-step h3 {
    margin-bottom: 10px;
}
.us-step p {
    color: var(--text-2);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 1023px) {
    .us-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .us-steps {
        grid-template-columns: 1fr;
    }
}

/* Materials cards */
.us-mats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.us-mat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 24px;
    border: 1px solid var(--dark-border-2);
    background: var(--dark-2);
    transition:
        border-color var(--med),
        background var(--med);
}
.us-mat:hover {
    border-color: var(--red);
    background: var(--dark-3);
}
.us-mat__abbr {
    font-family: var(--f-mono);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.1;
    color: var(--red);
    letter-spacing: 0.04em;
}
.us-mat__name {
    font-family: var(--f-head);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--dark-text);
    margin-top: 4px;
}
.us-mat__desc {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--dark-muted);
    margin-top: 4px;
}
@media (max-width: 1023px) {
    .us-mats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .us-mats {
        grid-template-columns: 1fr;
    }
}

/* ─── Featured Slider (v7) ─── */
.feat-slider {
    position: relative;
    overflow: hidden;
}
.feat-slider__track {
    display: flex;
    gap: 24px;
}
.feat-slider__track .pcard {
    flex-shrink: 0;
}
/* Disable scroll-reveal in slider — cards appear immediately */
.feat-slider__track .pcard.rv {
    opacity: 1 !important;
    transform: none !important;
}
.feat-slider__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--fast);
    cursor: pointer;
}
.slider-btn:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* Fix product image bg blending into section--paper */
.section--paper .pcard__img,
.feat-slider .pcard__img {
    background: var(--white);
}

@media (max-width: 600px) {
    .feat-slider__nav .link-arrow {
        display: none;
    }
}

/* ════════════════════════════════════════════════════
   HERO STAGE  (v8 — right-side product showcase redesign)
   Three swappable directions: part / slider / blueprint
   ════════════════════════════════════════════════════ */

.hero-stage {
    position: relative;
    padding: 0;
    min-height: 560px;
    isolation: isolate;
    /* Framed panel surface — slightly lifted off the hero black so the parts read
     as their own showcase. Shared by desktop and mobile for a consistent look. */
    background: var(--dark-2);
    border: 1px solid var(--dark-border);
}
.hero-stage > .hs-grid {
    position: absolute;
    inset: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    pointer-events: none;
    opacity: 0.85;
    z-index: 0;
    /* Dotted technical grid — pure CSS so it needs no in-document SVG fragment
     reference (url(#…)), which Chrome flags as "unsafe" under file://. */
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.07) 1px,
        transparent 1.5px
    );
    background-size: 22px 22px;
    background-position: 1px 1px;
}
.hero-stage .hs-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.2;
    z-index: 1;
}
.hero-stage .hs-cross::before,
.hero-stage .hs-cross::after {
    content: '';
    position: absolute;
    background: var(--dark-text);
}
.hero-stage .hs-cross::before {
    top: 0;
    left: 50%;
    width: 1px;
    height: 14px;
    margin-left: -0.5px;
}
.hero-stage .hs-cross::after {
    top: 50%;
    left: 0;
    width: 14px;
    height: 1px;
    margin-top: -0.5px;
}

/* Modes layer on top of each other; only the active one is visible */
.hs-mode {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-io);
    z-index: 2;
}
.hs-mode .mono-label,
.hs-mode .hs-cap,
.hs-mode .hs-cline__label,
.hs-mode .hs-slider__name,
.hs-mode .hs-bp__label {
    white-space: nowrap;
}
.hero-stage[data-mode='part'] .hs-mode--part {
    opacity: 1;
    pointer-events: auto;
}
.hero-stage[data-mode='slider'] .hs-mode--slider {
    opacity: 1;
    pointer-events: auto;
}
.hero-stage[data-mode='blueprint'] .hs-mode--blueprint {
    opacity: 1;
    pointer-events: auto;
}

/* Products fade in only once chroma-key has processed them — avoids white-box flash */
.hero-stage img[data-chromakey]:not([data-keyed]) {
    opacity: 0;
}
.hero-stage img[data-chromakey][data-keyed] {
    opacity: 1;
    transition: opacity 0.4s var(--ease-io);
}

/* ────── Direction A: HERO PART ────── */
.hs-mode--part {
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 24px 28px;
}
.hs-part__topbar,
.hs-part__botbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.hs-part__topbar {
    z-index: 2;
}
.hs-part__botbar {
    padding-top: 12px;
    border-top: 1px solid var(--dark-border);
}
.hs-cap {
    font-family: var(--f-mono);
    color: var(--dark-text);
    background: transparent;
    border: 1px solid var(--dark-border-2);
    padding: 5px 9px;
    font-size: 0.625rem;
    letter-spacing: 0.14em;
}
.hs-part__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    min-height: 0;
}
.hs-part__floor {
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: 65%;
    height: 16px;
    transform: translate(-50%, 50%);
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 65%
    );
    filter: blur(6px);
    pointer-events: none;
}
.hs-part__halo {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 95%;
    height: 82%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse 48% 42% at center,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.1) 32%,
            rgba(255, 255, 255, 0) 62%
        ),
        radial-gradient(
            ellipse 70% 60% at center,
            rgba(227, 6, 19, 0.18) 0%,
            rgba(227, 6, 19, 0) 68%
        );
    pointer-events: none;
    filter: blur(3px);
}
.hs-part__img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    transform: rotate(-6deg);
    filter: brightness(1.4) contrast(1.08)
        drop-shadow(0 22px 26px rgba(0, 0, 0, 0.8))
        drop-shadow(0 6px 8px rgba(0, 0, 0, 0.5));
    animation: hs-float 7s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
@keyframes hs-float {
    0%,
    100% {
        transform: rotate(-6deg) translateY(0);
    }
    50% {
        transform: rotate(-6deg) translateY(-6px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hs-part__img {
        animation: none;
    }
}

/* Callout lines (CSS, not SVG — easier to position responsively) */
.hs-cline {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    display: flex;
    align-items: center;
}
.hs-cline--dim {
    top: 12%;
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.hs-cline--dim .hs-cline__bar {
    position: relative;
    display: block;
    width: 110px;
    height: 1px;
    background: var(--red);
}
.hs-cline--dim .hs-cline__bar::before,
.hs-cline--dim .hs-cline__bar::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 1px;
    height: 9px;
    background: var(--red);
}
.hs-cline--dim .hs-cline__bar::before {
    left: 0;
}
.hs-cline--dim .hs-cline__bar::after {
    right: 0;
}
.hs-cline--dim .hs-cline__label {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    color: var(--dark-text);
    font-family: var(--f-mono);
}

.hs-cline--mat {
    bottom: 22%;
    left: 0;
    gap: 8px;
}
.hs-cline--mat .hs-cline__dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}
.hs-cline--mat .hs-cline__leader {
    width: 36px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
}
.hs-cline--mat .hs-cline__label {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    color: var(--dark-text);
    font-family: var(--f-mono);
    background: var(--dark);
    padding: 5px 8px;
    border: 1px solid var(--dark-border-2);
    white-space: nowrap;
}

/* ────── Direction B: SLIDER ────── */
.hs-mode--slider {
    display: grid;
    /* Single column, clamped to the card so no row (e.g. a long nowrap material
       string or an intrinsically wide product image) can blow the track out
       wider than the panel and push the centred part off the right edge. */
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto auto;
    padding: 24px 28px;
}
.hs-slider__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 2;
}
.hs-slider__counter {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    color: var(--dark-text);
    font-variant-numeric: tabular-nums;
}
.hs-slider__counter-sep {
    opacity: 0.35;
}
.hs-slider__counter-total {
    color: var(--dark-muted);
}
.hs-slider__dots {
    display: flex;
    gap: 7px;
}
.hs-slider__dots span {
    width: 7px;
    height: 7px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transition:
        background 0.3s,
        border-color 0.3s,
        transform 0.3s;
    cursor: pointer;
}
.hs-slider__dots span[data-active] {
    background: var(--red);
    border-color: var(--red);
}
.hs-slider__stage {
    position: relative;
    min-height: 0;
}
/* Signature: faint outlined slide numeral behind the product — editorial
   marker that reinforces "a curated selection" without competing with the part */
.hs-slider__ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -56%);
    font-family: var(--f-head);
    font-weight: 700;
    font-size: clamp(10rem, 24vw, 17rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.hs-slider__floor {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 94%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse 56% 52% at center,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.17) 36%,
            rgba(255, 255, 255, 0) 66%
        ),
        radial-gradient(
            ellipse 76% 66% at center,
            rgba(227, 6, 19, 0.24) 0%,
            rgba(227, 6, 19, 0) 72%
        );
    filter: blur(5px);
    pointer-events: none;
}
.hs-slider__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hs-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity 0.65s var(--ease-io),
        transform 0.65s var(--ease-io);
}
.hs-slide[data-active] {
    opacity: 1;
    transform: scale(1);
}
.hs-slide img {
    max-width: 94%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.74) contrast(1.14) saturate(1.08)
        drop-shadow(0 18px 30px rgba(0, 0, 0, 0.58));
}
.hs-slider__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
}
.hs-slider__name {
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--dark-text);
    letter-spacing: -0.005em;
    line-height: 1.3;
}
/* Datasheet footer: part number on the left, the "open the record" action on
   the right — the natural spec-sheet pairing. */
.hs-slider__specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
}
.hs-slider__spec {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
.hs-slider__spec-label {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    color: var(--dark-muted);
}
.hs-slider__code {
    color: var(--red);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}
/* Action chip — a datasheet control, not a loud CTA: hairline border in the
   card's own charcoal, mono uppercase micro-type, single red accent on the
   arrow (echoes the red SKU). Reuses the site's arrow-nudge motion. */
.hs-slider__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: 0 0 auto;
    padding: 11px 15px;
    border: 1px solid var(--dark-border);
    color: var(--dark-text);
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition:
        border-color var(--fast) var(--ease),
        color var(--fast) var(--ease);
}
.hs-slider__cta .arr {
    color: var(--red);
    transition: transform var(--fast) var(--ease);
}
.hs-slider__cta:hover {
    border-color: var(--red);
}
.hs-slider__cta:hover .arr {
    transform: translateX(4px);
}
.hs-slider__cta:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}
.hs-slider__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
}
.hs-slider__progress {
    flex: 1;
    height: 1px;
    background: var(--dark-border);
    position: relative;
}
.hs-slider__progress span {
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    width: 0;
    background: var(--red);
}

/* ────── Direction C: BLUEPRINT ────── */
.hs-mode--blueprint {
    display: grid;
    place-items: center;
    padding: 24px 28px;
}
.hs-bp__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hs-bp__outer {
    animation: hs-spin-cw 90s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.hs-bp__mid {
    animation: hs-spin-ccw 70s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.hs-bp__star {
    animation: hs-float-y 8s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes hs-spin-cw {
    to {
        transform: rotate(360deg);
    }
}
@keyframes hs-spin-ccw {
    to {
        transform: rotate(-360deg);
    }
}
@keyframes hs-float-y {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hs-bp__outer,
    .hs-bp__mid,
    .hs-bp__star {
        animation: none;
    }
}
.hs-bp__label {
    position: absolute;
    font-family: var(--f-mono);
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    color: var(--dark-muted);
    z-index: 2;
}
.hs-bp__label[data-pos='tl'] {
    top: 24px;
    left: 28px;
}
.hs-bp__label[data-pos='tr'] {
    top: 24px;
    right: 28px;
}
.hs-bp__label[data-pos='bl'] {
    bottom: 24px;
    left: 28px;
}
.hs-bp__label[data-pos='br'] {
    bottom: 24px;
    right: 28px;
}

/* ────── Mobile ────── */
@media (max-width: 1023px) {
    .hero-stage {
        min-height: 380px;
    }
    .hs-mode--part,
    .hs-mode--slider,
    .hs-mode--blueprint {
        padding: 20px;
    }
    .hs-cline--dim {
        display: none;
    }
    .hs-cline--mat .hs-cline__leader {
        width: 20px;
    }
}

/* ────── Phones: promote the product showcase to a hero in its own right ──────
   The bigger, brighter, better-lit part render and the framed panel surface now
   live in the base rules (.hero-stage / .hs-slide img / .hs-slider__floor) so
   they apply on desktop too. Here we add only the phone-specific height. */
@media (max-width: 767px) {
    .hero-stage {
        min-height: clamp(400px, 58vh, 480px);
    }
    .hs-mode--slider {
        padding: 22px 20px;
    }
    /* Give the caption a touch more separation from the stage */
    .hs-slider__meta {
        padding-top: 18px;
    }
    /* Narrow card: stack the footer so the action becomes a full-width,
       comfortably tappable control below the part number. */
    .hs-slider__specs {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .hs-slider__cta {
        padding: 13px 16px;
    }
    .hs-slider__controls {
        margin-top: 18px;
    }
}

/* ════════════════════════════════════════════════════
   HERO STAGE — LIGHT VARIANT  ("Engineered Clarity", light)
   Opt-in via .hero-stage--light. Converts the showcase card to a
   premium light surface while preserving the system identity:
   single red accent (#E30613), charcoal/grey neutrals, technical
   precision. Scoped overrides only — the dark base is untouched, so
   the hidden part/blueprint modes keep their original styling.
   ════════════════════════════════════════════════════ */

.hero-stage--light {
    /* Pure white surface so the products read as the hero — maximum figure/ground
     separation. Depth comes from the hairline border, soft outer shadow, and the
     product contact shadow rather than from a surface tint. */
    background: #ffffff;
    border: 1px solid rgba(20, 20, 22, 0.08);
    box-shadow: 0 8px 32px rgba(20, 20, 22, 0.08);
}

/* Blueprint dot grid — inverted to charcoal at very low opacity */
.hero-stage--light > .hs-grid {
    background-image: radial-gradient(
        rgba(20, 20, 22, 0.06) 1px,
        transparent 1.5px
    );
}

/* Centermark crosshair — charcoal on light */
.hero-stage--light .hs-cross::before,
.hero-stage--light .hs-cross::after {
    background: #1a1a1d;
}

/* Corner brackets — crisp charcoal registration marks at full strength */
.hero-stage--light.ticks > i {
    border-color: #1a1a1d;
}

/* Optional brand motif: faint diagonal red "slat" hatch fading from the
   bottom-right corner. Sits with the grid (z-index 0), behind all content. */
.hero-stage--light::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 168px;
    height: 168px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(227, 6, 19, 0.07) 0 1px,
        transparent 1px 9px
    );
    -webkit-mask: radial-gradient(
        circle at bottom right,
        #000,
        transparent 70%
    );
    mask: radial-gradient(circle at bottom right, #000, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Slider mode, light ── */

/* Eyebrow — charcoal */
.hero-stage--light .hs-slider__eyebrow {
    color: #1a1a1d;
}

/* Pagination dots — active red, inactive charcoal at 20% */
.hero-stage--light .hs-slider__dots span {
    border-color: rgba(20, 20, 22, 0.2);
    background: transparent;
    position: relative;
}
/* Expand the clickable target to ~24px without changing the 7px visual */
.hero-stage--light .hs-slider__dots span::after {
    content: '';
    position: absolute;
    inset: -9px;
}
.hero-stage--light .hs-slider__dots span[data-active] {
    background: var(--red);
    border-color: var(--red);
}

/* Product render — replace the dark radial glow with a soft elliptical
   contact shadow that grounds the parts, studio-photography style. */
.hero-stage--light .hs-slider__floor {
    top: 60%;
    bottom: auto;
    left: 50%;
    width: 68%;
    height: 22%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse 50% 50% at center,
        rgba(20, 20, 22, 0.17) 0%,
        rgba(20, 20, 22, 0.07) 44%,
        rgba(20, 20, 22, 0) 72%
    );
    filter: blur(9px);
}

/* Renders were brightened for the dark stage — restore natural levels on
   light and swap to a soft charcoal drop-shadow. */
.hero-stage--light .hs-slide img {
    filter: contrast(1.03) saturate(1.02)
        drop-shadow(0 18px 22px rgba(20, 20, 22, 0.16))
        drop-shadow(0 5px 9px rgba(20, 20, 22, 0.1));
}

/* Caption — charcoal title, red SKU (the single hero accent), grey meta */
.hero-stage--light .hs-slider__name {
    color: #141416;
}
.hero-stage--light .hs-slider__mat {
    color: var(--text-2);
}
.hero-stage--light .hs-slider__sep {
    background: rgba(20, 20, 22, 0.28);
}

/* Progress rule — charcoal hairline track, red fill (signature) stays */
.hero-stage--light .hs-slider__progress {
    background: rgba(20, 20, 22, 0.1);
}

/* ── Light slider: studio-datasheet refinements ── */

/* Keep the surface white, but add a barely-there studio falloff so the part
   reads as photographed under a soft top light rather than pasted on flat white. */
.hero-stage--light {
    background: radial-gradient(
        125% 90% at 50% -10%,
        #ffffff 0%,
        #fafafb 70%,
        #f6f6f8 100%
    );
}

/* Spec-sheet structure: hairline rule separating the header from the stage */
.hero-stage--light .hs-slider__topbar {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(20, 20, 22, 0.07);
}

/* Position counter — charcoal index, grey total */
.hero-stage--light .hs-slider__counter {
    color: #141416;
}
.hero-stage--light .hs-slider__counter-sep {
    color: rgba(20, 20, 22, 0.3);
}
.hero-stage--light .hs-slider__counter-total {
    color: var(--text-2);
}

/* Ghost numeral — charcoal hairline outline, kept faint on white */
.hero-stage--light .hs-slider__ghost {
    -webkit-text-stroke: 1px rgba(20, 20, 22, 0.055);
}

/* Datasheet footer — grey label, charcoal action chip on the white surface */
.hero-stage--light .hs-slider__spec-label {
    color: var(--text-2);
}
.hero-stage--light .hs-slider__cta {
    border-color: rgba(20, 20, 22, 0.14);
    color: #141416;
}
.hero-stage--light .hs-slider__cta:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Larger product with a tighter, more believable studio contact shadow */
.hero-stage--light .hs-slide img {
    max-width: 98%;
    filter: contrast(1.04) saturate(1.03)
        drop-shadow(0 22px 26px rgba(20, 20, 22, 0.17))
        drop-shadow(0 7px 11px rgba(20, 20, 22, 0.11));
}
.hero-stage--light .hs-slider__floor {
    top: 76%;
    bottom: auto;
    left: 50%;
    width: 56%;
    height: 16%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse 50% 50% at center,
        rgba(20, 20, 22, 0.22) 0%,
        rgba(20, 20, 22, 0.09) 46%,
        rgba(20, 20, 22, 0) 72%
    );
    filter: blur(8px);
}
