/* ──────────────────────────────────────────────────────────
   EXTRA CSS — Micro Plastic Polymer
────────────────────────────────────────────────────────── */

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
}

.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.mobile-nav__menu a:hover {
  background: var(--color-tag-bg);
  color: var(--color-accent);
}

.mobile-nav__menu .sub-menu {
  padding-left: 16px;
  margin-top: 4px;
}

.mobile-nav__actions {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.mobile-nav__actions .btn {
  width: 100%;
  justify-content: center;
}

/* ── Scrolled Header ─────────────────────────────────────── */
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* ── WhatsApp Float Button ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  text-decoration: none;
  transition: transform 0.22s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  width: 70px;
  height: 70px;
  border-radius: 0;
  object-fit: contain;
}
.whatsapp-float__label {
  display: none;
}

/* ── Reveal Animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Hero Image fit ──────────────────────────────────────── */
.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Footer bottom wrap ──────────────────────────────────── */
.footer__bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Form message spacing ────────────────────────────────── */
.form-message {
  transition: all 0.3s ease;
}

/* ── Skip to content link ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent);
  color: white;
  padding: 8px 16px;
  z-index: 99999;
  border-radius: 0 0 var(--radius) 0;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── Print styles ────────────────────────────────────────── */
@media print {
  .top-bar,
  .site-header,
  .hero__visual,
  .trust-strip,
  .why-section,
  .cta-section,
  .whatsapp-float,
  .site-footer { display: none; }

  body { font-size: 12pt; color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #555; }
}

/* ============================================================
   PROD CARD — 1:1 aspect ratio enforced via style.css
   ============================================================ */

/* ============================================================
   HERO — real background image
   ============================================================ */
.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.hero { position: relative; overflow: hidden; }
.hero__overlay { z-index: 1; }
.hero__inner { position: relative; z-index: 2; }

/* ============================================================
   TRUST STRIP — SVG icons
   ============================================================ */
.trust-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}
.trust-item__icon svg { flex-shrink: 0; }

/* ============================================================
   WHY SECTION — SVG icons
   ============================================================ */
.why-item__icon svg { color: rgba(255,255,255,0.85); }

/* ============================================================
   INDUSTRIES — SVG icons
   ============================================================ */
.industry-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--color-accent);
}

/* ============================================================
   CONTACT INFO — SVG icons
   ============================================================ */
.contact-info-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   LOGO BAR SEARCH — button style
   ============================================================ */
.logo-bar__search {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: border-color 0.15s, color 0.15s;
}
.logo-bar__search:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ============================================================
   FEATURED PRODUCTS BANNER
   ============================================================ */
