:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5b6673;
  --line: #dbe2e8;
  --panel: #f6f8fa;
  --paper: #ffffff;
  --brand: #0f5f78;
  --brand-dark: #0b4355;
  --accent: #c76b2c;
  --accent-soft: #fff1e8;
  --success: #1f7a4d;
  --shadow: 0 18px 45px rgba(19, 36, 48, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

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

.topbar {
  background: var(--brand-dark);
  color: #e8f4f7;
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--brand-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
}

.brand span:last-child {
  font-size: 1.25rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: #26313c;
}

.main-nav a,
.dropdown-toggle {
  padding: 26px 0;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-dropdown.is-active > .dropdown-toggle {
  color: var(--brand);
  border-bottom-color: var(--accent);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  display: grid;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  color: #26313c;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  background: var(--panel);
  color: var(--brand);
}

.nav-cta {
  padding: 10px 14px !important;
  border: 1px solid var(--accent) !important;
  border-radius: 6px;
  background: var(--accent);
  color: #fff !important;
}

.nav-cta:hover,
.nav-cta[aria-current="page"] {
  background: #ad5b25;
  border-color: #ad5b25 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

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

.btn-primary:hover {
  background: #ad5b25;
}

.btn-secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--brand);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 28, 37, 0.92), rgba(10, 28, 37, 0.67) 48%, rgba(10, 28, 37, 0.24)),
    url("../img/pcb-factory.svg") center / cover no-repeat;
  color: #fff;
}

.hero-content {
  width: min(720px, 100%);
  padding: 84px 0 118px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 740px;
  margin: 18px 0 0;
  color: #d9e6ea;
  font-size: 1.15rem;
}

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

.home-hero {
  position: relative;
  overflow: hidden;
  background: #eef3f5;
  border-bottom: 1px solid var(--line);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86) 46%, rgba(238, 243, 245, 0.58)),
    linear-gradient(135deg, rgba(15, 95, 120, 0.08), rgba(199, 107, 44, 0.06));
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0 66px;
}

.home-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.home-hero-copy .lead {
  max-width: 650px;
  color: #354554;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid #cbd7de;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.factory-visual {
  position: relative;
  min-height: 480px;
}

.factory-visual figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 226, 232, 0.96);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19, 36, 48, 0.14);
}

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

.factory-visual-main {
  height: 360px;
}

.factory-visual-small {
  position: absolute;
  width: 42%;
  height: 178px;
}

.factory-visual-board {
  left: 6%;
  bottom: 0;
}

.factory-visual-test {
  right: 2%;
  bottom: 34px;
}

.capability-section {
  padding-top: 76px;
}

.capability-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.capability-card,
.trust-block,
.industry-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.capability-card {
  padding: 22px;
  border-top: 4px solid var(--brand);
}

.capability-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.capability-card p,
.trust-block p,
.industry-card p,
.process-timeline p,
.quality-grid p {
  margin: 0;
  color: var(--muted);
}

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

.trust-block {
  padding: 26px;
}

.trust-block h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.process-section .split {
  align-items: start;
}

.process-timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.process-timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 2px 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.process-timeline article:last-child {
  border-bottom: 0;
}

.process-timeline span {
  grid-row: span 2;
  color: var(--accent);
  font-weight: 900;
}

.process-timeline strong {
  color: var(--brand-dark);
}

.quality-band {
  background: #102d39;
  color: #fff;
}

.quality-band .eyebrow {
  color: #f2a86d;
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.quality-grid p {
  color: #d8e8ed;
}

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

.quality-list span {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.industries-section {
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, var(--panel) 62%, var(--panel) 100%);
}

.industry-card {
  padding: 24px;
  border-left: 4px solid var(--accent);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.link-list a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -72px;
  position: relative;
  z-index: 2;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  background: #fff;
  padding: 26px;
}

.metric strong {
  display: block;
  color: var(--brand);
  font-size: 1.8rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.review-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(19, 36, 48, 0.08);
}

.review-panel p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
}

.review-steps {
  display: grid;
  gap: 12px;
}

.review-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.review-steps span {
  grid-row: span 2;
  color: var(--accent);
  font-weight: 900;
}

.review-steps strong {
  color: var(--brand-dark);
}

