:root {
  --blue: #005fbd;
  --deep-blue: #052a54;
  --navy: #032545;
  --green: #55bd38;
  --soft-green: #eaf8e7;
  --text: #071d3d;
  --muted: #4d5d71;
  --border: #dce8f3;
  --shadow: 0 14px 30px rgba(10, 58, 112, .14);
  --radius: 8px;
  --max: 1190px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}

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

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

.section { padding: 22px 26px; }
.section-narrow { width: min(var(--max), calc(100% - 52px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 10px max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 18px rgba(0, 42, 88, .07);
}

.brand img {
  width: 230px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  font-size: 13px;
  font-weight: 700;
}

.primary-nav a { position: relative; padding-block: 12px; }
.primary-nav .active { color: var(--blue); }
.primary-nav .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(10, 58, 112, .16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #0b3265;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #176a17;
  background: #eef9eb;
  outline: none;
}

.nav-dropdown-menu a::after {
  display: none;
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, .42) 48%, transparent 62%);
  transform: translateX(-70%) skewX(-18deg);
  transition: transform .65s ease;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 85, 177, .22);
}

.btn:hover::after { transform: translateX(70%) skewX(-18deg); }
.btn > * { position: relative; z-index: 1; }
.btn img { width: 16px; height: 16px; }
.btn-small { min-height: 38px; padding: 9px 18px; font-size: 12px; border-radius: 18px; }
.btn-green { color: #fff; background: var(--green); }
.btn-blue { color: #fff; background: var(--blue); }
.btn-white { color: #09244a; background: #fff; border-color: #8da4bd; }
.btn-outline { color: var(--deep-blue); background: #fff; border-color: var(--blue); }
.btn-outline-green { color: #176a17; background: #fff; border-color: var(--green); min-width: 278px; }
.green-text { color: #158523; }
.blue-text { color: #0058b5; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep-blue);
}

.hero {
  height: min(640px, calc(100vh - 76px));
  min-height: 540px;
  max-height: 640px;
  background-image: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.86) 34%, rgba(255,255,255,.28) 58%, rgba(255,255,255,0) 78%), url("../images/hero-products-v2.webp");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 26px max(28px, calc((100vw - var(--max)) / 2)) 42px;
}

.hero-content { width: min(570px, 100%); }

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 3.15vw, 48px);
  line-height: 1.16;
  font-weight: 700;
  color: #061f49;
  letter-spacing: 0;
}

.hero h1 span:first-child { display: block; color: #061f49; }
.hero h1 span:nth-child(2),
.hero h1 span:last-child { display: block; color: var(--blue); }
.hero h1 em { color: var(--green); font-style: normal; }
.hero p { margin: 0 0 30px; font-size: 16px; color: #182c45; max-width: 570px; }

.hero-actions { flex-wrap: nowrap; }

.hero-actions .btn {
  min-height: 44px;
  padding-inline: 19px;
}

.hero-badges {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 24px;
  width: fit-content;
  overflow: hidden;
  border: 1px solid #dceaf7;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 25px rgba(0, 54, 115, .12);
}

.hero-badges span {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  min-width: 170px;
  padding: 13px 15px;
  border-right: 1px solid #dceaf7;
  background: transparent;
  font-size: 12px;
  color: #46596d;
}

.hero-badges span:last-child { border-right: 0; }

.hero-badges img { grid-row: span 2; width: 32px; }
.hero-badges strong { display: block; color: #082b57; font-size: 13px; }

.value-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: -24px;
  position: relative;
  z-index: 3;
}

.value-card,
.product-card,
.quality-strip,
.channel-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.value-card {
  min-height: 176px;
  padding: 22px 18px;
  text-align: center;
}

.value-card img { width: 42px; height: 42px; margin: 0 auto 16px; }
.value-card h2,
.product-card h3,
.quality-strip h3 { margin: 0 0 8px; font-size: 16px; color: #082d5d; }
.value-card p,
.product-card p,
.quality-strip p { margin: 0; color: #35475d; font-size: 13px; }

.awards { margin-top: 28px; }
.awards img { width: 100%; border-radius: 6px; box-shadow: 0 12px 25px rgba(0, 27, 72, .12); }

.section-heading {
  text-align: center;
  margin: 10px auto 22px;
}

.section-heading h2 {
  display: inline-block;
  margin: 0;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.15;
  color: #072856;
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--green);
}

.section-heading p { margin: 10px 0 0; color: #3f4e62; font-size: 15px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: min(1190px, 100%);
  margin-inline: auto;
  padding: 4px 0 14px;
}

.product-card {
  min-height: 360px;
  padding: 18px 22px 20px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  transform-origin: center;
  will-change: transform;
}

.product-card:hover,
.product-card:focus-within {
  transform: scale(1.045);
  border-color: #c9def0;
  box-shadow: 0 22px 45px rgba(10, 58, 112, .2);
  z-index: 2;
}

.product-card img {
  height: 184px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
}

.product-card a { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 700; font-size: 13px; }

.center-actions { display: flex; justify-content: center; margin-top: 8px; }

.channels { padding-top: 8px; }
.channel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.35fr);
  align-items: stretch;
  gap: 20px;
}

.channel-card {
  position: relative;
  min-height: 282px;
  height: 100%;
  overflow: hidden;
  padding: 24px 22px 20px;
}

.channel-card.green {
  background: linear-gradient(135deg, #edf9e9 0%, #f8fff7 100%);
}
.channel-card.blue {
  background: linear-gradient(135deg, #eaf6ff 0%, #f7fbff 100%);
}
.channel-card.purple {
  background: linear-gradient(135deg, rgba(247, 242, 255, .98) 0%, rgba(247, 242, 255, .9) 52%, rgba(239, 232, 255, .86) 100%);
}

.channel-copy {
  position: relative;
  z-index: 2;
  max-width: 60%;
  height: 100%;
}

.channel-card:not(.purple) .channel-copy {
  display: flex;
  flex-direction: column;
}

.channel-card.purple .channel-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 150px;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 22px;
  max-width: 100%;
}

.channel-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: #19782d; font-size: 22px; }
.channel-card.blue h3 { color: var(--blue); }
.channel-card.purple h3 { color: #4e2a88; }
.channel-card h3 img { width: 32px; height: 32px; }

.channel-card p { margin: 0 0 12px; font-size: 13px; color: #35475d; }
.channel-card ul { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; color: #183651; font-size: 13px; }
.channel-card li { position: relative; padding-left: 22px; }
.channel-card li::before { content: "\2713"; position: absolute; left: 0; color: #0c9b37; font-weight: 900; }
.channel-card .btn { margin-top: auto; width: fit-content; }
.channel-card .btn {
  min-height: 38px;
  padding: 10px 17px;
  font-size: 12px;
}
.channel-card .two-col { grid-template-columns: 1fr; }
.channel-card.purple h3 { grid-column: 1; grid-row: 1; }
.channel-card.purple p { grid-column: 1; grid-row: 2; max-width: 305px; }
.channel-card.purple .two-col {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: start;
  margin: 14px 0 0;
  gap: 10px;
}
.channel-card.purple .btn {
  grid-column: 2;
  grid-row: 4;
  justify-self: end;
  align-self: end;
  margin-bottom: 4px;
}

.channel-art {
  display: block;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}

.channel-card.green .channel-art {
  right: -8px;
  bottom: 34px;
  width: 47%;
}

.channel-card.blue .channel-art {
  right: -10px;
  bottom: 34px;
  width: 49%;
}

.channel-card.purple .channel-art {
  left: 28px;
  bottom: 12px;
  width: 47%;
  max-height: 62%;
  opacity: .72;
}

.quality { background: linear-gradient(180deg, #fff 0%, #f7fbff 100%); }
.quality-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 24px;
}

.quality-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 12px;
  align-items: center;
}

.quality-strip img {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  padding: 11px;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(0, 60, 125, .12);
  justify-content: center;
}

.quality-strip h3 { font-size: 13px; }
.quality-strip p { font-size: 11px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
  padding: 28px 34px;
  border-radius: 10px;
  background: linear-gradient(110deg, #064e9d, #042c63);
  color: #fff;
}

.stats article {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  padding-inline: 20px;
  border-right: 1px solid rgba(255,255,255,.35);
}

.stats article:last-child { border-right: 0; }
.stats img { grid-row: span 3; width: 50px; filter: brightness(0) invert(1); opacity: .95; }
.stats strong { font-size: 36px; line-height: 1; }
.stats span { font-weight: 800; }
.stats small { font-size: 12px; opacity: .9; }

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  margin-bottom: 16px;
  min-height: 180px;
  padding: 22px 48px;
  border-radius: 10px;
  background: linear-gradient(110deg, #053064 0%, #005cae 48%, #10a583 100%);
  color: #fff;
  overflow: hidden;
  width: min(1320px, calc(100% - 52px));
}

.final-cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 218px;
  background: url("../images/cta-leaves.webp") right bottom / contain no-repeat;
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin: 0 0 14px;
  max-width: 650px;
  font-size: clamp(29px, 2.45vw, 38px);
  line-height: 1.1;
}
.final-cta h2 span { display: block; color: #72d654; }
.final-cta p { margin: 0; max-width: 635px; font-size: 16px; line-height: 1.55; }

.final-cta .cta-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(168px, 1fr));
  gap: 14px;
  width: min(720px, 100%);
  padding-right: 94px;
}

.final-cta .btn {
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  box-shadow: 0 12px 24px rgba(0, 30, 80, .22);
  min-width: 0;
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.18;
}

.final-cta .btn img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.final-cta .btn-white {
  border-color: rgba(0, 95, 189, .28);
  box-shadow: 0 12px 24px rgba(0, 45, 90, .18);
}

.site-footer {
  background: #073852;
  color: #d4e9f4;
  padding-top: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .95fr .9fr 1.55fr;
  gap: 34px;
}

.footer-brand img { width: 180px; margin-bottom: 10px; filter: drop-shadow(0 3px 8px rgba(0,0,0,.15)); }
.footer-grid p,
.footer-grid a,
.footer-grid address { font-size: 13px; color: #d4e9f4; }
.footer-grid h2 { margin: 0 0 12px; color: #fff; font-size: 17px; }
.footer-grid nav { display: flex; flex-direction: column; gap: 5px; }
.footer-grid address { font-style: normal; }
.footer-grid address p { margin: 0 0 7px; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a,
.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.socials a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.35); }
.socials img { width: 15px; filter: brightness(0) invert(1); }
.whatsapp { gap: 8px; width: fit-content; margin-top: 8px; padding: 10px 18px; background: var(--green); color: #fff; font-weight: 800; }
.whatsapp img { width: 18px; filter: brightness(0) invert(1); }

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
}

.whatsapp-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #27b43e, #128c7e);
  box-shadow: 0 16px 34px rgba(0, 70, 80, .28);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
}

.whatsapp-launcher::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(39, 180, 62, .22);
  border-radius: inherit;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-launcher:hover,
.whatsapp-launcher:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 70, 80, .34);
  outline: none;
}

.floating-whatsapp-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
}

.floating-whatsapp-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
}

.floating-whatsapp-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(96%) saturate(548%) hue-rotate(87deg) brightness(91%) contrast(91%);
}

.floating-whatsapp-copy {
  position: relative;
  display: grid;
  gap: 1px;
}

.floating-whatsapp-copy strong,
.floating-whatsapp-copy small {
  display: block;
  line-height: 1.05;
}

.floating-whatsapp-copy strong {
  font-size: 14px;
}

.floating-whatsapp-copy small {
  color: rgba(255,255,255,.86);
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid #c5dfd7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 45, 80, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.97);
  transform-origin: right bottom;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.whatsapp-chat.open .whatsapp-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-panel-head {
  display: grid;
  grid-template-columns: 46px 1fr 34px;
  gap: 11px;
  align-items: center;
  padding: 12px 14px;
  color: #fff;
  background: #075e54;
}

.whatsapp-panel-head strong,
.whatsapp-panel-head small {
  display: block;
  line-height: 1.2;
}

.whatsapp-panel-head small {
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 700;
}

.whatsapp-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 50%;
  background: #fff;
}

.whatsapp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-panel-body {
  display: grid;
  gap: 12px;
  padding: 16px 14px 14px;
  background:
    linear-gradient(rgba(236, 229, 221, .94), rgba(236, 229, 221, .94)),
    radial-gradient(circle at 20% 20%, rgba(7, 94, 84, .16) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 30%, rgba(37, 211, 102, .16) 0 2px, transparent 3px);
  background-size: auto, 34px 34px, 42px 42px;
}

.whatsapp-panel-body p {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 9px 11px;
  border-radius: 7px 7px 7px 0;
  color: #172b24;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  font-size: 13px;
  font-weight: 650;
  position: relative;
}

.whatsapp-panel-body p::after {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 0;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.whatsapp-message {
  width: 100%;
  min-height: 82px;
  resize: vertical;
  border: 0;
  border-radius: 18px;
  padding: 12px 14px;
  color: #17362e;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  font: 600 13px/1.45 Poppins, "Segoe UI", Arial, sans-serif;
  outline: none;
}

.whatsapp-message:focus {
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .18);
}

.whatsapp-message.needs-message {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .16);
}

.whatsapp-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  font: 900 13px/1 Poppins, "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-send:hover,
.whatsapp-send:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(30, 150, 48, .24);
  outline: none;
}

