/* ==========================================================================
   SURGICAL GLOVES KENYA — Shared Design System
   Hospital-grade surgical & examination gloves | Precision · Trust · Restraint
   8px spacing grid | Deep Medical Blue + Signal Red accent only
   ========================================================================== */

/* --- Tokens --- */
:root {
  --blue: #0A3D62;
  --blue-deep: #062840;
  --blue-mid: #0E4D7A;
  --blue-soft: #E8F1F8;
  --red: #D62828;
  --red-hover: #B71F1F;
  --white: #FFFFFF;
  --gray-50: #F5F7FA;
  --gray-100: #E8ECF1;
  --gray-200: #D0D7E0;
  --gray-400: #8A96A3;
  --gray-600: #4A5568;
  --gray-800: #1A2332;
  --text: #1A2332;
  --text-muted: #4A5568;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(10, 61, 98, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 61, 98, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 61, 98, 0.12);
  --shadow-hover: 0 12px 32px rgba(10, 61, 98, 0.14);
  --transition: 200ms ease;
  --nav-h: 72px;
  --container: 1180px;
  --section-y: 96px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; border: none; background: none; }

table {
  border-collapse: collapse;
  width: 100%;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--blue);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.0625rem; }

p { color: var(--text-muted); }

.text-white { color: var(--white); }
.text-white p { color: rgba(255, 255, 255, 0.85); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-y) 0;
}

.section--gray { background: var(--gray-50); }
.section--blue { background: var(--blue); color: var(--white); }
.section--blue h2,
.section--blue h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.0625rem;
}

/* --- Skip link (a11y) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 4px 16px rgba(214, 40, 40, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--blue);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover {
  color: var(--red);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--nav-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: var(--blue);
  text-transform: uppercase;
}

.logo__mark {
  display: inline-block;
  width: 10px;
  height: 28px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.logo:hover { color: var(--blue); }
.logo:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-desktop a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.nav-desktop .btn {
  margin-left: 12px;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 6px;
  z-index: 110;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--blue);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 88vw);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: calc(var(--nav-h) + 24px) 28px 40px;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 105;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.nav-mobile.is-open {
  transform: translateX(0);
}

.nav-mobile a {
  display: block;
  padding: 14px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 6px;
  border-bottom: 1px solid var(--gray-100);
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-mobile .btn {
  margin-top: 20px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 61, 98, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
  z-index: 104;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile,
  .nav-overlay { display: none !important; }
}

/* --- Page hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 64px 0 72px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

/* --- Home hero + product category slider --- */
.hero {
  position: relative;
  min-height: min(680px, 88dvh);
  display: flex;
  align-items: center;
  background: var(--blue-deep);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms cubic-bezier(0.32, 0.72, 0, 1), visibility 900ms;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6.5s ease-out;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 40, 64, 0.92) 0%,
    rgba(10, 61, 98, 0.78) 48%,
    rgba(10, 61, 98, 0.42) 100%
  );
  z-index: 1;
}

.hero-slide__label {
  position: absolute;
  right: 24px;
  bottom: 88px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .hero-slide__label {
    display: inline-flex;
    right: 40px;
    bottom: 96px;
  }
}

.hero-slide__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-slider__controls {
    bottom: 28px;
    padding: 0 24px;
  }
}

.hero-slider__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.is-active {
  background: var(--red);
  width: 28px;
  border-radius: 999px;
}

.hero-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero-slider__status {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  max-width: 640px;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
}

.hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Trust strip --- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}

.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.01em;
}

.trust-strip__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
}

/* --- Product cards --- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid--large { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-50);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__img-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 61, 98, 0.75);
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  opacity: 0.9;
}

.product-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product-card__body h3 {
  font-size: 1.0625rem;
}

.product-card__body p {
  font-size: 0.875rem;
  flex: 1;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  position: relative;
  width: fit-content;
}

.product-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.product-card:hover .product-card__link::after {
  width: 100%;
}

.product-card__link:hover {
  color: var(--red);
}

/* --- Why Omexa --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

.why-card {
  text-align: left;
  padding: 8px 0;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: var(--radius);
  color: var(--blue);
  margin-bottom: 20px;
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Certifications band --- */
.certs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 120px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.cert-badge__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid var(--blue);
}

