:root {
  --red: #ed1b24;
  --red-dark: #c81018;
  --green: #108c3d;
  --green-dark: #087331;
  --ink: #070a11;
  --muted: #4d5562;
  --line: #e1e6ee;
  --soft: #f5f7fa;
  --paper: #ffffff;
  --footer: #111820;
  --shadow: 0 16px 38px rgba(12, 18, 28, 0.12);
  --header-h: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lightbox-open { overflow: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
svg path { fill: none; stroke: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 204px minmax(520px, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
  padding: 6px clamp(34px, 4.6vw, 84px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #edf0f4;
  box-shadow: 0 7px 20px rgba(9, 13, 22, 0.08);
  backdrop-filter: blur(12px);
}
.brand img {
  width: 160px;
  max-height: 62px;
  object-fit: contain;
}
.header-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 14px;
  font-weight: 900;
}
.nav-link {
  position: relative;
  padding: 18px 0;
}
.nav-link:hover,
.nav-link.active { color: var(--red); }
.nav-link.active::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}
.header-actions { display: flex; gap: 12px; align-items: center; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { color: #fff; background: var(--red); box-shadow: 0 12px 25px rgba(237, 27, 36, 0.26); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 15px 30px rgba(200, 16, 24, 0.3); }
.btn-whatsapp { color: #fff; background: var(--green); box-shadow: 0 10px 22px rgba(16, 140, 61, 0.22); }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-outline-green { color: var(--green); background: #fff; border-color: var(--green); }
.btn-outline-green:hover { color: #fff; background: var(--green); border-color: var(--green); box-shadow: 0 12px 24px rgba(16, 140, 61, 0.18); }
.btn-outline-red { color: var(--red); background: #fff; border-color: var(--red); }
.btn-large { min-height: 52px; padding-inline: 26px; font-size: 15px; }
.btn-wide { min-width: 330px; }
.btn-icon { position: relative; width: 17px; height: 17px; flex: 0 0 17px; }
.whatsapp-mark {
  background: url("assets/whatsapp-icon.png") center / contain no-repeat;
}
.whatsapp-mark::after { content: none; }
.quote-mark { border: 2px solid currentColor; border-radius: 3px; }
.quote-mark::before,
.quote-mark::after {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: currentColor;
  content: "";
}
.quote-mark::before { top: 5px; }
.quote-mark::after { top: 10px; }

.screen {
  position: relative;
  min-height: auto;
  scroll-margin-top: var(--header-h);
  overflow: hidden;
}
.eyebrow,
.section-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 13px;
}
.eyebrow::after {
  width: 58px;
  height: 2px;
  background: var(--red);
  content: "";
}
h1 {
  margin-bottom: 15px;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}
h1 span,
.text-link,
.footer-whatsapp { color: var(--red); }
h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.9vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 9px;
  font-size: clamp(18px, 1.45vw, 28px);
  line-height: 1.16;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.home-screen {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: calc(100vh - var(--header-h));
  min-height: 720px;
  max-height: 840px;
  overflow: hidden;
  background: #f7f9fc;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 42%) minmax(0, 58%);
  align-items: stretch;
  width: min(1440px, 100%);
  height: calc(100% - 98px);
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
}
.hero-inner::before {
  display: none;
}
.home-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 540px;
  padding: 30px clamp(28px, 3.2vw, 50px) 26px clamp(48px, 5.1vw, 76px);
  background: #fff;
}
.home-copy .hero-title {
  max-width: 510px;
  margin-bottom: 26px;
  color: #070a11;
  font-size: clamp(34px, 2.85vw, 46px);
  line-height: 1.14;
  font-weight: 900;
}
.home-copy .hero-title span {
  display: block;
  color: #070a11;
  font-weight: 900;
  white-space: nowrap;
}
.home-copy .hero-title .accent {
  color: var(--red);
}
.lead {
  max-width: 500px;
  margin-bottom: 34px;
  color: #070a11;
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.56;
  font-weight: 800;
}
.lead span {
  display: block;
  white-space: nowrap;
}
.support-line,
.support-card p,
.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
}
.support-line {
  margin-bottom: 20px;
  color: #303947;
  font-size: 15px;
}
.mini-whatsapp {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
  flex: 0 0 16px;
}
.mini-whatsapp::after {
  position: absolute;
  right: -2px;
  bottom: -3px;
  width: 6px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
}
.cta-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 22px 15px;
  max-width: 545px;
}
.trust-badges span {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #1c2633;
  font-size: 12px;
  line-height: 1.22;
}
.trust-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}
.badge-icon,
.feature-icon {
  position: relative;
  display: block;
  color: var(--red);
}
.badge-icon { width: 26px; height: 29px; color: #0bb13f; border: 3px solid currentColor; }
.pin { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.pin::after { position: absolute; inset: 6px; border-radius: 50%; background: currentColor; content: ""; }
.factory { height: 22px; border-top: 0; border-radius: 0 0 2px 2px; }
.factory::before { position: absolute; top: -13px; left: 1px; width: 18px; height: 15px; border-left: 3px solid currentColor; border-bottom: 3px solid currentColor; transform: skewY(-23deg); content: ""; }
.clock { border-radius: 50%; }
.clock::before,
.clock::after { position: absolute; top: 11px; left: 10px; width: 8px; height: 3px; background: currentColor; transform-origin: left center; content: ""; }
.clock::after { transform: rotate(-90deg); }
.coins { height: 20px; border-radius: 50%; box-shadow: 0 7px 0 -3px #fff, 0 7px 0 0 currentColor, 0 14px 0 -3px #fff, 0 14px 0 0 currentColor; }

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
.hero-image img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.06) contrast(1.04);
}

.feature-strip {
  z-index: 5;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.feature-strip article {
  display: grid;
  justify-items: center;
  gap: 4px;
  align-items: start;
  min-height: 78px;
  padding: 7px 14px 8px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.feature-strip article:last-child { border-right: 0; }
.feature-strip strong,
.feature-strip span { display: block; }
.feature-strip strong { font-size: 14px; line-height: 1.08; }
.feature-strip span { color: var(--muted); font-size: 12px; line-height: 1.12; }
.feature-strip small {
  display: block;
  margin-top: 7px;
  color: #23466f;
  font-size: 13px;
  font-weight: 800;
}
.feature-icon { width: 36px; height: 36px; }
.feature-photo {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.95);
  filter: contrast(1.18) saturate(1.08);
}
.motor { border: 4px solid currentColor; border-radius: 9px; }
.motor::before,
.motor::after { position: absolute; top: 10px; width: 9px; height: 22px; border: 4px solid currentColor; content: ""; }
.motor::before { left: -11px; }
.motor::after { right: -11px; }
.touch { border: 4px solid currentColor; border-radius: 8px; }
.touch::after { position: absolute; right: -8px; bottom: -13px; width: 25px; height: 31px; border-right: 5px solid currentColor; border-bottom: 5px solid currentColor; transform: rotate(-33deg); content: ""; }
.linear { transform: rotate(-28deg); }
.linear::before { position: absolute; inset: 14px 0; border: 4px solid currentColor; border-radius: 4px; content: ""; }
.linear::after { position: absolute; top: 6px; left: 5px; width: 12px; height: 12px; background: currentColor; box-shadow: 18px 12px 0 currentColor, 33px 0 0 currentColor; content: ""; }
.spray::before { position: absolute; top: 0; left: 10px; width: 27px; height: 17px; border: 4px solid currentColor; content: ""; }
.spray::after { position: absolute; top: 28px; left: 4px; width: 6px; height: 18px; background: currentColor; box-shadow: 12px 4px 0 currentColor, 24px 0 0 currentColor, 36px 4px 0 currentColor; content: ""; }
.roller { width: 50px; height: 25px; margin-top: 9px; border: 4px solid currentColor; border-radius: 999px; transform: rotate(-30deg); }
.roller::before { position: absolute; inset: 6px; border-top: 3px solid currentColor; content: ""; }

.products-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px clamp(28px, 5vw, 72px) 38px;
  background: linear-gradient(180deg, #fff, #fbfcfe);
}

.section-heading {
  width: min(1220px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}
.section-heading.compact { margin-bottom: 24px; }
.section-heading.compact h2 {
  font-size: clamp(25px, 2vw, 32px);
}
.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #4d5562;
  font-size: clamp(15px, 1.2vw, 18px);
}
.line-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--red);
}
.line-label::before,
.line-label::after {
  width: 58px;
  height: 2px;
  background: var(--red);
  content: "";
}
.product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1260px, 100%);
  margin: 0 auto;
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 23px rgba(12, 18, 28, 0.08);
}
.product-image-trigger {
  display: block;
  width: 100%;
  height: 230px;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #edf1f5;
  border-radius: 8px;
  cursor: zoom-in;
}
.product-image-trigger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
  mix-blend-mode: multiply;
  transition: transform 180ms ease;
}
.product-image-trigger:hover img,
.product-image-trigger:focus-visible img {
  transform: scale(1.18);
}
.product-image-trigger:focus-visible {
  outline: 3px solid rgba(237, 28, 36, 0.28);
  outline-offset: 3px;
}
.product-card h3 {
  padding-top: 0;
  font-size: 18px;
}
.product-card p {
  color: #303a49;
  font-size: 15px;
}
.product-card > p:not(.product-note) {
  min-height: 66px;
  margin-bottom: 14px;
}
.product-specs {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.product-specs li {
  position: relative;
  min-height: 28px;
  padding: 7px 10px 7px 26px;
  color: #28313f;
  background: #f7f9fc;
  border: 1px solid #e5eaf1;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.product-specs li::before {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}
.product-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto 0 14px;
  color: #176b36;
  font-size: 13px;
  font-weight: 900;
}
.product-note .check-dot,
.product-support-strip .check-dot {
  position: relative;
  border-color: var(--green);
}
.product-note .check-dot::after,
.product-support-strip .check-dot::after {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(42deg);
  content: "";
}
.product-cta {
  width: 100%;
  min-height: 42px;
}
.text-link { font-size: 15px; font-weight: 900; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}
.image-lightbox.open {
  display: grid;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(6, 12, 20, 0.78);
  border: 0;
  cursor: zoom-out;
}
.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  max-height: 88vh;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}
.lightbox-panel img {
  display: block;
  width: 100%;
  max-height: calc(88vh - 36px);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  background: var(--red);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.product-support-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1260px, 100%);
  margin: 22px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 23px rgba(12, 18, 28, 0.08);
}
.product-support-strip article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px 10px;
  align-items: start;
  min-height: 92px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.product-support-strip article:last-child { border-right: 0; }