.whatsapp-send img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

@keyframes whatsapp-pulse {
  0% {
    opacity: .8;
    transform: scale(.94);
  }
  70% {
    opacity: 0;
    transform: scale(1.16);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: #c9dce8;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { color: #c9dce8; }
.footer-bottom span { margin-inline: 14px; opacity: .55; }

.page-hero {
  min-height: 188px;
  display: flex;
  align-items: center;
  padding: 34px 0;
  background-color: #eaf6ff;
  background-position: center;
  background-size: cover;
}

.about-hero {
  background-image: url("../images/about/about-header-banner-clean.png");
}

.contact-hero {
  background-image: linear-gradient(90deg, rgba(234, 246, 255, .98) 0%, rgba(234, 246, 255, .93) 43%, rgba(234, 246, 255, .54) 64%, rgba(234, 246, 255, .08) 100%), url("../images/hero-products-v2.webp");
  background-position: center right;
}

.page-hero h1 {
  margin: 0 0 10px;
  color: #061f49;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
}

.page-hero p {
  width: min(560px, 100%);
  margin: 0;
  color: #142942;
  font-size: 16px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  padding-top: 38px;
}

.about-intro img,
.about-quality,
.purpose-card,
.award-card,
.award-note {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-intro img {
  width: 100%;
  height: clamp(270px, 26vw, 340px);
  object-fit: cover;
}

.about-intro h2,
.about-quality h2 {
  margin: 0 0 12px;
  color: #072856;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
}

.about-intro p,
.about-quality p,
.purpose-card p,
.philosophy p,
.award-grid p {
  color: #202f43;
  font-size: 15px;
}

.about-intro p { margin: 0 0 17px; }
.about-intro p:last-child { margin-bottom: 0; }

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 32px;
}

.purpose-card {
  min-height: 214px;
  padding: 28px 28px 24px;
}

.purpose-card.green { background: linear-gradient(135deg, #f0faee, #fbfffb); }
.purpose-card.blue { background: linear-gradient(135deg, #eef7ff, #fbfdff); }
.purpose-card img { width: 52px; height: 52px; margin-bottom: 12px; }
.purpose-card h2 {
  margin: 0 0 12px;
  color: #0c7631;
  font-size: 23px;
}
.purpose-card.blue h2 { color: var(--blue); }
.purpose-card p { margin: 0; }

.philosophy {
  position: relative;
  padding-top: 22px;
}

.section-heading.compact { margin-bottom: 16px; }
.section-heading.compact h2 { font-size: clamp(25px, 2.5vw, 31px); }

.philosophy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  text-align: center;
}

.philosophy-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 121px;
  border-top: 1px dashed #b7cde2;
}

.philosophy-grid article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.philosophy-grid img {
  width: 72px;
  height: 72px;
  padding: 10px;
  border: 1px solid #cbddec;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 60, 125, .1);
  object-fit: contain;
}

.philosophy-grid h3 {
  min-height: 42px;
  margin: 14px 0 8px;
  color: #072856;
  font-size: 15px;
  line-height: 1.18;
}

.philosophy-grid p { margin: 0; font-size: 13px; }

.about-quality {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .9fr) minmax(180px, .42fr);
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f4f9ff, #fff);
}

.about-quality p { margin: 0 0 14px; }
.check-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #122f53;
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-weight: 900;
}

.quality-photo {
  width: 100%;
  height: 258px;
  border-radius: 8px;
  object-fit: cover;
}

.quality-seal {
  text-align: center;
}

.quality-seal img {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  padding: 19px;
  border: 2px dashed #86a9c9;
  border-radius: 50%;
  background: #fff;
}

.quality-seal p { margin: 0; font-size: 15px; }

.recognition {
  padding-top: 8px;
  scroll-margin-top: 96px;
}

.award-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(190px, .7fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: stretch;
}

.award-card {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 245px;
  padding: 24px 28px;
  background: #f7fbff;
}

.award-copy {
  position: relative;
  z-index: 2;
  width: min(245px, 62%);
}

.award-card-right {
  justify-content: flex-end;
}

.award-card-right .award-copy {
  margin-left: auto;
}

.award-trophy {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 35, 80, .16));
}

