:root {
  --ink: #15171a;
  --muted: #66717c;
  --line: #d9dee3;
  --soft: #f5f7f5;
  --panel: #ffffff;
  --green: #2f6f4e;
  --green-dark: #153f2c;
  --amber: #c88a2c;
  --steel: #6e7f8d;
  --dark: #111820;
  --shadow: 0 18px 46px rgba(14, 26, 38, 0.15);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  background: var(--dark);
  color: #dfe7eb;
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

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

.topbar a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topbar a:hover {
  color: #f4cf91;
}

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

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--green-dark);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 228px;
  height: 76px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2e3740;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(17, 24, 32, 0.25);
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #101820;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("hero-fence-factory.png?v=2026060504") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 16, 24, 0.9) 0%, rgba(9, 16, 24, 0.7) 45%, rgba(9, 16, 24, 0.25) 100%),
    linear-gradient(0deg, rgba(9, 16, 24, 0.48), rgba(9, 16, 24, 0.08));
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 108px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #f4cf91;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--amber);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #e9eff2;
  font-size: 18px;
}

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

.quick-links {
  position: relative;
  margin-top: -54px;
  z-index: 4;
}

.quick-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  box-shadow: var(--shadow);
}

.quick-link {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.quick-link:last-child {
  border-right: 0;
}

.quick-link strong {
  color: var(--green-dark);
  font-size: 15px;
}

.quick-link span {
  color: var(--muted);
  font-size: 12px;
}

section {
  padding: 82px 0;
}

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

.section-head p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
}

.products {
  background: var(--soft);
}

.visual-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8dde3;
}

.image-panel img {
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  color: #fff;
  background: rgba(17, 24, 32, 0.78);
}

.image-caption strong {
  display: block;
  margin-bottom: 2px;
}

.image-caption span {
  color: #dce5e9;
  font-size: 13px;
}

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

.product-card {
  min-height: 172px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    url("fence-line-pattern.png?v=2026060504") center / cover no-repeat;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.18;
}

.product-card p {
  max-width: 330px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}

.pattern-band {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pattern-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("fence-line-pattern.png?v=2026060504") center / cover no-repeat;
  opacity: 0.08;
}

.pattern-band .section-inner {
  position: relative;
}

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

.route-link {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: #2c3840;
  font-weight: 700;
  font-size: 14px;
}

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

.type-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(20, 30, 40, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.type-card:hover {
  transform: translateY(-2px);
  border-color: #b7c5bd;
  box-shadow: 0 16px 34px rgba(20, 30, 40, 0.12);
}

.type-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 16px;
  background: #fff;
}

.type-card-body {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}

.type-card h3 {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.18;
}

.type-card p {
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.type-card span {
  display: inline-flex;
  color: #2f6f4e;
  font-size: 12px;
  font-weight: 800;
}

.factory {
  background: #101820;
  color: #fff;
}

.factory .section-head p,
.factory-copy p {
  color: #c8d1d6;
}

.factory-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.factory-copy h2 {
  margin-bottom: 16px;
}

.factory-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.factory-point {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.factory-point strong {
  display: block;
  margin-bottom: 6px;
  color: #f4cf91;
}

.factory-point span {
  color: #d4dde2;
  font-size: 13px;
}

.factory-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.factory-image img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.applications {
  background: var(--soft);
}

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

.app-card {
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 30, 40, 0.06);
}

.app-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.app-card-body {
  padding: 18px 20px 20px;
}

.app-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.app-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.process-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d7dde1;
  box-shadow: var(--shadow);
}

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

.process-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  color: #fff;
  background: rgba(17, 24, 32, 0.8);
}

.process-badge strong {
  display: block;
  margin-bottom: 2px;
}

.process-badge span {
  color: #dce5e9;
  font-size: 13px;
}

.process-panel {
  display: grid;
  gap: 12px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.process-step h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.process-deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.process-deliverables span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 6px;
  color: var(--green-dark);
  background: #edf4ef;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

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

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

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

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.95), rgba(17, 24, 32, 0.9)),
    url("product-fence-collage.png?v=2026060504") center / cover no-repeat;
  color: #fff;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact h2 {
  margin-bottom: 16px;
}

.contact p {
  color: #c8d1d6;
}

.contact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 10px;
}

.contact-list a,
.form-note a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list a:hover,
.form-note a:hover {
  color: #f4cf91;
}

.rfq-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

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

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

select option {
  color: var(--ink);
  background: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #b6c1c8;
}

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

.form-note {
  margin-bottom: 0;
  color: #b6c1c8;
  font-size: 12px;
}

footer {
  padding: 28px 0;
  border-top: 1px solid #222e38;
  background: #0c1116;
  color: #b8c2ca;
  font-size: 13px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.page-hero {
  padding: 86px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.88), rgba(17, 24, 32, 0.58)),
    url("product-fence-collage.png?v=2026060504") center / cover no-repeat;
}

