:root {
  color-scheme: light;
  --green: #178f3a;
  --green-2: #20b84a;
  --mint: #e8f8ee;
  --lime: #9ae45a;
  --navy: #10224f;
  --navy-2: #19356f;
  --cyan: #20c8df;
  --ink: #111827;
  --muted: #5d6b7c;
  --soft: #f4f8f6;
  --soft-2: #eef6f1;
  --line: #dce7df;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(16, 34, 79, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Toxigenesis";
  src: url("toxigenesis.otf") format("opentype");
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 50;
  background: var(--green-2);
  color: white;
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 16px rgba(16,34,79,.08);
  backdrop-filter: blur(16px);
}
.site-header.compact { position: relative; }
.topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  background: #0f3f22;
  color: #e7f7ec;
  font-size: 13px;
  font-weight: 700;
}
.topbar span:first-child::before { content: "Call "; color: #9ae45a; font-weight: 900; }
.topbar span:nth-child(2)::before { content: "Email "; color: #9ae45a; font-weight: 900; }
.topbar a { font-size: 12px; color: white; opacity: .92; }
.navbar {
  width: min(1160px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: "Toxigenesis", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span {
  position: relative;
  display: inline-block;
  padding-right: .72em;
  font-size: 32px;
  line-height: 1;
}
.brand sup {
  position: absolute;
  top: -.48em;
  right: .02em;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .3em;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #465568;
  font-size: 14px;
  font-weight: 850;
}
.nav-links a:hover { color: var(--green); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  padding: 0 26px;
  font-weight: 900;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.nav-cta {
  min-height: 44px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23,143,58,.25);
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(32,184,74,.32), transparent 25rem),
    radial-gradient(circle at 32% 92%, rgba(32,200,223,.16), transparent 24rem),
    linear-gradient(125deg, #10224f 0%, #112b47 48%, #0f3f22 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform .18s ease-out;
}
.hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 71% 36%, rgba(32,184,74,.32) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 57%, rgba(32,200,223,.28) 0 4px, transparent 5px),
    radial-gradient(circle at 61% 64%, rgba(255,255,255,.2) 0 3px, transparent 4px);
  animation: bubbleDrift 7s ease-in-out infinite;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(430px, 1fr);
  align-items: center;
  gap: 70px;
}
.hero-copy { color: white; }
.eyebrow {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b7f7ca;
  background: rgba(32,184,74,.13);
  border: 1px solid rgba(154,228,90,.24);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 16px rgba(154,228,90,.8);
}
.section-heading .eyebrow, .product-heading .eyebrow {
  color: var(--green);
  background: transparent;
  border: 0;
  padding: 0;
}
h1, h2, h3, p { overflow-wrap: anywhere; letter-spacing: 0; }
h1 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 1.02;
  font-weight: 950;
}
h1 span { display: block; color: #6ee7f5; }
h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 950;
}
h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.2; }
.lead {
  max-width: 555px;
  margin: 26px 0 0;
  color: #e5f4ee;
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}
.button.primary {
  color: #072111;
  background: linear-gradient(135deg, #9ae45a, #20c86b);
  box-shadow: 0 15px 30px rgba(32,184,74,.28);
}
.button.secondary {
  color: white;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(183,247,202,.46);
}
.button.dark {
  min-width: 280px;
  color: white;
  background: #0f3f22;
  border-radius: 999px;
  font-size: 19px;
}
.flow-line {
  fill: none;
  stroke: rgba(154,228,90,.26);
  stroke-width: 2;
  stroke-dasharray: 12 16;
  animation: dash 12s linear infinite;
}
.line-two { animation-duration: 16s; stroke: rgba(32,200,223,.22); }
.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}
.hero-pack-card {
  width: min(100%, 560px);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(21,75,47,.84), rgba(16,34,79,.76));
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  animation: float 7s ease-in-out infinite;
  overflow: hidden;
}
.hero-pack-card img {
  width: min(100%, 420px);
  height: 480px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.34));
}