.award-trophy.silver {
  right: 22px;
  height: 236px;
}

.award-trophy.gold {
  left: 24px;
  height: 238px;
}

.award-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.12;
}

.award-card h3 span {
  display: block;
  color: var(--green);
}

.award-card p { margin: 0; font-size: 13px; }

.award-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 245px;
  padding: 18px 14px;
  background: #fff;
  border-color: transparent;
  box-shadow: none;
}

.award-note img {
  width: 72px;
  height: auto;
  margin-bottom: 12px;
}

.award-note p {
  width: min(220px, 100%);
  margin: 0;
  color: #222;
  font-size: 14px;
  line-height: 1.4;
}

.team-section {
  position: relative;
  margin-top: 26px;
  padding: 48px 0 44px;
  overflow: hidden;
  scroll-margin-top: 96px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.6) 38%, rgba(255,255,255,.86) 72%),
    linear-gradient(180deg, #eef8ff 0%, #f8fcff 52%, #eaf5ff 100%);
}

#team-title {
  scroll-margin-top: 108px;
}

.team-section::before,
.team-section::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(0, 95, 189, .12);
  border-radius: 50%;
  pointer-events: none;
}

.team-section::before {
  left: -72px;
  top: 36px;
  box-shadow: 108px 22px 0 -72px rgba(255,255,255,.7), 154px 105px 0 -88px rgba(255,255,255,.62);
}