.featured-banner {
    padding: var(--section-pad) 0;
    background: var(--color-surface);
}
.featured-banner__header {
    margin-bottom: 40px;
}
.featured-banner__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.featured-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.featured-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.featured-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.featured-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}
.featured-card:hover .featured-card__img img { transform: scale(1.06); }
.featured-card__body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.featured-card__cat {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: var(--color-tag-bg);
    padding: 2px 7px;
    border-radius: 99px;
    display: inline-block;
    width: fit-content;
}
.featured-card__name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
}
.featured-card__link {
    font-size: 0.72rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-top: auto;
    padding-top: 4px;
}
@media (max-width: 1200px) {
    .featured-banner__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .featured-banner__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .featured-banner__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FONT UPGRADE — Sora + Plus Jakarta Sans + JetBrains Mono
   ============================================================ */

/* Section labels — mono gives them a precise, scientific feel */
.section-label,
.hero__badge,
.featured-card__cat,
.contact-info-item__label,
.footer__col-title,
.trust-item__label {
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
}

/* Hero stats — mono numbers look sharp and technical */
.hero__stat-value {
    font-family: var(--font-mono);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.hero__stat-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.75;
}

/* About badge — large mono number */
.about__badge-number {
    font-family: var(--font-mono);
    letter-spacing: -0.03em;
}

/* Why-section icons replaced by SVG — ensure heading weight */
.why-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

/* Product card name — display font */
.prod-card__name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Featured card name */
.featured-card__name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Industry item name */
.industry-item__name {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Nav items — body medium weight */
.primary-nav ul li a,
.mobile-nav__menu li a {
    font-family: var(--font-body);
    font-weight: 500;
}

/* Buttons — body semibold */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.btn-label {
    display: inline;
}

/* Form labels */
.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

/* Form inputs */
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
}

/* Trust strip sub-label */
.trust-item__sub {
    font-family: var(--font-body);
}

/* Top bar — body small */
/* ── Top bar — hidden globally per design ── */
.top-bar {
    display: none !important;
}

/* Footer about paragraph */
.footer__about,
.footer__links a,
.footer__contact-link {
    font-family: var(--font-body);
}

/* Tab buttons */
.cat-tab-btn {
    font-family: var(--font-body);
    font-weight: 600;
}

/* Cat tabs intro */
.cat-tabs__intro {
    font-family: var(--font-body);
}

/* ============================================================
   FULL-WIDTH PAGE LAYOUT
   ============================================================ */
html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Sections that go edge-to-edge */
.hero,
.trust-strip,
.clients-section,
.cat-tabs-section,
.about-section,
.why-section,
.industries-section,
.featured-banner,
.cta-section,
.contact-section,
.site-footer,
.top-bar,
.logo-bar,
.site-header {
    width: 100%;
}

/* Wide container padding on large screens */
@media (min-width: 1400px) {
    .container { padding: 0 60px; }
    .header__inner { padding: 0 60px; }
    .cat-tabs__list { padding: 0 60px; }
}
@media (max-width: 768px) {
    .header__inner { padding: 0 20px; }
    .cat-tabs__list { padding: 0 20px; }
}

/* ============================================================
   CLIENTS MARQUEE SECTION
   ============================================================ */
.clients-section {
    padding: var(--section-pad) 0;
    background: var(--color-white);
    overflow: hidden;
}
.clients-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

/* Marquee wrapper — full bleed, faded edges */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white) 0%, transparent 100%);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
}

/* Scrolling track */
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 36s linear infinite;
    will-change: transform;
}
.marquee-track--reverse {
    animation: marquee-scroll-reverse 36s linear infinite;
}
.marquee-wrapper:hover .marquee-track,
.marquee-wrapper:hover .marquee-track--reverse {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Individual marquee item */
.marquee-item {
    flex-shrink: 0;
}

/* Client logo card — image version */
.client-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 160px;
    height: 100px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 14px 16px 10px;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: default;
}
.client-logo-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}
.client-logo-card__img {
    width: 100%;
    height: 52px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.25s, opacity 0.25s;
}
.client-logo-card:hover .client-logo-card__img {
    filter: grayscale(0%);
    opacity: 1;
}
.client-logo-card__fallback {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-accent);
    text-align: center;
    line-height: 1.2;
}
.client-logo-card__name {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-track,
    .marquee-track--reverse {
        animation: none;
    }
    .marquee-wrapper {
        overflow-x: auto;
    }
}

/* ============================================================
   LOGO — real image + company name
   ============================================================ */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo__img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    background: #fff;
}
.site-logo__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.site-logo__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.site-logo__tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Logo bar: reduce logo image on tablets */
@media (max-width: 900px) {
    .site-logo__img { width: 48px; height: 48px; }
    .site-logo__name { font-size: 0.92rem; }
}
@media (max-width: 640px) {
    .site-logo__tagline { display: none; }
    .site-logo__name { font-size: 0.85rem; }
    .site-logo__img { width: 42px; height: 42px; }
}

/* ============================================================
   MOBILE NAV LOGO (inside header bar on mobile)
   ============================================================ */
.mobile-nav-logo {
    display: none;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.mobile-nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    flex-shrink: 0;
}
.mobile-nav-logo__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.mobile-nav-logo__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
}
.mobile-nav-logo__tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .mobile-nav-logo { display: flex; }
}

/* ============================================================
   LOGO BAR — hide on mobile (logo moves into header)
   ============================================================ */
@media (max-width: 768px) {
    .logo-bar { display: none; }
    .top-bar__email-link { display: none; }
}