.factory-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.9), rgba(17, 24, 32, 0.56)),
    url("factory-inspection.png?v=2026060504") center / cover no-repeat;
}

.applications-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.9), rgba(17, 24, 32, 0.48)),
    url("use-construction-site.png?v=2026060504") center / cover no-repeat;
}

.process-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.9), rgba(17, 24, 32, 0.48)),
    url("rfq-shipment-process.png?v=2026060504") center / cover no-repeat;
}

.faq-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.92), rgba(17, 24, 32, 0.58)),
    url("fence-line-pattern.png?v=2026060504") center / cover no-repeat;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.9), rgba(17, 24, 32, 0.48)),
    url("product-fence-collage.png?v=2026060504") center / cover no-repeat;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 620px;
  color: #e8eef1;
  font-size: 18px;
}

.product-hero {
  padding: 64px 0 56px;
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.96), rgba(17, 24, 32, 0.84)),
    url("fence-line-pattern.png?v=2026060504") center / cover no-repeat;
  color: #fff;
}

.product-hero-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.product-hero-copy {
  max-width: 610px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: #c4cfd5;
  font-size: 13px;
}

.breadcrumb a {
  color: #f4cf91;
}

.product-hero h1 {
  max-width: 580px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
}

.product-hero p {
  max-width: 560px;
  color: #dce5e9;
  font-size: 16px;
}

.keyword-panel {
  max-width: 560px;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.keyword-label {
  display: block;
  margin-bottom: 8px;
  color: #f4cf91;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keyword-pills li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 9px;
  color: #edf4ef;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  font-weight: 700;
}

.product-hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 24px;
  background: #fff;
}

.product-hero-card-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.product-hero-card-caption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green-dark);
}

.product-hero-card-caption span {
  color: var(--muted);
  font-size: 13px;
}

.spec-strip {
  padding: 0;
  background: var(--soft);
}

.spec-strip-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: translateY(-24px);
  box-shadow: var(--shadow);
}

.spec-strip-item {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.spec-strip-item:last-child {
  border-right: 0;
}

.spec-strip-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 16px;
}

.spec-strip-item span {
  color: var(--muted);
  font-size: 13px;
}

.product-section {
  background: #fff;
}

.product-section.soft {
  background: var(--soft);
}

.product-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.product-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-photo img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

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

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

.option-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 16px;
  background: #fff;
}

.option-card-body {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.option-card h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.option-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.spec-table {
  overflow-x: auto;
  border: 1px solid #9fb4a7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 30, 40, 0.08);
}

.spec-table table {
  min-width: 840px;
  border-collapse: separate;
  border-spacing: 0;
}

.spec-table th {
  padding: 15px 18px;
  border-right: 1px solid #9fb4a7;
  border-bottom: 2px solid #7f9f8b;
  color: #fff;
  background: #2f6f4e;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.spec-table th:last-child,
.spec-table td:last-child {
  border-right: 0;
}

.spec-table td {
  padding: 15px 18px;
  border-right: 1px solid #c8d5cc;
  border-bottom: 1px solid #c8d5cc;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}

.spec-table tbody tr:nth-child(even) td {
  background: #f6faf7;
}

.spec-table td:first-child {
  width: 22%;
  color: var(--green-dark);
  background: #eef5f0;
  font-weight: 800;
}

.spec-table td:nth-child(2) {
  width: 43%;
}

.spec-table td:nth-child(3) {
  width: 35%;
}

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

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

.accessory-list {
  display: grid;
  gap: 12px;
}

.accessory-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.accessory-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.accessory-item span {
  color: var(--muted);
  font-size: 14px;
}

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

.packing-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.packing-point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.packing-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.packing-point span {
  color: var(--muted);
  font-size: 13px;
}

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

.related-link {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
  color: var(--green-dark);
}

@media (max-width: 980px) {
  .nav-inner {
    align-items: start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand-logo {
    width: 210px;
    height: 70px;
  }

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

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

  .visual-split,
  .factory-layout,
  .contact-wrap,
  .product-hero-layout,
  .product-layout,
  .accessory-grid,
  .packing-grid {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-visual {
    min-height: 380px;
  }

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

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

@media (max-width: 720px) {
  .topbar-inner,
  .section-head,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding: 70px 0 92px;
  }

  .quick-grid,
  .product-grid,
  .type-grid,
  .route-grid,
  .factory-points,
  .app-grid,
  .option-grid,
  .spec-strip-grid,
  .related-grid,
  .packing-points,
  .process-deliverables,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .spec-strip-grid {
    transform: none;
    box-shadow: none;
  }

  .spec-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-links {
    margin-top: 0;
  }

  .quick-grid {
    box-shadow: none;
  }

  .quick-link {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  section {
    padding: 58px 0;
  }
}
