@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');

:root {
  --blue: #1e5eff;
  --blue-deep: #1440c8;
  --blue-soft: #e8efff;
  --ink: #12141a;
  --muted: #5a6270;
  --line: #e4e7ee;
  --bg: #f3f5f8;
  --surface: #ffffff;
  --shadow: 0 20px 50px rgba(18, 20, 26, 0.08);
  --radius: 2px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(30, 94, 255, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(30, 94, 255, 0.05), transparent 50%),
    linear-gradient(180deg, #eef1f6 0%, var(--bg) 40%, #f7f8fb 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
}

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

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

button,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 30px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand__text span {
  color: var(--blue);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--ink);
}

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

.lang {
  position: relative;
}

.lang__btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  max-height: 320px;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 60;
}

body.rtl .lang__menu {
  right: auto;
  left: 0;
}

.lang.open .lang__menu {
  display: grid;
  gap: 2px;
}

.lang__menu button {
  border: 0;
  background: transparent;
  text-align: start;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--ink);
}

.lang__menu button:hover,
.lang__menu button.active {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}

.btn--primary:hover {
  background: var(--blue-deep);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.btn--wa {
  background: #25d366;
  color: #fff;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards;
  filter: saturate(1.05) contrast(1.04);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 14, 28, 0.72) 0%, rgba(10, 14, 28, 0.35) 48%, rgba(10, 14, 28, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 14, 28, 0.25) 0%, rgba(10, 14, 28, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 0 100px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 18px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero__brand em {
  font-style: normal;
  color: #7aa2ff;
}

.hero__title {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 14px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero__desc {
  max-width: 42ch;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section {
  padding: 96px 0;
}

.section__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

/* Material categories */
.materials {
  padding: 28px 0 0;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.material-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.material-card {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  text-align: left;
  padding: 20px 18px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.25s, box-shadow 0.3s;
  box-shadow: 0 10px 30px rgba(18, 20, 26, 0.06);
}

.material-card:hover,
.material-card.active {
  transform: translateY(-3px);
  border-color: rgba(30, 94, 255, 0.45);
  box-shadow: 0 16px 36px rgba(30, 94, 255, 0.12);
}

.material-card.active {
  background: linear-gradient(180deg, #ffffff, #eef3ff);
}

.material-card__code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 8px;
}

.material-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.material-card em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Products */
.products {
  background: transparent;
  padding-top: 64px;
}

/* Scenes mosaic */
.scenes {
  padding-top: 40px;
}

.scene-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.scene {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #111;
}

.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s;
  filter: saturate(1.05) contrast(1.03);
}

.scene:hover img {
  transform: scale(1.05);
}

.scene--lg {
  grid-column: span 2;
  grid-row: span 2;
  grid-auto-rows: unset;
  min-height: 372px;
}

.scene--wide {
  grid-column: span 2;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filters button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
}

.filters button.active,
.filters button:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 94, 255, 0.28);
}

.product__media {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 40%, #2a2f3a 0%, #0b0d12 70%);
  overflow: hidden;
}

.product--light .product__media {
  background:
    radial-gradient(circle at 50% 35%, #ffffff 0%, #eef1f6 62%, #e4e8ef 100%);
}

.product__cat {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  background: rgba(18, 20, 26, 0.72);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 9px;
  border-radius: 999px;
}

.product--light .product__cat {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-deep);
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product:hover .product__media img {
  transform: scale(1.04);
}

.product__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
}

.product__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product__head {
  padding: 16px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product__id {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0;
}

.product__ask {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid rgba(30, 94, 255, 0.25);
  background: var(--blue-soft);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}

.product__ask:hover {
  border-color: var(--blue);
  background: #dce7ff;
}

.product__specs {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfe, #f5f7fb);
}

.product__spec {
  padding: 14px 10px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.product__spec:last-child {
  border-right: 0;
}

.product__spec-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.product__spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product__spec-value small {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

.product.hidden {
  display: none;
}

/* Split / About */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split__visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(1.06) contrast(1.03);
}

.split__visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(10, 14, 28, 0.45));
}

.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-list .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-list h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-family: var(--font-display);
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Factory band */
.band {
  position: relative;
  min-height: 520px;
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.band__media {
  position: absolute;
  inset: 0;
}

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.band__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.15), rgba(8, 12, 24, 0.72));
}