/* ============================================================
   MOBILE NAV DRAWER — full slide-in panel
   ============================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 32px rgba(0,0,0,0.18);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0.3s;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
}
.mobile-nav[hidden] {
    /* keep in flow for transition but off-screen and inert */
    display: flex;
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
}
.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0s;
}

/* Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    backdrop-filter: blur(2px);
    visibility: hidden;
    pointer-events: none;
}
.mobile-nav-overlay[hidden] {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

/* Drawer head */
.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-primary);
    flex-shrink: 0;
}
.mobile-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.mobile-nav__logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 2px;
}
.mobile-nav__logo-name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.mobile-nav__logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.mobile-nav__close {
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.15s;
}
.mobile-nav__close:hover { background: rgba(255,255,255,0.22); }

/* Drawer menu items */
.mobile-nav__menu {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
}
.mobile-nav__menu li a {
    display: block;
    padding: 13px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.15s, color 0.15s;
}
.mobile-nav__menu li a:hover,
.mobile-nav__menu li.current-menu-item > a {
    background: var(--color-surface);
    color: var(--color-accent);
    padding-left: 30px;
}
/* Sub-menu indent */
.mobile-nav__menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--color-surface);
}
.mobile-nav__menu .sub-menu li a {
    padding: 11px 24px 11px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-nav__menu .sub-menu li a:hover {
    color: var(--color-accent);
    padding-left: 42px;
}

/* Drawer footer */
.mobile-nav__footer {
    padding: 20px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    flex-shrink: 0;
}
.mobile-nav__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: border-color 0.15s, color 0.15s;
}
.mobile-nav__call:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ============================================================
   HAMBURGER BUTTON — always visible on mobile
   ============================================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.15s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.15); }
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) { .nav-toggle { display: flex; } }

/* ============================================================
   MOBILE-FRIENDLY IMPROVEMENTS
   ============================================================ */

/* Hero responsive text */
@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        min-height: auto;
        padding: 0;
    }
    .hero__inner {
        padding: 40px 20px 36px;
    }
    .hero__content {
        max-width: 100%;
        text-align: center;
    }
    .hero__badge { margin: 0 auto 14px; }
    .hero h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: 12px; }
    .hero__desc {
        font-size: 0.88rem;
        margin-bottom: 22px;
        max-width: 100%;
        /* Truncate very long description to 4 lines on mobile */
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero__actions { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .hero__stats {
        justify-content: center;
        margin-top: 24px;
        padding-top: 20px;
        gap: 20px;
        flex-wrap: wrap;
    }
    .hero__stat-value { font-size: 1.4rem; }
}

/* Product grid on very small screens */
@media (max-width: 380px) {
    .product-grid-5 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .featured-banner__grid { grid-template-columns: 1fr; }
}

/* Why grid — single column on mobile */
@media (max-width: 560px) {
    .why-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Clients marquee — narrower cards on mobile */
@media (max-width: 480px) {
    .client-logo-card { width: 128px; height: 86px; padding: 10px 12px 8px; }
    .client-logo-card__img { height: 40px; }
    /* Shorter track on mobile → reduce duration to keep same visual speed */
    .marquee-track         { animation-duration: 28s; }
    .marquee-track--reverse{ animation-duration: 28s; }
}

/* Contact section responsive */
@media (max-width: 768px) {
    .contact__inner { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* Trust strip mobile — scroll horizontally so items never clip */
@media (max-width: 768px) {
    .trust-strip {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .trust-strip::-webkit-scrollbar { display: none; }
    .trust-strip__inner {
        flex-wrap: nowrap;
        gap: 0;
        min-width: max-content;
        padding: 0 16px;
    }
    .trust-item {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .trust-item__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 4px;
    }
    .trust-item__label,
    .trust-item__sub {
        white-space: normal;
        text-align: center;
    }
    .trust-divider {
        display: block;
        width: 1px;
        height: 60px;
        flex-shrink: 0;
        align-self: center;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 10px; }
}

/* About section responsive */
@media (max-width: 768px) {
    .about__inner { grid-template-columns: 1fr; }
    .about__visual { order: -1; }
}

/* Prevent horizontal overflow on mobile */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    .btn { min-height: 44px; padding: 12px 22px; }
    .mobile-nav__menu li a { min-height: 44px; display: flex; align-items: center; }
    .cat-tab-btn { min-height: 44px; }
}

/* ══════════════════════════════════════════════════════════
   SHARED PAGE STYLES
══════════════════════════════════════════════════════════ */

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Section helpers */
.section {
  padding: var(--section-pad) 0;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-tag-bg);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--color-text-muted);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 110px 0 72px;
  overflow: hidden;
  color: #fff;
}
.page-hero .hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero .hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,.88) 0%, rgba(21,101,192,.70) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.8); transition: color .2s; }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero__inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT US PAGE
══════════════════════════════════════════════════════════ */

