/* =========================================================
   Suprema South Africa — site styles
   Montserrat / Bootstrap 5 / Suprema Inc. design system
   ========================================================= */

/* ── Design tokens ──────────────────────────────────────── */
:root {
    --sup-primary:      #a12944;
    --sup-primary-dark: #851f36;
    --sup-gradient:     linear-gradient(70deg, #00a0e9 0%, #8f71f5 50%, #e62e8b 100%);
    --sup-dark:         #212126;
    --sup-dark-2:       #17172a;
    --sup-dark-purple:  #44447d;
    --sup-text:         #222222;
    --sup-muted:        #666666;
    --sup-muted-light:  #999999;
    --sup-border:       #dddddd;
    --sup-border-light: #f1f1f1;
    --sup-bg-light:     #f7f7f7;
    --sup-bg-off:       #f8f8f8;
    --sup-white:        #ffffff;
    /* legacy aliases kept so sub-views still compile */
    --sup-navy:         #a12944;
    --sup-navy-dark:    #212126;
    --sup-red:          #a12944;
    --sup-red-dark:     #851f36;
    --sup-light:        #f7f7f7;
}

/* ── Base ───────────────────────────────────────────────── */
html  { font-size: 16px; scroll-behavior: smooth; }
body  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--sup-text);
    background: var(--sup-white);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.025em; }

a { color: var(--sup-primary); text-decoration: none; }
a:hover { color: var(--sup-primary-dark); }

/* ── Utilities ──────────────────────────────────────────── */
.bg-suprema        { background: var(--sup-dark)    !important; }
.bg-suprema-light  { background: var(--sup-bg-light) !important; }
.text-suprema      { color: var(--sup-primary) !important; }
.text-red          { color: var(--sup-primary) !important; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-suprema,
.btn-outline-suprema {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    border-radius: 35px;
    padding: 0 2.5rem;
    height: 56px;
    line-height: 54px;
    display: inline-flex;
    align-items: center;
    transition: background .35s, border-color .35s, color .35s;
}
.btn-suprema {
    background: var(--sup-primary);
    border: 1px solid var(--sup-primary);
    color: var(--sup-white);
}
.btn-suprema:hover, .btn-suprema:focus {
    background: var(--sup-primary-dark);
    border-color: var(--sup-primary-dark);
    color: var(--sup-white);
}
.btn-outline-suprema {
    background: transparent;
    border: 1px solid var(--sup-primary);
    color: var(--sup-primary);
}
.btn-outline-suprema:hover {
    background: var(--sup-primary);
    border-color: var(--sup-primary);
    color: var(--sup-white);
}
/* White outline variant used on dark backgrounds */
.btn-outline-white {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 35px;
    padding: 0 2.5rem;
    height: 56px;
    line-height: 54px;
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,.8);
    color: var(--sup-white);
    transition: background .35s, border-color .35s, color .35s;
}
.btn-outline-white:hover {
    background: var(--sup-primary);
    border-color: var(--sup-primary);
    color: var(--sup-white);
}
/* Small button variant */
.btn-suprema.btn-sm,
.btn-outline-suprema.btn-sm,
.btn-outline-white.btn-sm {
    font-size: .85rem;
    height: 40px;
    line-height: 38px;
    padding: 0 1.5rem;
    border-radius: 20px;
}

/* ── Navbar ─────────────────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    transition: background .3s, box-shadow .3s;
}
#site-header.header-transparent { background: transparent; }
#site-header.header-white {
    background: var(--sup-white);
    box-shadow: 0 0 25px 10px rgba(0,0,0,.12);
}

.navbar-suprema {
    height: 80px;
    padding: 0 1.5rem;
}
.navbar-suprema .navbar-brand {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    color: var(--sup-white);
    transition: color .3s;
}
.header-white .navbar-suprema .navbar-brand { color: var(--sup-text); }

.navbar-suprema .nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,.9);
    padding: .5rem 1rem;
    position: relative;
    transition: color .4s;
}
.header-white .navbar-suprema .nav-link { color: var(--sup-text); }

/* Active underline bar */
.navbar-suprema .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 1rem; right: 1rem;
    height: 3px;
    background: var(--sup-primary);
    transform: scaleX(0);
    transition: transform .4s;
    border-radius: 2px;
}
.navbar-suprema .nav-link:hover::after,
.navbar-suprema .nav-link.active::after { transform: scaleX(1); }