.team-section::after {
  right: -68px;
  top: 28px;
  box-shadow: -88px 66px 0 -76px rgba(255,255,255,.72), -134px 142px 0 -90px rgba(255,255,255,.62);
}

.team-section > .section-narrow {
  position: relative;
  z-index: 1;
}

.team-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.team-heading h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.team-heading p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #16283f;
  font-size: 18px;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  display: grid;
  grid-template-rows: 268px 1fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid #d9e9f6;
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 36px rgba(10, 58, 112, .12);
}

.team-card > img {
  width: calc(100% - 28px);
  height: 248px;
  margin: 14px auto 0;
  border-radius: 7px;
  object-fit: cover;
  object-position: center top;
}

.team-card:nth-child(1) > img { object-position: center 16%; }
.team-card:nth-child(2) > img { object-position: center 17%; }
.team-card:nth-child(3) > img { object-position: center 14%; }
.team-card:nth-child(4) > img { object-position: center 18%; }

.team-copy {
  padding: 20px 22px 26px;
  text-align: center;
}

.team-copy h3 {
  margin: 0;
  color: #082b62;
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.14;
}

.team-role {
  position: relative;
  margin: 8px 0 28px;
  color: #279821;
  font-size: 18px;
  font-weight: 800;
}

.team-role::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  transform: translateX(-50%);
}

.team-copy p:last-child {
  margin: 0;
  color: #182a3e;
  font-size: 15px;
  line-height: 1.75;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding-top: 34px;
}

.contact-panel,
.help-card,
.office-locations article,
.sales-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 58, 112, .08);
}

.contact-panel {
  padding: 24px 28px 28px;
}