.review-steps p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--panel);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-head p,
.page-intro p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.card p,
.split p,
.rich-text p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.card .tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8c431d;
  font-size: 0.78rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.split-media {
  min-height: 420px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 95, 120, 0.85), rgba(23, 33, 43, 0.7)),
    url("../img/circuit-detail.svg") center / cover no-repeat;
}

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

.image-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--panel);
}

.image-card h3 {
  padding: 16px 16px 0;
}

.image-card p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
}

.page-hero {
  background: linear-gradient(135deg, #102d39, #17495b);
  color: #fff;
  padding: 74px 0;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #d8e8ed;
  font-size: 1.08rem;
}

.product-page-hero {
  padding: 56px 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.88fr);
  gap: 44px;
  align-items: center;
}

.product-hero-grid h1 {
  font-size: clamp(2.15rem, 4vw, 3.6rem);
}

.product-hero-media {
  position: relative;
  display: grid;
  gap: 14px;
}

.product-hero-media img,
.product-gallery img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
}

.product-hero-media img:first-child {
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.product-hero-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-hero-strip img {
  aspect-ratio: 4 / 3;
}

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

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-gallery img {
  aspect-ratio: 4 / 3;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.product-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--brand-dark);
  font-weight: 800;
}

.parameter-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.stack-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stack-layer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--panel);
  color: var(--brand-dark);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.section-table {
  margin-top: 28px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef4f6;
  color: var(--brand-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 58px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--accent);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--brand-dark);
  font-weight: 800;
}

.faq-item p {
  padding: 0 22px 20px;
}

.cta-band {
  background: var(--brand-dark);
  color: #fff;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  max-width: 690px;
  margin: 12px 0 0;
  color: #d8e8ed;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.contact-info,
.contact-form {
  background: #fff;
  padding: 30px;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin: 26px 0 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-direct h3 {
  margin-bottom: 2px;
}

.contact-direct p {
  margin: 0;
  color: var(--muted);
}

.contact-direct a {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #283542;
  font-weight: 700;
}

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

textarea {
  min-height: 138px;
  resize: vertical;
}

.floating-inquiry {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  box-shadow: var(--shadow);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 0 16px 0 13px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 38px rgba(17, 26, 34, 0.22);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  background: #1fb85a;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(17, 26, 34, 0.26);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-footer {
  background: #111a22;
  color: #d8e1e7;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: #aebbc4;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact div {
  display: grid;
  gap: 5px;
}

.footer-contact strong {
  color: #fff;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-contact span,
.footer-contact a {
  color: #d8e1e7;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f9da8;
  font-size: 0.9rem;
}

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

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

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

  .main-nav a,
  .dropdown-toggle {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    display: grid;
  }

  .dropdown-toggle::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 6px 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu a {
    padding: 9px 20px;
    white-space: normal;
  }

  .nav-cta {
    margin: 12px 20px 16px;
    text-align: center;
  }

  .metrics,
  .image-grid,
  .capability-cards,
  .trust-grid,
  .product-gallery,
  .grid-4,
  .grid-3,
  .grid-2,
  .home-hero-grid,
  .quality-grid,
  .product-hero-grid,
  .parameter-grid,
  .review-panel,
  .split,
  .field-row,
  .contact-panel,
  .footer-contact,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-grid {
    gap: 32px;
  }

  .factory-visual {
    min-height: 430px;
  }

  .capability-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

  .hero {
    min-height: 590px;
    background:
      linear-gradient(90deg, rgba(10, 28, 37, 0.92), rgba(10, 28, 37, 0.74)),
      url("../img/pcb-factory.svg") center / cover no-repeat;
  }

  .hero-content {
    padding: 66px 0 110px;
  }

  .metrics,
  .image-grid,
  .capability-cards,
  .trust-grid,
  .product-gallery,
  .grid-4,
  .grid-3,
  .grid-2,
  .home-hero-grid,
  .quality-grid,
  .product-hero-grid,
  .parameter-grid,
  .review-panel,
  .split,
  .field-row,
  .contact-panel,
  .footer-contact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    padding: 54px 0 48px;
  }

  .factory-visual {
    min-height: 360px;
  }

  .factory-visual-main {
    height: 250px;
  }

  .factory-visual-small {
    height: 132px;
  }

  .factory-visual-board {
    left: 0;
  }

  .factory-visual-test {
    right: 0;
    bottom: 22px;
  }

  .quality-list {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    display: block;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .split-media {
    min-height: 280px;
  }

  .floating-inquiry {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .floating-inquiry .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    width: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
