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

:root {
  --navy: #1a2639;
  --red: #cc2222;
  --light-bg: #f0f4f8;
  --white: #ffffff;
  --dark-text: #1a2639;
  --mid-text: #555;
  --border: #dde2ea;
  --stat-bg: #1f2d3d;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  color: #ccd4e0;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

/* ── DROPDOWNS ── */
.nav-links li { position: relative; }

.nav-links li > a.has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links li > a.has-dropdown .arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #8896aa;
  transition: transform 0.25s, border-top-color 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-links li:hover > a.has-dropdown .arrow {
  transform: rotate(180deg);
  border-top-color: #fff;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  min-width: 230px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
  border-top: 3px solid var(--red);
  z-index: 200;
  padding: 6px 0;
  border-radius: 0 0 4px 4px;
}

.nav-links li:hover > .dropdown { display: block; animation: dropIn 0.18s ease forwards; }

/* bridge gap so dropdown doesn't disappear on mouse travel */
.nav-links li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #3a4a5c !important;
  text-decoration: none;
  border-bottom: 1px solid #f0f3f7;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: #f5f8fc;
  color: var(--red) !important;
  padding-left: 22px;
}

.dd-icon {
  width: 24px; height: 24px;
  background: #eef2f7;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.dropdown a:hover .dd-icon { background: #fde8e8; }

.dd-icon svg { width: 12px; height: 12px; fill: #6a7f96; transition: fill 0.15s; }
.dropdown a:hover .dd-icon svg { fill: var(--red); }

.nav-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-icons a {
  color: #aab4c2;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
  width: 28px;
  height: 28px;
  border: 1px solid #344560;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icons a:hover { color: #fff; border-color: #aab4c2; }

/* ── HERO ── */
.hero {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ── SECTION LABEL ── */
.section-label {
  text-align: center;
  padding: 60px 20px 40px;
}

.section-label h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.section-label .underline {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 0 auto;
}

/* ── PROCESS UNIT ── */
.process-unit {
  background: var(--white);
  padding: 0 60px 70px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-card {
  text-align: center;
  cursor: pointer;
}

.process-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #c8d8e8;
}

.process-card .img-wrap {
  overflow: hidden;
  background: #c8d8e8;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card:nth-child(1) .img-wrap { background: linear-gradient(135deg,#1a6b8a,#2da8cc); }
.process-card:nth-child(2) .img-wrap { background: linear-gradient(135deg,#6b4c1a,#c48a3a); }
.process-card:nth-child(3) .img-wrap { background: linear-gradient(135deg,#3a1a6b,#8a3acc); }
.process-card:nth-child(4) .img-wrap { background: linear-gradient(135deg,#1a6b3a,#3acc7a); }
.process-card:nth-child(5) .img-wrap { background: linear-gradient(135deg,#6b1a1a,#cc3a3a); }

.process-card:hover img {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.process-card .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-text);
  margin-top: 12px;
}

/* ── STATS BANNER ── */
.stats-banner {
  background: var(--stat-bg);
  background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1600&q=60');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 48px 60px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex: 1;
  max-width: 200px;
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }

.stat-item .stat-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.stat-item .stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .stat-unit {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── CERTIFICATION ── */
.certification {
  background: var(--white);
  padding: 0 60px 70px;
}

.cert-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 70px;
  filter: grayscale(40%);
  transition: filter 0.3s;
}

.cert-item:hover { filter: grayscale(0%); }

.cert-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 66px;
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 8px;
}

.cert-oeko { color: #f4a000; }
.cert-lenzing { color: #2c7a2c; font-weight: 700; font-size: 18px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }
.cert-iso14 { color: #2c7a2c; }
.cert-iso9 { color: #1a50a0; }
.cert-bci { color: #1a50a0; }

.cert-badge .cert-text {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--mid-text);
  text-align: center;
}

/* ── BRANDS ── */
.brands {
  background: var(--light-bg);
  padding: 0 60px 70px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-cell {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  min-height: 90px;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}

.brand-cell:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  z-index: 2;
  position: relative;
}

.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.b-uniqlo .brand-name { color: #e40521; border: 2px solid #e40521; padding: 6px 10px; }
.b-hm .brand-name { color: #e50010; font-size: 28px; font-family: serif; }
.b-kiabi .brand-name { color: #e6007e; }
.b-lc .brand-name { color: #003087; font-size: 16px; }
.b-express .brand-name { color: #111; font-size: 18px; letter-spacing: 3px; }
.b-levis .brand-name { color: #e41b23; background: #e41b23; color: white; padding: 6px 14px; }
.b-streetone .brand-name { color: #c0392b; font-size: 14px; }
.b-varner .brand-name { color: #111; font-size: 22px; }
.b-jackjones .brand-name { color: #111; font-size: 14px; letter-spacing: 0px; }
.b-george .brand-name { color: #111; font-family: Georgia, serif; font-style: italic; }
.b-carrera .brand-name { color: #c0392b; font-size: 18px; }
.b-zara .brand-name { color: #111; font-size: 22px; letter-spacing: 5px; font-weight: 400; }
.b-jules .brand-name { color: #e74c3c; font-style: italic; font-size: 24px; }
.b-ca .brand-name { color: #c0392b; border: 2px solid #c0392b; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.b-marubeni .brand-name { color: #c0392b; font-size: 16px; }
.b-target .brand-name { color: #cc0000; font-size: 16px; }
.b-tommy .brand-name { color: #1a1a6e; font-size: 12px; text-align: center; }
.b-esprit .brand-name { color: #e74c3c; font-size: 20px; letter-spacing: 2px; }
.b-ralph .brand-name { color: #1a1a6e; font-size: 13px; text-align: center; }
.b-david .brand-name { color: #333; font-size: 12px; letter-spacing: 1px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-banner p {
  color: #e8edf5;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.cta-btn {
  background: transparent;
  border: 1.5px solid #8896aa;
  color: #e8edf5;
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: #141e2d;
  padding: 50px 60px 30px;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #2d3f55;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-icon svg { width: 16px; height: 16px; fill: #7a9bb5; }

.footer-col-text {
  font-size: 12px;
  color: #8a9db5;
  line-height: 1.7;
  font-weight: 400;
}

.footer-col-text strong {
  display: block;
  color: #c8d5e4;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 3px;
}

.footer-bottom {
  border-top: 1px solid #1e2d3d;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 11px; color: #4a6070; }
.footer-bottom a { color: #6a90a8; text-decoration: none; }

.social-links { display: flex; gap: 8px; }

.social-links a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-links a:hover { opacity: 0.8; }
.s-fb { background: #3b5998; color: white; }
.s-in { background: #0077b5; color: white; }
.s-yt { background: #cc0000; color: white; }
.s-gp { background: #dd4b39; color: white; }

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

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

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

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,35,0.25) 0%,
    rgba(10,20,35,0.15) 50%,
    rgba(10,20,35,0.55) 100%
  );
}

.slide-caption {
  position: absolute;
  bottom: 60px;
  left: 70px;
  z-index: 10;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.slide.active .slide-caption { opacity: 1; transform: translateY(0); }

.slide-caption h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 8px;
}

.slide-caption p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
}

.slide-arrow:hover { background: rgba(204,34,34,0.75); border-color: var(--red); }
.slide-arrow svg { width: 18px; height: 18px; fill: #fff; }
.slide-arrow.prev { left: 22px; }
.slide-arrow.next { right: 22px; }

.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}

.dot.active { background: #fff; transform: scale(1.35); }

.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 20;
  width: 0%;
  transition: width linear;
}

/* ── ANIMATE IN ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.process-card:nth-child(1) { animation-delay: 0.05s; }
.process-card:nth-child(2) { animation-delay: 0.1s; }
.process-card:nth-child(3) { animation-delay: 0.15s; }
.process-card:nth-child(4) { animation-delay: 0.2s; }
.process-card:nth-child(5) { animation-delay: 0.25s; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #ccd4e0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.hamburger span:nth-child(2) { width: 70%; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 100%; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TABLET ≤ 1024px ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links a { font-size: 10px; padding: 6px 7px; }
  .process-unit  { padding: 0 30px 60px; }
  .brands        { padding: 0 30px 60px; }
  .certification { padding: 0 30px 60px; }
  .cta-banner    { padding: 28px 30px; }
  footer         { padding: 40px 30px 24px; }
  .stats-banner  { padding: 40px 20px; flex-wrap: wrap; }
  .stat-item     { max-width: none; flex: 1 1 30%; padding: 16px 20px; }
  .brands-grid   { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
  .footer-info   { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ── MOBILE NAV ≤ 768px ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; height: 56px; position: sticky; top: 0; }
  .hamburger { display: flex; }
  .nav-icons { display: none; }

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 12px 0 40px;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    z-index: 250;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li::after { display: none; }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #ccd4e0;
  }

  .nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,0.05); }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    display: none;
    padding: 0;
    animation: none;
    min-width: unset;
    width: 100%;
  }

  .nav-links li.mob-open > .dropdown { display: block; }
  .nav-links li:hover > .dropdown { display: none; }
  .nav-links li.mob-open > .dropdown { display: block !important; }

  .dropdown a {
    padding: 11px 24px 11px 48px;
    font-size: 11px;
    color: #a0b4c8 !important;
    border-bottom-color: rgba(255,255,255,0.04);
  }

  .dropdown a:hover {
    padding-left: 54px;
    background: rgba(255,255,255,0.04);
    color: #fff !important;
  }

  .dd-icon { background: rgba(255,255,255,0.08); }
  .dropdown a:hover .dd-icon { background: rgba(204,34,34,0.3); }
  .dd-icon svg { fill: #7a9bb5; }
  .arrow { pointer-events: none; }

  .hero-slideshow { height: 280px; }
  .slide-caption { bottom: 40px; left: 20px; right: 20px; }
  .slide-caption h2 { font-size: 26px; }
  .slide-caption p  { font-size: 12px; }
  .slide-arrow { width: 34px; height: 34px; }
  .slide-arrow svg { width: 14px; height: 14px; }
  .slide-arrow.prev { left: 10px; }
  .slide-arrow.next { right: 10px; }

  .section-label { padding: 40px 20px 28px; }
  .section-label h2 { font-size: 17px; letter-spacing: 3px; }

  .process-unit { padding: 0 16px 50px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process-grid .process-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .stats-banner { padding: 30px 16px; flex-wrap: wrap; gap: 0; }
  .stat-item {
    flex: 1 1 50%;
    max-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 18px 12px;
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child      { border-bottom: none; }
  .stat-item .stat-value     { font-size: 38px; }

  .certification { padding: 0 16px 50px; }
  .cert-grid     { gap: 24px; }
  .cert-item     { width: 100px; height: 60px; }

  .brands      { padding: 0 16px 50px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .brand-cell  { min-height: 72px; padding: 14px 8px; }
  .brand-name  { font-size: 14px !important; letter-spacing: 0 !important; }
  .b-hm .brand-name  { font-size: 20px !important; }
  .b-zara .brand-name { font-size: 16px !important; letter-spacing: 2px !important; }
  .b-jules .brand-name { font-size: 18px !important; }

  .cta-banner {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    padding: 28px 20px;
  }

  footer { padding: 36px 20px 24px; }
  .footer-info { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── SMALL MOBILE ≤ 480px ── */
@media (max-width: 480px) {
  .hero-slideshow { height: 240px; }
  .slide-caption h2 { font-size: 22px; }
  .slide-caption p  { font-size: 11px; letter-spacing: 0.5px; }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .process-grid .process-card:last-child { grid-column: span 2; max-width: 48%; }

  .stat-item { flex: 1 1 50%; }
  .stat-item .stat-value { font-size: 32px; }
  .stat-item .stat-title { font-size: 8px; }

  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-cell  { min-height: 64px; padding: 12px 6px; }

  .footer-info { grid-template-columns: 1fr; gap: 20px; }

  .cert-grid { gap: 16px; }
  .cert-item { width: 90px; height: 52px; }
}