/* ── Intro Section ──────────────────────────────────────── */
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 12px 0 20px;
}
.about-intro__text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-intro__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-tag-bg);
  padding: 6px 14px;
  border-radius: 99px;
}
.about-badge svg { color: var(--color-accent); flex-shrink: 0; }

.about-intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-intro__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-intro__stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-stat-big {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.8rem;
  opacity: .75;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro__image { order: -1; }
  .about-intro__stat-card { bottom: -16px; left: 16px; }
}

/* ── Stats Row ──────────────────────────────────────────── */
.about-stats-row {
  background: var(--color-primary);
  padding: 48px 0;
}
.about-stats-row__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.about-stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  color: #fff;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-stat-item__label {
  font-size: 0.82rem;
  opacity: .7;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .about-stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .about-stat-item:nth-child(even) { border-right: none; }
}

/* ── Supply Grid ──────────────────────────────────────────── */
.about-supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.about-supply-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s, border-color .2s;
}
.about-supply-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}
.about-supply-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--color-tag-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.about-supply-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.about-supply-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── Legal / Registration ────────────────────────────────── */
.about-legal {
  background: var(--color-surface);
}
.about-legal__inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-legal__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 12px 0 32px;
}
.about-legal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.about-legal__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.about-legal__item dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.about-legal__item dd {
  font-size: 0.92rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.45;
}

/* ── About CTA ──────────────────────────────────────────── */
.about-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1565C0 100%);
  color: #fff;
}
.about-cta__inner {
  text-align: center;
}
.about-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.about-cta__inner p {
  font-size: 1.05rem;
  opacity: .82;
  max-width: 520px;
  margin: 0 auto 32px;
}
.about-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta .btn-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.about-cta .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */

/* ── Contact Cards ──────────────────────────────────────── */
.contact-cards {
  padding: 56px 0 0;
}
.contact-cards__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-card__icon {
  width: 52px; height: 52px;
  background: var(--color-tag-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
}
.contact-card__icon--wa {
  background: #e8f5e9;
  color: #25D366;
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.contact-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  word-break: break-word;
  transition: opacity .2s;
}
.contact-card__link:hover { opacity: .75; }

/* ── Contact Main ────────────────────────────────────────── */
.contact-main__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1000px) {
  .contact-main__inner { grid-template-columns: 1fr; }
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.contact-form-wrap__sub {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-group label span { color: var(--color-accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(25,118,210,.12);
}
.form-group textarea { resize: vertical; }

.contact-form__submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 1rem;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-message--error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ── Map Column ─────────────────────────────────────────── */
.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.contact-map-embed iframe {
  display: block;
}

.contact-info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-info-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  color: var(--color-text-muted);
}
.contact-hours li:last-child { border: none; padding: 0; }
.contact-hours li span:first-child { font-weight: 600; color: var(--color-text); }
.contact-info-box__gst {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   CATEGORIES PAGE
══════════════════════════════════════════════════════════ */

/* ── Filter Strip ───────────────────────────────────────── */
.cats-filter-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: var(--shadow-sm);
}
.cats-filter-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cats-filter__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cats-filter__tag {
  padding: 7px 18px;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
}
.cats-filter__tag:hover,
.cats-filter__tag.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.cats-filter__count {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.cats-filter__count span {
  font-weight: 700;
  color: var(--color-primary);
}

/* ── Category Grid Section ──────────────────────────────── */
.cats-grid-section {
  padding: 60px 0;
}

/* ── Category Grid ──────────────────────────────────────── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  box-shadow: 0 14px 44px rgba(0,0,0,0.13);
  transform: translateY(-6px);
}
.cat-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* 1:1 square image */
.cat-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface);
}
.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.cat-card:hover .cat-card__img {
  transform: scale(1.07);
}
/* Gradient overlay */
.cat-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,58,0.62) 0%, transparent 58%);
  z-index: 1;
  pointer-events: none;
}
.cat-card__count {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 99px;
}
.cat-card__count span { opacity: .8; font-weight: 400; }