.cert-badge span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat__num {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat__num span {
  color: #F5A3A3;
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.testimonial__quote {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.testimonial__quote::before {
  content: "\201C";
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 0;
  margin-right: 2px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.testimonial__role {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* --- Bottom CTA --- */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; }
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-col .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-certs span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --- Products listing filters --- */
.products-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .products-layout {
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
  }
}

.filter-nav {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--gray-100);
}

.filter-nav h2 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--blue);
}

.filter-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 900px) {
  .filter-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
  }
}

.filter-nav a {
  display: block;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.filter-nav a:hover,
.filter-nav a.is-active {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

/* --- Product detail --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.product-detail__gallery {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.product-detail__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail__img-note {
  padding: 10px 16px;
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.product-detail__info h1 {
  margin-bottom: 12px;
}

.product-detail__lead {
  font-size: 1.0625rem;
  margin-bottom: 28px;
}

.feature-list {
  margin-bottom: 32px;
}

.feature-list h2 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.product-detail__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail__certs span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 12px;
  border-radius: 4px;
}

.specs-table {
  margin-top: 48px;
}

.specs-table h2 {
  margin-bottom: 20px;
}

.specs-table table {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.specs-table th,
.specs-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gray-100);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table th {
  width: 40%;
  font-weight: 600;
  color: var(--blue);
  background: var(--gray-50);
}

.specs-table td {
  color: var(--text-muted);
}

.specs-table tr:nth-child(even) td {
  background: rgba(245, 247, 250, 0.5);
}

/* --- About page --- */
.prose {
  max-width: 720px;
}

.prose p {
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.prose h2 {
  margin: 40px 0 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split--reverse .split__media { order: -1; }
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-grid figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
}

.image-grid figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 61, 98, 0.7);
}

.process-list {
  display: grid;
  gap: 20px;
}

.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.process-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.process-item p {
  font-size: 0.9375rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.8125rem;
}

.map-graphic {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.map-graphic svg {
  max-width: 100%;
  height: auto;
  color: var(--blue);
}

.map-regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.map-regions span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 999px;
}

.map-regions span.highlight {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* --- Quality page --- */
.cert-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .cert-cards { grid-template-columns: repeat(2, 1fr); }
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.cert-card__placeholder {
  aspect-ratio: 16 / 10;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
}

.cert-card__placeholder strong {
  display: block;
  font-size: 1.25rem;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.cert-card h3 {
  font-size: 1.125rem;
}

.cert-card p {
  font-size: 0.9375rem;
  flex: 1;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  z-index: 1;
}

.timeline-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9375rem;
}

/* --- OEM/ODM --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.step-card__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-soft);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.875rem;
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .capability-list { grid-template-columns: repeat(2, 1fr); }
}

.capability-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}

.capability-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--blue-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.capability-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-item h3 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.capability-item p {
  font-size: 0.8125rem;
}

/* --- Contact --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
}

.contact-info h2 {
  margin-bottom: 12px;
}

.contact-info > p {
  margin-bottom: 32px;
}

.contact-block {
  margin-bottom: 24px;
}

.contact-block h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--gray-400);
}

.contact-block p,
.contact-block a {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.contact-block a:hover {
  color: var(--red);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 20px;
  background: #25D366;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.whatsapp-btn:hover {
  background: #1da851;
  color: var(--white) !important;
}

.whatsapp-btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.map-placeholder {
  margin-top: 32px;
  aspect-ratio: 16 / 10;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.875rem;
  text-align: center;
  padding: 24px;
}

.map-placeholder strong {
  color: var(--blue);
  font-size: 0.9375rem;
}

/* Form */
.inquiry-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.inquiry-form h2 {
  margin-bottom: 8px;
}

.inquiry-form > p {
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 560px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.form-group .required {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* --- Utility --- */
.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;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Related products section spacing */
.related-products {
  padding-top: 0;
}
