:root {
    --color-black: #101214;
    --color-charcoal: #171a1d;
    --color-grey: #6f7782;
    --color-light-grey: #f4f6f8;
    --color-border: #e2e6ea;
    --color-white: #ffffff;
    --color-accent: #0f4c81;
    --color-accent-dark: #0a355b;
    --font-main: Arial, Helvetica, sans-serif;
    --container: 1200px;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(16, 18, 20, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.6;
}

body.has-mobile-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin-bottom: 28px;
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 22px;
}

h3 {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

p {
    color: var(--color-grey);
    font-size: 17px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.button-primary:hover {
    background: var(--color-accent-dark);
}

.button-secondary {
    border-color: var(--color-border);
    color: var(--color-black);
    background: var(--color-white);
}

.button-light {
    background: var(--color-white);
    color: var(--color-black);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 14px;
}

.button-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 230, 234, 0.7);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 50px rgba(16, 18, 20, 0.08);
}

.site-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo,
.site-logo__text {
    display: inline-flex;
    align-items: center;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.site-nav__menu,
.footer-menu,
.mobile-menu__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav__menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav__menu a {
    color: var(--color-charcoal);
    font-size: 15px;
    font-weight: 700;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-grey);
    font-size: 13px;
    font-weight: 800;
}

.language-switcher .is-active {
    color: var(--color-black);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-black);
}

.mobile-menu {
    display: none;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 72% 18%, rgba(15, 76, 129, 0.18), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f3f6f9 100%);
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 70px;
    align-items: center;
}