.cat-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.cat-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}
.cat-card__desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cat-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-tag-text);
  background: var(--color-tag-bg);
  padding: 3px 9px;
  border-radius: 99px;
}
.cat-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--color-accent);
  transition: color .2s;
}
.cat-card__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-tag-bg);
  border-radius: 50%;
  color: var(--color-accent);
  transition: background .2s, transform .2s, color .2s;
  flex-shrink: 0;
}
.cat-card:hover .cat-card__cta-arrow {
  background: var(--color-accent);
  color: #fff;
  transform: translateX(3px);
}

/* ── Quote Banner ───────────────────────────────────────── */
.cats-quote-banner {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.cats-quote-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cats-quote-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cats-quote-banner__text p {
  color: var(--color-text-muted);
  max-width: 480px;
}
.cats-quote-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT DETAIL PAGE  (single-mpp_product.php)
══════════════════════════════════════════════════════════ */

/* ── Breadcrumb ─────────────────────────────────────────── */
.pd-breadcrumb {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}
.pd-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.pd-breadcrumb__inner a {
  color: var(--color-accent);
  text-decoration: none;
}
.pd-breadcrumb__inner a:hover { text-decoration: underline; }
.pd-breadcrumb__inner span[aria-current] { color: var(--color-text); font-weight: 500; }

/* ── Product Hero ───────────────────────────────────────── */
.pd-hero {
  padding: 56px 0 48px;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.pd-hero__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .pd-hero__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Media column */
.pd-hero__media { position: relative; }
.pd-hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.pd-hero__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.pd-hero__icon-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-hero__icon { font-size: 6rem; line-height: 1; }
.pd-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Info column */
.pd-kicker { margin-bottom: 8px; }
.pd-kicker a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
}
.pd-kicker a:hover { text-decoration: underline; }

.pd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.pd-hero__excerpt {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}

/* Quick spec pills row */
.pd-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.pd-quick-spec {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
}
.pd-quick-spec span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.pd-quick-spec strong {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* CTA Buttons */
.pd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}
.btn-wa:hover {
  background: #1ebe59;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  color: #fff;
}

/* Trust strip */
.pd-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.pd-trust-item svg { color: var(--color-accent); flex-shrink: 0; }

/* ── Tabs Bar ───────────────────────────────────────────── */
.pd-tabs-bar {
  background: #fff;
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s;
}
.pd-tabs-bar.is-sticky { box-shadow: var(--shadow-md); }
.pd-tabs-bar__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pd-tabs-bar__inner::-webkit-scrollbar { display: none; }
.pd-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  margin-bottom: -2px;
}
.pd-tab-btn:hover { color: var(--color-primary); }
.pd-tab-btn.is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ── Tab Panels ─────────────────────────────────────────── */
.pd-tabs-content { padding: 48px 0; }
.pd-tab-panel { display: none; }
.pd-tab-panel.is-active { display: block; }

/* Overview grid */
.pd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .pd-overview-grid { grid-template-columns: 1fr; }
}

.pd-overview__main h2,
.pd-specs-wrap h2,
.pd-apps-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

/* Prose content from editor */
.pd-content { color: var(--color-text); line-height: 1.8; font-size: 0.97rem; }
.pd-content p { margin-bottom: 16px; }
.pd-content ul, .pd-content ol { padding-left: 20px; margin-bottom: 16px; }
.pd-content li { margin-bottom: 6px; }
.pd-content strong { color: var(--color-primary); }