.navbar-suprema .nav-link:hover { color: var(--sup-white); }
.header-white .navbar-suprema .nav-link:hover { color: var(--sup-primary); }

/* Dropdown */
.navbar-suprema .dropdown-menu {
    border: none;
    border-top: 3px solid var(--sup-primary);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    animation: dropIn .2s ease;
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.navbar-suprema .dropdown-item {
    font-size: .9rem;
    font-weight: 500;
    padding: .55rem 1.25rem;
    color: var(--sup-text);
    transition: color .2s, background .2s;
}
.navbar-suprema .dropdown-item:hover {
    background: var(--sup-bg-light);
    color: var(--sup-primary);
}

/* CTA button in nav — adapts for transparent/white header */
.navbar-suprema .btn-nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    border-radius: 35px;
    padding: 0 1.4rem;
    height: 42px;
    line-height: 40px;
    display: inline-flex;
    align-items: center;
    background: var(--sup-primary);
    border: 1px solid var(--sup-primary);
    color: var(--sup-white);
    transition: background .35s, border-color .35s;
}
.navbar-suprema .btn-nav-cta:hover {
    background: var(--sup-primary-dark);
    border-color: var(--sup-primary-dark);
    color: var(--sup-white);
}

/* Hamburger on dark */
.navbar-toggler { border-color: rgba(255,255,255,.4); }
.navbar-toggler-icon { filter: invert(1); }
.header-white .navbar-toggler { border-color: rgba(0,0,0,.25); }
.header-white .navbar-toggler-icon { filter: none; }

/* ── Hero (homepage) ────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center top;
    color: var(--sup-white);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(33,33,38,.88) 0%,
        rgba(33,33,38,.72) 50%,
        rgba(33,33,38,.35) 100%
    );
    z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero .container { position: relative; z-index: 1; }

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: normal;
    background: var(--sup-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p.lead {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: .9;
    max-width: 540px;
    line-height: 1.7;
}

/* Hero image panel */
.hero-img-panel {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(4px);
}
.hero-img-panel img {
    max-height: 340px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,.4));
}

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
    background: var(--sup-dark);
    background-image: url('/assets/images/section02-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--sup-white);
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(23,23,42,.82);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    color: var(--sup-white);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: .75rem;
}
.page-hero .page-hero-sub {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.page-hero .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255,255,255,.35);
    justify-content: center;
    margin-bottom: 1.5rem;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* Page-specific hero bg overrides */
.page-hero.hero-products        { background-image: url('/assets/images/sol-bg_commercial.jpg'); }
.page-hero.hero-biometric-readers { background-image: url('/assets/images/sol-access_control_visual.jpg'); }
.page-hero.hero-solutions       { background-image: url('/assets/images/sol-all_solution_visual.jpg'); }
.page-hero.hero-commercial      { background-image: url('/assets/images/sol-bg_commercial.jpg'); }
.page-hero.hero-construction    { background-image: url('/assets/images/sol-bg_construction.jpg'); }
.page-hero.hero-data-center     { background-image: url('/assets/images/sol-bg_datacenter.jpg'); }
.page-hero.hero-healthcare      { background-image: url('/assets/images/sol-bg_healthcare.jpg'); }
.page-hero.hero-infrastructure  { background-image: url('/assets/images/sol-bg_infrastructure.jpg'); }
.page-hero.hero-manufacturing   { background-image: url('/assets/images/sol-bg_manufacturing.jpg'); }
.page-hero.hero-news            { background-image: url('/assets/images/sol-bg_case_study.jpg'); }
.page-hero.hero-contact         { background-image: url('/assets/images/sol-bg_datacenter.jpg'); }
.page-hero.hero-about           { background-image: url('/assets/images/sol-bg_commercial.jpg'); }