.trust-strip {
  padding: 28px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(32,184,74,.08), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f4f8f6);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trust-grid div {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 28px rgba(16,34,79,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.trust-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(32,184,74,.35);
  box-shadow: 0 18px 38px rgba(16,34,79,.12);
}
.trust-grid .mark-item { padding-left: 20px; }
.trust-grid img {
  position: static;
  width: 68px;
  height: 68px;
  max-height: 68px;
  object-fit: contain;
}
.trust-grid span {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 950;
}
.trust-icon > span:first-child {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0f3f22;
  background: linear-gradient(135deg, #e8f8ee, #9ae45a);
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(23,143,58,.16);
}
.trust-icon > span:last-child { font-size: 20px; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
  margin: 18px 0 0;
}
#quality, .faq-section { background: var(--soft); }
.spec-section {
  background:
    linear-gradient(90deg, rgba(32,184,74,.07), transparent),
    #ffffff;
}
.spec-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
}
.spec-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #cfe0d5;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.spec-panel div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-panel div:nth-child(2n) { border-right: 0; }
.spec-panel div:nth-last-child(-n+2) { border-bottom: 0; }
.spec-panel span {
  display: block;
  color: #697a6f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.spec-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.quality-grid article,
.industry-list div,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.quality-grid article {
  min-height: 258px;
  padding: 32px 28px;
  box-shadow: 0 10px 24px rgba(16,34,79,.05);
}
.quality-grid article:hover,
.industry-list div:hover,
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(16,34,79,.14);
}
.quality-grid article.highlight-card,
.industry-list div.highlight-card {
  border-color: rgba(32,184,74,.42);
  box-shadow: 0 18px 36px rgba(23,143,58,.13);
}
.quality-grid p { margin: 0; color: var(--muted); }
.quality-grid > article > img {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  padding: 11px;
  border-radius: var(--radius);
  background: var(--mint);
}
.quality-grid p .inline-mark {
  display: inline-block;
  width: 38px;
  height: auto;
  max-height: 34px;
  margin: 0 6px 6px 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  vertical-align: middle;
}
.quality-grid p .inline-mark.isi-mark { width: 50px; }
.highlight-card h3 { color: var(--green); }

.process-section { background: white; }
.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-rail::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--navy));
  opacity: .32;
}
.process-rail div {
  position: relative;
  min-height: 182px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf9;
  transition: transform .22s ease, box-shadow .22s ease;
}
.process-rail div:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.process-rail span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 950;
}
.process-rail strong { display: block; font-size: 19px; }
.process-rail p { color: var(--muted); margin-bottom: 0; }