/* Spec pills below description */
.pd-spec-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pd-spec-pill {
  background: var(--color-tag-bg);
  color: var(--color-tag-text);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sidebar info card */
.pd-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.pd-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.pd-info-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.pd-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.85rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.pd-info-list li:last-child { border: none; padding: 0; }
.pd-info-list li span { color: var(--color-text-muted); flex-shrink: 0; }
.pd-info-list li strong { color: var(--color-primary); text-align: right; }
.pd-info-list li strong a { color: var(--color-accent); text-decoration: none; }
.pd-formula { font-family: var(--font-mono); font-size: 0.9rem; }

/* ── Specifications Table ───────────────────────────────── */
.pd-specs-wrap { max-width: 720px; }
.pd-specs-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.pd-spec-table thead { background: var(--color-primary); }
.pd-spec-table thead th {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.pd-spec-table tbody tr { border-bottom: 1px solid var(--color-border); }
.pd-spec-table tbody tr:last-child { border: none; }
.pd-spec-table tbody tr:nth-child(even) { background: var(--color-surface); }
.pd-spec-table tbody td { padding: 14px 20px; color: var(--color-text); vertical-align: top; }
.pd-spec-table tbody td:first-child { color: var(--color-text-muted); font-size: 0.85rem; font-weight: 600; width: 40%; }
.pd-download-btn { display: inline-flex; align-items: center; gap: 8px; }

/* Applications */
.pd-apps-wrap { max-width: 760px; }

/* ── Ordering Grid ──────────────────────────────────────── */
.pd-order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pd-order-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pd-order-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-tag-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent);
}
.pd-order-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.pd-order-steps {
  padding-left: 20px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.pd-order-steps li { margin-bottom: 8px; }
.pd-order-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.pd-order-list li { padding-left: 16px; position: relative; }
.pd-order-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.pd-order-list li a { color: var(--color-accent); text-decoration: none; }
.pd-order-list li a:hover { text-decoration: underline; }

/* ── Related Products ───────────────────────────────────── */
.pd-related { background: var(--color-surface); }
.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

/* ── Sticky Quote Bar (mobile only) ─────────────────────── */
.pd-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-primary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.pd-sticky-bar.is-visible { transform: translateY(0); }
.pd-sticky-bar__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.pd-sticky-bar__actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
@media (min-width: 768px) { .pd-sticky-bar { display: none; } }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.search-overlay[hidden] {
    display: none;
}
.search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 60, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: searchFadeIn 0.2s ease;
}
.search-overlay__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    width: min(620px, calc(100vw - 32px));
    box-shadow: 0 24px 64px rgba(0,0,0,0.28);
    animation: searchSlideDown 0.22s cubic-bezier(0.4,0,0.2,1);
}
.search-overlay__close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-surface, #f4f6f9);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text, #1a1a2e);
    transition: background 0.15s;
}
.search-overlay__close:hover { background: var(--color-border, #e2e8f0); }
.search-overlay__label {
    font-family: var(--font-display, sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted, #64748b);
    margin: 0 0 14px;
}
.search-overlay__form {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-accent, #0057b7);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.search-overlay__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-family: var(--font-body, sans-serif);
    font-size: 1.05rem;
    color: var(--color-text, #1a1a2e);
    background: transparent;
}
.search-overlay__input::placeholder { color: var(--color-text-muted, #94a3b8); }
.search-overlay__submit {
    background: var(--color-accent, #0057b7);
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    transition: background 0.15s;
    flex-shrink: 0;
}
.search-overlay__submit:hover { background: var(--color-primary, #0a193c); }
.search-overlay__hint {
    margin: 10px 0 0;
    font-size: 0.75rem;
    color: var(--color-text-muted, #94a3b8);
    text-align: center;
}
@keyframes searchFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes searchSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    .search-overlay { padding-top: 48px; }
    .search-overlay__box { padding: 24px 18px 18px; }
    .search-overlay__input { font-size: 0.95rem; padding: 12px 12px; }
}

/* ── Remove Products dropdown from nav ──────────────────── */
.primary-nav .menu-item-has-children .sub-menu {
  display: none !important;
}
.primary-nav .menu-item-has-children:hover .sub-menu {
  display: none !important;
}
.primary-nav .menu-item-has-children > a::after {
  display: none !important;
}

/* ============================================================
   MPP PRODUCT ARCHIVE — redesigned cards
   ============================================================ */

.mpp-archive {
  padding: 60px 0 80px;
}

/* Grid: 4 cols → 3 → 2 → 1 */
.mpp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .mpp-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .mpp-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .mpp-product-grid { grid-template-columns: 1fr; } }

/* Card shell */
.mpp-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow .28s ease, transform .28s ease;
}
.mpp-card:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.13);
  transform: translateY(-5px);
}
.mpp-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* 1:1 square image */
.mpp-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface);
}
.mpp-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
  display: block;
}
.mpp-card:hover .mpp-card__img { transform: scale(1.07); }

.mpp-card__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark-to-transparent gradient at bottom of image */
.mpp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,24,50,0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Category badge (top-right) */
.mpp-card__badge {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 2;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 99px;
}

/* Card body */
.mpp-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.mpp-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mpp-card__excerpt {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer CTA row */
.mpp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
}
.mpp-card__cta-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
}
.mpp-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-tag-bg);
  color: var(--color-accent);
  transition: background .2s, transform .2s, color .2s;
  flex-shrink: 0;
}
.mpp-card:hover .mpp-card__arrow {
  background: var(--color-accent);
  color: #fff;
  transform: translateX(3px);
}