/* ── Sticky in-page product nav ─────────────────────────── */
.prod-sticky-nav {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: var(--sup-white);
    border-bottom: 2px solid var(--sup-border-light);
    padding: 0;
}
.prod-sticky-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.prod-sticky-nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--sup-muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .25s, border-color .25s;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.prod-sticky-nav ul li a:hover,
.prod-sticky-nav ul li a.active {
    color: var(--sup-primary);
    border-bottom-color: var(--sup-primary);
}

/* ── Feature strip (product detail) ────────────────────── */
.feature-strip { padding: 80px 0; }
.feature-strip.bg-dark-strip {
    background: var(--sup-dark);
    color: var(--sup-white);
}
.feature-strip .feature-img-panel {
    border-radius: 16px;
    overflow: hidden;
}
.feature-strip .feature-img-panel img { width: 100%; height: auto; }

/* ── Spec table ─────────────────────────────────────────── */
.spec-table-wrap { overflow-x: auto; }
.spec-table-new {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.spec-table-new th {
    background: var(--sup-dark);
    color: var(--sup-white);
    font-weight: 600;
    padding: .75rem 1rem;
    text-align: left;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.spec-table-new td {
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--sup-border-light);
    color: var(--sup-text);
    vertical-align: top;
}
.spec-table-new tr:nth-child(even) td { background: var(--sup-bg-off); }
.spec-table-new td:first-child {
    color: var(--sup-muted);
    font-weight: 500;
    width: 36%;
    white-space: nowrap;
}

/* ── Solutions grid card ────────────────────────────────── */
.card-solution-grid {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
}
.card-solution-grid:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.22); }
.card-solution-grid .sol-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s;
}
.card-solution-grid:hover .sol-bg { transform: scale(1.04); }
.card-solution-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(23,23,42,.9) 0%, rgba(23,23,42,.3) 60%, transparent 100%);
}
.card-solution-grid .sol-body {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
    color: var(--sup-white);
}
.card-solution-grid .sol-body h5 { font-weight: 700; font-size: 1.15rem; margin-bottom: .35rem; }
.card-solution-grid .sol-body p  { font-size: .85rem; font-weight: 300; opacity: .8; margin: 0; }

/* ── Section headings ───────────────────────────────────── */
.section-title {
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--sup-text);
    margin-bottom: .4rem;
    letter-spacing: -0.03em;
}
.section-title.light { color: var(--sup-white); }
.section-subtitle {
    color: var(--sup-muted);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 3rem;
}
.section-subtitle.light { color: rgba(255,255,255,.7); }
.section-divider {
    display: inline-block;
    width: 48px; height: 4px;
    background: var(--sup-primary);
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* ── Section spacing ────────────────────────────────────── */
.section-lg  { padding: 100px 0; }
.section-md  { padding: 70px 0; }
.section-sm  { padding: 50px 0; }
.section-dark { background: var(--sup-dark); }
.section-dark-2 { background: var(--sup-dark-2); }
.section-light { background: var(--sup-bg-light); }

/* ── Fade-in scroll reveal ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Cards ──────────────────────────────────────────────── */
.card-product, .card-solution {
    border: 1px solid var(--sup-border-light);
    border-radius: 12px;
    transition: box-shadow .3s, transform .3s;
    overflow: hidden;
    background: var(--sup-white);
}
.card-product:hover, .card-solution:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    transform: translateY(-4px);
}
.card-product .card-img-top {
    height: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sup-bg-light);
    border-bottom: 1px solid var(--sup-border-light);
}
.card-product .card-img-top img {
    max-height: 180px;
    max-width: 80%;
    object-fit: contain;
}
.card-product .card-title { font-weight: 700; color: var(--sup-text); font-size: 1rem; }
.card-solution .card-title { font-weight: 700; color: var(--sup-text); font-size: 1.05rem; }
.card-tag {
    display: inline-block;
    background: var(--sup-bg-light);
    color: var(--sup-primary);
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .7rem;
    border-radius: 20px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* Category cards */
.card-category {
    border: 1px solid var(--sup-border-light);
    border-radius: 12px;
    background: var(--sup-white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: box-shadow .3s, transform .3s;
    height: 100%;
}
.card-category:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-4px);
}
.card-category .cat-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--sup-bg-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.card-category .cat-icon img { width: 32px; height: 32px; }