.home-hero__content p {
    max-width: 620px;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.home-hero__visual {
    min-height: 560px;
    position: relative;
    border-radius: 40px;
    background:
        linear-gradient(145deg, rgba(16, 18, 20, 0.92), rgba(34, 39, 44, 0.92)),
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.18), transparent 34%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.home-hero__visual::before {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.home-hero__visual::after {
    content: "SPEK";
    position: absolute;
    right: -20px;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.06);
    font-size: 150px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.product-orbit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.product-orbit__card {
    position: relative;
    z-index: 2;
    width: min(78%, 380px);
    padding: 34px;
    border-radius: 28px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.product-orbit__card span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.product-orbit__card strong {
    display: block;
    font-size: 42px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    margin-bottom: 34px;
    background: linear-gradient(135deg, var(--color-accent), #8fb8d8);
}

.category-card p {
    font-size: 15px;
}

.category-card__link {
    margin-top: auto;
    color: var(--color-accent);
    font-weight: 800;
}

.finder-preview {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.finder-preview p,
.finder-preview .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.finder-preview__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.finder-preview__mockup {
    display: grid;
    gap: 18px;
}

.finder-step {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px;
    border-radius: 24px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.finder-step span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 900;
}

.finder-step.is-active {
    background: var(--color-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--color-light-grey);
}

.feature-card p {
    font-size: 15px;
}

.catalogue-preview__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px;
    border-radius: 34px;
    background: var(--color-light-grey);
}

.catalogue-preview__box p {
    max-width: 720px;
}

.store-preview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.map-placeholder {
    min-height: 420px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(15, 76, 129, 0.18), rgba(16, 18, 20, 0.05)),
        var(--color-light-grey);
    border: 1px solid var(--color-border);
}

.map-placeholder span {
    color: var(--color-accent);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.b2b-cta {
    padding: 80px 0;
}

.b2b-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    border-radius: 34px;
    color: var(--color-white);
    background:
        radial-gradient(circle at 80% 10%, rgba(255,255,255,0.18), transparent 34%),
        var(--color-accent);
}

.b2b-cta p,
.b2b-cta .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    padding: 80px 0 30px;
    background: var(--color-black);
    color: var(--color-white);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
}

.site-footer__logo {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 900;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__column h3 {
    color: var(--color-white);
    font-size: 16px;
}

.footer-menu li + li {
    margin-top: 10px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
    .site-nav,
    .site-header__actions .button-small {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        inset: 84px 0 0;
        z-index: 999;
        display: block;
        pointer-events: none;
        opacity: 0;
        background: var(--color-white);
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu.is-open {
        pointer-events: auto;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu__inner {
        width: min(100% - 40px, var(--container));
        margin: 0 auto;
        padding: 34px 0;
    }

    .mobile-menu__nav {
        display: grid;
        gap: 18px;
        margin-bottom: 28px;
    }

    .mobile-menu__nav a {
        font-size: 26px;
        font-weight: 800;
    }

    .home-hero__grid,
    .finder-preview__grid,
    .store-preview__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 460px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 76px 0;
    }

    .home-hero {
        padding: 70px 0;
    }

    .home-hero__visual {
        min-height: 340px;
        border-radius: 28px;
    }

    .hero-actions,
    .catalogue-preview__box,
    .b2b-cta__inner,
    .site-footer__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .category-grid,
    .features-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .catalogue-preview__box,
    .b2b-cta__inner {
        padding: 32px;
        border-radius: 26px;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .mobile-menu {
        inset-top: 74px;
    }
}

.page-hero {
    padding: 110px 0 70px;
    background:
        radial-gradient(circle at 82% 18%, rgba(15, 76, 129, 0.14), transparent 30%),
        var(--color-light-grey);
}

.page-hero h1 {
    max-width: 900px;
}

.page-hero p {
    max-width: 680px;
    font-size: 19px;
}

.product-category-nav {
    position: sticky;
    top: 84px;
    z-index: 80;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.product-category-nav__inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.product-category-pill {
    flex: 0 0 auto;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    color: var(--color-charcoal);
    font-size: 14px;
    font-weight: 800;
    background: var(--color-white);
}

.product-category-pill.is-active,
.product-category-pill:hover {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.products-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 160px;
}

.product-filters {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: 0 14px 50px rgba(16, 18, 20, 0.05);
}

.product-filters h2 {
    font-size: 24px;
    margin-bottom: 22px;
}

.filter-group {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.filter-group label {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-charcoal);
}

.filter-group select,
.spek-form input,
.spek-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-white);
    color: var(--color-black);
    font: inherit;
}

.spek-form textarea {
    padding-top: 14px;
    resize: vertical;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.products-toolbar p {
    margin: 0;
    font-weight: 800;
    color: var(--color-charcoal);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-card__image {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    background: var(--color-light-grey);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.product-card__placeholder,
.product-gallery__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: rgba(16, 18, 20, 0.12);
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.product-card__category {
    margin-bottom: 10px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card__title {
    font-size: 22px;
    margin-bottom: 8px;
}

.product-card__code {
    margin-bottom: 12px;
    color: var(--color-charcoal);
    font-size: 14px;
    font-weight: 800;
}

.product-card__excerpt {
    font-size: 15px;
}

.product-card__link {
    margin-top: auto;
    color: var(--color-accent);
    font-weight: 900;
}

.pagination {
    margin-top: 44px;
}

.pagination .nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: grid;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    font-weight: 800;
}

.pagination .current {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.single-product-hero {
    padding: 90px 0;
    background: var(--color-light-grey);
}

.single-product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: center;
}

.product-gallery__main {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 34px;
    background: var(--color-white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 44px;
}

.product-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-gallery__thumb {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-white);
    overflow: hidden;
}

.single-product-summary h1 {
    font-size: clamp(40px, 5vw, 72px);
}

.product-code {
    color: var(--color-charcoal);
    font-weight: 700;
}

.single-product-summary__excerpt {
    font-size: 19px;
}

.single-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.product-main-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 70px;
    align-items: start;
}

.content-area {
    color: var(--color-grey);
    font-size: 17px;
}

.product-specs {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: 0 14px 50px rgba(16, 18, 20, 0.05);
}

.product-specs h2 {
    font-size: 28px;
}

.specs-list {
    margin: 0;
}

.specs-list__row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.specs-list__row:last-child {
    border-bottom: 0;
}

.specs-list dt {
    color: var(--color-grey);
    font-size: 14px;
    font-weight: 800;
}

.specs-list dd {
    margin: 0;
    color: var(--color-black);
    font-weight: 800;
}

.downloads-box,
.cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px;
    border-radius: 34px;
}

.downloads-box {
    background: var(--color-light-grey);
}

.downloads-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-strip {
    padding: 80px 0;
}

.cta-strip__inner {
    color: var(--color-white);
    background:
        radial-gradient(circle at 80% 10%, rgba(255,255,255,0.18), transparent 34%),
        var(--color-accent);
}

.cta-strip p,
.cta-strip .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.catalogue-grid,
.careers-grid {
    display: grid;
    gap: 22px;
}

.catalogue-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
}

.catalogue-card__image {
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-light-grey);
}

.catalogue-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-locator-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.partners-map {
    position: sticky;
    top: 120px;
    min-height: 620px;
    border-radius: 34px;
    background: var(--color-light-grey);
    overflow: hidden;
}

.contact-info-card,
.contact-form-card,
.empty-state {
    padding: 34px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: grid;
    gap: 4px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-list li:last-child {
    border-bottom: 0;
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-row label {
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .products-layout,
    .single-product-hero__grid,
    .product-main-content__grid,
    .store-locator-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-sidebar,
    .partners-map {
        position: static;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-category-nav {
        top: 74px;
    }
}

@media (max-width: 680px) {
    .products-grid,
    .catalogue-card {
        grid-template-columns: 1fr;
    }

    .downloads-box,
    .cta-strip__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 32px;
        border-radius: 26px;
    }

    .product-gallery__main {
        border-radius: 26px;
    }

    .single-product-hero {
        padding: 60px 0;
    }
}

.product-filters input[type="search"] {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-white);
    color: var(--color-black);
    font: inherit;
}

.filters-reset {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    color: var(--color-grey);
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.products-toolbar {
    padding: 18px 22px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-white);
}

/* SPEK Product archive */

.products-archive .page-hero {
    padding: 72px 0 40px;
}

.products-archive .page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #00508f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.products-archive .page-hero .eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #00508f;
}

.products-archive .page-hero h1 {
    max-width: 880px;
    margin: 0 0 20px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.products-archive .page-hero p {
    max-width: 760px;
    margin: 0;
    color: #65717d;
    font-size: 17px;
    line-height: 1.7;
}

.product-category-nav {
    padding: 0 0 28px;
}

.product-category-nav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #d8e2ea;
    border-radius: 999px;
    background: #fff;
    color: #111820;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.product-category-pill:hover,
.product-category-pill.is-active {
    background: #00508f;
    border-color: #00508f;
    color: #fff;
}

.products-listing {
    padding: 40px 0 96px;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 110px;
    background: #f7f9fb;
    border: 1px solid #e3ebf2;
    border-radius: 24px;
    padding: 26px;
}

.products-sidebar h2,
.products-sidebar h3,
.products-sidebar .widget-title {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1;
}

.products-sidebar label {
    display: block;
    margin: 14px 0 6px;
    color: #111820;
    font-size: 14px;
    font-weight: 800;
}

.products-sidebar input,
.products-sidebar select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cbd6df;
    border-radius: 10px;
    padding: 0 12px;
    background: #fff;
    color: #111820;
}

.products-sidebar button,
.products-sidebar input[type="submit"] {
    width: 100%;
    min-height: 46px;
    margin-top: 18px;
    border: 0;
    border-radius: 999px;
    background: #00508f;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.products-toolbar p {
    margin: 0;
    color: #65717d;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* Product card */

.product-card,
.spek-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3ebf2;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(10, 25, 41, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover,
.spek-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(10, 25, 41, 0.11);
}

.product-card__image,
.spek-product-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f8;
    text-decoration: none;
}

.product-card__image img,
.spek-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__placeholder,
.spek-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #00508f;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.product-card__content,
.spek-product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.product-card__eyebrow,
.spek-product-card__eyebrow {
    margin-bottom: 10px;
    color: #00508f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-card__title,
.spek-product-card__title {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.product-card__title a,
.spek-product-card__title a {
    color: #111820;
    text-decoration: none;
}

.product-card__title a:hover,
.spek-product-card__title a:hover {
    color: #00508f;
}

.product-card__text,
.spek-product-card__text {
    margin: 0 0 16px;
    color: #65717d;
    font-size: 15px;
    line-height: 1.55;
}

.product-card__meta,
.spek-product-card__meta {
    margin-bottom: 18px;
    color: #111820;
    font-size: 13px;
    font-weight: 800;
}

.product-card__button,
.spek-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    margin-top: auto;
    padding: 0 18px;
    border-radius: 999px;
    background: #00508f;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.product-card__button:hover,
.spek-product-card__button:hover {
    background: #003f71;
    color: #fff;
}

.pagination {
    margin-top: 44px;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f1f5f8;
    color: #111820;
    text-decoration: none;
    font-weight: 800;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #00508f;
    color: #fff;
}

.empty-state {
    padding: 48px;
    border-radius: 24px;
    background: #f7f9fb;
    border: 1px solid #e3ebf2;
}

.empty-state h2 {
    margin-top: 0;
}

/* Responsive */

@media (max-width: 1180px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Final product card fix */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.spek-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3ebf2;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(10, 25, 41, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spek-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(10, 25, 41, 0.11);
}

.spek-product-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f1f5f8;
    overflow: hidden;
    text-decoration: none;
}

.spek-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spek-product-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: grid;
    place-items: center;
    color: #00508f;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.spek-product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.spek-product-card__eyebrow {
    margin-bottom: 10px;
    color: #00508f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.spek-product-card__title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.spek-product-card__title a {
    color: #111820;
    text-decoration: none;
}

.spek-product-card__title a:hover {
    color: #00508f;
}

.spek-product-card__text {
    margin: 0 0 16px;
    color: #65717d;
    font-size: 15px;
    line-height: 1.55;
}

.spek-product-card__meta {
    margin-bottom: 18px;
    color: #111820;
    font-size: 13px;
    font-weight: 800;
}

.spek-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    margin-top: auto;
    padding: 0 18px;
    border-radius: 999px;
    background: #00508f;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.spek-product-card__button:hover {
    background: #003f71;
    color: #fff;
}

@media (max-width: 1180px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SPEK Premium Homepage
   ========================================================= */

.front-page {
    overflow: hidden;
}

.home-section {
    position: relative;
}

.home-hero {
    padding: 120px 0 96px;
    background:
        radial-gradient(circle at 82% 18%, rgba(15, 76, 129, 0.22), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fa 48%, #eef3f7 100%);
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 76px;
    align-items: center;
}

.home-hero__content h1 {
    max-width: 790px;
    margin-bottom: 24px;
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.075em;
}

.home-hero__content p {
    max-width: 680px;
    color: #5d6874;
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.home-hero__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 44px;
    max-width: 760px;
}

.home-hero__trust div {
    padding: 18px;
    border: 1px solid rgba(15, 76, 129, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 35px rgba(10, 25, 41, 0.05);
}

.home-hero__trust strong {
    display: block;
    margin-bottom: 4px;
    color: #101820;
    font-size: 14px;
    line-height: 1.2;
}

.home-hero__trust span {
    display: block;
    color: #697582;
    font-size: 13px;
    line-height: 1.35;
}

.home-hero__visual {
    position: relative;
    min-height: 560px;
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(145deg, #101820 0%, #17212b 48%, #0f4c81 100%);
    box-shadow: 0 34px 90px rgba(10, 25, 41, 0.22);
    overflow: hidden;
}

.home-hero__visual::before {
    content: "";
    position: absolute;
    inset: 54px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.home-hero__visual::after {
    content: "SPEK";
    position: absolute;
    right: -26px;
    bottom: 8px;
    color: rgba(255, 255, 255, 0.065);
    font-size: 158px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.hero-product {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(18px);
    color: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hero-product--main {
    left: 54px;
    right: 54px;
    top: 50%;
    padding: 40px;
    border-radius: 30px;
    transform: translateY(-50%);
}

.hero-product--main span,
.hero-product--floating span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-product--main strong {
    display: block;
    max-width: 430px;
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-product--main small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

.hero-product--floating {
    width: 174px;
    padding: 22px;
    border-radius: 24px;
}

.hero-product--floating strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.hero-product--one {
    top: 58px;
    right: 42px;
}

.hero-product--two {
    left: 38px;
    bottom: 58px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 60px;
    align-items: end;
    max-width: none;
}

.section-heading--split p {
    margin-bottom: 8px;
    color: #65717d;
    font-size: 17px;
    line-height: 1.7;
}

.section-heading--center {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--center p {
    max-width: 660px;
    margin-inline: auto;
}

.premium-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-category-card {
    position: relative;
    min-height: 300px;
    padding: 30px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e3ebf2;
    box-shadow: 0 14px 38px rgba(10, 25, 41, 0.045);
    overflow: hidden;
}

.premium-category-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -42px;
    width: 128px;
    height: 128px;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.07);
}

.premium-category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(10, 25, 41, 0.11);
}

.category-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
    border-radius: 18px;
    background: #0f4c81;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.premium-category-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-size: 25px;
}

.premium-category-card p {
    position: relative;
    z-index: 1;
    color: #66727e;
    font-size: 15px;
    line-height: 1.62;
}

.premium-category-card .category-card__link {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: #0f4c81;
    font-size: 14px;
    font-weight: 900;
}

.premium-why {
    background:
        radial-gradient(circle at 10% 0%, rgba(15, 76, 129, 0.12), transparent 28%),
        #f5f8fb;
}

.premium-features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-feature-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    border: 1px solid #e1e9f0;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(10, 25, 41, 0.045);
}

.premium-feature-card span {
    display: inline-flex;
    margin-bottom: 34px;
    color: #0f4c81;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.premium-feature-card h3 {
    font-size: 22px;
}

.premium-feature-card p {
    color: #66727e;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 1180px) {
    .home-hero__grid,
    .section-heading--split {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 500px;
    }

    .premium-category-grid,
    .premium-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading--split {
        gap: 20px;
    }
}

@media (max-width: 760px) {
    .home-hero {
        padding: 78px 0 70px;
    }

    .home-hero__grid {
        gap: 42px;
    }

    .home-hero__trust {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 430px;
        border-radius: 30px;
    }

    .hero-product--main {
        left: 24px;
        right: 24px;
        padding: 28px;
    }

    .hero-product--main strong {
        font-size: 34px;
    }

    .hero-product--floating {
        display: none;
    }

    .premium-category-grid,
    .premium-features-grid {
        grid-template-columns: 1fr;
    }

    .premium-category-card,
    .premium-feature-card {
        min-height: auto;
    }
}

/* =========================================================
   SPEK Premium Motion Pass - Homepage
   ========================================================= */

.front-page .button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16, 18, 20, 0.08);
}

.front-page .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-22deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.front-page .button:hover::after {
    left: 140%;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.premium-home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 12%, rgba(15, 76, 129, 0.18), transparent 26%),
        radial-gradient(circle at 0% 0%, rgba(15, 76, 129, 0.08), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.premium-home-hero::before {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.08), transparent 70%);
    pointer-events: none;
}

.home-hero__content p {
    max-width: 640px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
    max-width: 760px;
}

.hero-point {
    padding: 18px 18px 16px;
    border: 1px solid rgba(15, 76, 129, 0.12);
    border-radius: 18px 28px 18px 28px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(16, 18, 20, 0.05);
}

.hero-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.hero-point span {
    display: block;
    color: var(--color-grey);
    font-size: 13px;
    line-height: 1.45;
}

.home-hero__visual--premium {
    position: relative;
    min-height: 560px;
    border-radius: 38px 38px 90px 38px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #111821 0%, #17222d 42%, #0f4c81 100%);
    box-shadow: 0 34px 80px rgba(16, 18, 20, 0.18);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 20%, #fff 0.5px, transparent 0.5px),
        radial-gradient(circle at 80% 40%, #fff 0.5px, transparent 0.5px),
        radial-gradient(circle at 35% 70%, #fff 0.5px, transparent 0.5px);
    background-size: 26px 26px, 32px 32px, 22px 22px;
    pointer-events: none;
}

.hero-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    animation: spekSpinSlow 26s linear infinite;
}

.hero-orbit-ring--one {
    inset: 62px;
}

.hero-orbit-ring--two {
    inset: 118px;
    animation-direction: reverse;
    animation-duration: 38s;
}

.product-orbit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.product-orbit__card {
    width: min(100% - 100px, 420px);
    padding: 34px;
    border-radius: 26px 26px 46px 26px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--color-white);
    box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}

.product-orbit__card span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-orbit__card strong {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.product-orbit__card small {
    display: block;
    color: rgba(255,255,255,0.74);
    font-size: 14px;
    line-height: 1.6;
}

.home-hero__visual::after {
    content: "SPEK";
    position: absolute;
    right: 26px;
    bottom: 18px;
    color: rgba(255,255,255,0.05);
    font-size: clamp(88px, 10vw, 160px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.hero-float-card,
.hero-float-pill,
.catalogue-chip,
.store-point {
    transition: transform 0.35s ease;
    transform: translate3d(var(--px, 0), var(--py, 0), 0);
}

.hero-float-card {
    position: absolute;
    min-width: 160px;
    padding: 18px 20px;
    border-radius: 20px 20px 34px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    backdrop-filter: blur(14px);
    animation: spekFloat 6s ease-in-out infinite;
}

.hero-float-card span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-float-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.05;
}

.hero-float-card--one {
    top: 56px;
    right: 40px;
    animation-delay: 0.2s;
}

.hero-float-card--two {
    left: 34px;
    bottom: 52px;
    animation-delay: 1s;
}

.hero-float-pill {
    position: absolute;
    right: 52px;
    bottom: 58px;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.product-categories .section-heading,
.why-spek .section-heading {
    max-width: 860px;
}

.product-categories .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-categories .category-card {
    position: relative;
    min-height: 290px;
    border-radius: 24px 24px 44px 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--color-border);
    box-shadow: 0 18px 40px rgba(16, 18, 20, 0.05);
    overflow: hidden;
}

.product-categories .category-card::before {
    content: "";
    position: absolute;
    right: -36px;
    top: -36px;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.12), rgba(15, 76, 129, 0.02));
    transform: rotate(24deg);
}

.product-categories .category-card:nth-child(3n + 2) {
    margin-top: 24px;
    border-radius: 34px 24px 24px 44px;
}

.product-categories .category-card:nth-child(3n + 3) {
    margin-top: 10px;
    border-radius: 24px 44px 24px 24px;
}

.product-categories .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(16, 18, 20, 0.1);
}

.product-categories .category-card__icon {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--color-accent), #8fc0ef);
    box-shadow: 0 16px 26px rgba(15, 76, 129, 0.16);
}

.product-categories .category-card h3,
.product-categories .category-card p,
.product-categories .category-card__link {
    position: relative;
    z-index: 1;
}

.product-categories .category-card__link {
    font-size: 14px;
    font-weight: 900;
}

.premium-finder {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 10%, rgba(15, 76, 129, 0.18), transparent 24%),
        linear-gradient(135deg, #0f141a 0%, #141d27 36%, #101214 100%);
}

.premium-finder::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.18;
    pointer-events: none;
}

.premium-finder__mockup {
    position: relative;
    gap: 16px;
    padding-left: 36px;
}

.finder-preview__line {
    position: absolute;
    left: 25px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.08));
}