.contact-panel h2 {
  position: relative;
  margin: 0 0 26px;
  color: #072856;
  font-size: 28px;
  line-height: 1.1;
}

.contact-panel h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

.contact-list {
  display: grid;
  gap: 21px;
}

.contact-list article,
.office-locations article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-list h3,
.office-locations h3 {
  margin: 0 0 4px;
  color: #092a61;
  font-size: 16px;
}

.contact-list p,
.office-locations p {
  margin: 0;
  color: #061f36;
  font-size: 15px;
}

.contact-icon,
.help-icon,
.sales-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef7ff;
  border: 1px solid #bcd7f0;
}

.contact-icon {
  width: 54px;
  height: 54px;
}

.contact-icon.green {
  background: #eff9ec;
  border-color: #b9ddb1;
}

.contact-icon img {
  width: 28px;
  height: 28px;
}

.contact-list article:not(:last-child) .contact-icon img,
.office-locations .contact-icon img,
.sales-icon img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(1917%) hue-rotate(198deg) brightness(87%) contrast(96%);
}

.contact-list .contact-icon img,
.office-locations .contact-icon img {
  width: 42px;
  height: 42px;
  filter: none !important;
}

.contact-list .contact-icon img[src$="phone.svg"] {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(1917%) hue-rotate(198deg) brightness(87%) contrast(96%) !important;
}

.contact-list .contact-icon img[src$="whatsapp.svg"] {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(35%) saturate(987%) hue-rotate(62deg) brightness(90%) contrast(92%) !important;
}

.contact-icon.green img,
.office-locations .contact-icon.green img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(35%) saturate(987%) hue-rotate(62deg) brightness(90%) contrast(92%);
}

.business-hours {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.business-hours strong {
  color: #1c9d25;
  font-size: 17px;
}

.business-hours em {
  color: #df1a1a;
  font-style: normal;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #1b2637;
  font-size: 13px;
  font-weight: 800;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cdddea;
  border-radius: 6px;
  padding: 13px 16px;
  color: #102d4d;
  background: #fff;
  font: 500 14px/1.35 Poppins, "Segoe UI", Arial, sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 95, 189, .12);
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.help-section,
.office-section,
.sales-section {
  padding-top: 28px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.help-card {
  min-height: 274px;
  padding: 20px 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.help-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 15px;
}

.help-icon.green {
  background: #eff9ec;
  border-color: #b9ddb1;
}

.help-icon.blue {
  background: #eef7ff;
  border-color: #bcd7f0;
}

.help-icon img {
  width: 42px;
  height: 42px;
}

.help-icon.green img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(35%) saturate(987%) hue-rotate(62deg) brightness(90%) contrast(92%);
}

.help-icon.blue img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(1917%) hue-rotate(198deg) brightness(87%) contrast(96%);
}

.help-card:nth-child(3) .help-icon img {
  filter: none;
}

.help-card h3 {
  margin: 0 0 8px;
  color: #072856;
  font-size: 17px;
}

.help-card p {
  margin: 0 0 18px;
  color: #1f2f43;
  font-size: 13px;
  line-height: 1.5;
}

.help-card .btn-card {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 12px;
}

.office-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 28px;
  align-items: stretch;
}

.office-map {
  width: 100%;
  height: 286px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(10, 58, 112, .08);
}

.office-locations {
  display: grid;
  gap: 20px;
  align-content: center;
}

.office-locations article {
  min-height: 118px;
  padding: 24px 28px;
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sales-card {
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 22px;
  border-color: #a8c9e7;
}

.sales-card.green {
  border-color: #9bd28d;
  background: #fbfffa;
}

.sales-icon {
  width: 54px;
  height: 54px;
  background: #0956a9;
  border-color: #0956a9;
}

.sales-card.green .sales-icon {
  background: var(--green);
  border-color: var(--green);
}

.sales-icon img,
.sales-card.green .sales-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.sales-card strong,
.sales-card small {
  display: block;
}

.sales-card strong {
  color: #072856;
  font-size: 17px;
}

.sales-card.green strong {
  color: #168528;
}

.sales-card small {
  color: #1c2b3f;
  font-size: 13px;
}

.quality-hero {
  min-height: 188px;
  background-image: linear-gradient(90deg, rgba(234, 246, 255, .98) 0%, rgba(234, 246, 255, .94) 42%, rgba(234, 246, 255, .48) 66%, rgba(234, 246, 255, .08) 100%), url("../images/hero-products-v2.webp");
  background-position: center right;
}

.products-hero {
  min-height: 285px;
  background-image: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 43%, rgba(255,255,255,.5) 67%, rgba(255,255,255,.08) 100%), url("../images/hero-products-v2.webp");
  background-position: center right;
}