/* ── Product detail ─────────────────────────────────────── */
.spec-table th { width: 40%; color: var(--sup-muted); font-weight: 500; font-size: .9rem; }
.spec-table td { font-weight: 500; }
.feature-icon { font-size: 1.75rem; color: var(--sup-primary); margin-bottom: .5rem; }
.feature-item {
    padding: 1.5rem;
    background: var(--sup-white);
    border-radius: 12px;
    height: 100%;
    border: 1px solid var(--sup-border-light);
    box-shadow: 0 2px 14px rgba(0,0,0,.05);
    transition: box-shadow .25s, transform .25s;
}
.feature-item:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,.10);
    transform: translateY(-2px);
}
.feature-item h6 { font-weight: 700; color: var(--sup-text); }

/* ── Article ────────────────────────────────────────────── */
.article-body h2, .article-body h3 { color: var(--sup-text); margin-top: 2.5rem; font-weight: 700; }
.article-body img { max-width: 100%; border-radius: 10px; }
.article-body p { line-height: 1.8; color: var(--sup-muted); }
.article-body ul, .article-body ol {
    padding-left: 0;
    list-style: none;
    margin: 1.25rem 0;
}
.article-body ul li, .article-body ol li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .6rem;
    line-height: 1.75;
    color: var(--sup-muted);
    font-weight: 300;
}
.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sup-primary);
}
.article-body ol { counter-reset: article-ol; }
.article-body ol li { counter-increment: article-ol; }
.article-body ol li::before {
    content: counter(article-ol) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-size: .8rem;
    font-weight: 700;
    color: var(--sup-primary);
    line-height: 1.75;
}
.article-body strong { color: var(--sup-text); font-weight: 600; }

/* ── Contact form ───────────────────────────────────────── */
.contact-box {
    background: var(--sup-white);
    border: 1px solid var(--sup-border);
    border-radius: 12px;
    padding: 2.5rem;
}
.form-label { font-weight: 600; color: var(--sup-text); font-size: .88rem; letter-spacing: .01em; }
.form-control, .form-select {
    border-color: var(--sup-border);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--sup-primary);
    box-shadow: 0 0 0 3px rgba(161,41,68,.15);
}

/* ── Swiper customisation ───────────────────────────────── */
.swiper-pagination-bullet {
    width: 8px; height: 8px;
    border-radius: 0;
    background: var(--sup-border);
    opacity: 1;
    margin-right: 12px !important;
    transition: background .3s, width .3s;
}
.swiper-pagination-bullet-active {
    background: var(--sup-primary);
    width: 24px;
    border-radius: 4px;
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--sup-primary);
    background: var(--sup-white);
    width: 44px; height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: .9rem; font-weight: 700; }

/* ── CTA strip ──────────────────────────────────────────── */
.cta-strip {
    background: var(--sup-dark);
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sup-gradient);
    opacity: .12;
}
.cta-strip .container { position: relative; z-index: 1; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--sup-dark);
    background-image: url('/assets/images/foot-bg.jpg');
    background-position: 50% 0;
    background-size: cover;
    color: rgba(255,255,255,.7);
    padding: 80px 0 0;
    font-size: .9rem;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(23,23,42,.45) 0%,
        rgba(23,23,42,.62) 40%,
        rgba(23,23,42,.80) 100%
    );
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .25s; }
.site-footer a:hover { color: var(--sup-white); }
.site-footer h6 {
    color: var(--sup-white);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 1.25rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .55rem; line-height: 1.5; }

.footer-brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sup-white);
    margin-bottom: .35rem;
}
.footer-tagline { font-size: .85rem; font-weight: 300; opacity: .75; margin-bottom: 1.5rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 60px;
    padding: 1.5rem 0;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--sup-white); }

/* ── Cookie consent ─────────────────────────────────────── */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--sup-dark);
    color: rgba(255,255,255,.9);
    padding: 1rem 1.5rem;
    z-index: 9999;
    border-top: 3px solid var(--sup-primary);
    font-size: .88rem;
    font-family: 'Montserrat', sans-serif;
}
#cookie-banner p { margin: 0; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-item a { color: var(--sup-primary); }

/* ── Focus rings ────────────────────────────────────────── */
.btn:focus-visible, .form-control:focus { outline: none; }