.finder-step {
    position: relative;
    padding: 26px 28px;
    border-radius: 22px 22px 36px 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.finder-step strong {
    display: block;
    font-size: 18px;
    line-height: 1.15;
}

.finder-step small {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,0.66);
    font-size: 13px;
    line-height: 1.5;
}

.finder-step.is-active {
    box-shadow: 0 24px 60px rgba(15, 76, 129, 0.24);
}

.finder-step.is-active span {
    background: rgba(255,255,255,0.24);
}

.why-spek {
    position: relative;
    background:
        radial-gradient(circle at 10% 0%, rgba(15, 76, 129, 0.08), transparent 24%),
        #f6f8fb;
}

.why-spek .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.why-spek .feature-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: 22px 22px 40px 22px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 38px rgba(16, 18, 20, 0.04);
    overflow: hidden;
}

.why-spek .feature-card::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 22px;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), rgba(15, 76, 129, 0.2));
}

.why-spek .feature-card:nth-child(2),
.why-spek .feature-card:nth-child(4) {
    margin-top: 22px;
}

.why-spek .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(16, 18, 20, 0.08);
}

.premium-catalogue-box {
    position: relative;
    overflow: hidden;
    align-items: center;
    padding: 58px;
    border-radius: 32px 32px 56px 32px;
    background:
        radial-gradient(circle at 10% 10%, rgba(15, 76, 129, 0.08), transparent 26%),
        linear-gradient(180deg, #f7f9fb 0%, #eff4f8 100%);
    box-shadow: 0 20px 50px rgba(16, 18, 20, 0.04);
}

.catalogue-preview__visual {
    position: relative;
    width: min(100%, 360px);
    min-height: 300px;
    margin-left: auto;
}

.catalogue-sheet {
    position: absolute;
    border-radius: 24px 24px 38px 24px;
    box-shadow: 0 22px 50px rgba(16, 18, 20, 0.12);
}

.catalogue-sheet--back {
    inset: 28px 18px 18px 58px;
    background: linear-gradient(180deg, #dbe8f3 0%, #eef4f9 100%);
    transform: rotate(8deg);
}

.catalogue-sheet--front {
    inset: 0;
    padding: 30px;
    color: var(--color-white);
    background:
        radial-gradient(circle at 80% 0%, rgba(255,255,255,0.14), transparent 26%),
        linear-gradient(135deg, #101820 0%, #173350 44%, #0f4c81 100%);
    overflow: hidden;
}

.catalogue-sheet--front::after {
    content: "SPEK";
    position: absolute;
    right: 18px;
    bottom: 8px;
    color: rgba(255,255,255,0.06);
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.catalogue-sheet--front span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.catalogue-sheet--front strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 14px;
    font-size: 36px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.catalogue-sheet--front small {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 220px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.55;
}

.catalogue-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--color-black);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(16,18,20,0.08);
}

.catalogue-chip--one {
    top: 18px;
    right: -10px;
}

.catalogue-chip--two {
    left: -12px;
    bottom: 18px;
}

.store-preview__grid {
    gap: 84px;
}

.premium-map {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 30px 30px 54px 30px;
    background:
        radial-gradient(circle at 20% 20%, rgba(15, 76, 129, 0.14), transparent 24%),
        linear-gradient(180deg, #eef4f8 0%, #dfe8ef 100%);
    box-shadow: 0 22px 55px rgba(16,18,20,0.06);
}

.map-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15,76,129,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,76,129,0.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}

.store-preview__label {
    position: absolute;
    left: 36px;
    bottom: 30px;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(16,18,20,0.08);
}

.store-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow:
        0 0 0 0 rgba(15, 76, 129, 0.35),
        0 8px 20px rgba(15, 76, 129, 0.22);
    animation: spekPulse 2.8s infinite;
}

.store-point::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #fff;
}