.product-section { background: white; }
.product-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.product-heading > div { max-width: 650px; }
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}
.catalog-link {
  color: var(--green);
  font-weight: 950;
  border-bottom: 2px solid rgba(32,184,74,.35);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.product-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 24px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(32,184,74,.06), transparent 46%),
    #f9fbfa;
}
.pack-image {
  width: 100%;
  height: 185px;
  object-fit: contain;
  margin: 0 auto 22px;
  filter: drop-shadow(0 16px 20px rgba(16,34,79,.12));
  transition: transform .24s ease;
}
.product-card:hover .pack-image { transform: translateY(-5px) scale(1.03); }
.product-card span {
  display: block;
  color: var(--green);
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}
.product-card h3 {
  margin-top: 12px;
  color: #5b6d62;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.product-card p {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.product-card.featured {
  color: white;
  background:
    radial-gradient(circle at 70% 16%, rgba(154,228,90,.24), transparent 10rem),
    linear-gradient(145deg, #0f3f22, #10224f);
  border-color: transparent;
}
.product-card.featured span,
.product-card.featured h3 { color: white; }
.product-card.featured p { color: #dff4e7; }

.industry-section { background: var(--soft-2); }
.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.industry-list div {
  min-height: 205px;
  padding: 32px 28px;
}
.industry-list strong {
  display: block;
  font-size: 21px;
  margin-bottom: 12px;
}
.industry-list span { color: var(--muted); }
.industry-cta {
  display: grid;
  align-content: center;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #178f3a, #0f3f22) !important;
  box-shadow: var(--shadow);
}
.industry-cta strong { font-size: 26px; }
.industry-cta span { color: #e7f7ec; }
.industry-cta a {
  display: inline-flex;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 24px;
  border-radius: 999px;
  color: #0f3f22;
  background: white;
  font-weight: 900;
}

.stations-section { background: white; }
.station-panel {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  background: #10224f;
  box-shadow: 0 24px 48px rgba(16,34,79,.22);
}
.station-copy { padding: 58px 56px; color: white; }
.station-copy .eyebrow { color: #b7f7ca; background: rgba(32,184,74,.16); }
.station-copy p { color: #dbe9ef; font-size: 18px; }
.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 850;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9ae45a;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #9ae45a;
  border-bottom: 2px solid #9ae45a;
  transform: rotate(45deg);
}
.station-map {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle, rgba(255,255,255,.16) 2px, transparent 3px) 0 0 / 22px 22px,
    linear-gradient(135deg, #178f3a, #10224f);
}
.station-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.station-map path { animation: dash 10s linear infinite; }
.pin {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 4px solid #9ae45a;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 20px rgba(154,228,90,.5);
  animation: pinPulse 2.6s ease-in-out infinite;
}
.pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #9ae45a;
}
.pin-a { left: 26%; top: 26%; }
.pin-b { left: 58%; top: 64%; width: 42px; height: 42px; animation-delay: .4s; }
.pin-c { left: 75%; top: 48%; border-color: white; box-shadow: none; animation-delay: .9s; }
.pin-c::after { background: white; }

.partner-band {
  padding: 82px 0 112px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(16,34,79,.08) 0 4px, transparent 4px 12px),
    var(--lime);
}
.partner-band h2 { color: #10224f; font-size: clamp(38px, 4.5vw, 58px); }
.partner-band p {
  max-width: 650px;
  margin: 22px auto 34px;
  color: #12321f;
  font-size: 19px;
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 20px rgba(16,34,79,.04);
  transition: border-color .2s ease, box-shadow .2s ease;
}
details:hover, details[open] {
  border-color: rgba(32,184,74,.38);
  box-shadow: 0 14px 28px rgba(16,34,79,.09);
}
summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}
summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(45deg); }
summary::marker { color: var(--green); }
details p { margin: 0; padding: 0 26px 24px; color: var(--muted); }

.contact-section {
  background:
    radial-gradient(circle at 82% 25%, rgba(32,184,74,.12), transparent 24rem),
    linear-gradient(135deg, #f2fbf5, #ffffff);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: center;
}
.contact-grid p { color: var(--muted); font-size: 18px; }
.contact-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  font-style: normal;
  box-shadow: var(--shadow);
}
.contact-card strong { font-size: 31px; letter-spacing: 0; }
.contact-card span { color: #d5e4ee; }
.contact-card a { color: #9ae45a; font-weight: 900; }

.site-footer {
  background: #0c162b;
  color: #d5e4ee;
  padding: 72px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr;
  gap: 70px;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand span { color: white; }
.site-footer p { color: #a8b7c7; max-width: 360px; }
.site-footer nav, .site-footer div > div:last-child { display: grid; gap: 10px; }
.site-footer strong { color: white; font-size: 18px; }
.site-footer a { color: #d5e4ee; }
.site-footer a:hover { color: #9ae45a; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: #7d8a9a;
  font-size: 14px;
}
.site-footer.simple { padding-top: 26px; }
.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 18;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 14px 28px rgba(37,211,102,.36);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1fc15b;
  box-shadow: 0 18px 34px rgba(37,211,102,.44);
}
.whatsapp svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.legal-page { background: var(--soft); padding: 58px 0 90px; }
.legal-content {
  max-width: 840px;
  padding: 42px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.legal-content h1 { font-size: clamp(38px, 6vw, 62px); }
.legal-content h2 { margin-top: 34px; font-size: 25px; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--green); font-weight: 800; }

.quality-page {
  background:
    radial-gradient(circle at 14% 10%, rgba(32,184,74,.1), transparent 22rem),
    linear-gradient(180deg, #eff8fb, #ffffff 45%);
}
.quality-hero {
  padding: 88px 0 46px;
  text-align: center;
}
.quality-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #0d4f76;
  font-size: clamp(44px, 6vw, 72px);
}
.quality-hero p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: #3d7195;
  font-size: 21px;
}
.quality-form-section { padding: 0 0 90px; }
.quality-form-card {
  display: grid;
  gap: 28px;
  padding: 34px 30px;
  border: 1px solid rgba(16,34,79,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 55px rgba(16,34,79,.13);
}
.quality-form-card h2,
.compliance-panel h2,
.compliance-grid h2 {
  color: #0d4f76;
}
.quality-form-card p { color: #4f7891; font-size: 18px; }
.tracking-form {
  display: grid;
  gap: 12px;
}
.tracking-form label {
  color: #316987;
  font-weight: 900;
}
.tracking-form label span { color: #d93d3d; }
.tracking-form input {
  width: 100%;
  min-height: 58px;
  border: 2px solid #b8d6e9;
  border-radius: 10px;
  padding: 0 16px;
  color: #0d4f76;
  background: #edf8fe;
  font: inherit;
}
.tracking-form input:focus {
  outline: 3px solid rgba(32,184,74,.18);
  border-color: var(--green-2);
}
.tracking-form small {
  margin-bottom: 10px;
  color: #0069a8;
}
.tracking-search {
  display: grid;
  grid-template-columns: 1fr 164px;
  gap: 20px;
}
.tracking-form button:disabled {
  cursor: progress;
  opacity: .72;
  transform: none;
}
.form-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: #316987;
  font-size: 15px;
  font-weight: 800;
}
.form-status.success { color: #178f3a; }
.form-status.error { color: #b42318; }
.quality-help-grid,
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}
.quality-help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quality-help-grid article,
.compliance-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(16,34,79,.06);
}
.quality-help-grid strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
}
.quality-help-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.quality-help-grid a { color: var(--green); font-weight: 900; }
.tracking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.tracking-steps article {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(16,34,79,.06);
}
.tracking-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 950;
}
.tracking-steps strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
}
.tracking-steps p {
  margin-bottom: 0;
  color: var(--muted);
}
.compliance-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(32,184,74,.16), transparent 24rem);
}
.compliance-grid article img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 20px;
}
.compliance-grid article p { color: var(--muted); }
.compliance-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  margin-top: 30px;
  padding: 32px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, #10224f, #0f3f22);
  box-shadow: var(--shadow);
}
.compliance-panel h2,
.compliance-panel p { color: white; }
.compliance-list li { color: white; }
.compliance-panel .button { width: max-content; margin-top: 12px; }