/* ── Body offset for fixed header ───────────────────────── */
body { padding-top: 80px; }
.hero, .page-hero { margin-top: -80px; padding-top: calc(80px + 80px); }
.hero { padding-top: 0; min-height: 90vh; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .navbar-suprema { height: 68px; }
    body { padding-top: 68px; }
    .hero { min-height: 70vh; }
    .section-lg { padding: 64px 0; }
    .section-md { padding: 48px 0; }

    /* Mobile collapsed nav menu — solid white panel below the bar */
    .navbar-suprema .navbar-collapse {
        background: var(--sup-white);
        margin: 0 -1.5rem;
        padding: .75rem 1.5rem 1.25rem;
        border-top: 1px solid var(--sup-border-light);
        box-shadow: 0 12px 24px rgba(0,0,0,.10);
    }
    /* Force dark text on mobile menu items regardless of header state */
    .navbar-suprema .navbar-collapse .nav-link {
        color: var(--sup-text);
        padding: .65rem .25rem;
    }
    .navbar-suprema .navbar-collapse .nav-link:hover,
    .navbar-suprema .navbar-collapse .nav-link.active {
        color: var(--sup-primary);
    }
    /* Hide the desktop underline bar in mobile menu */
    .navbar-suprema .navbar-collapse .nav-link::after { display: none; }
    /* Dropdowns inline (not floating) in mobile menu */
    .navbar-suprema .navbar-collapse .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        background: transparent;
        animation: none;
    }
    .navbar-suprema .navbar-collapse .dropdown-item {
        padding: .4rem .25rem;
    }
    /* Space the CTA on mobile */
    .navbar-suprema .navbar-collapse .btn-nav-cta {
        margin-top: .75rem;
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 767.98px) {
    .hero h1 { font-size: 2rem; }
    .hero { min-height: 80vh; padding-bottom: 3rem; }
    .btn-suprema, .btn-outline-suprema, .btn-outline-white {
        height: 48px; line-height: 46px; font-size: .95rem;
    }
    .section-lg { padding: 48px 0; }
}

/* ── Gradient text utility ──────────────────────────────── */
.txt-gradient {
    background: var(--sup-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Stats strip ────────────────────────────────────────── */
.stats-strip {
    background: var(--sup-dark);
    padding: 52px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat-block { text-align: center; padding: .5rem 1rem; }
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--sup-white);
    line-height: 1;
    margin-bottom: .4rem;
}
.stat-number .stat-suffix {
    background: var(--sup-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .08em;
}
@media (max-width: 575.98px) {
    .stats-strip { padding: 36px 0; }
    .stat-number { font-size: 1.75rem; }
}

/* ── Partner marquee ────────────────────────────────────── */
.marquee-section {
    background: var(--sup-white);
    padding: 32px 0;
    overflow: hidden;
    border-top: 1px solid var(--sup-border-light);
    border-bottom: 1px solid var(--sup-border-light);
}
.marquee-heading {
    text-align: center;
    font-size: .68rem;
    font-weight: 600;
    color: var(--sup-muted-light);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.marquee-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 2.2rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--sup-muted);
    white-space: nowrap;
    letter-spacing: .01em;
    border-right: 1px solid var(--sup-border-light);
    transition: color .25s;
    cursor: default;
}
.marquee-item:last-child { border-right: none; }
.marquee-item:hover { color: var(--sup-primary); }
.marquee-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sup-gradient);
    display: inline-block;
    margin-right: .65rem;
    flex-shrink: 0;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Gradient badge (NEW / FEATURED) ────────────────────── */
.card-product { position: relative; }
.card-badge {
    position: absolute;
    top: .75rem; right: .75rem;
    background: var(--sup-gradient);
    color: var(--sup-white);
    font-size: .6rem;
    font-weight: 700;
    padding: .22rem .6rem;
    border-radius: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    z-index: 2;
    line-height: 1.4;
}

/* ── Product card image zoom on hover ───────────────────── */
.card-product .card-img-top { overflow: hidden; }
.card-product .card-img-top img {
    transition: transform .45s ease;
}
.card-product:hover .card-img-top img { transform: scale(1.06); }