.store-point--one {
    top: 28%;
    left: 22%;
}

.store-point--two {
    top: 44%;
    right: 22%;
    animation-delay: 0.7s;
}

.store-point--three {
    bottom: 24%;
    left: 48%;
    animation-delay: 1.3s;
}

.b2b-cta__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr auto;
    gap: 24px;
    align-items: center;
    padding: 56px;
    border-radius: 32px 32px 56px 32px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 76, 129, 0.18);
}

.b2b-cta__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.support-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}

@keyframes spekFloat {
    0%, 100% {
        transform: translate3d(var(--px, 0), var(--py, 0), 0);
    }
    50% {
        transform: translate3d(var(--px, 0), calc(var(--py, 0) - 10px), 0);
    }
}

@keyframes spekSpinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spekPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(15, 76, 129, 0.35),
            0 8px 20px rgba(15, 76, 129, 0.22);
    }
    70% {
        box-shadow:
            0 0 0 16px rgba(15, 76, 129, 0),
            0 8px 20px rgba(15, 76, 129, 0.22);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(15, 76, 129, 0),
            0 8px 20px rgba(15, 76, 129, 0.22);
    }
}

@media (max-width: 1100px) {
    .hero-points,
    .why-spek .features-grid,
    .product-categories .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogue-preview__box,
    .b2b-cta__inner {
        grid-template-columns: 1fr;
    }

    .catalogue-preview__visual {
        margin-left: 0;
    }
}