.catalog-shell {
  padding-top: 36px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.catalog-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-intro h2 {
  margin: 0;
  color: #072856;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}

.catalog-download {
  justify-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  row-gap: 2px;
  align-items: center;
  min-width: 260px;
  padding: 12px 20px 12px 14px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(110deg, var(--blue), #0a8c75);
  box-shadow: 0 16px 32px rgba(0, 95, 189, .24);
  transition: transform .24s ease, box-shadow .24s ease;
}

.catalog-download:hover,
.catalog-download:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 95, 189, .3);
  outline: none;
}

.catalog-download span {
  display: inline-flex;
  align-items: center;
  grid-column: 1 / -1;
  gap: 13px;
  font-size: 16px;
  font-weight: 900;
}

.catalog-download img {
  width: 42px;
  height: 42px;
  padding: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 18px rgba(0, 39, 77, .18);
}

.catalog-download small {
  grid-column: 1 / -1;
  padding-left: 55px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 700;
}

.category-filter {
  position: sticky;
  top: 94px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 28px rgba(10, 58, 112, .1);
  backdrop-filter: blur(12px);
}

.filter-chip {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid #cfe0ef;
  border-radius: 6px;
  color: #0b3265;
  background: #fff;
  font: 800 13px/1.2 Poppins, "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  border-color: var(--blue);
  outline: none;
}

.filter-chip.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 392px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
  box-shadow: 0 12px 28px rgba(10, 58, 112, .1);
  outline: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, opacity .25s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible,
.gallery-card:focus-within {
  transform: translateY(-5px);
  border-color: #b7d3eb;
  box-shadow: 0 22px 42px rgba(10, 58, 112, .18);
}

.gallery-card.is-hidden {
  display: none;
}

.product-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0 4px;
}

.product-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid #cfe0ef;
  border-radius: 6px;
  color: #0b3265;
  background: #fff;
  font: 900 13px/1 Poppins, "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.product-page-btn:hover,
.product-page-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--blue);
  outline: none;
}

.product-page-btn.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.product-page-btn:disabled {
  cursor: not-allowed;
  opacity: .45;
  transform: none;
}

.product-page-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #cfe0ef;
  border-radius: 6px;
  color: #0b3265;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.gallery-card figure {
  display: grid;
  place-items: center;
  height: 245px;
  margin: 0;
  padding: 26px 24px 10px;
  overflow: hidden;
}

.gallery-card figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  transition: transform .35s ease;
}

.gallery-card:hover figure img,
.gallery-card:focus-visible figure img {
  transform: scale(1.045);
}

.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 4px;
  color: #0a5f17;
  background: #eef9eb;
  border: 1px solid #cde8c7;
  font-size: 11px;
  font-weight: 900;
}

.gallery-card-body {
  padding: 12px 20px 22px;
}

.gallery-card-body h3 {
  min-height: 44px;
  margin: 0 0 8px;
  color: #072856;
  font-size: 17px;
  line-height: 1.25;
}

.gallery-card-body p {
  margin: 0;
  color: #415369;
  font-size: 13px;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 142px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #042d63, #005fbd);
  transform: translateY(101%);
  transition: transform .32s ease;
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay,
.gallery-card:focus-within .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.gallery-overlay p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.55;
}

.reveal-card {
  opacity: 1;
  transform: translateY(0);
  animation: gallery-fade-up .46s ease both;
}

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

.gallery-grid .reveal-card:nth-child(2n) { animation-delay: .04s; }
.gallery-grid .reveal-card:nth-child(3n) { animation-delay: .08s; }
.gallery-grid .reveal-card:nth-child(4n) { animation-delay: .12s; }

@keyframes gallery-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quality-intro {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  padding-top: 30px;
}

.quality-intro img,
.quality-research,
.qc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quality-intro img {
  width: 100%;
  height: clamp(280px, 25vw, 340px);
  object-fit: cover;
}

.quality-intro h2,
.research-copy h2 {
  margin: 0 0 14px;
  color: #072856;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.14;
}

.quality-intro h2::after,
.research-copy h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
}

.quality-intro p,
.research-copy p,
.qc-card p {
  color: #172c44;
  font-size: 14px;
}

.quality-intro p,
.research-copy p { margin: 0 0 16px; }
.quality-intro p:last-child,
.research-copy p:last-child { margin-bottom: 0; }

.qc-section {
  padding-top: 22px;
}

.qc-card-grid {
  display: grid;
  gap: 14px;
}

.process-grid,
.policy-grid,
.matters-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.qc-card {
  position: relative;
  min-height: 228px;
  padding: 46px 16px 18px;
  text-align: center;
  background: #fff;
}

.qc-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.process-grid .qc-card img,
.policy-card img {
  padding: 7px;
  border: 1px solid #cfe0ef;
  border-radius: 50%;
  background: #f5fbff;
}

.green-step img,
.policy-card:nth-child(odd) img {
  background: #f1faef;
  border-color: #cde8c7;
}

.qc-step {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 60, 125, .18);
}

.green-step .qc-step { background: var(--green); }

.qc-card h3 {
  margin: 0 0 10px;
  color: #062a5b;
  font-size: 15px;
  line-height: 1.22;
}

.qc-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.policy-card {
  min-height: 244px;
  padding-top: 28px;
}

.policy-card img {
  width: 78px;
  height: 78px;
}

.qc-card img[src*="assets/icons-quality/"] {
  object-fit: contain;
  filter: none;
}

.process-grid .qc-card img[src*="assets/icons-quality/"],
.policy-card img[src*="assets/icons-quality/"] {
  padding: 6px;
}