/* ── Button with arrow animation ────────────────────────── */
.btn-arrow { gap: .55rem; }
.btn-arrow .arrow-icon {
    display: inline-block;
    transition: transform .3s ease;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}
.btn-arrow:hover .arrow-icon { transform: translateX(5px); }

/* ── Footer social icons ────────────────────────────────── */
.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1.4rem;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55) !important;
    transition: background .3s, border-color .3s, color .3s !important;
    flex-shrink: 0;
}
.footer-social a:hover {
    background: var(--sup-primary);
    border-color: var(--sup-primary);
    color: var(--sup-white) !important;
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ── Section divider gradient variant ───────────────────── */
.section-divider-grad {
    display: inline-block;
    width: 48px; height: 4px;
    background: var(--sup-gradient);
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* ── Hero video background ──────────────────────────────── */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .55;
}
@media (max-width: 767.98px) { .hero-video { display: none; } }

/* ── Hero staggered text entrance ───────────────────────── */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
    opacity: 0;
    animation: heroFadeUp .75s cubic-bezier(.2,0,.2,1) both;
}
.hero-anim-d1 { animation-delay: .15s; }
.hero-anim-d2 { animation-delay: .32s; }
.hero-anim-d3 { animation-delay: .50s; }
.hero-anim-d4 { animation-delay: .68s; }

/* ── Hero device wrapper ────────────────────────────────── */
.hero-device-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Glassmorphism hero panel (enhanced) ────────────────── */
.hero-img-panel {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    position: relative;
    z-index: 2;
}
.hero-img-panel img {
    max-height: 360px;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,.5));
}

/* ── Animated gradient blob behind device ───────────────── */
.hero-blob {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: var(--sup-gradient);
    opacity: .14;
    filter: blur(72px);
    animation: blobPulse 7s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}
@keyframes blobPulse {
    0%, 100% { transform: scale(1);    opacity: .12; }
    50%       { transform: scale(1.18); opacity: .20; }
}

/* ── Floating feature chips around device ───────────────── */
.hero-chips {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}
.hero-chip {
    position: absolute;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,.9);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .3rem .85rem;
    border-radius: 20px;
    white-space: nowrap;
    animation: chipFloat 5s ease-in-out infinite;
}
.chip-1 { top: 12%; left: -5%;   animation-delay: 0s;    animation-duration: 5.2s; }
.chip-2 { top: 30%; right: -8%;  animation-delay: 1.3s;  animation-duration: 4.8s; }
.chip-3 { bottom: 28%; left: -8%; animation-delay: 2.1s;  animation-duration: 5.5s; }
.chip-4 { bottom: 12%; right: -4%; animation-delay: .7s;  animation-duration: 4.6s; }
@keyframes chipFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-9px); }
}
@media (max-width: 1199.98px) { .hero-chips { display: none; } }

/* ── "Why Suprema SA" section ───────────────────────────── */
.why-section { background: var(--sup-bg-light); }
.why-card {
    background: var(--sup-white);
    border: 1px solid var(--sup-border-light);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: box-shadow .3s, transform .3s;
    text-align: center;
}
.why-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,.09);
    transform: translateY(-4px);
}
.why-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(161,41,68,.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h6 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--sup-text);
    margin-bottom: .5rem;
}
.why-card p {
    font-size: .88rem;
    color: var(--sup-muted);
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

/* ── Gradient border on hero panel ─────────────────────── */
/* Overrides the earlier .hero-img-panel border rule */
.hero-img-panel {
    border: 2px solid transparent;
    background:
        rgba(255,255,255,.07) padding-box,
        var(--sup-gradient) border-box;
}

/* ── Certification strip ────────────────────────────────── */
.cert-strip {
    background: var(--sup-white);
    padding: 56px 0;
    border-top: 1px solid var(--sup-border-light);
    border-bottom: 1px solid var(--sup-border-light);
}
.cert-strip-label {
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    color: var(--sup-muted-light);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.cert-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem 3.5rem;
}
.cert-logos img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(.5);
    transition: filter .3s, opacity .3s;
}
.cert-logos img:hover { filter: none !important; opacity: 1 !important; }