@media (max-width: 780px) {
    .hero-points,
    .why-spek .features-grid,
    .product-categories .category-grid {
        grid-template-columns: 1fr;
    }

    .product-categories .category-card:nth-child(3n + 2),
    .product-categories .category-card:nth-child(3n + 3),
    .why-spek .feature-card:nth-child(2),
    .why-spek .feature-card:nth-child(4) {
        margin-top: 0;
    }

    .home-hero__visual--premium {
        min-height: 420px;
        border-radius: 28px;
    }

    .product-orbit__card {
        width: min(100% - 48px, 420px);
        padding: 26px;
    }

    .product-orbit__card strong {
        font-size: 34px;
    }

    .hero-float-card,
    .hero-float-pill {
        display: none;
    }

    .premium-finder__mockup {
        padding-left: 24px;
    }

    .finder-preview__line {
        left: 14px;
    }

    .finder-step {
        gap: 16px;
        padding: 22px;
    }

    .premium-catalogue-box {
        padding: 34px;
    }

    .catalogue-preview__visual {
        width: 100%;
        min-height: 260px;
    }

    .premium-map {
        min-height: 320px;
    }

    .b2b-cta__inner {
        padding: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-orbit-ring,
    .hero-float-card,
    .store-point {
        animation: none;
    }
}