/* Pagination */
.mpp-archive__pagination {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}
.mpp-archive__pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.mpp-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.mpp-archive__pagination .page-numbers.current,
.mpp-archive__pagination .page-numbers:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.mpp-archive__pagination .prev,
.mpp-archive__pagination .next {
  width: auto;
  padding: 0 14px;
}

/* Empty state */
.mpp-archive__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ============================================================
   PRODUCTS ARCHIVE HERO  (.prods-hero)
   ============================================================ */

.prods-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1c3a 0%, #0f2d58 45%, #1565C0 100%);
  color: #fff;
  padding: 80px 0 70px;
}

/* BG image — subtle, low opacity */
.prods-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
}

/* Dark directional overlay */
.prods-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 20, 48, 0.92) 0%,
    rgba(15, 45, 88, 0.78) 55%,
    rgba(21, 101, 192, 0.50) 100%
  );
  z-index: 1;
}

/* Subtle dot-grid texture */
.prods-hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Inner layout: two columns */
.prods-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

/* ── Left column ─────────────────────────────────────────── */

.prods-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.prods-hero__breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .2s;
}
.prods-hero__breadcrumb a:hover { color: #fff; }
.prods-hero__breadcrumb svg { opacity: .5; }

.prods-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66,165,245,0.15);
  border: 1px solid rgba(66,165,245,0.35);
  color: #90CAF9;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.prods-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42A5F5;
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.prods-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.prods-hero__heading span {
  color: #42A5F5;
  display: inline-block;
}

.prods-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 32px;
}

/* Search bar */
.prods-hero__search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  overflow: hidden;
  max-width: 520px;
  transition: border-color .2s, background .2s;
  margin-bottom: 22px;
}
.prods-hero__search:focus-within {
  border-color: #42A5F5;
  background: rgba(255,255,255,0.12);
}
.prods-hero__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.92rem;
  font-family: var(--font-body);
  padding: 13px 16px;
}
.prods-hero__search-input::placeholder {
  color: rgba(255,255,255,0.42);
}
.prods-hero__search-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #1976D2;
  border: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 13px 20px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.prods-hero__search-btn:hover { background: #1565C0; }

/* Category quick-link pills */
.prods-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prods-hero__cat-pill {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  padding: 5px 13px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.prods-hero__cat-pill:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

/* ── Right column ────────────────────────────────────────── */

.prods-hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 2×2 stat grid */
.prods-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.prods-hero__stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 20px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s;
}
.prods-hero__stat:hover {
  background: rgba(255,255,255,0.11);
}
.prods-hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.prods-hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
  line-height: 1.3;
}