/* ── Platform teaser section ────────────────────────────── */
.platform-section { background: var(--sup-dark-2); }
.platform-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: background .3s, border-color .3s;
}
.platform-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.2);
}
.platform-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.platform-badge.badge-gradient {
    background: var(--sup-gradient);
    color: var(--sup-white);
}
.platform-badge.badge-outline {
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.7);
}
.platform-card h4 {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--sup-white);
    letter-spacing: -0.025em;
    margin-bottom: .75rem;
}
.platform-card p {
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.platform-feature-list {
    list-style: none;
    padding: 0; margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.platform-feature-list li {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: .25rem .85rem;
    letter-spacing: .02em;
}

/* ── Support cards section ──────────────────────────────── */
.support-cards { background: var(--sup-bg-light); }
.support-card {
    background: var(--sup-white);
    border: 1px solid var(--sup-border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s, transform .3s;
    text-decoration: none;
}
.support-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-4px);
}
.support-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.support-card-icon.icon-primary { background: rgba(161,41,68,.1); }
.support-card-icon.icon-blue    { background: rgba(0,160,233,.1); }
.support-card-icon.icon-purple  { background: rgba(143,113,245,.1); }
.support-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--sup-text);
    margin-bottom: .5rem;
}
.support-card p {
    font-size: .88rem;
    color: var(--sup-muted);
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.support-card .support-link {
    margin-top: 1.5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--sup-primary);
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: gap .25s;
}
.support-card:hover .support-link { gap: .65rem; }

/* ── Customer logo marquee ───────────────────────────────── */
.customer-logo-marquee { padding: 40px 0; }
.marquee-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 0 2rem;
    min-width: 160px;
}
.mli-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sup-muted);
}
.mli-img {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mli-img img {
    max-height: 40px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter .3s;
}
.marquee-logo-item:hover .mli-img img { filter: grayscale(0) opacity(1); }

/* ── Support cards with backgrounds ─────────────────────── */
.support-bg-cards { background: var(--sup-white); }
.support-card-bg {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform .3s, box-shadow .3s;
    color: #fff;
}
.support-card-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.72) 100%);
    transition: background .3s;
}
.support-card-bg:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.support-card-bg:hover::before { background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(161,41,68,.8) 100%); }
.support-card-bg .scb-icon { position: relative; z-index: 1; width: 52px; height: 52px; margin-bottom: .75rem; }
.support-card-bg h5 { position: relative; z-index: 1; color: #fff; font-weight: 700; margin-bottom: .4rem; font-size: 1.1rem; }
.support-card-bg p { position: relative; z-index: 1; color: rgba(255,255,255,.78); font-size: .85rem; font-weight: 300; line-height: 1.6; margin-bottom: .75rem; }
.support-card-bg .scb-link { position: relative; z-index: 1; font-size: .82rem; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: .35rem; text-transform: uppercase; letter-spacing: .04em; }

/* ── Full-screen hero Swiper ─────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    margin-top: -80px;
    overflow: hidden;
}
.hero-slider .swiper { height: 100%; }
.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    background: #06060e;
}
.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slider .slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15,15,20,.82) 0%, rgba(15,15,20,.50) 55%, rgba(15,15,20,.18) 100%);
    z-index: 1;
}
.hero-slider .slide-content {
    position: absolute;
    left: max(5%, calc(50% - 640px));
    bottom: 14%;
    z-index: 2;
    max-width: 560px;
    color: #fff;
}
.hero-slider .slide-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: .7rem;
}
.hero-slider .slide-title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -.04em;
    margin-bottom: .8rem;
}
.hero-slider .slide-subtitle {
    font-size: clamp(.9rem, 1.5vw, 1.08rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    margin-bottom: 1.8rem;
}

/* ── Dark product-split layout ───────────────────────────── */
.hero-slider .swiper-slide--product { background: #06060e; }
.hero-slider .swiper-slide--product .slide-overlay { display: none; }
.hero-slider .swiper-slide--product .slide-content {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    max-width: min(46%, 520px);
}
.hero-slider .slide-product-img-wrap {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 54%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}
.hero-slider .slide-product-img {
    max-height: 84vh;
    max-width: 92%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 16px 56px rgba(0,0,0,.65));
}
.hero-slider .slide-product-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,50,220,.1) 0%, transparent 70%);
}