@keyframes dash { to { stroke-dashoffset: -220; } }
@keyframes float { 50% { transform: translateY(-14px); } }
@keyframes certRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes bubbleDrift {
  0%, 100% { transform: translateY(0); opacity: .8; }
  50% { transform: translateY(-18px); opacity: 1; }
}
@keyframes pinPulse {
  0%, 100% { transform: rotate(-45deg) translateY(0) scale(1); }
  50% { transform: rotate(-45deg) translateY(-9px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 960px) {
  .topbar { display: none; }
  .menu-button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: white;
    display: grid;
    gap: 4px;
    place-content: center;
  }
  .menu-button span:not(.visually-hidden) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px; }
  .legal-nav { position: static; display: flex; flex-direction: row; box-shadow: none; border: 0; padding: 0; }
  .hero-grid, .contact-grid, .station-panel, .spec-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-bg { opacity: .35; }
  .hero-visual { min-height: 470px; }
  .hero-pack-card { min-height: 450px; }
  .hero-pack-card img { height: 420px; }
  .quality-grid, .industry-list, .product-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .product-heading { align-items: start; flex-direction: column; }
  .catalog-actions { justify-content: flex-start; }
  .process-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .container, .navbar { width: min(100% - 28px, 1160px); }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 72px 0 54px; }
  h1 { font-size: 45px; }
  h2 { font-size: 34px; }
  .lead { font-size: 17px; }
  .brand span { font-size: 26px; }
  .hero-actions, .button { width: 100%; }
  .trust-grid, .quality-grid, .product-grid, .industry-list, .spec-panel, .process-rail { grid-template-columns: 1fr; }
  .hero-visual { min-height: 410px; }
  .hero-pack-card { min-height: 360px; padding: 16px; }
  .hero-pack-card img { height: 330px; }
  .trust-strip { padding: 20px 0; }
  .trust-grid div {
    min-height: 96px;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    padding: 16px;
  }
  .trust-grid img,
  .trust-icon > span:first-child {
    width: 52px;
    height: 52px;
    max-height: 52px;
  }
  .trust-grid span,
  .trust-icon > span:last-child {
    font-size: 17px;
  }
  .spec-panel div,
  .spec-panel div:nth-child(2n),
  .spec-panel div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .spec-panel div:last-child { border-bottom: 0; }
  .station-copy { padding: 38px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .legal-content { padding: 26px; }
  .quality-hero { padding: 62px 0 34px; }
  .quality-hero p:last-child { font-size: 18px; }
  .quality-form-card { padding: 24px 18px; border-radius: 16px; }
  .tracking-search,
  .quality-help-grid,
  .tracking-steps,
  .compliance-grid,
  .compliance-panel { grid-template-columns: 1fr; }
  .tracking-search .button { width: 100%; }
  .compliance-panel { padding: 24px 18px; }
}