.band__content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.band__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 0 12px;
}

.band__content p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

/* Stats strip — kept out of hero, one purpose */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: -1px;
}

.stats div {
  background: var(--surface);
  padding: 28px 22px;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, transparent, rgba(30, 94, 255, 0.04)),
    var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.contact__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px;
}

.contact__panel h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.contact__panel p {
  color: var(--muted);
  margin: 0 0 24px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Footer */
.footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer strong {
  color: var(--ink);
  font-family: var(--font-display);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Floating WhatsApp — bottom-left; Tawk.to stays bottom-right */
.fab-wa {
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  right: auto;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.fab-wa:hover {
  transform: scale(1.06);
}

.fab-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* RTL: keep WhatsApp opposite to Tawk (Tawk usually still bottom-right) */
body.rtl .fab-wa {
  left: max(16px, env(safe-area-inset-left, 0px));
  right: auto;
}

/* Tablet / mobile */
@media (max-width: 960px) {
  :root {
    --nav-h: 64px;
  }

  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .material-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .scene-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .scene--lg {
    min-height: 332px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .split,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .split__visual {
    min-height: 280px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__inner {
    gap: 12px;
  }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 12px auto;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    display: none;
    max-height: calc(100dvh - var(--nav-h) - 24px);
    overflow: auto;
    z-index: 60;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav__toggle {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .nav__cta {
    display: none;
  }

  .lang__btn {
    padding: 8px 10px;
    font-size: 0.8rem;
    max-width: 42vw;
  }

  .lang__btn [data-i18n='lang_label'] {
    display: none;
  }

  .materials {
    margin-top: 0;
    padding: 20px 0 0;
  }

  .hero__content {
    width: min(1180px, calc(100% - 28px));
    padding: calc(var(--nav-h) + 28px) 0 40px;
  }

  .hero__cta {
    width: 100%;
  }

  .hero__cta .btn {
    flex: 1 1 auto;
    min-height: 46px;
  }

  .brand__mark {
    width: 26px;
    height: 36px;
  }

  .filters {
    gap: 6px;
  }

  .filters button {
    padding: 8px 12px;
    min-height: 40px;
  }

  .product__spec-value {
    font-size: 0.84rem;
  }

  .contact__panel {
    padding: 24px 20px;
  }

  .contact__actions {
    flex-direction: column;
  }

  .contact__actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .brand__text {
    font-size: 1rem;
  }

  .material-rail {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .material-card {
    padding: 14px 12px;
  }

  .material-card strong {
    font-size: 0.92rem;
  }

  .material-card em {
    font-size: 0.78rem;
  }

  .scene-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
    gap: 8px;
  }

  .scene--lg,
  .scene--wide {
    grid-column: span 2;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product__head {
    flex-wrap: wrap;
  }

  .product__specs {
    grid-template-columns: repeat(3, 1fr);
  }

  .product__spec {
    padding: 12px 6px 14px;
  }

  .product__spec-label {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    width: min(1180px, calc(100% - 24px));
    padding: calc(var(--nav-h) + 24px) 0 28px;
  }

  .hero__brand {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero__title {
    max-width: none;
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
  }

  .hero__desc {
    font-size: 0.98rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .materials {
    margin-top: 0;
    padding-top: 12px;
  }

  .brand__text {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section__head {
    margin-bottom: 28px;
  }

  .section__head h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  section {
    padding: 64px 0;
  }

  .band {
    min-height: 420px;
  }

  .band__content {
    padding: 48px 0;
    width: min(1180px, calc(100% - 24px));
  }

  .stats div {
    padding: 20px 14px;
  }

  .stats strong {
    font-size: 1.4rem;
  }

  .fab-wa {
    width: 52px;
    height: 52px;
    left: max(14px, env(safe-area-inset-left, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }

  .fab-wa svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .material-card em {
    display: none;
  }

  .lang__menu {
    width: min(220px, calc(100vw - 24px));
  }
}