.product-support-strip strong {
  font-size: 14px;
  line-height: 1.15;
}
.product-support-strip p {
  grid-column: 2;
  margin: 0;
  color: #576171;
  font-size: 12px;
  line-height: 1.35;
}
.product-bottom-note {
  width: min(1260px, 100%);
  margin: 14px auto 0;
  color: #4d5562;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.solutions-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 42px clamp(28px, 5vw, 72px);
  background: linear-gradient(180deg, #f7f9fc, #fff);
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(1510px, 100%);
  margin: 0 auto;
}
.application-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  box-shadow: 0 9px 23px rgba(12, 18, 28, 0.08);
}
.app-title {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.app-title p { color: #3f4651; font-size: 15px; }
.red-round,
.small-round {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  flex: 0 0 auto;
}
.red-round { width: 56px; height: 56px; }
.image-round {
  overflow: hidden;
  background: transparent;
}
.small-round.image-round {
  border: 0;
}
.image-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-round {
  width: 54px;
  height: 54px;
  color: var(--red);
  background: #fff;
  border: 2px solid var(--red);
}
.shirt-icon::before { width: 31px; height: 28px; border: 3px solid currentColor; border-radius: 4px 4px 8px 8px; content: ""; }
.box-icon::before { width: 28px; height: 28px; border: 3px solid currentColor; transform: rotate(30deg) skew(-7deg); content: ""; }
.pin-icon::before { width: 18px; height: 22px; border: 3px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); content: ""; }
.whats-icon::before { width: 24px; height: 24px; border: 3px solid currentColor; border-radius: 50%; content: ""; }
.factory-icon::before { width: 26px; height: 22px; border: 3px solid currentColor; border-top: 0; content: ""; }
.support-icon::before { width: 28px; height: 28px; border: 3px solid currentColor; border-radius: 50%; content: ""; }
.chain-icon::before { width: 26px; height: 18px; border: 3px solid currentColor; border-radius: 999px; content: ""; }
.oem-icon::before { width: 26px; height: 26px; border: 3px solid currentColor; border-radius: 6px; content: ""; }
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.workflow-step {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 8px;
  min-width: 0;
}
.workflow-step:not(:last-child)::after {
  position: absolute;
  top: 50px;
  right: -12px;
  z-index: 2;
  width: 24px;
  height: 24px;
  color: #8d96a4;
  background: #fff;
  border: 1px solid #d6dce5;
  border-radius: 50%;
  content: "\2192";
  font-size: 15px;
  font-weight: 900;
  line-height: 21px;
  text-align: center;
}
.scene {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  background: linear-gradient(140deg, #eef1f5, #fff);
  border: 1px solid #d6dce5;
  border-radius: 8px;
}
.image-scene {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: #f4f6f8;
}
.image-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.workflow-step strong {
  font-size: 13px;
  line-height: 1.2;
}
.workflow-step p {
  margin: 0;
  color: #576171;
  font-size: 12px;
  line-height: 1.35;
}
.cad-scene::before { position: absolute; inset: 28px 28px 18px; border: 8px solid #202a36; border-bottom-width: 16px; background: #eef3f8; content: ""; }
.cad-scene::after { position: absolute; left: 55px; right: 55px; top: 52px; height: 58px; border: 3px solid #8d98a6; border-radius: 50% 50% 8px 8px; content: ""; }
.plot-scene::before { position: absolute; left: 16px; right: 16px; top: 35px; height: 45px; border-radius: 16px; background: #111820; box-shadow: 0 37px 0 #fff; content: ""; }
.plot-scene::after { position: absolute; left: 30px; right: 20px; bottom: 28px; height: 55px; color: #929aa6; background: repeating-linear-gradient(12deg, transparent 0 24px, currentColor 25px 26px); content: ""; }
.cut-scene::before { position: absolute; inset: 35px 18px 24px; background: #1d2732; content: ""; }
.cut-scene::after { position: absolute; top: 12px; left: 50%; width: 28px; height: 126px; background: #c9d0da; border-radius: 12px; transform: translateX(-50%); content: ""; }
.fabric-scene::before { position: absolute; left: 24px; right: 24px; bottom: 32px; height: 32px; border-radius: 999px; background: #1f2937; box-shadow: 0 -28px 0 #475569, 0 -56px 0 #d8c3ae; content: ""; }
.batch-scene { background: linear-gradient(150deg, #bd895f, #e6c2a2); }
.batch-scene::before { position: absolute; right: 32px; top: 38px; width: 92px; height: 72px; color: #9fe0ff; background: #111820; border-radius: 10px; box-shadow: -58px 42px 0 -20px rgba(17,24,39,0.9); content: "MFG: 20/05/2025"; font-size: 10px; font-weight: 800; padding: 14px; }
.qr-scene::before { position: absolute; inset: 25px 42px; background: #fff; box-shadow: 0 8px 18px rgba(12,18,28,0.15); content: ""; }
.qr-scene::after { position: absolute; left: 66px; top: 58px; width: 66px; height: 66px; background: linear-gradient(90deg, #111 50%, transparent 0) 0 0 / 16px 16px, linear-gradient(#111 50%, transparent 0) 0 0 / 16px 16px; content: ""; }
.exp-scene::before { position: absolute; inset: 0; background: #d7d0c6; content: ""; }
.exp-scene::after { position: absolute; top: 52px; left: 31px; color: #111; font-size: 18px; line-height: 1.4; white-space: pre; content: "MFG: 20/05/2025\A EXP: 20/05/2026\A LOT: WSBD2505"; }
.carton-scene { background: linear-gradient(145deg, #c99766, #dfbb91); }
.carton-scene::after { position: absolute; top: 46px; left: 33px; color: #111; font-size: 16px; line-height: 1.45; white-space: pre; content: "WECARE\A MFG: 20/05/2025\A EXP: 20/05/2026\A LOT: WSBD2505"; }
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.step-row li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}
.step-row li:not(:last-child)::after {
  position: absolute;
  right: -10px;
  color: #a2a9b4;
  font-size: 28px;
  content: "\2192";
}
.step-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  flex: 0 0 28px;
}
.application-card .btn { margin: auto auto 0; }
.micro-text {
  margin: 10px 0 0;
  color: #236b3a;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.support-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1510px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  box-shadow: 0 9px 23px rgba(12, 18, 28, 0.08);
}
.support-row article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 16px 22px;
  border-right: 1px solid #d5dbe4;
}
.support-row article:last-child { border-right: 0; }
.support-row .small-round {
  width: 58px;
  height: 58px;
  padding: 5px;
  background: #fff4f5;
  border: 1px solid rgba(237, 27, 36, 0.2);
  box-shadow: 0 8px 18px rgba(237, 27, 36, 0.12);
}
.support-row .small-round img {
  filter: saturate(1.45) contrast(1.18);
}
.support-row strong {
  font-size: 14px;
  line-height: 1.25;
}
.why-screen {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: center;
  padding: 42px clamp(28px, 5vw, 72px);
  background: #fbfcfe;
}
.why-copy {
  max-width: 545px;
}
.why-copy .section-label {
  color: var(--red);
}
.why-copy h2 {
  font-size: clamp(26px, 2.8vw, 46px);
}
.why-copy p {
  color: #333c49;
  font-size: 16px;
}
.trust-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 22px;
}
.trust-points article {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.22;
}
.trust-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.trust-visual.image-visual {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #fff;
}
.trust-visual.image-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.city-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #9ed0ef, #e6f5ff 50%, #d8dde3 51%, #f9fafb);
}
.skyline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 188px;
  background:
    linear-gradient(90deg, #768696 0 38px, transparent 38px 54px, #b3beca 54px 98px, transparent 98px 116px, #6c7f90 116px 154px, transparent 154px 168px, #c4ced8 168px 222px, transparent 222px 238px, #7c8d9e 238px 280px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.62) 0 5px, transparent 6px 23px);
}
.bd-flag {
  position: absolute;
  top: 42px;
  left: 62px;
  width: 96px;
  height: 62px;
  background: #006a4e;
  box-shadow: -8px 102px 0 -42px #45515f;
}
.bd-flag::before { position: absolute; left: -8px; top: -20px; width: 5px; height: 166px; background: #36404b; content: ""; }
.bd-flag span { position: absolute; left: 34px; top: 17px; width: 28px; height: 28px; background: #f42a41; border-radius: 50%; }
.support-card {
  position: absolute;
  top: 34px;
  left: 42%;
  z-index: 3;
  width: 250px;
  padding: 30px 25px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(12, 18, 28, 0.16);
}
.support-card strong { display: block; margin-bottom: 18px; }
.support-card p { margin-bottom: 12px; font-size: 13px; }
.check-dot {
  width: 14px;
  height: 14px;
  border: 2px solid #667080;
  border-radius: 50%;
  flex: 0 0 14px;
}
.team-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #dff2fa, #f6f9fb 48%, #d8dfe6);
}
.wall-logo {
  position: absolute;
  top: 46px;
  right: 55px;
  font-size: 44px;
  transform: rotate(-8deg);
}
.wall-logo small { font-size: 16px; letter-spacing: 8px; }
.team-row {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 84px;
  display: flex;
  align-items: end;
  gap: 12px;
}
.team-row i {
  position: relative;
  width: 48px;
  height: 138px;
  background: #151922;
  border-radius: 16px 16px 0 0;
}
.team-row i::before { position: absolute; top: -34px; left: 8px; width: 32px; height: 32px; background: #c78958; border-radius: 50%; content: ""; }
.team-row i::after { position: absolute; top: 34px; left: 12px; color: var(--red); font-size: 8px; font-weight: 900; content: "WECARE"; }

.contact-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #d8e0ea;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 28%), linear-gradient(180deg, #10171f, #131b24);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.62fr 0.85fr 1.15fr 1.55fr;
  gap: 36px;
  align-items: start;
  width: min(1510px, calc(100% - 72px));
  margin: auto;
  padding: 46px 0 32px;
}
.footer-brand img {
  width: 166px;
  margin-bottom: 16px;
  filter: brightness(1.12);
}
.footer-brand p,
.footer-links a,
.contact-info p,
.contact-info a {
  color: #d7dfe8;
  font-size: 13px;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #303b47;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.social-link.facebook { background: #1877f2; font-family: Arial, Helvetica, sans-serif; font-size: 24px; }
.social-link.youtube { background: #ff3d35; }
.social-link.youtube span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}
.social-link.x-twitter {
  color: #fff;
  background: #111820;
  font-size: 19px;
}
.social-link.linkedin {
  background: #0a66c2;
  font-size: 14px;
  letter-spacing: 0;
}
.social-link.pinterest {
  background: #e60023;
  font-size: 24px;
  font-family: Georgia, serif;
  font-style: italic;
}
.social-link.vimeo {
  background: #1ab7ea;
  font-size: 24px;
  font-family: Georgia, serif;
  font-style: italic;
}
.social-link.whatsapp {
  background: var(--green);
  font-size: 11px;
}
.footer-links h3,
.contact-info h3,
.message-form h2 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
}
.footer-links a {
  display: block;
  margin-bottom: 10px;
}
.contact-info {
  font-style: normal;
}
.contact-info p {
  margin-bottom: 11px;
}
.contact-info .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
}
.contact-info .website-link {
  width: max-content;
  max-width: 100%;
  text-decoration: none;
}
.contact-info .website-link:hover {
  color: #fff;
}
.contact-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-top: 1px;
  object-fit: contain;
  flex: 0 0 18px;
}
.contact-dot {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--red);
  flex: 0 0 18px;
}
.contact-dot::before,
.contact-dot::after {
  position: absolute;
  content: "";
}
.company-dot::before {
  inset: 3px 4px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.company-dot::after {
  left: 7px;
  top: 6px;
  width: 2px;
  height: 2px;
  background: currentColor;
  box-shadow: 4px 0 currentColor, 0 4px currentColor, 4px 4px currentColor;
}
.pin-dot::before {
  left: 4px;
  top: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.pin-dot::after {
  left: 8px;
  top: 5px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}
.phone-dot::before {
  left: 4px;
  top: 3px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 8px;
  transform: rotate(-34deg);
}
.phone-dot::after {
  left: 10px;
  top: 10px;
  width: 5px;
  height: 3px;
  background: currentColor;
  border-radius: 3px;
  transform: rotate(22deg);
}
.mail-dot::before {
  inset: 4px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.mail-dot::after {
  left: 4px;
  top: 6px;
  width: 10px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.web-dot::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.web-dot::after {
  left: 8px;
  top: 3px;
  width: 2px;
  height: 12px;
  background: currentColor;
  box-shadow: -5px 5px 0 -4px currentColor, 5px 5px 0 -4px currentColor;
}
.footer-whatsapp { color: #25d366; }
.message-form {
  display: grid;
  gap: 9px;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
input,
select,
textarea {
  width: 100%;
  min-height: 36px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ccd4df;
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
}
textarea {
  min-height: 75px;
  resize: vertical;
}
.message-form .btn {
  width: 100%;
  min-height: 42px;
}
.footer-bottom {
  padding: 14px 18px;
  color: #c3ceda;
  background: rgba(255,255,255,0.04);
  text-align: center;
  font-size: 12px;
}
.sticky-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px 12px 15px;
  color: #fff;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(16, 140, 61, 0.38);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}
.sticky-whatsapp .whatsapp-mark {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}
.sticky-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 170px 1fr; }
  .header-actions { justify-self: end; }
  .header-nav { order: 4; grid-column: 1 / -1; }
  .nav-link { padding: 8px 0; }
  .nav-link.active::after { bottom: -11px; }
  .home-screen {
    height: auto;
    min-height: calc(100vh - var(--header-h));
  }
  .hero-inner {
    grid-template-columns: minmax(360px, 42%) minmax(0, 58%);
    min-height: 610px;
  }
  .home-copy { max-width: 430px; padding: 14px 22px 10px 28px; }
  .home-copy .hero-title { font-size: clamp(26px, 2.55vw, 31px); line-height: 1.22; margin-bottom: 24px; }
  .lead { margin-bottom: 28px; font-size: 13px; line-height: 1.68; }
  .trust-badges { grid-template-columns: repeat(2, minmax(115px, 1fr)); gap: 22px 14px; max-width: 390px; }
  .cta-row { margin-top: 30px; gap: 18px; }
  .hero-image { padding-right: 0; }
  .hero-image img { width: 100%; max-width: none; }
  .feature-strip { width: calc(100% - 44px); }
  .feature-strip article { min-height: 74px; padding: 7px 12px 8px; gap: 4px; }
  .feature-strip strong { font-size: 13px; }
  .feature-strip span,
  .feature-strip small { font-size: 12px; }
  .product-list,
  .product-support-strip,
  .support-row,
  .trust-points { grid-template-columns: repeat(2, 1fr); }
  .application-grid,
  .why-screen,
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 22px; }
  .product-support-strip article:nth-child(2) { border-right: 0; }
  .product-support-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .support-row article:nth-child(2) { border-right: 0; }
  .support-row article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: 16px;
  }
  .brand img {
    width: 148px;
    max-height: 54px;
  }
  .menu-toggle { display: block; justify-self: end; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 16px 12px;
    background: #fff;
    box-shadow: 0 16px 24px rgba(9, 13, 22, 0.12);
  }
  .header-nav.open { display: flex; }
  .nav-link { padding: 13px 4px; border-top: 1px solid var(--line); }
  .nav-link.active::after { display: none; }
  .header-actions {
    display: none;
  }
  .screen { min-height: auto; }
  .home-screen {
    display: flex;
    height: auto;
    min-height: calc(100vh - var(--header-h));
    max-height: none;
  }
  .hero-inner {
    display: block;
    height: auto;
    overflow: visible;
  }
  .home-copy { padding: 24px 18px 12px; }
  h1 { font-size: 34px; }
  h2 { font-size: 34px; }
  .cta-row,
  .form-pair { display: grid; }
  .trust-badges,
  .product-list,
  .product-support-strip,
  .workflow,
  .step-row,
  .support-row,
  .trust-points { grid-template-columns: 1fr; }
  .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .hero-image {
    position: relative;
    height: 360px;
    padding: 0 10px 0 18px;
  }
  .hero-image img {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    object-position: center;
  }
  .feature-strip {
    grid-template-columns: repeat(5, minmax(118px, 1fr));
    width: calc(100% - 28px);
    margin: 0 auto 14px;
    overflow-x: auto;
  }
  .feature-strip article {
    min-height: 74px;
    padding: 7px 10px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .feature-strip article:last-child { border-right: 0; }
  .products-screen,
  .solutions-screen,
  .why-screen { padding: 42px 18px; }
  .product-card img {
    float: none;
    width: 100%;
    margin: 0 0 12px;
  }
  .product-image-trigger { height: 210px; }
  .product-card { min-height: 0; }
  .product-card > p:not(.product-note) { min-height: 0; }
  .product-support-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-support-strip article:last-child { border-bottom: 0; }
  .application-card { padding: 20px; }
  .app-title { grid-template-columns: 66px 1fr; }
  .red-round { width: 64px; height: 64px; }
  .workflow-step {
    grid-template-columns: 72px 32px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: center;
  }
  .workflow-step .scene {
    grid-row: 1 / 3;
    min-height: 72px;
  }
  .workflow-step span { grid-column: 2; }
  .workflow-step strong { grid-column: 3; font-size: 14px; }
  .workflow-step p { grid-column: 3; }
  .workflow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -19px;
    left: 24px;
    transform: rotate(90deg);
  }
  .step-row li:not(:last-child)::after { display: none; }
  .btn-wide { width: 100%; min-width: 0; }
  .support-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .support-row article:last-child { border-bottom: 0; }
  .trust-visual { grid-template-columns: 1fr; min-height: 680px; }
  .support-card { left: 8%; top: 230px; }
  .team-panel { min-height: 320px; }
  .contact-grid { width: calc(100% - 36px); }
}

@media (max-width: 460px) {
  .btn { white-space: normal; }
  .trust-visual { min-height: 620px; }
  .support-card { width: 230px; top: 200px; }
  .wall-logo { right: 25px; font-size: 34px; }
  .team-row { left: 42px; gap: 8px; }
  .team-row i { width: 38px; }
  .sticky-whatsapp { right: 14px; bottom: 14px; min-height: 44px; padding: 10px 14px 10px 12px; font-size: 14px; }
  .sticky-whatsapp .whatsapp-mark { width: 22px; height: 22px; flex-basis: 22px; }
}