.process-grid .qc-card img[src*="raw-material-screening"],
.process-grid .qc-card img[src*="formula-development"],
.process-grid .qc-card img[src*="finished-product-evaluation"],
.matters-grid .qc-card img[src*="reliable-performance"],
.matters-grid .qc-card img[src*="brand-trust"] {
  padding: 8px;
}

.process-grid .qc-card img[src*="storage-and-distribution"],
.matters-grid .qc-card img[src*="bulk-supply-confidence"],
.matters-grid .qc-card img[src*="customer-satisfaction"] {
  padding: 10px;
}

.quality-research {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, .64fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f6fbff, #fff);
}

.quality-research > img {
  width: 100%;
  height: 318px;
  object-fit: cover;
}

.research-copy {
  padding-block: 24px;
}

.test-panel {
  margin-right: 24px;
  padding: 24px 26px;
  border: 1px solid #cfe0ef;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.test-panel h3 {
  margin: 0 0 18px;
  text-align: center;
  color: #072856;
  font-size: 24px;
  line-height: 1.1;
}

.test-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.test-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  color: #0b3265;
  font-size: 14px;
  font-weight: 800;
}

.test-panel img {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid #cfe0ef;
  border-radius: 50%;
  background: #f6fbff;
  object-fit: contain;
}

.test-panel img[src$="package.svg"],
.test-panel img[src$="storefront.svg"] {
  filter: brightness(0) saturate(100%) invert(22%) sepia(99%) saturate(1917%) hue-rotate(198deg) brightness(87%) contrast(96%);
}

.matters-grid .qc-card {
  min-height: 186px;
}

.quality-awards {
  margin-top: 18px;
}

