:root {
    --ink: #123241;
    --ink-soft: #5d7580;
    --teal-950: #08524c;
    --teal-900: #0a6a61;
    --teal-800: #0b8e84;
    --teal-700: #15aba0;
    --teal-500: #28c2b6;
    --mint: #e9f7f5;
    --lime: #c8de00;
    --cream: #f6f8f5;
    --white: #ffffff;
    --line: rgba(18, 50, 65, .10);
    --shadow: 0 24px 60px rgba(7, 84, 77, .14);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: -100px; z-index: 1000; padding: 10px 16px; color: #fff; background: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 18px; }

.site-header {
    position: fixed;
    inset: 12px 0 auto;
    z-index: 50;
}
.site-header .container {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(7, 52, 65, .08);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease, transform .25s ease;
}
.site-header.is-scrolled .container {
    background: rgba(255,255,255,.95);
    box-shadow: 0 22px 48px rgba(7, 52, 65, .12);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-inline: 18px; }
.brand { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; }
.brand-logo-wrap { display: grid; place-items: center; width: 262px; height: 80px; padding: 10px 14px; border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(6,79,74,.10); }
.brand-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: clamp(1rem, 1.5vw, 1.14rem); }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: .78rem; letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { text-decoration: none; font-size: .98rem; font-weight: 800; }
.site-nav a:not(.nav-cta):hover { color: var(--teal-800); }
.nav-cta { padding: 14px 22px; color: #fff; background: linear-gradient(135deg, var(--teal-900), var(--teal-800)); border-radius: 999px; box-shadow: 0 12px 26px rgba(11,142,132,.25); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 12px; background: var(--mint); cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--teal-900); border-radius: 2px; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 152px 0 88px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 32%),
        linear-gradient(118deg, #07554f 0%, #0b827a 55%, #22b9ad 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(to top, rgba(255,255,255,.08), transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, .95fr); align-items: center; gap: 58px; }
.hero-copy h1 { max-width: 700px; margin: 18px 0 24px; font-size: clamp(3.1rem, 6vw, 5.75rem); line-height: .98; letter-spacing: -.055em; }
.hero-copy h1 em { color: var(--lime); font-style: normal; }
.hero-copy > p { max-width: 680px; margin: 0; color: rgba(255,255,255,.85); font-size: 1.1rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 900; }
.eyebrow > span { width: 34px; height: 2px; background: var(--lime); }
.eyebrow-dark { color: var(--teal-800); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--teal-950); background: var(--lime); box-shadow: 0 16px 30px rgba(0,0,0,.14); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.button-light { color: var(--teal-950); background: #fff; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-badges span { padding: 9px 14px; color: rgba(255,255,255,.92); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .82rem; font-weight: 700; }
.hero-metrics { display: flex; gap: 34px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-metrics div { display: flex; flex-direction: column; }
.hero-metrics strong { font-size: 1.25rem; }
.hero-metrics span { color: rgba(255,255,255,.68); font-size: .8rem; }

.hero-visual { position: relative; min-height: 610px; }
.hero-showcase {
    position: absolute;
    border: 1px solid rgba(255,255,255,.30);
    background: rgba(255,255,255,.96);
    box-shadow: 0 34px 80px rgba(0,0,0,.22);
    overflow: hidden;
}
.hero-showcase-main {
    inset: 24px 28px 110px 0;
    padding: 20px;
    border-radius: 30px;
}
.hero-showcase-sub {
    right: 0;
    bottom: 10px;
    width: 58%;
    padding: 14px;
    border-radius: 26px;
}
.showcase-head, .showcase-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.showcase-head { margin-bottom: 12px; }
.showcase-label { color: var(--teal-800); font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.showcase-dot { width: 11px; height: 11px; border-radius: 50%; background: linear-gradient(135deg, var(--lime), #99b300); }
.showcase-browser, .browser-bar { display: flex; gap: 6px; align-items: center; }
.showcase-browser { height: 26px; margin-bottom: 12px; }
.showcase-browser span, .browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #d1dfdc; }
.showcase-screen, .product-shot-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9.1;
    padding: 14px;
    background: linear-gradient(180deg, #edf5f4, #f8fbfb);
    border: 1px solid rgba(16, 47, 61, .06);
    border-radius: 18px;
}
.showcase-screen img, .product-shot-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 12px;
}
.showcase-footer { padding: 16px 4px 4px; color: var(--ink); }
.showcase-footer small { display: block; color: var(--ink-soft); }
.showcase-footer strong { display: block; margin-top: 2px; }
.showcase-footer a {
    flex: 0 0 auto;
    padding: 10px 14px;
    color: var(--teal-900);
    background: var(--mint);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}
.showcase-footer.compact { justify-content: flex-start; padding-top: 12px; }
.floating-note { position: absolute; display: flex; align-items: center; gap: 9px; padding: 12px 15px; color: var(--ink); background: #fff; border-radius: 14px; box-shadow: 0 16px 36px rgba(0,0,0,.14); font-size: .8rem; font-weight: 800; }
.floating-note span { display: grid; place-items: center; width: 24px; height: 24px; color: #fff; background: var(--teal-700); border-radius: 8px; }
.note-one { left: -12px; bottom: 96px; }
.note-two { right: -18px; top: 24px; }
.hero-orb { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero-orb-one { width: 520px; height: 520px; right: -200px; top: -170px; }
.hero-orb-two { width: 340px; height: 340px; left: -180px; bottom: -180px; }

.trust-strip { color: var(--teal-950); background: var(--lime); }
.trust-list { min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 20px; overflow: hidden; white-space: nowrap; font-size: .77rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.trust-list i { flex: 0 0 6px; width: 6px; height: 6px; background: var(--teal-900); border-radius: 50%; }

.section { padding: 104px 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 64px; margin-bottom: 42px; }
.section-heading h2, .intro-copy h2, .strengths-heading h2, .cta-card h2 { margin: 14px 0 0; font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.06; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--ink-soft); }

.intro-section { background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.intro-copy p { max-width: 660px; margin: 20px 0 0; color: var(--ink-soft); font-size: 1.04rem; }
.intro-cards { display: grid; gap: 16px; }
.intro-cards article { padding: 28px; background: linear-gradient(180deg, #ffffff, #f7fbfa); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 14px 35px rgba(16,47,61,.05); }
.intro-cards strong { display: block; margin-bottom: 8px; font-size: 1.02rem; }
.intro-cards p { margin: 0; color: var(--ink-soft); }

.products-section { background: var(--cream); }
.products-list { display: grid; gap: 28px; }
.product-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: 0 16px 46px rgba(16,47,61,.07); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); align-items: center; gap: 18px; padding: 18px; }
.product-card:nth-child(even) .product-layout { grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr); }
.product-card:nth-child(even) .product-shot { order: 2; }
.product-card:nth-child(even) .product-content { order: 1; }
.product-shot { position: relative; padding: 16px; background: linear-gradient(145deg, #eff6f5, #e4f0ee); border-radius: 28px; }
.product-card-lime .product-shot { background: linear-gradient(145deg, #f4f7de, #ebf2ca); }
.browser-bar { height: 30px; padding-inline: 2px; margin-bottom: 12px; }
.product-number { position: absolute; right: 22px; bottom: 22px; display: grid; place-items: center; width: 52px; height: 52px; color: #fff; background: rgba(6,79,74,.88); border-radius: 50%; font-size: .82rem; font-weight: 900; box-shadow: 0 12px 24px rgba(6,79,74,.2); }
.product-content { padding: 14px 20px 14px 8px; }
.product-topline { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; color: var(--teal-800); font-size: .74rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-tag { padding: 6px 10px; color: var(--teal-900); background: var(--mint); border-radius: 999px; letter-spacing: 0; text-transform: none; }
.product-card-lime .product-tag { color: #617100; background: #f1f5cb; }
.product-content h3 { margin: 16px 0 12px; font-size: clamp(1.9rem, 2.2vw, 2.3rem); line-height: 1.08; }
.product-content > p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.feature-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; padding: 0; list-style: none; }
.feature-list li { padding: 8px 12px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; background: #fff; }
.product-meta { margin-bottom: 20px; padding: 16px 18px; border: 1px dashed rgba(11, 142, 132, .24); border-radius: 18px; background: rgba(11, 142, 132, .04); }
.product-meta small { display: block; color: var(--ink-soft); }
.product-meta strong { display: block; margin-top: 3px; font-size: .98rem; }
.product-link { display: inline-flex; align-items: center; gap: 10px; padding: 13px 18px; color: #fff; background: linear-gradient(135deg, var(--teal-900), var(--teal-800)); border-radius: 999px; text-decoration: none; font-weight: 900; box-shadow: 0 12px 22px rgba(11, 142, 132, .18); }
.product-link span { transition: transform .2s ease; }
.product-link:hover span { transform: translate(3px, -3px); }

.strengths-section { color: #fff; background: linear-gradient(180deg, var(--teal-950), #083841); }
.strengths-heading { max-width: 760px; }
.strengths-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.strengths-grid article { min-height: 260px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.05); }
.icon-box { display: grid; place-items: center; width: 52px; height: 52px; color: var(--teal-950); background: var(--lime); border-radius: 15px; font-size: 1.4rem; }
.strengths-grid h3 { margin: 38px 0 10px; font-size: 1.28rem; }
.strengths-grid p { margin: 0; color: rgba(255,255,255,.72); font-size: .94rem; }

.cta-section { padding-top: 64px; background: var(--cream); }
.cta-card { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding: 62px; color: #fff; background: linear-gradient(120deg, var(--teal-800), var(--teal-500)); border-radius: 36px; box-shadow: var(--shadow); }
.cta-card h2 { max-width: 790px; }
.cta-card .button { flex: 0 0 auto; }

.site-footer { padding: 74px 0 28px; color: rgba(255,255,255,.72); background: #092e36; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 75px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand img { width: 220px; padding: 8px 12px; background: #fff; border-radius: 14px; }
.footer-grid h2 { margin: 0 0 15px; color: #fff; font-size: .94rem; }
.footer-grid p { margin: 4px 0; }
.footer-grid a { margin: 4px 0; text-decoration: none; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); font-size: .83rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; text-decoration: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { width: min(100%, 760px); min-height: 620px; }
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .intro-grid { grid-template-columns: 1fr; }
    .strengths-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { gap: 40px; }
}

@media (max-width: 920px) {
    .nav-toggle { display: block; }
    .site-nav { position: absolute; left: 20px; right: 20px; top: 92px; display: none; flex-direction: column; align-items: stretch; gap: 8px; padding: 16px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 10px 12px; color: var(--ink); }
    .nav-cta { color: #fff !important; text-align: center; }
    .product-layout,
    .product-card:nth-child(even) .product-layout { grid-template-columns: 1fr; }
    .product-card:nth-child(even) .product-shot,
    .product-card:nth-child(even) .product-content { order: initial; }
    .product-content { padding: 4px 8px 14px; }
    .cta-card { flex-direction: column; align-items: flex-start; padding: 44px; }
}

@media (max-width: 760px) {
    .site-header { inset: 10px 0 auto; }
    .nav-wrap { min-height: 78px; padding-inline: 14px; }
    .brand-copy { display: none; }
    .brand-logo-wrap { width: 200px; height: 64px; }
    .hero { padding: 134px 0 72px; }
    .hero-copy h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
    .hero-copy > p { font-size: 1rem; }
    .hero-badges { gap: 8px; }
    .hero-badges span { font-size: .76rem; }
    .hero-metrics { gap: 18px; flex-wrap: wrap; }
    .hero-visual { min-height: 490px; }
    .hero-showcase-main { inset: 14px 0 110px 0; padding: 14px; }
    .hero-showcase-sub { width: 72%; }
    .note-one { left: 0; bottom: 72px; }
    .note-two { right: 0; top: 10px; }
    .section { padding: 80px 0; }
    .section-heading h2, .intro-copy h2, .strengths-heading h2, .cta-card h2 { font-size: 2.55rem; }
    .strengths-grid { grid-template-columns: 1fr; }
    .strengths-grid article { min-height: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 26px), var(--container)); }
    .brand-logo-wrap { width: 176px; height: 58px; }
    .site-nav { left: 13px; right: 13px; }
    .hero-copy h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
    .hero-visual { min-height: 400px; }
    .hero-showcase-main { inset: 10px 0 96px 0; }
    .hero-showcase-sub { width: 78%; bottom: 0; }
    .showcase-screen, .product-shot-frame { padding: 10px; }
    .floating-note { font-size: .72rem; padding: 10px 12px; }
    .floating-note span { width: 20px; height: 20px; }
    .trust-list { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
    .product-shot { padding: 12px; border-radius: 22px; }
    .product-content h3 { font-size: 1.7rem; }
    .cta-card { padding: 34px 26px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ===== Katalog horizontal v1.3 ===== */
.showcase-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    color: #687500;
    background: #f2f6b4;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
}
.showcase-screen-anfis { aspect-ratio: 16 / 8.15; }
.hero-showcase-main { inset: 18px 18px 108px 0; }
.hero-showcase-sub { width: 54%; }
.floating-note span { min-width: 24px; width: auto; padding-inline: 5px; }

.intro-cards article {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: start;
    gap: 16px;
}
.intro-cards article > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--teal-900);
    background: var(--mint);
    border-radius: 15px;
    font-size: .74rem;
    font-weight: 900;
}

.section-side { display: grid; justify-items: start; gap: 20px; }
.carousel-controls { display: inline-flex; align-items: center; gap: 12px; }
.carousel-button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--teal-950);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(16,47,61,.08);
    cursor: pointer;
    font-size: 1.18rem;
    transition: transform .2s ease, color .2s ease, background .2s ease;
}
.carousel-button:hover:not(:disabled) { transform: translateY(-2px); color: #fff; background: var(--teal-800); }
.carousel-button:disabled { opacity: .38; cursor: not-allowed; }
.carousel-counter { min-width: 65px; color: var(--ink-soft); font-size: .84rem; text-align: center; }
.carousel-counter strong { color: var(--teal-900); font-size: 1.08rem; }

.products-section { overflow: hidden; }
.products-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px max(20px, calc((100vw - var(--container)) / 2)) 28px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(20px, calc((100vw - var(--container)) / 2));
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(11,142,132,.38) transparent;
}
.products-viewport::-webkit-scrollbar { height: 8px; }
.products-viewport::-webkit-scrollbar-track { background: transparent; }
.products-viewport::-webkit-scrollbar-thumb { background: rgba(11,142,132,.34); border-radius: 999px; }
.products-track {
    display: flex;
    gap: 26px;
    width: max-content;
}
.products-track .product-card {
    flex: 0 0 min(1020px, calc(100vw - max(76px, calc((100vw - var(--container)) / 2 + 56px))));
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
    box-shadow: 0 22px 56px rgba(16,47,61,.09);
}
.products-track .product-card:last-child { margin-right: max(20px, calc((100vw - var(--container)) / 2)); }
.products-track .product-layout,
.products-track .product-card:nth-child(even) .product-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
}
.products-track .product-card:nth-child(even) .product-shot,
.products-track .product-card:nth-child(even) .product-content { order: initial; }
.products-track .product-shot-frame { aspect-ratio: 16 / 8.55; }
.product-card-aqua .product-shot { background: linear-gradient(145deg, #e8f8f6, #d9f2ee); }
.product-card-aqua .product-tag { color: #08776f; background: #dff7f3; }
.product-card-aqua .product-number { background: linear-gradient(135deg, #0a8178, #16b4a8); }
.product-card-aqua .product-link { background: linear-gradient(135deg, #08776f, #13aaa0); }
.carousel-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hint-line { position: relative; width: 100px; height: 2px; overflow: hidden; background: rgba(11,142,132,.16); }
.hint-line i { position: absolute; inset: 0 auto 0 0; width: 38px; background: var(--teal-800); animation: carousel-hint 1.8s ease-in-out infinite; }
@keyframes carousel-hint { 0%,100% { transform: translateX(0); } 50% { transform: translateX(62px); } }

@media (max-width: 1180px) {
    .products-track .product-card {
        flex-basis: min(900px, calc(100vw - 70px));
    }
}

@media (max-width: 920px) {
    .products-track .product-layout,
    .products-track .product-card:nth-child(even) .product-layout { grid-template-columns: 1fr; }
    .products-track .product-card { flex-basis: calc(100vw - 48px); }
    .products-viewport { padding-inline: 24px; scroll-padding-inline: 24px; }
    .products-track .product-card:last-child { margin-right: 24px; }
    .section-side { justify-items: start; }
}

@media (max-width: 560px) {
    .products-track { gap: 16px; }
    .products-track .product-card { flex-basis: calc(100vw - 30px); }
    .products-viewport { padding-inline: 15px; scroll-padding-inline: 15px; }
    .products-track .product-card:last-child { margin-right: 15px; }
    .carousel-button { width: 42px; height: 42px; }
    .product-layout { padding: 12px; }
    .product-content { padding: 6px 8px 14px; }
    .product-shot-frame { aspect-ratio: 16 / 9.2; }
    .hero-showcase-sub { width: 74%; }
    .note-one { bottom: 62px; }
}

section[id] { scroll-margin-top: 118px; }
@media (max-width: 760px) {
    section[id] { scroll-margin-top: 104px; }
}
