:root {
  --ink: #20242a;
  --muted: #68707b;
  --line: #d9dfe8;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --blue: #225eaf;
  --blue-dark: #123e78;
  --red: #c9273a;
  --steel: #e8eef5;
  --shadow: 0 18px 55px rgba(28, 43, 65, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 223, 232, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: min(190px, 30vw);
  height: auto;
}

.brand-company-name {
  max-width: 280px;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3d4651;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a.is-current {
  color: var(--blue-dark);
  box-shadow: inset 0 -3px var(--red);
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(44px, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.lang-btn {
  min-height: 38px;
  border: 0;
  padding: 8px 11px;
  color: #3d4651;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #fff;
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(380px, 31vw, 520px);
  align-items: end;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(80px, 13vh, 138px) clamp(18px, 5vw, 72px) clamp(52px, 8vh, 86px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 29, 0.8), rgba(7, 16, 29, 0.47) 48%, rgba(7, 16, 29, 0.15));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 980px;
  color: #fff;
  container-type: inline-size;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: #ff6375;
}

.hero .eyebrow {
  font-size: 22px;
  font-size: clamp(18px, 2.2cqi, 24px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1050px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 64px;
  font-size: clamp(36px, 7.2cqi, 82px);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

html[lang="en"] .hero h1 {
  font-size: clamp(34px, 6.4cqi, 72px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  font-size: clamp(17px, 2.4cqi, 26px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .button {
  min-height: 56px;
  padding: 15px 25px;
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hero-product-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 500px;
  align-self: end;
  justify-self: end;
}

.hero-product-preview {
  position: absolute;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  padding: 0;
  background: #fff;
  box-shadow: 0 20px 48px rgba(4, 14, 28, 0.32);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-product-preview:first-child {
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
}

.hero-product-preview:nth-child(2) {
  top: 108px;
  left: 0;
  width: 210px;
  height: 210px;
}

.hero-product-preview:nth-child(3) {
  top: 0;
  right: 32px;
  width: 195px;
  height: 195px;
}

.hero-product-preview:hover,
.hero-product-preview:focus-visible {
  z-index: 2;
  border-color: #fff;
  outline: 3px solid var(--red);
  transform: translateY(-5px);
}

.hero-product-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f6f8fb;
}

.hero-product-preview span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 24px 16px 15px;
  color: #fff;
  background: linear-gradient(transparent, rgba(9, 25, 45, 0.92));
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding: clamp(58px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
}

.section-copy {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 42px;
  background: var(--soft);
}

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

.product-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  border: 1px solid var(--line);
  background: #fff;
  min-width: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover,
.product-card:focus {
  border-color: rgba(34, 94, 175, 0.45);
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--steel);
}

.product-card div {
  padding: 22px;
}

.product-card p,
.process-step p,
.capability-note,
.factory-copy p,
.faq p,
.contact p,
.site-footer p {
  color: var(--muted);
}

.product-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #414a55;
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.gallery-section {
  background: #f8fafc;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 12px;
}

.detail-gallery img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.zoomable {
  cursor: zoom-in;
  transition: filter 160ms ease, transform 160ms ease;
}

.zoomable:hover {
  filter: brightness(0.94);
}

.capabilities {
  background: #fff;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 34px;
  margin-top: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-step {
  min-height: 245px;
  padding: 24px;
  background: #fff;
}

.process-step span {
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.capability-note {
  padding: 28px;
  background: var(--blue-dark);
  color: #dce9f8;
}

.capability-note h3 {
  color: #fff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-list span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.factory {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 30px;
  padding: clamp(58px, 9vw, 108px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.factory-copy {
  align-self: center;
}

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

.factory-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-grid .wide {
  grid-column: span 2;
  grid-row: span 2;
}

.certificate-showcase {
  background: #f8fafc;
}

.certificate-carousel {
  position: relative;
  margin-top: 34px;
  padding: 0 62px 46px;
}

.certificate-carousel-viewport {
  position: relative;
  height: 535px;
  overflow: hidden;
  perspective: 1200px;
  touch-action: pan-y;
}

.certificate-carousel-track {
  position: relative;
  height: 100%;
}

.certificate-card {
  position: absolute;
  top: 10px;
  left: 50%;
  width: min(360px, 62vw);
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.46);
  transform-origin: center center;
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 420ms ease, transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
  user-select: none;
}

.certificate-carousel .certificate-card.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1) rotateY(0);
}

.certificate-carousel .certificate-card.is-previous,
.certificate-carousel .certificate-card.is-next {
  z-index: 3;
  opacity: 0.72;
  pointer-events: auto;
  cursor: pointer;
}

.certificate-carousel .certificate-card.is-previous {
  transform: translateX(-128%) scale(0.72) rotateY(12deg);
}

.certificate-carousel .certificate-card.is-next {
  transform: translateX(28%) scale(0.72) rotateY(-12deg);
}

.certificate-carousel .certificate-card.is-far-previous,
.certificate-carousel .certificate-card.is-far-next {
  z-index: 1;
  opacity: 0.22;
}

.certificate-carousel .certificate-card.is-far-previous {
  transform: translateX(-174%) scale(0.5) rotateY(16deg);
}

.certificate-carousel .certificate-card.is-far-next {
  transform: translateX(74%) scale(0.5) rotateY(-16deg);
}

.certificate-carousel .certificate-card.is-hidden {
  z-index: 0;
  opacity: 0;
}

.certificate-carousel .certificate-card.is-active:focus-visible {
  border-color: rgba(34, 94, 175, 0.52);
  box-shadow: var(--shadow);
  outline: 3px solid rgba(34, 94, 175, 0.16);
}

.certificate-carousel-control {
  position: absolute;
  top: 45%;
  z-index: 8;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(24, 38, 58, 0.18);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.certificate-carousel-control:hover,
.certificate-carousel-control:focus-visible {
  background: var(--red);
  outline: 3px solid rgba(201, 39, 58, 0.2);
}

.certificate-carousel-control.is-previous {
  left: 0;
}

.certificate-carousel-control.is-next {
  right: 0;
}

.certificate-carousel-dots {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.certificate-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #b8c1cc;
  cursor: pointer;
}

.certificate-carousel-dots button.is-active {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(201, 39, 58, 0.14);
}

.certificate-preview {
  height: 330px;
  overflow: hidden;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #e9eef5;
}

.certificate-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 38, 58, 0.12);
  pointer-events: none;
}

.certificate-meta {
  min-height: 142px;
  padding: 20px;
}

.certificate-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.certificate-meta h3 {
  margin-bottom: 9px;
  color: var(--blue-dark);
}

.certificate-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  max-width: 980px;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

details {
  border: 1px solid var(--line);
  background: #fff;
}

summary {
  padding: 18px 20px;
  color: var(--blue-dark);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  padding: clamp(58px, 9vw, 108px) clamp(18px, 5vw, 72px);
  background: #172333;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  max-width: 1220px;
  margin: 0 auto;
  color: #fff;
}

.contact h2 {
  max-width: 680px;
}

.sales-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.sales-person img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.sales-person strong,
.sales-person span {
  display: block;
}

.sales-person span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #34404d;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: clamp(14px, 3vw, 34px);
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 19, 30, 0.72);
}

.product-modal-panel,
.image-modal-panel {
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 34px);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  overflow: auto;
}

.product-modal-panel {
  width: min(1180px, 100%);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-modal-body {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: 0;
}

.product-modal-media {
  padding: 28px;
  background: #f6f8fb;
}

.product-modal-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-thumbs button {
  border: 1px solid var(--line);
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 2px var(--blue);
}

.product-thumbs img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.product-modal-content {
  padding: clamp(28px, 4vw, 48px);
}

.product-modal-content h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.modal-section,
.modal-grid,
.spec-table {
  margin-top: 24px;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.modal-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #414a55;
}

.spec-table {
  display: grid;
  border: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row span {
  padding: 11px 13px;
}

.spec-row span:first-child {
  color: var(--blue-dark);
  background: #f2f6fb;
  font-weight: 850;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.outline {
  color: var(--blue-dark);
  border-color: var(--line);
  background: #fff;
}

.image-modal-panel {
  width: min(1080px, 100%);
  margin: 0;
  padding: 18px;
}

.image-modal-panel img {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  background: #f8fafc;
}

.image-modal-panel figcaption {
  min-height: 24px;
  padding-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

body.modal-open {
  overflow: hidden;
}

.inner-hero {
  position: relative;
  min-height: 370px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 78px clamp(18px, 5vw, 72px) 58px;
  color: #fff;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 16, 29, 0.86), rgba(7, 16, 29, 0.54) 60%, rgba(7, 16, 29, 0.22));
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-content {
  max-width: 980px;
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
}

.inner-hero-content > p:last-child {
  max-width: 790px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.inner-section {
  min-height: 440px;
}

.inner-section .product-grid,
.inner-section .capability-layout,
.inner-section .certificate-carousel,
.inner-section .faq-list {
  margin-top: 0;
}

.inner-factory {
  min-height: 620px;
}

.inner-contact {
  min-height: 650px;
}

@media (min-width: 1181px) and (max-height: 780px) {
  .hero {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(36px, 6cqi, 68px);
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(33px, 5.5cqi, 62px);
  }

  .hero-copy {
    font-size: clamp(17px, 2.1cqi, 22px);
  }
}

@media (max-width: 1120px) {
  .product-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .certificate-carousel {
    padding: 0 0 46px;
  }

  .certificate-carousel-viewport {
    height: 500px;
  }

  .certificate-card {
    width: min(320px, 76vw);
  }

  .certificate-preview {
    height: 300px;
  }

  .certificate-carousel .certificate-card.is-previous {
    transform: translateX(-112%) scale(0.66) rotateY(10deg);
  }

  .certificate-carousel .certificate-card.is-next {
    transform: translateX(12%) scale(0.66) rotateY(-10deg);
  }

  .certificate-carousel .certificate-card.is-far-previous,
  .certificate-carousel .certificate-card.is-far-next {
    opacity: 0;
    pointer-events: none;
  }

  .certificate-carousel-control {
    top: 42%;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .language-switch {
    margin: 12px 16px;
  }

  .nav-cta {
    color: #fff;
  }

  .site-nav a.is-current {
    box-shadow: inset 4px 0 var(--red);
  }

  .hero,
  .intro,
  .capability-layout,
  .factory,
  .contact-card,
  .product-modal-body {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-product-showcase {
    width: min(420px, 100%);
    height: 330px;
    justify-self: center;
  }

  .hero-product-preview:first-child {
    width: 190px;
    height: 190px;
  }

  .hero-product-preview:nth-child(2) {
    top: 48px;
    width: 138px;
    height: 138px;
  }

  .hero-product-preview:nth-child(3) {
    width: 128px;
    height: 128px;
  }

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

@media (max-width: 620px) {
  .brand {
    gap: 9px;
  }

  .brand img {
    width: 118px;
  }

  .brand-company-name {
    max-width: 150px;
    font-size: 12px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .inner-hero {
    min-height: 310px;
    padding-top: 68px;
    padding-bottom: 42px;
  }

  .inner-hero h1 {
    font-size: 40px;
  }

  .inner-hero-content > p:last-child {
    font-size: 17px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

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

  .product-card {
    grid-template-rows: 210px 1fr;
  }

  .factory-grid {
    grid-auto-rows: 142px;
  }

  .modal-grid,
  .spec-row {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