.quality-awards img {
  width: 100%;
  height: auto;
  aspect-ratio: 2156 / 390;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 27, 72, .12);
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .primary-nav,
  .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height .24s ease, opacity .2s ease, padding .24s ease;
  }
  .site-header.open .primary-nav,
  .site-header.open .header-actions {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0;
  }
  .site-header.open .primary-nav { padding-top: 10px; }
  .primary-nav a,
  .nav-dropdown > a {
    display: block;
    width: 100%;
    padding: 11px 0;
  }
  .nav-dropdown {
    display: block;
    width: 100%;
  }
  .nav-dropdown-menu {
    display: none;
  }
  .value-cards,
  .quality-strip,
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-intro,
  .about-quality,
  .award-grid,
  .team-grid,
  .contact-main,
  .office-grid,
  .quality-intro,
  .quality-research { grid-template-columns: 1fr; }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-card {
    min-height: 540px;
  }
  .process-grid,
  .policy-grid,
  .matters-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-intro { grid-template-columns: 1fr; }
  .catalog-download {
    justify-self: start;
    width: min(340px, 100%);
  }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quality-research { padding: 24px; }
  .quality-research > img { height: 340px; border-radius: var(--radius); }
  .research-copy { padding-block: 0; }
  .test-panel { margin-right: 0; }
  .purpose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .philosophy-grid { gap: 22px; }
  .philosophy-line { display: none; }
  .award-card { min-height: 225px; }
  .award-copy { width: min(230px, 58%); }
  .award-trophy.silver { height: 224px; right: 18px; }
  .award-trophy.gold { height: 226px; left: 18px; }
  .channel-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .help-grid,
  .sales-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-cta {
    grid-template-columns: 1fr;
  }
  .final-cta .cta-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(720px, calc(100% - 92px));
    padding-right: 92px;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section,
  .hero { padding-left: 18px; padding-right: 18px; }
  .section-narrow { width: calc(100% - 36px); }
  .site-header { min-height: 78px; padding: 12px 18px; }
  .brand img { width: 210px; }
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    align-items: flex-start;
    padding-top: 38px;
    padding-bottom: 42px;
    background: #fff;
  }
  .hero p { font-size: 16px; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .hero-badges { display: none; }
  .value-cards,
  .quality-strip,
  .stats,
  .final-cta,
  .purpose-grid,
  .philosophy-grid,
  .award-grid,
  .team-grid,
  .contact-form,
  .help-grid,
  .sales-grid,
  .process-grid,
  .policy-grid,
  .matters-grid,
  .test-panel ul { grid-template-columns: 1fr; }
  .page-hero {
    min-height: 305px;
    align-items: flex-start;
    padding-top: 36px;
    background-position: 58% center;
  }
  .page-hero p { max-width: 72%; }
  .contact-hero {
    min-height: 270px;
    background-image: linear-gradient(180deg, rgba(234, 246, 255, .99) 0%, rgba(234, 246, 255, .94) 56%, rgba(234, 246, 255, .58) 100%), url("../images/hero-products-v2.webp");
    background-position: 68% bottom;
    background-size: 560px auto;
  }
  .quality-hero {
    min-height: 280px;
    background-image: linear-gradient(180deg, rgba(234, 246, 255, .99) 0%, rgba(234, 246, 255, .94) 56%, rgba(234, 246, 255, .58) 100%), url("../images/hero-products-v2.webp");
    background-position: 68% bottom;
    background-size: 560px auto;
  }
  .products-hero {
    min-height: 330px;
    background-image: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 52%, rgba(255,255,255,.62) 100%), url("../images/hero-products-v2.webp");
    background-position: 67% bottom;
    background-size: 570px auto;
  }
  .contact-hero p { max-width: 78%; }
  .quality-hero p { max-width: 76%; }
  .about-intro { gap: 24px; padding-top: 26px; }
  .quality-intro { gap: 24px; padding-top: 26px; }
  .quality-intro img { height: 360px; }
  .qc-section { padding-top: 18px; }
  .qc-card,
  .policy-card,
  .matters-grid .qc-card { min-height: 0; }
  .quality-research { gap: 20px; padding: 20px; }
  .quality-research > img { height: 360px; }
  .test-panel { padding: 20px; }
  .purpose-card { min-height: 0; padding: 24px 22px; }
  .philosophy-grid { gap: 24px; }
  .philosophy-grid h3 { min-height: 0; }
  .about-quality { padding: 22px; gap: 20px; }
  .about-intro img { height: 620px; }
  .quality-photo { height: 430px; }
  .award-card {
    min-height: 0;
    padding: 24px 22px 28px;
    text-align: center;
  }
  .award-copy {
    width: 100%;
    margin: 0;
  }
  .award-card-left,
  .award-card-right {
    display: grid;
    justify-items: center;
    gap: 14px;
  }
  .award-trophy,
  .award-trophy.silver,
  .award-trophy.gold {
    position: static;
    height: 218px;
    order: -1;
  }
  .award-note { min-height: 190px; }
  .team-section {
    margin-top: 22px;
    padding: 36px 0 34px;
  }
  .team-heading {
    margin-bottom: 24px;
  }
  .team-heading p {
    font-size: 15px;
    line-height: 1.65;
  }
  .team-card {
    grid-template-rows: auto 1fr;
    min-height: 0;
  }
  .team-card > img {
    height: 320px;
  }
  .team-copy {
    padding: 18px 22px 24px;
  }
  .team-copy p:last-child {
    font-size: 14px;
  }
  .contact-main { padding-top: 24px; }
  .contact-panel { padding: 22px; }
  .contact-panel h2 { font-size: 25px; }
  .contact-list article,
  .office-locations article,
  .sales-card { grid-template-columns: 50px 1fr; }
  .contact-icon,
  .sales-icon { width: 48px; height: 48px; }
  .contact-icon img,
  .sales-icon img,
  .sales-card.green .sales-icon img { width: 24px; height: 24px; }
  .help-card { min-height: 0; }
  .office-map { height: 230px; }
  .office-locations article { padding: 20px; }
  .sales-grid { gap: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog-shell { padding-top: 26px; }
  .category-filter {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-chip {
    width: 100%;
    padding-inline: 10px;
    font-size: 12px;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { min-height: 366px; }
  .gallery-card figure { height: 230px; }
  .gallery-card figure img { max-height: 195px; }
  .gallery-card-body h3 { min-height: 0; }
  .channel-copy { max-width: 100%; }
  .channel-card { padding-bottom: 160px; }
  .channel-art { width: 70%; height: 190px; right: -20px; }
  .quality-strip article { grid-template-columns: 52px 1fr; }
  .stats { padding: 22px; gap: 18px; }
  .stats article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); padding: 0 0 16px; }
  .stats article:last-child { border-bottom: 0; }
  .final-cta { padding: 28px 22px; }
  .final-cta .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding-right: 0;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-chat {
    right: 14px;
    bottom: 14px;
  }
  .whatsapp-launcher {
    min-width: 52px;
    min-height: 52px;
    padding: 8px;
  }
  .floating-whatsapp-icon {
    width: 36px;
    height: 36px;
  }
  .floating-whatsapp-copy,
  .floating-whatsapp-copy small {
    display: none;
  }
  .whatsapp-panel {
    bottom: 66px;
  }
}

img[src*="assets/icons-contact/"] {
  object-fit: contain;
  filter: none !important;
}

.btn img[src*="assets/icons-contact/"] {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
}

.btn-small img[src*="assets/icons-contact/"] {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.final-cta .btn img[src*="assets/icons-contact/"] {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.channel-card h3 img[src*="assets/icons-contact/"] {
  width: 38px;
  height: 38px;
}

.contact-icon:has(img[src*="assets/icons-contact/"]),
.help-icon:has(img[src*="assets/icons-contact/"]),
.sales-icon:has(img[src*="assets/icons-contact/"]) {
  overflow: visible;
  background: transparent;
  border-color: transparent;
}

.contact-icon img[src*="assets/icons-contact/"],
.office-locations .contact-icon img[src*="assets/icons-contact/"] {
  width: 58px;
  height: 58px;
  max-width: none;
}

.help-icon img[src*="assets/icons-contact/"] {
  width: 82px;
  height: 82px;
  max-width: none;
}

.sales-icon img[src*="assets/icons-contact/"],
.sales-card.green .sales-icon img[src*="assets/icons-contact/"] {
  width: 58px;
  height: 58px;
  max-width: none;
}

.stats img[src*="assets/icons-contact/"] {
  width: 58px;
  height: 58px;
  opacity: 1;
  filter: none !important;
}

.whatsapp img[src*="assets/icons-contact/"] {
  width: 24px;
  height: 24px;
  filter: none !important;
}