/* ── Pagination — vertical right rail ────────────────────── */
.hero-slider .swiper-pagination {
    position: absolute !important;
    right: 28px !important;
    left: auto !important;
    bottom: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}
.hero-slider .swiper-pagination-bullet {
    width: 6px; height: 6px;
    background: rgba(255,255,255,.28);
    border-radius: 50%;
    opacity: 1;
    margin: 0 !important;
    transition: background .25s, height .3s, border-radius .3s;
    display: block;
}
.hero-slider .swiper-pagination-bullet-active {
    background: #fff;
    height: 22px;
    width: 6px;
    border-radius: 3px;
}

/* ── Hide prev/next arrows ───────────────────────────────── */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev { display: none !important; }

/* ── Pill outline CTA ────────────────────────────────────── */
.btn-pill-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .62rem 1.75rem;
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 999px;
    color: #fff;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .01em;
    text-decoration: none;
    transition: background .2s, border-color .2s;
    background: transparent;
}
.btn-pill-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.85);
    color: #fff;
}

/* ── Brand statement slide ───────────────────────────────── */
.hero-slider .slide-overlay--deep {
    background: linear-gradient(105deg, rgba(10,10,18,.88) 0%, rgba(10,10,18,.60) 60%, rgba(10,10,18,.25) 100%);
}
.hero-slider .slide-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 20px;
    padding: .35rem 1rem;
    margin-bottom: 1.4rem;
    backdrop-filter: blur(6px);
}
.hero-slider .slide-title-grad {
    background: var(--sup-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-slider .slide-content--brand { max-width: 680px; }
.hero-slider .slide-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

@media (max-width: 767.98px) {
    .hero-slider { height: 92svh; margin-top: -68px; }
    .hero-slider .slide-content { left: 5%; right: 5%; bottom: 16%; max-width: 100%; }
    .hero-slider .slide-content--brand { max-width: 100%; }
    .hero-slider .swiper-slide--product .slide-content {
        top: auto;
        transform: none;
        bottom: 12%;
        max-width: 92%;
    }
    .hero-slider .slide-product-img-wrap { display: none; }
    .hero-slider .swiper-pagination {
        right: auto !important;
        top: auto !important;
        bottom: 16px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        gap: 7px !important;
    }
    .hero-slider .swiper-pagination-bullet-active {
        height: 6px;
        width: 22px;
    }
}

/* ── Product category banner images ─────────────────────── */
.page-hero.hero-controllers        { background-image: url('/assets/images/sol-bg_datacenter.jpg'); }
.page-hero.hero-rfid-readers       { background-image: url('/assets/images/sol-bg_commercial.jpg'); }
.page-hero.hero-peripherals        { background-image: url('/assets/images/sol-bg_infrastructure.jpg'); }
.page-hero.hero-wireless-door-locks { background-image: url('/assets/images/bg-bioentry-w3.jpg'); }
.page-hero.hero-time-attendance    { background-image: url('/assets/images/sol-bg_manufacturing.jpg'); }
.page-hero.hero-access-control     { background-image: url('/assets/images/sol-access_control_visual.jpg'); }
.page-hero.hero-biometrics         { background-image: url('/assets/images/biostar2-multi-credential.jpg'); }

/* ── BioStar platform section ────────────────────────────── */
.platform-bg-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.platform-bg-img img { width: 100%; display: block; border-radius: 16px; }

.marquee-item {
    transition: color .25s, background .25s;
}
.marquee-track-wrap:hover .marquee-item { opacity: .6; }
.marquee-track-wrap:hover .marquee-item:hover {
    opacity: 1;
    color: var(--sup-primary);
    background: rgba(161,41,68,.04);
    border-radius: 6px;
}

/* ── Solution demands list ───────────────────────────────── */
.sol-demands-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem 1.5rem;
}
.sol-demands-list li {
    font-size: .92rem;
    font-weight: 300;
    color: var(--sup-text);
    line-height: 1.5;
    padding-left: 1.4rem;
    position: relative;
}
.sol-demands-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sup-primary);
}
@media (max-width: 575.98px) {
    .sol-demands-list { grid-template-columns: 1fr; }
}