/* CTA card */
.prods-hero__cta-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.prods-hero__cta-icon {
  width: 42px;
  height: 42px;
  background: rgba(66,165,245,0.2);
  border: 1px solid rgba(66,165,245,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90CAF9;
  flex-shrink: 0;
}
.prods-hero__cta-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.prods-hero__cta-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
}
.prods-hero__cta-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: #1976D2;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.prods-hero__cta-btn:hover { background: #1565C0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prods-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prods-hero__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .prods-hero__stats { grid-column: 1; }
  .prods-hero__cta-card { grid-column: 2; align-self: start; }
}
@media (max-width: 640px) {
  .prods-hero { padding: 56px 0 48px; }
  .prods-hero__right {
    grid-template-columns: 1fr;
  }
  .prods-hero__cta-card { grid-column: 1; }
  .prods-hero__stats { grid-template-columns: 1fr 1fr; }
  .prods-hero__search { max-width: 100%; }
}

/* ── Footer logo — matches nav logo exactly ─────────────── */
.footer__site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer__site-logo .site-logo__img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer__site-logo .site-logo__text {
  display: flex;
  flex-direction: column;
}
.footer__site-logo .site-logo__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.footer__site-logo .site-logo__tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* ============================================================
   RANGE OF PRODUCTS SECTION — Real product cards, 1:1 images
   ============================================================ */
.range-section {
    padding: var(--section-pad) 0;
    background: #f4f7fb;
}
.range__header {
    text-align: center;
    margin-bottom: 52px;
}
.range__sub {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 12px auto 0;
    line-height: 1.7;
}
.range__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ── Product Card ── */
.range-prod-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border, #e5eaf2);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 2px 8px rgba(21,101,192,0.05);
}
.range-prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(21,101,192,0.14);
    border-color: var(--color-primary, #1565c0);
}

/* 1:1 square image container */
.range-prod-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eef1f7;
    flex-shrink: 0;
}
.range-prod-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.42s ease;
}
.range-prod-card:hover .range-prod-card__img {
    transform: scale(1.07);
}

/* Hover overlay */
.range-prod-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(21,101,192,0.0) 40%, rgba(21,101,192,0.72) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    opacity: 0;
    transition: opacity 0.28s ease;
}
.range-prod-card:hover .range-prod-card__overlay {
    opacity: 1;
}
.range-prod-card__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--color-primary, #1565c0);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 7px 16px;
    border-radius: 99px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
    transform: translateY(6px);
    transition: transform 0.28s ease;
}
.range-prod-card:hover .range-prod-card__view-btn {
    transform: translateY(0);
}

/* Category badge — top-right on image */
.range-prod-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(21,101,192,0.88);
    color: #fff;
    font-family: var(--font-mono, monospace);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 99px;
    backdrop-filter: blur(4px);
    line-height: 1.5;
    max-width: calc(100% - 20px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card body */
.range-prod-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.range-prod-card__name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-heading, #0d1b2e);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.range-prod-card__enquire {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent, #1976d2);
    letter-spacing: 0.01em;
    transition: gap 0.18s ease;
}
.range-prod-card:hover .range-prod-card__enquire {
    gap: 8px;
}
.range-prod-card__enquire svg {
    flex-shrink: 0;
    transition: transform 0.18s ease;
}
.range-prod-card:hover .range-prod-card__enquire svg {
    transform: translateX(2px);
}

/* CTA row */
.range__cta {
    text-align: center;
    margin-top: 44px;
}

/* Responsive */
@media (max-width: 1200px) {
    .range__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .range__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .range__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .range-prod-card__body { padding: 11px 12px 13px; }
    .range-prod-card__name { font-size: 0.82rem; }
}
@media (max-width: 360px) {
    .range__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO — background-image variant (Certificates & Blog)
══════════════════════════════════════════════════════════ */
.page-hero {
    background-size: cover;
    background-position: center;
}
.page-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,.88) 0%, rgba(21,101,192,.72) 100%);
}
.page-hero__content {
    position: relative; z-index: 1; color: #fff;
}
.page-hero__content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.page-hero__content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    max-width: 560px;
}
.section-label--light {
    color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.25);
}

/* ══════════════════════════════════════════════════════════
   CERTIFICATES PAGE
══════════════════════════════════════════════════════════ */
/* (styles are inlined in page-certificates.php for encapsulation) */

/* ══════════════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════════════ */
/* (styles are inlined in page-blog.php for encapsulation) */
