/* =====================================================================
   VOLTAINER TECHNOLOGIES — Website stylesheet
   Palette derived from the logo: bolt orange + charcoal mark.
   Theme colours can be overridden from Admin → Settings (inline :root in <head>).
   ===================================================================== */

:root {
    --primary-color: #F26522;      /* logo bolt — CTAs, accents */
    --secondary-color: #14161A;    /* logo charcoal — hero, footer */
    --accent-color: #23262B;       /* charcoal soft — cards on dark */
    --cta-color: #F26522;
    --dark-color: #0E0F12;
    --light-color: #F4F5F7;        /* page / panel grey */
    --text-color: #45484D;
    --muted-color: #6E737B;
    --border-color: #E3E5E9;

    --primary-dark: color-mix(in srgb, var(--primary-color) 86%, #000);
    --primary-tint: color-mix(in srgb, var(--primary-color) 9%, #fff);
    --cta-dark: color-mix(in srgb, var(--cta-color) 86%, #000);

    --font-heading: 'Barlow', 'Segoe UI', Arial, sans-serif;
    --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

    --radius: 4px;
    --radius-lg: 6px;
    --shadow-sm: 0 1px 2px rgba(20, 22, 26, .06);
    --shadow: 0 8px 24px rgba(20, 22, 26, .08);
    --shadow-lg: 0 18px 44px rgba(20, 22, 26, .14);
    --ease: cubic-bezier(.2, .7, .2, 1);
    --section-y: 64px;
    --header-h: 72px;

    /* Bootstrap overrides */
    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 242, 101, 34;
    --bs-body-font-family: var(--font-body);
    --bs-body-color: var(--text-color);
    --bs-link-color-rgb: 242, 101, 34;
    --bs-border-radius: var(--radius);
    --bs-border-color: var(--border-color);
}

/* ---------------------------------------------------------------------
   Base
   --------------------------------------------------------------------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.15;
    letter-spacing: -.01em;
}
a { color: var(--primary-color); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
::selection { background: var(--primary-color); color: #fff; }
:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 2px; }
.skip-link { position: absolute; top: 8px; left: 8px; z-index: 2000; background: var(--secondary-color); color: #fff; padding: 8px 14px; }

.container { --bs-gutter-x: 2rem; }
@media (min-width: 1400px) { .container { max-width: 1280px; } }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02em;
    border-radius: var(--radius);
    padding: .7rem 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    transition: all .2s var(--ease);
}
.btn-lg { padding: .9rem 1.8rem; font-size: 16px; }
.btn-sm { padding: .45rem .9rem; font-size: 14px; }
.btn-primary {
    --bs-btn-bg: var(--cta-color); --bs-btn-border-color: var(--cta-color);
    --bs-btn-hover-bg: var(--cta-dark); --bs-btn-hover-border-color: var(--cta-dark);
    --bs-btn-active-bg: var(--cta-dark); --bs-btn-active-border-color: var(--cta-dark);
    --bs-btn-disabled-bg: var(--cta-color); --bs-btn-disabled-border-color: var(--cta-color);
    --bs-btn-focus-shadow-rgb: 242, 101, 34;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px color-mix(in srgb, var(--cta-color) 35%, transparent); }
.btn-dark {
    --bs-btn-bg: var(--secondary-color); --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-bg: var(--accent-color); --bs-btn-hover-border-color: var(--accent-color);
}
.btn-outline-dark {
    --bs-btn-color: var(--secondary-color); --bs-btn-border-color: #C9CCD2;
    --bs-btn-hover-bg: var(--secondary-color); --bs-btn-hover-border-color: var(--secondary-color);
}
.btn-outline-light { --bs-btn-border-color: rgba(255,255,255,.45); --bs-btn-hover-color: var(--secondary-color); }
.link-arrow { font-family: var(--font-heading); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.link-arrow i { transition: transform .2s var(--ease); }
.link-arrow:hover i { transform: translateX(3px); }

/* ---------------------------------------------------------------------
   Top bar + header
   --------------------------------------------------------------------- */
.topbar { background: var(--secondary-color); color: #B8BCC3; font-size: 12.5px; line-height: 1.4; padding: 5px 0; }
.topbar-info { gap: .25rem 1.4rem !important; }
.topbar a { color: #D6D9DE; }
.topbar a:hover { color: #fff; }
.topbar-info li { display: flex; align-items: center; gap: .45rem; }
.topbar-info i { color: var(--primary-color); }
.topbar-info a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-text { color: #9AA0A8; padding-right: 1rem; border-right: 1px solid rgba(255,255,255,.12); }
.topbar-social a { width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: var(--radius); }
.topbar-social a:hover { background: var(--primary-color); color: #fff; }

.site-header {
    position: sticky; top: 0; z-index: 1030;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(20,22,26,.09); border-bottom-color: transparent; }
.site-header .navbar { padding: 6px 0; min-height: var(--header-h); transition: padding .25s var(--ease); }
.site-header.is-scrolled .navbar { padding: 4px 0; }
.navbar-brand { padding: 0; margin-right: 1.5rem; }
.navbar-brand img { height: 54px; width: auto; transition: height .25s var(--ease); }
.site-header.is-scrolled .navbar-brand img { height: 46px; }

.navbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--secondary-color);
    padding: .6rem .8rem !important;
    position: relative;
}
.navbar .nav-link:hover, .navbar .nav-link.show { color: var(--primary-color); }
.navbar .nav-link.active { color: var(--primary-color); }
@media (min-width: 1200px) {
    .navbar .nav-link.active::after {
        content: ''; position: absolute; left: .8rem; right: .8rem; bottom: -2px; height: 2px; background: var(--primary-color);
    }
    .navbar .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
    .navbar .dropdown-menu { top: 100%; }
}
.navbar .dropdown-toggle::after { border: 0; content: '\F282'; font-family: 'bootstrap-icons'; font-size: 11px; vertical-align: middle; margin-left: .3rem; }
.dropdown-menu {
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    padding: .5rem 0;
    min-width: 250px;
}
.dropdown-item { font-size: 14.5px; padding: .5rem 1.2rem; color: var(--text-color); }
.dropdown-item:hover, .dropdown-item:focus { background: var(--primary-tint); color: var(--primary-color); }
.dropdown-item.active, .dropdown-item:active { background: var(--primary-color); color: #fff; }

.navbar-toggler { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 10px 9px; width: 44px; height: 42px; display: inline-flex; flex-direction: column; justify-content: space-between; }
.navbar-toggler:focus { box-shadow: none; outline: 2px solid var(--primary-color); }
.toggler-bar { display: block; height: 2px; width: 100%; background: var(--secondary-color); transition: transform .2s, opacity .2s; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1199.98px) {
    .navbar-collapse { border-top: 1px solid var(--border-color); margin-top: 10px; padding: 8px 0 16px; max-height: calc(100vh - 90px); overflow-y: auto; }
    .navbar .nav-link { padding: .75rem 0 !important; border-bottom: 1px solid var(--light-color); }
    .dropdown-menu { border: 0; box-shadow: none; border-left: 2px solid var(--primary-color); border-radius: 0; margin: 0 0 .5rem; padding: 0; }
    .mobile-nav-contact { padding-top: 16px; }
}
@media (max-width: 575.98px) { .navbar-brand img { height: 50px; } }

/* ---------------------------------------------------------------------
   Section scaffolding
   --------------------------------------------------------------------- */
.section { padding: var(--section-y) 0; position: relative; background-size: cover; background-position: center; }
.section.is-dark, .section-capabilities.is-dark { background-color: var(--secondary-color); color: #B8BCC3; }
.is-dark h2, .is-dark h3, .is-dark .section-title { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 2.2rem; }
.d-lg-flex > .section-head { margin-bottom: 0; }
@media (max-width: 991.98px) { .d-lg-flex > .section-head { margin-bottom: 1.5rem; } }
.section-head.text-center .eyebrow { justify-content: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-heading); font-weight: 700; font-size: 13px;
    letter-spacing: .14em; text-transform: uppercase; color: var(--primary-color);
    margin-bottom: .9rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; }
.section-title { font-size: clamp(1.6rem, 1.15rem + 1.5vw, 2.25rem); margin-bottom: .75rem; }
.section-lead, .section-lead p { font-size: 17px; color: var(--muted-color); }
.is-dark .section-lead, .is-dark .section-lead p { color: #A3A8B0; }
.section-lead p:last-child { margin-bottom: 0; }
.rich-text p { margin-bottom: 1rem; }
.rich-text h2 { font-size: 1.6rem; margin: 2rem 0 .8rem; }
.rich-text h3 { font-size: 1.3rem; margin: 1.6rem 0 .6rem; }
.rich-text ul, .rich-text ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.rich-text li { margin-bottom: .35rem; }
.rich-text img { border-radius: var(--radius); }
.rich-text blockquote { border-left: 3px solid var(--primary-color); padding: .5rem 1.25rem; background: var(--light-color); margin: 1.5rem 0; }
.rich-text table { width: 100%; margin-bottom: 1rem; border-collapse: collapse; }
.rich-text th, .rich-text td { border: 1px solid var(--border-color); padding: .6rem .8rem; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero { background: var(--secondary-color); position: relative; overflow: hidden; }
.hero-slide {
    min-height: min(600px, calc(100vh - 110px));
    padding: 64px 0 84px;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    background-color: var(--secondary-color);
    position: relative; overflow: hidden;
}
.hero-slide.carousel-item { display: none; }
.hero-slide.carousel-item.active, .hero-slide.carousel-item-next, .hero-slide.carousel-item-prev { display: flex; }
/* Brand diagonal — echoes the bolt in the logo */
.hero-slide:not(.has-bg)::before {
    content: ''; position: absolute; right: -8%; top: 0; bottom: 0; width: 58%;
    background: linear-gradient(180deg, var(--accent-color), #1B1D22);
    transform: skewX(-14deg); transform-origin: top;
}
.hero-slide:not(.has-bg)::after {
    content: ''; position: absolute; left: 38%; bottom: 0; width: 14px; height: 100%;
    background: var(--primary-color); transform: skewX(-14deg); opacity: .9;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--secondary-color) 25%, rgba(20,22,26,.55)); }
.hero-slide > .container { z-index: 2; }
.hero-kicker {
    display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: 14px;
    letter-spacing: .12em; text-transform: uppercase; color: var(--primary-color);
    padding: .35rem .8rem; border: 1px solid color-mix(in srgb, var(--primary-color) 50%, transparent);
    border-radius: var(--radius); margin-bottom: 1.4rem;
}
.hero-title { color: #fff; font-size: clamp(2.1rem, 1.3rem + 3vw, 3.6rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.1rem; letter-spacing: -.02em; }
.hero-highlight { display: block; color: var(--primary-color); }
.hero-text { color: #C4C8CE; font-size: clamp(1rem, .95rem + .3vw, 1.15rem); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-media {
    position: relative; background: #fff; padding: 14px; border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.hero-media::before { content: ''; position: absolute; top: -10px; right: -10px; width: 90px; height: 90px; border-top: 4px solid var(--primary-color); border-right: 4px solid var(--primary-color); }
.hero-media img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.hero-controls { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 5; }
.hero .carousel-indicators { position: static; margin: 0; justify-content: flex-start; }
.hero .carousel-indicators [data-bs-target] { width: 34px; height: 4px; border: 0; background: rgba(255,255,255,.35); opacity: 1; margin: 0 6px 0 0; }
.hero .carousel-indicators .active { background: var(--primary-color); }
.hero .carousel-control-prev, .hero .carousel-control-next { width: 48px; height: 48px; top: auto; bottom: 20px; opacity: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); color: #fff; font-size: 1.1rem; z-index: 6; }
.hero .carousel-control-prev { left: auto; right: 84px; }
.hero .carousel-control-next { right: 24px; }
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover { background: var(--primary-color); border-color: var(--primary-color); }
@media (max-width: 991.98px) {
    .hero-slide { padding: 52px 0 80px; min-height: 0; }
    .hero-slide:not(.has-bg)::before { width: 100%; right: -60%; opacity: .6; }
    .hero-slide:not(.has-bg)::after { display: none; }
    .hero .carousel-control-prev, .hero .carousel-control-next { display: none; }
}

/* ---------------------------------------------------------------------
   Inner page hero
   --------------------------------------------------------------------- */
.page-hero {
    background: var(--secondary-color) center / cover no-repeat;
    padding: 52px 0 46px;
    position: relative; overflow: hidden; color: #C4C8CE;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--secondary-color) 35%, rgba(20,22,26,.72)); }
.page-hero::after { content: ''; position: absolute; right: 8%; top: 0; bottom: 0; width: 10px; background: var(--primary-color); transform: skewX(-14deg); opacity: .85; }
.page-hero-title { color: #fff; font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem); font-weight: 800; margin: .4rem 0 .6rem; max-width: 900px; }
.page-hero-lead { font-size: 1.08rem; max-width: 720px; margin: 0; }
.page-hero .breadcrumb { font-size: 14px; margin: 0; --bs-breadcrumb-divider-color: #7C828A; --bs-breadcrumb-item-active-color: var(--primary-color); }
.page-hero .breadcrumb a { color: #C4C8CE; }
.page-hero .breadcrumb a:hover { color: #fff; }
@media (max-width: 767.98px) { .page-hero::after { display: none; } .page-hero { padding: 40px 0 34px; } }

/* ---------------------------------------------------------------------
   Stats band
   --------------------------------------------------------------------- */
.section-stats { padding: 0; background: var(--light-color); }
.section-stats.is-accent { background: var(--primary-color); color: #fff; }
.section-stats.is-dark { background: var(--secondary-color); color: #fff; }
.stats-row > div + div .stat { border-left: 1px solid rgba(255,255,255,.22); }
.section-stats:not(.is-accent):not(.is-dark) .stats-row > div + div .stat { border-left-color: var(--border-color); }
.stat { padding: 18px 14px; text-align: center; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-icon { font-size: 1.1rem; opacity: .8; display: block; margin-bottom: .1rem; }
.stat-value { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem); line-height: 1.1; }
.stat-label { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; opacity: .88; margin-top: .3rem; }
.section-stats:not(.is-accent):not(.is-dark) .stat-value { color: var(--secondary-color); }
@media (max-width: 991.98px) {
    .stats-row > div:nth-child(odd) .stat { border-left: 0 !important; }
    .stats-row > div:nth-child(n+3) .stat { border-top: 1px solid rgba(255,255,255,.22); }
}

/* ---------------------------------------------------------------------
   Split (about / content)
   --------------------------------------------------------------------- */
.split-media { position: relative; margin: 0; padding: 0 24px 24px 0; }
.split-media::before { content: ''; position: absolute; right: 0; bottom: 0; width: 70%; height: 70%; background: var(--primary-color); border-radius: var(--radius); z-index: 0; }
.split-media.is-right { padding: 0 0 24px 24px; }
.split-media.is-right::before { right: auto; left: 0; }
.split-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-content .rich-text { color: var(--text-color); }
.is-dark .split-content .rich-text { color: #B8BCC3; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .7rem 1.5rem; }
.check-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 500; color: var(--secondary-color); line-height: 1.45; }
.is-dark .check-list li { color: #fff; }
.check-list i { flex: 0 0 22px; height: 22px; display: grid; place-items: center; background: var(--primary-tint); color: var(--primary-color); border-radius: var(--radius); font-size: 14px; margin-top: 1px; }
@media (max-width: 575.98px) { .check-list.two-col { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Cards: features, benefits, icon cards, certifications
   --------------------------------------------------------------------- */
.feature-card, .icon-card, .cert-card {
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius);
    padding: 24px 22px; position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feature-card::before, .icon-card::before, .cert-card::before, .product-card::before {
    content: ''; position: absolute; left: -1px; right: -1px; top: -1px; height: 3px; background: var(--primary-color);
    transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); z-index: 2;
}
.feature-card:hover, .icon-card:hover, .cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card:hover::before, .icon-card:hover::before, .cert-card:hover::before, .product-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 48px; height: 48px; display: inline-grid; place-items: center;
    background: var(--primary-tint); color: var(--primary-color); border-radius: var(--radius);
    font-size: 1.35rem; margin-bottom: .9rem; transition: background .25s, color .25s;
}
.feature-card:hover .feature-icon, .icon-card:hover .feature-icon { background: var(--primary-color); color: #fff; }
.feature-title { font-size: 1.2rem; margin-bottom: .55rem; }
.feature-text { color: var(--muted-color); font-size: 15px; margin-bottom: 0; }
.is-dark .feature-card, .is-dark .icon-card, .is-dark .cert-card { background: var(--accent-color); border-color: rgba(255,255,255,.08); }
.is-dark .feature-text { color: #A3A8B0; }

.benefit-card { background: var(--light-color); border-top: 3px solid var(--primary-color); padding: 24px 24px; border-radius: 0 0 var(--radius) var(--radius); }
.section-benefits[style*="background-color"] .benefit-card { background: #fff; }
.benefit-num { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 2.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--primary-color); margin-bottom: 1rem; }
.benefit-title { font-size: 1.25rem; margin-bottom: .5rem; }
.benefit-card p { color: var(--muted-color); font-size: 15px; }
.is-dark .benefit-card { background: var(--accent-color); }

.cert-type { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--primary-color); margin-bottom: .4rem; }
.cert-issuer { font-size: 14px; color: var(--muted-color); margin-bottom: .5rem; font-weight: 500; }
.cert-card-media { display: block; margin: -30px -26px 1.2rem; background: var(--light-color); border-bottom: 1px solid var(--border-color); }
.cert-card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 12px; }
.cert-card .link-arrow { margin-top: .9rem; font-size: 14px; }

/* ---------------------------------------------------------------------
   Product cards
   --------------------------------------------------------------------- */
.product-card {
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius);
    display: flex; flex-direction: column; overflow: hidden; position: relative;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-media { position: relative; display: block; background: var(--light-color); overflow: hidden; aspect-ratio: 3 / 2; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-tag {
    position: absolute; left: 14px; top: 14px; background: var(--secondary-color); color: #fff;
    font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    padding: .3rem .6rem; border-radius: var(--radius);
}
.product-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card-title { font-size: 1.25rem; margin-bottom: .5rem; }
.product-card-title a { color: var(--secondary-color); }
.product-card-title a:hover { color: var(--primary-color); }
.product-card-text { font-size: 14.5px; color: var(--muted-color); margin-bottom: 1rem; }
.product-card-specs { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border-color); border-radius: var(--radius); margin: 0 0 1.2rem; }
.product-card-specs > div { padding: .55rem .6rem; min-width: 0; }
.product-card-specs > div + div { border-left: 1px solid var(--border-color); }
.product-card-specs dt { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-color); }
.product-card-specs dd { margin: 0; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--secondary-color); line-height: 1.3; }
.product-card-actions { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }

/* ---------------------------------------------------------------------
   Categories / industries / range
   --------------------------------------------------------------------- */
.category-tile {
    display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 20px 20px; color: var(--text-color); transition: all .25s var(--ease);
}
.category-tile:hover { border-color: var(--primary-color); box-shadow: var(--shadow); color: var(--text-color); transform: translateY(-3px); }
.category-icon { font-size: 1.7rem; color: var(--primary-color); margin-bottom: .8rem; }
.category-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--secondary-color); margin-bottom: .4rem; line-height: 1.25; }
.category-desc { font-size: 14px; color: var(--muted-color); margin-bottom: 1rem; }
.category-meta { margin-top: auto; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--primary-color); display: flex; justify-content: space-between; align-items: center; }
.category-tile.is-cta { background: var(--secondary-color); border-color: var(--secondary-color); }
.category-tile.is-cta .category-name { color: #fff; }
.category-tile.is-cta .category-desc { color: #A3A8B0; }

.industry-tile {
    display: flex; align-items: center; gap: .9rem; background: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 18px 18px; height: 100%; color: var(--secondary-color);
    font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem; line-height: 1.25; transition: all .25s var(--ease);
}
.industry-tile i { flex: 0 0 44px; height: 44px; display: grid; place-items: center; background: var(--light-color); color: var(--primary-color); border-radius: var(--radius); font-size: 1.3rem; transition: all .25s; }
.industry-tile:hover { border-color: var(--primary-color); color: var(--secondary-color); box-shadow: var(--shadow-sm); }
.industry-tile:hover i { background: var(--primary-color); color: #fff; }
@media (max-width: 575.98px) { .industry-tile { flex-direction: column; text-align: center; font-size: .95rem; padding: 16px 10px; } }

.range-table { border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; background: #fff; }
.range-row { display: grid; grid-template-columns: 1.1fr .9fr 1.6fr; align-items: center; }
.range-row > span { padding: 13px 18px; }
.range-row + .range-row { border-top: 1px solid var(--border-color); }
.range-head { background: var(--secondary-color); color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.range-head > span { padding-top: 14px; padding-bottom: 14px; }
.range-model { font-family: var(--font-heading); font-weight: 700; color: var(--secondary-color); font-size: 1.08rem; display: flex; align-items: center; gap: .6rem; }
.range-model i { color: var(--primary-color); }
.range-capacity { font-family: var(--font-heading); font-weight: 700; color: var(--primary-color); font-size: 1.08rem; }
.range-use { color: var(--muted-color); font-size: 15px; }
.range-row:not(.range-head):hover { background: var(--primary-tint); }
@media (max-width: 767.98px) {
    .range-head { display: none; }
    .range-row { grid-template-columns: 1fr auto; }
    .range-row > span { padding: 12px 16px 0; }
    .range-use { grid-column: 1 / -1; padding-bottom: 14px !important; padding-top: 4px !important; }
}

/* ---------------------------------------------------------------------
   Capabilities (dark)
   --------------------------------------------------------------------- */
.spec-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 2rem; }
.spec-list li { display: flex; gap: .75rem; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-color); color: var(--secondary-color); font-weight: 500; line-height: 1.45; }
.is-dark .spec-list li { border-bottom-color: rgba(255,255,255,.1); color: #E6E8EB; }
.spec-list i { color: var(--primary-color); font-size: 1.1rem; margin-top: 1px; }
.capability-media { margin: 0; position: relative; }
.capability-media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.capability-media::after { content: ''; position: absolute; left: -14px; bottom: -14px; width: 40%; height: 40%; border-left: 4px solid var(--primary-color); border-bottom: 4px solid var(--primary-color); }
@media (max-width: 767.98px) { .spec-list { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Happy Clients (testimonials slider + client logos)
   --------------------------------------------------------------------- */
.clients-intro .section-head { margin-bottom: 1.6rem; }
.rating-summary { display: flex; align-items: center; gap: 1rem; padding: 18px 20px; background: #fff; border: 1px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: var(--radius); margin-bottom: 1.6rem; }
.rating-score { font-family: var(--font-heading); font-weight: 800; font-size: 2.8rem; line-height: 1; color: var(--secondary-color); }
.rating-count { display: block; font-size: 13.5px; color: var(--muted-color); margin-top: .2rem; }
.clients-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.slider-nav { display: flex; gap: .5rem; }
.slider-btn { width: 48px; height: 48px; border-radius: var(--radius); border: 1px solid #C9CCD2; background: #fff; color: var(--secondary-color); font-size: 1.15rem; display: grid; place-items: center; transition: all .2s var(--ease); }
.slider-btn:hover:not(:disabled) { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.slider-btn:disabled { opacity: .35; cursor: default; }

.testimonial-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 18px; scrollbar-width: none; overscroll-behavior-x: contain; }
.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-slider:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 4px; }
.testimonial-slide { flex: 0 0 calc(50% - 12px); scroll-snap-align: start; min-width: 0; }
.testimonial-slider:has(.testimonial-slide:only-child) .testimonial-slide { flex-basis: 100%; }
.slider-progress { height: 3px; background: var(--border-color); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.slider-progress span { display: block; height: 100%; width: 0; background: var(--primary-color); transition: width .25s var(--ease); }
@media (max-width: 767.98px) { .testimonial-slide { flex-basis: 88%; } }

.testimonial-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 24px 24px 22px; margin: 0; display: flex; flex-direction: column; position: relative; transition: box-shadow .25s var(--ease), border-color .25s; }
.testimonial-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.testimonial-card::after { content: ''; position: absolute; left: 28px; right: 28px; bottom: -1px; height: 3px; background: var(--primary-color); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.testimonial-card:hover::after { transform: scaleX(1); }
.testimonial-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.2rem; }
.testimonial-quote { width: 50px; height: 50px; display: grid; place-items: center; background: var(--secondary-color); color: var(--primary-color); border-radius: var(--radius); font-size: 1.9rem; line-height: 1; }
.stars { color: #F5A623; font-size: 14px; display: inline-flex; gap: 2px; }
.testimonial-text { margin: 0 0 1.5rem; flex: 1; }
.testimonial-text p { color: var(--text-color); font-size: 16px; line-height: 1.75; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: .9rem; border-top: 1px solid var(--border-color); padding-top: 1.1rem; }
.testimonial-author strong { display: block; font-family: var(--font-heading); color: var(--secondary-color); font-size: 1.08rem; }
.testimonial-author small { display: block; color: var(--muted-color); font-size: 13.5px; line-height: 1.45; }
.testimonial-location i { color: var(--primary-color); margin-right: .25rem; }
.testimonial-avatar, .testimonial-photo { width: 52px; height: 52px; border-radius: 50%; flex: 0 0 52px; object-fit: cover; }
.testimonial-avatar { display: grid; place-items: center; background: var(--primary-tint); color: var(--primary-color); border: 2px solid color-mix(in srgb, var(--primary-color) 35%, transparent); font-family: var(--font-heading); font-weight: 700; }
.badge-sample { display: inline-block; margin-top: .4rem; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #8A6D00; background: #FFF6D6; border: 1px solid #F1DE9B; padding: .15rem .5rem; border-radius: var(--radius); }
.min-w-0 { min-width: 0; }

.clients-strip { margin-top: 2.5rem; padding-top: 1.8rem; border-top: 1px solid var(--border-color); text-align: center; }
.clients-strip-label { font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-color); margin-bottom: 1.5rem; }
.clients-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 40px; margin: 0; }
.clients-logos img { height: 52px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .25s, opacity .25s; }
.clients-logos a:hover img, .clients-logos img:hover { filter: none; opacity: 1; }
.is-dark .testimonial-card, .is-dark .rating-summary { background: var(--accent-color); border-color: rgba(255,255,255,.08); }
.is-dark .testimonial-text p { color: #C4C8CE; }
.is-dark .testimonial-author strong, .is-dark .rating-score { color: #fff; }
.is-dark .testimonial-author { border-color: rgba(255,255,255,.1); }
.is-dark .slider-btn { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq-intro { position: sticky; top: calc(var(--header-h) + 30px); }
.faq-accordion { --bs-accordion-border-color: var(--border-color); --bs-accordion-border-radius: var(--radius); --bs-accordion-inner-border-radius: var(--radius); --bs-accordion-btn-focus-box-shadow: none; --bs-accordion-active-bg: #fff; --bs-accordion-active-color: var(--secondary-color); }
.faq-accordion .accordion-item { margin-bottom: .75rem; border: 1px solid var(--border-color); border-radius: var(--radius) !important; overflow: hidden; }
.faq-accordion .accordion-header { margin: 0; }
.faq-accordion .accordion-button { font-family: var(--font-heading); font-weight: 600; font-size: 1.08rem; color: var(--secondary-color); padding: 1.15rem 1.35rem; }
.faq-accordion .accordion-button:not(.collapsed) { box-shadow: inset 3px 0 0 var(--primary-color); }
.faq-accordion .accordion-button::after { background-image: none; content: '\F4FE'; font-family: 'bootstrap-icons'; transform: none; width: auto; height: auto; color: var(--primary-color); font-size: 1.2rem; }
.faq-accordion .accordion-button:not(.collapsed)::after { content: '\F2EA'; }
.faq-accordion .accordion-body { padding: 0 1.35rem 1.25rem; color: var(--muted-color); }
@media (max-width: 991.98px) { .faq-intro { position: static; } }

/* ---------------------------------------------------------------------
   Blog
   --------------------------------------------------------------------- */
.blog-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--light-color); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; font-size: 13px; color: var(--muted-color); margin-bottom: .6rem; }
.blog-cat { color: var(--primary-color); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.blog-card-title { font-size: 1.22rem; margin-bottom: .6rem; line-height: 1.3; }
.blog-card-title a { color: var(--secondary-color); }
.blog-card-title a:hover { color: var(--primary-color); }
.blog-card-text { font-size: 14.5px; color: var(--muted-color); flex: 1; }
.article-body { font-size: 17px; line-height: 1.8; }
.article-body h2 { font-size: 1.65rem; }
.article-cover { border-radius: var(--radius); margin-bottom: 2rem; width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; color: #C4C8CE; font-size: 14px; margin-top: .8rem; }
.article-meta i { color: var(--primary-color); margin-right: .3rem; }

/* ---------------------------------------------------------------------
   CTA band
   --------------------------------------------------------------------- */
.section-cta { background: var(--secondary-color); color: #B8BCC3; padding: 56px 0; position: relative; overflow: hidden; }
.section-cta::before { content: ''; position: absolute; right: -8%; top: 0; bottom: 0; width: 46%; background: var(--accent-color); border-left: 10px solid var(--primary-color); transform: skewX(-14deg); transform-origin: bottom; }
.section-cta .cta-text { max-width: 560px; }
.section-cta.is-accent { background: var(--primary-color); color: #fff; }
.section-cta.is-accent .eyebrow { color: #fff; }
.cta-title { color: #fff; font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); font-weight: 800; margin-bottom: .8rem; }
.cta-text p { margin: 0; font-size: 1.05rem; }
.cta-actions { display: grid; gap: .7rem; position: relative; z-index: 1; }
@media (max-width: 991.98px) { .section-cta::before { display: none; } .section-cta { padding: 44px 0; } }

/* ---------------------------------------------------------------------
   Forms & contact
   --------------------------------------------------------------------- */
.form-panel { background: #fff; border: 1px solid var(--border-color); border-top: 4px solid var(--primary-color); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-label { font-weight: 600; font-size: 14px; color: var(--secondary-color); margin-bottom: .35rem; }
.form-label .req { color: var(--primary-color); }
.form-control, .form-select { border-color: #D5D8DD; border-radius: var(--radius); padding: .68rem .9rem; font-size: 15px; }
.form-control:focus, .form-select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--primary-color) 18%, transparent); }
.form-note { font-size: 13px; color: var(--muted-color); }
.form-note i { color: var(--primary-color); }
.hp-field { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.enquiry-form .btn-loading { display: none; }
.enquiry-form.is-loading .btn-loading { display: inline-flex; align-items: center; }
.enquiry-form.is-loading .btn-label { display: none; }
.form-alert:empty { display: none; }
.form-alert { margin-bottom: 1rem; }
.form-success { text-align: center; padding: 20px 10px; }
.form-success i { font-size: 3rem; color: #1E9E5A; }
.contact-list li { display: flex; gap: 1rem; padding: 16px 0; border-bottom: 1px solid var(--border-color); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { display: block; font-family: var(--font-heading); color: var(--secondary-color); font-size: 1.02rem; margin-bottom: .1rem; }
.contact-list a { color: var(--text-color); }
.contact-list a:hover { color: var(--primary-color); }
.contact-icon { flex: 0 0 46px; height: 46px; display: grid; place-items: center; background: var(--primary-tint); color: var(--primary-color); border-radius: var(--radius); font-size: 1.2rem; }
.is-dark .contact-list strong { color: #fff; }
.is-dark .contact-list a, .is-dark .contact-list span { color: #C4C8CE; }
.is-dark .contact-list li { border-color: rgba(255,255,255,.1); }
.map-embed { border: 0; width: 100%; height: 420px; display: block; filter: grayscale(.2); }
@media (max-width: 575.98px) { .form-panel { padding: 22px 18px; } }

.modal-content { border: 0; border-top: 4px solid var(--primary-color); border-radius: var(--radius); }
.modal-header { padding: 1.3rem 1.6rem; }
.modal-body { padding: 1.6rem; }
.modal .eyebrow { font-size: 12px; }

/* ---------------------------------------------------------------------
   Products listing & detail
   --------------------------------------------------------------------- */
.filter-bar { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 18px; margin-bottom: 2rem; }
.category-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.category-pills a { font-family: var(--font-heading); font-weight: 600; font-size: 14px; padding: .45rem .95rem; border: 1px solid var(--border-color); border-radius: var(--radius); color: var(--secondary-color); background: #fff; }
.category-pills a:hover { border-color: var(--primary-color); color: var(--primary-color); }
.category-pills a.active { background: var(--secondary-color); border-color: var(--secondary-color); color: #fff; }
.category-pills .count { opacity: .6; font-weight: 500; margin-left: .2rem; }

.product-gallery-main { background: var(--light-color); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; display: block; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; margin-top: .6rem; }
.product-thumbs button { border: 2px solid var(--border-color); border-radius: var(--radius); padding: 0; background: var(--light-color); overflow: hidden; aspect-ratio: 1; }
.product-thumbs button.active, .product-thumbs button:hover { border-color: var(--primary-color); }
.product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-summary .product-cat { font-family: var(--font-heading); font-weight: 600; color: var(--primary-color); text-transform: uppercase; letter-spacing: .1em; font-size: 13px; }
.product-summary h1 { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem); font-weight: 800; margin: .4rem 0 1rem; }
.product-summary .lead { font-size: 1.08rem; color: var(--muted-color); }
.key-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--border-color); border-radius: var(--radius); margin: 1.5rem 0; background: #fff; }
.key-specs > div { padding: 14px 16px; border-bottom: 1px solid var(--border-color); }
.key-specs > div:nth-child(odd) { border-right: 1px solid var(--border-color); }
.key-specs > div:nth-last-child(-n+2):nth-child(odd), .key-specs > div:last-child { border-bottom: 0; }
.key-specs span { display: block; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-color); font-weight: 600; }
.key-specs strong { font-family: var(--font-heading); color: var(--secondary-color); font-size: 1.08rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.product-tabs { border-bottom: 1px solid var(--border-color); gap: .25rem; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.product-tabs .nav-link { font-family: var(--font-heading); font-weight: 600; color: var(--muted-color); border: 0; border-bottom: 3px solid transparent; border-radius: 0; padding: .9rem 1.1rem; white-space: nowrap; }
.product-tabs .nav-link.active, .product-tabs .nav-link:hover { color: var(--secondary-color); border-bottom-color: var(--primary-color); background: none; }
.spec-table { width: 100%; border: 1px solid var(--border-color); border-collapse: collapse; background: #fff; }
.spec-table th, .spec-table td { padding: 13px 18px; border-bottom: 1px solid var(--border-color); vertical-align: top; }
.spec-table th { width: 38%; background: var(--light-color); font-family: var(--font-heading); font-weight: 600; color: var(--secondary-color); }
.spec-table tr:hover td, .spec-table tr:hover th { background: var(--primary-tint); }
.spec-note { font-size: 13.5px; color: var(--muted-color); margin-top: .8rem; display: flex; gap: .5rem; }
.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.tick-list li { display: flex; gap: .7rem; align-items: flex-start; }
.tick-list i { color: var(--primary-color); font-size: 1.15rem; line-height: 1.5; }
.sidebar-card { background: var(--light-color); border-radius: var(--radius); padding: 26px; }
.sidebar-card h3 { font-size: 1.2rem; }
@media (max-width: 575.98px) { .key-specs { grid-template-columns: 1fr; } .key-specs > div { border-right: 0 !important; border-bottom: 1px solid var(--border-color) !important; } .key-specs > div:last-child { border-bottom: 0 !important; } }

/* ---------------------------------------------------------------------
   Applications page
   --------------------------------------------------------------------- */
.app-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s var(--ease); scroll-margin-top: calc(var(--header-h) + 20px); }
.app-card:hover, .app-card:target { box-shadow: var(--shadow); }
.app-card:target { border-color: var(--primary-color); }
.app-card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.app-card-body { padding: 26px; }
.app-card-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--secondary-color); color: var(--primary-color); border-radius: var(--radius); font-size: 1.45rem; margin-bottom: 1rem; }
.app-card-media + .app-card-body .app-card-icon { margin-top: -52px; position: relative; border: 3px solid #fff; box-sizing: content-box; }
.app-card-title { font-size: 1.2rem; margin-bottom: .5rem; }
.app-card-text { color: var(--muted-color); font-size: 15px; margin: 0; }

/* ---------------------------------------------------------------------
   Gallery
   --------------------------------------------------------------------- */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.gallery-filter button { font-family: var(--font-heading); font-weight: 600; font-size: 14px; padding: .5rem 1rem; border: 1px solid var(--border-color); background: #fff; border-radius: var(--radius); color: var(--secondary-color); }
.gallery-filter button.active, .gallery-filter button:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: #fff; }
.gallery-item { position: relative; display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--light-color); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item::after { content: '\F52A'; font-family: 'bootstrap-icons'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.6rem; color: #fff; background: rgba(20,22,26,.45); opacity: 0; transition: opacity .25s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-caption { font-size: 14px; color: var(--muted-color); margin-top: .5rem; }
.gallery-col.is-hidden { display: none; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--secondary-color); color: #A3A8B0; font-size: 15px; border-top: 4px solid var(--primary-color); }
.footer-main { padding: 52px 0 32px; }
.footer-logo img { height: 66px; width: auto; }
.footer-about { max-width: 360px; }
.footer-title { color: #fff; font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; position: relative; padding-bottom: .7rem; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--primary-color); }
.footer-links li { margin-bottom: .55rem; }
.footer-links a, .footer-contact a { color: #A3A8B0; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-links a:hover { padding-left: 4px; }
.footer-links a { transition: all .2s var(--ease); display: inline-block; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; }
.footer-contact i { color: var(--primary-color); margin-top: 2px; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); color: #fff; }
.footer-social a:hover { background: var(--primary-color); border-color: var(--primary-color); }
.footer-bottom { background: var(--dark-color); padding: 18px 0; font-size: 14px; }
.footer-tagline { color: var(--primary-color); font-family: var(--font-heading); font-weight: 600; letter-spacing: .04em; }

/* ---------------------------------------------------------------------
   Floating buttons
   --------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 1040;
    display: flex; align-items: center; gap: .5rem;
    background: #25D366; color: #fff; border-radius: 30px; padding: 12px 16px;
    box-shadow: 0 8px 22px rgba(37,211,102,.4); font-weight: 600; font-size: 15px;
}
.whatsapp-float i { font-size: 1.5rem; line-height: 1; }
.whatsapp-float:hover { color: #fff; background: #1EBE5A; }
.whatsapp-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s var(--ease); }
.whatsapp-float:hover .whatsapp-label { max-width: 140px; }
.back-to-top {
    position: fixed; right: 26px; bottom: 88px; z-index: 1039;
    width: 44px; height: 44px; border: 0; border-radius: var(--radius);
    background: var(--secondary-color); color: #fff; font-size: 1.1rem;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--primary-color); }

/* ---------------------------------------------------------------------
   Misc
   --------------------------------------------------------------------- */
.bg-light-grey { background: var(--light-color); }
.pagination { --bs-pagination-color: var(--secondary-color); --bs-pagination-active-bg: var(--primary-color); --bs-pagination-active-border-color: var(--primary-color); --bs-pagination-hover-color: var(--primary-color); --bs-pagination-focus-box-shadow: none; gap: .35rem; }
.pagination .page-link { border-radius: var(--radius) !important; min-width: 42px; text-align: center; font-weight: 600; }
.empty-state { text-align: center; padding: 60px 20px; border: 1px dashed var(--border-color); border-radius: var(--radius); }
.empty-state i { font-size: 2.5rem; color: var(--primary-color); }
.error-code { font-family: var(--font-heading); font-size: clamp(5rem, 4rem + 6vw, 9rem); font-weight: 800; line-height: 1; color: var(--primary-color); }

/* Subtle entrance animation (only when JS adds .reveal-ready; respects reduced motion) */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

/* Responsive spacing */
@media (max-width: 991.98px) { :root { --section-y: 52px; --header-h: 64px; } .section-head { margin-bottom: 1.6rem; } }
@media (max-width: 575.98px) {
    :root { --section-y: 42px; }
    .container { --bs-gutter-x: 1.5rem; }
    .btn-lg { padding: .8rem 1.3rem; font-size: 15px; }
    .hero-actions .btn { flex: 1 1 100%; }
    .product-card-actions { grid-template-columns: 1fr 1fr; }
    .whatsapp-float { padding: 12px; right: 14px; bottom: 14px; }
    .back-to-top { right: 18px; bottom: 76px; }
    .split-media { padding: 0 14px 14px 0; }
    .split-media.is-right { padding: 0 0 14px 14px; }
}
@media (max-width: 359.98px) {
    .product-card-specs { grid-template-columns: 1fr; }
    .product-card-specs > div + div { border-left: 0; border-top: 1px solid var(--border-color); }
    .product-card-actions { grid-template-columns: 1fr; }
}

/* Two plain white sections in a row: avoid doubled spacing */
.section:not(.is-dark):not([style]) + .section:not(.is-dark):not([style]) { padding-top: 0; }
