:root {
  --blue: #1259c8;
  --blue-dark: #07306f;
  --blue-ink: #061b35;
  --ink: #111827;
  --muted: #667085;
  --line: #e6ebf2;
  --paper: #f5f8fc;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(10, 38, 82, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(230, 235, 242, 0.9);
  backdrop-filter: blur(16px);
}

.site-header--over {
  position: absolute;
  inset: 0 0 auto;
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 27, 53, 0.72), rgba(6, 27, 53, 0));
  border-bottom: 0;
}

.site-nav,
.brand,
.nav-links,
.nav-actions,
.hero-actions,
.section-head--split,
.feature-item,
.footer-bottom {
  display: flex;
  align-items: center;
}

.site-nav {
  min-height: 76px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #1a74ff, #0a43a0);
  border-radius: 11px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
  font-size: 16px;
}

.brand small {
  color: currentColor;
  opacity: 0.62;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.nav-links {
  gap: clamp(16px, 2vw, 28px);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  opacity: 0.86;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  gap: 14px;
}

.nav-actions span {
  font-size: 13px;
  opacity: 0.72;
}

.btn,
.nav-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.nav-quote:hover {
  transform: translateY(-2px);
}

.nav-quote,
.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(18, 89, 200, 0.26);
}

.site-header--over .nav-quote {
  color: var(--blue);
  background: #fff;
  box-shadow: none;
}

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

.btn-outline {
  color: var(--blue);
  border: 1px solid rgba(18, 89, 200, 0.3);
  background: transparent;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--blue-ink);
}

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

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 18, 39, 0.95) 0%, rgba(7, 40, 91, 0.84) 38%, rgba(7, 40, 91, 0.22) 74%, rgba(7, 40, 91, 0.02) 100%),
    radial-gradient(circle at 18% 82%, rgba(18, 89, 200, 0.58), transparent 26rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 142px 0 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8dbbff;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h2 {
  margin: 18px 0 0;
  font-size: clamp(22px, 3vw, 34px);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  font-size: 17px;
}

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

.feature-band {
  color: #fff;
  background: linear-gradient(90deg, #155fd0, #073f9b);
}

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

.feature-item {
  gap: 18px;
  min-height: 108px;
  padding: 24px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  font-size: 22px;
}

.feature-item h3,
.feature-item p {
  margin: 0;
}

.feature-item h3 {
  font-size: 18px;
}

.feature-item p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head--split {
  max-width: none;
  justify-content: space-between;
  gap: 42px;
}

.section-head h2,
.split-copy h2,
.page-hero h1,
.cta h2 {
  margin: 0;
  color: var(--blue-ink);
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-head p:not(.eyebrow),
.split-copy p,
.page-hero p,
.cta p {
  color: var(--muted);
  line-height: 1.9;
}

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

.seo-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(10, 38, 82, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.seo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 89, 200, 0.28);
  box-shadow: 0 24px 60px rgba(10, 38, 82, 0.1);
}

.seo-card span {
  justify-self: start;
  padding: 7px 11px;
  color: #075ed4;
  background: #eef5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-card h3,
.seo-card p,
.seo-keyword-panel h3,
.seo-keyword-panel ul {
  margin: 0;
}

.seo-card h3 {
  color: var(--blue-ink);
  font-size: 20px;
  line-height: 1.25;
}

.seo-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.seo-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.seo-two-column h2 {
  margin: 0 0 16px;
  color: var(--blue-ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.seo-two-column p {
  color: var(--muted);
  line-height: 1.9;
}

.seo-keyword-panel {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(18, 89, 200, 0.08), rgba(14, 165, 233, 0.08)),
    #fff;
  border: 1px solid rgba(18, 89, 200, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(10, 38, 82, 0.08);
}

.seo-keyword-panel h3 {
  color: var(--blue-ink);
  font-size: 21px;
}

.seo-keyword-panel ul {
  display: grid;
  gap: 12px;
  padding: 18px 0 0;
  list-style: none;
}

.seo-keyword-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.seo-keyword-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #075ed4;
  border-radius: 50%;
}

.seo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.seo-pill-list span {
  padding: 9px 13px;
  color: #075ed4;
  background: #eef5ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.content-hero {
  padding: 74px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(18, 89, 200, 0.14), transparent 30rem),
    linear-gradient(135deg, #f6f9ff, #eef5ff);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: center;
}

.content-hero h1 {
  max-width: 920px;
  margin: 12px 0 0;
  color: var(--blue-ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.content-hero p:not(.eyebrow):not(.breadcrumbs) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.content-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(10, 38, 82, 0.13);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.content-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(10, 38, 82, 0.06);
}

.content-toc strong {
  color: var(--blue-ink);
}

.content-toc a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.content-toc a:hover {
  color: #075ed4;
}

.content-body {
  display: grid;
  gap: 34px;
}

.content-body section,
.case-summary {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(10, 38, 82, 0.06);
}

.content-body h2,
.content-body h3,
.case-summary h2 {
  margin: 0;
  color: var(--blue-ink);
}

.content-body h2,
.case-summary h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.content-body h3 {
  margin-top: 24px;
  font-size: 21px;
}

.content-body p,
.content-body li,
.case-summary p,
.case-summary li {
  color: var(--muted);
  line-height: 1.9;
}

.content-body ul,
.case-summary ul {
  padding-left: 20px;
}

.content-highlight {
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #082f6f, #075ed4);
  border-radius: var(--radius);
}

.content-highlight strong,
.content-highlight span {
  display: block;
}

.content-highlight span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.case-metrics div {
  padding: 18px;
  background: #eef5ff;
  border-radius: 14px;
}

.case-metrics strong {
  display: block;
  color: #075ed4;
  font-size: 20px;
}

.case-metrics span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.capability-layout {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 54px;
  align-items: center;
}

.capability-cards,
.industry-grid,
.news-grid,
.equipment-grid,
.quality-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.capability-card,
.industry-card,
.news-card,
.equipment-card,
.quality-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(10, 38, 82, 0.06);
}

.media-4x3,
.media-16x9,
.media-1x1 {
  width: 100%;
  overflow: hidden;
  background: #d9e4f2;
}

.media-4x3 {
  aspect-ratio: 4 / 3;
}

.media-16x9 {
  aspect-ratio: 16 / 9;
}

.media-1x1 {
  aspect-ratio: 1 / 1;
}

.media-4x3 img,
.media-16x9 img,
.media-1x1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.capability-card:hover img,
.industry-card:hover img,
.news-card:hover img,
.equipment-card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 20px;
}

.card-body p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--blue);
}

.split-copy {
  justify-self: end;
  width: min(590px, 100%);
  padding: 76px 64px 72px 24px;
}

.split-copy .eyebrow,
.split-copy h2 {
  color: #fff;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.stats div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 18px;
}

.stats div:first-child {
  border-left: 0;
  padding-left: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: #fff;
  font-size: 28px;
}

.stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

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

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

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

.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue-ink);
}

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

.cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 27, 53, 0.96), rgba(6, 27, 53, 0.58));
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 108px 0 64px;
  background:
    linear-gradient(135deg, rgba(18, 89, 200, 0.12), rgba(18, 89, 200, 0)),
    var(--paper);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.page-hero p {
  margin-bottom: 0;
}

.page-hero .media-16x9 {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.breadcrumbs {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  text-decoration: none;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.text-block {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.text-block h2,
.text-block h3 {
  margin: 0;
  color: var(--blue-ink);
}

.text-block p,
.text-block li {
  color: var(--muted);
  line-height: 1.9;
}

.text-block ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.page-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-image-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(10, 38, 82, 0.06);
}

.page-image-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.page-image-grid img[src*="medical-scanner-housing"],
.page-image-grid img[src*="connector-plug-new"],
.page-image-grid img[src*="auto-ac-new"],
.page-image-grid img[src*="plastic-mold-new"],
.page-image-grid img[src*="drone-shell-new"],
.page-image-grid img[src*="drone-controller-new"],
.page-image-grid img[src*="robot-charger-new"],
.page-image-grid img[src*="appliance-mixer-new"],
.page-image-grid img[src*="spray-system-new"] {
  padding: 14px;
  object-fit: contain;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}

.page-image-grid div {
  padding: 20px;
}

.page-image-grid h3,
.page-image-grid p {
  margin: 0;
}

.page-image-grid h3 {
  color: var(--blue-ink);
  font-size: 20px;
}

.page-image-grid p {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.rich-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.rich-panel--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.rich-panel__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  background: #d9e4f2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rich-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.rich-panel__copy {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(10, 38, 82, 0.06);
}

.rich-panel__copy h2,
.rich-panel__copy h3 {
  margin: 0;
  color: var(--blue-ink);
}

.rich-panel__copy p,
.rich-panel__copy li {
  color: var(--muted);
  line-height: 1.9;
}

.rich-panel__copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.page-step-grid,
.link-card-grid {
  display: grid;
  gap: 20px;
}

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

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

.page-step-card,
.link-card {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page-step-card:hover,
.link-card:hover {
  border-color: rgba(18, 89, 200, 0.26);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.page-step-card span,
.link-card span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.page-step-card h3,
.link-card h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 20px;
}

.page-step-card p,
.link-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

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

.mini-proof-grid div {
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #1259c8, #07306f);
  border-radius: 14px;
}

.mini-proof-grid strong,
.mini-proof-grid span {
  display: block;
}

.mini-proof-grid strong {
  font-size: 26px;
}

.mini-proof-grid span {
  margin-top: 8px;
  opacity: 0.78;
  font-size: 13px;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font: inherit;
}

.filter-chip.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

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

.contact-card {
  padding: 22px;
}

.contact-card h3,
.contact-card p {
  margin: 0;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  line-height: 1.8;
  text-decoration: none;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-ink);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #07182d;
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 40px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer p {
  max-width: 330px;
  line-height: 1.8;
  font-size: 13px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

#google_translate_element {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}

html,
body {
  top: 0 !important;
}

.language-switcher {
  position: relative;
  z-index: 95;
}

.language-switcher--nav {
  display: inline-flex;
  align-items: center;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(18, 89, 200, 0.18);
  padding: 0 13px;
  color: #0f2748;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-trigger:hover,
.language-switcher.is-open .language-trigger {
  color: #075ed4;
  border-color: rgba(7, 94, 212, 0.34);
  box-shadow: 0 14px 34px rgba(7, 94, 212, 0.16);
}

.language-trigger svg {
  flex: 0 0 auto;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 178px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu,
.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a,
.footer-language a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.language-menu a {
  padding: 10px 11px;
  border-radius: 12px;
}

.language-menu a span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  color: #075ed4;
  background: #eef5ff;
  border-radius: 999px;
  font-size: 10px;
}

.language-menu a:hover,
.language-menu a.is-active {
  color: #075ed4;
  background: #f0f6ff;
}

.footer-language {
  display: grid;
  gap: 7px;
}

.site-footer .footer-language a {
  display: flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-language a:hover,
.site-footer .footer-language a.is-active {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #20c45a, #078f43);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(2, 104, 50, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(2, 104, 50, 0.34);
}

.whatsapp-float__mark {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #078f43;
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.whatsapp-float__text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.whatsapp-float__text strong {
  font-size: 14px;
}

.whatsapp-float__text small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 14px 18px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-header--over .nav-links.is-open {
    color: var(--ink);
  }

  .nav-links.is-open a {
    padding: 12px 0;
  }

  .feature-grid,
  .capability-cards,
  .industry-grid,
  .equipment-grid,
  .quality-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-layout,
  .split-section,
  .page-hero-inner,
  .text-grid,
  .page-image-grid,
  .contact-grid,
  .rich-panel,
  .rich-panel--reverse,
  .page-step-grid,
  .link-card-grid {
    grid-template-columns: 1fr;
  }

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

  .split-copy {
    justify-self: auto;
    width: auto;
    padding: 62px 24px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 30px, 1180px);
  }

  .nav-actions > span {
    display: none;
  }

  .nav-quote {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 124px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-grid,
  .capability-cards,
  .industry-grid,
  .equipment-grid,
  .quality-grid,
  .news-grid,
  .footer-grid,
  .stats,
  .mini-proof-grid {
    grid-template-columns: 1fr;
  }

  .rich-panel__media,
  .rich-panel__media img {
    min-height: auto;
  }

  .rich-panel__media img {
    aspect-ratio: 4 / 3;
  }

  .feature-item {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .stats div,
  .stats div:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding-right: 13px;
  }

  .whatsapp-float__mark {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .whatsapp-float__text strong {
    font-size: 13px;
  }

  .whatsapp-float__text small {
    font-size: 11px;
  }
}

/* Reference-style precision parts homepage */
.pp-layout {
  background: #ffffff;
  color: #111827;
}

.pp-layout .container {
  width: min(1140px, calc(100% - 48px));
}

.pp-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8edf5;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(14px);
}

.pp-nav,
.pp-logo,
.pp-menu,
.pp-nav-actions,
.pp-advantages-grid article,
.pp-title-row,
.pp-partner-inner,
.pp-footer-bottom {
  display: flex;
  align-items: center;
}

.pp-nav {
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.pp-logo {
  gap: 10px;
  color: #0f172a;
  text-decoration: none;
}

.pp-logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: #075ed4;
  border-radius: 6px;
  font-weight: 900;
}

.pp-logo strong,
.pp-logo small {
  display: block;
}

.pp-logo strong {
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.pp-logo small {
  color: #64748b;
  font-size: 11px;
}

.pp-menu {
  gap: clamp(18px, 2vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.pp-menu a {
  position: relative;
  color: #111827;
  text-decoration: none;
}

.pp-menu a::after {
  position: absolute;
  left: 0;
  bottom: -21px;
  width: 0;
  height: 2px;
  content: "";
  background: #075ed4;
  transition: width 180ms ease;
}

.pp-menu a:hover::after,
.pp-menu a.active::after {
  width: 100%;
}

.pp-nav-actions {
  gap: 18px;
  font-size: 13px;
}

.pp-nav-actions > a {
  min-height: 38px;
  padding: 0 18px;
  color: #fff;
  text-decoration: none;
  background: #075ed4;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.pp-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.pp-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #111827;
}

.pp-hero-v2 {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: #071526;
}

.pp-hero-v2__media {
  position: absolute;
  inset: 0;
}

.pp-hero-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 46%;
  filter: saturate(0.92) contrast(1.08);
}

.pp-hero-v2__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 32, 0.94) 0%, rgba(7, 28, 55, 0.82) 34%, rgba(7, 28, 55, 0.3) 68%, rgba(7, 28, 55, 0.04) 100%),
    radial-gradient(circle at 18% 70%, rgba(0, 86, 190, 0.4), transparent 28rem);
}

.pp-hero-v2__content {
  position: relative;
  z-index: 1;
  padding: 100px 0 58px;
}

.pp-hero-v2__content p,
.pp-hero-v2__content h1,
.pp-hero-v2__content span {
  display: block;
  margin: 0;
}

.pp-hero-v2__content p {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pp-hero-v2__content h1 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.06em;
}

.pp-hero-v2__content span {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  font-size: 16px;
}

.pp-primary,
.pp-outline-link,
.pp-light-btn,
.pp-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pp-primary {
  margin-top: 34px;
  color: #fff;
  background: #075ed4;
  box-shadow: 0 14px 30px rgba(7, 94, 212, 0.32);
}

.pp-primary:hover,
.pp-outline-link:hover,
.pp-light-btn:hover,
.pp-dark-btn:hover {
  transform: translateY(-2px);
}

.pp-slider-dots {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.pp-slider-dots i {
  width: 10px;
  height: 10px;
  opacity: 0.34;
  background: #fff;
  border-radius: 50%;
}

.pp-slider-dots i.active {
  width: 20px;
  opacity: 1;
  background: #075ed4;
  border-radius: 999px;
}

.pp-advantages {
  background: #fff;
}

.pp-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e8edf5;
}

.pp-advantages-grid article {
  gap: 20px;
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid #e8edf5;
}

.pp-advantages-grid article:last-child {
  border-right: 0;
}

.pp-advantages-grid i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: #075ed4;
  border: 2px solid #075ed4;
  border-radius: 50%;
  font-style: normal;
  font-size: 24px;
}

.pp-advantages-grid h3,
.pp-advantages-grid p {
  margin: 0;
}

.pp-advantages-grid h3 {
  font-size: 18px;
}

.pp-advantages-grid p {
  margin-top: 7px;
  color: #667085;
  font-size: 13px;
}

.pp-home-section {
  padding: 54px 0;
}

.pp-tech-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 54px;
  align-items: center;
}

.pp-section-intro p,
.pp-title-row p {
  margin: 0 0 10px;
  color: #075ed4;
  font-size: 14px;
  font-weight: 900;
}

.pp-section-intro h2,
.pp-title-row h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.pp-section-intro span {
  display: block;
  margin-top: 22px;
  color: #667085;
  line-height: 1.85;
}

.pp-outline-link {
  margin-top: 34px;
  color: #075ed4;
  border: 1px solid #075ed4;
  background: #fff;
}

.pp-process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-width: 0;
}

.pp-process-cards article,
.pp-industry-cards article,
.pp-case-cards article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 4px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}

.pp-process-cards article {
  display: flex;
  flex-direction: column;
}

.pp-process-cards > article > a,
.pp-industry-cards > article > a,
.pp-case-cards > article > a {
  display: block;
  overflow: hidden;
}

.pp-process-cards a {
  aspect-ratio: 4 / 3;
  background: #e8edf5;
}

.pp-process-cards img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pp-process-cards article:nth-child(1) img {
  object-position: 48% 48%;
}

.pp-process-cards article:nth-child(2) img {
  object-position: 50% 52%;
}

.pp-process-cards article:nth-child(3) img {
  object-position: 58% 50%;
}

.pp-process-cards article:nth-child(4) img {
  object-position: 52% 50%;
}

.pp-process-cards h3,
.pp-process-cards p {
  margin-inline: 14px;
}

.pp-process-cards h3 {
  margin-top: 16px;
  margin-bottom: 7px;
  font-size: 17px;
}

.pp-process-cards p {
  margin-top: 0;
  margin-bottom: 16px;
  color: #667085;
  font-size: 13px;
}

.pp-metrics {
  padding: 0 0 30px;
}

.pp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: #fff;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.16), transparent 26rem),
    linear-gradient(90deg, #075ed4, #003b91);
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(7, 94, 212, 0.18);
}

.pp-metrics-grid div {
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.pp-metrics-grid div:last-child {
  border-right: 0;
}

.pp-metrics-grid strong {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
}

.pp-metrics-grid span {
  margin-left: 4px;
  opacity: 0.9;
}

.pp-metrics-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.pp-title-row {
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.pp-title-row .pp-outline-link {
  margin-top: 0;
}

.pp-industry-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pp-industry-cards img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.pp-industry-cards div {
  position: relative;
  padding: 18px 18px 20px;
}

.pp-industry-cards i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: #075ed4;
  border: 1px solid rgba(7, 94, 212, 0.35);
  border-radius: 5px;
  font-style: normal;
}

.pp-industry-cards h3,
.pp-industry-cards p {
  margin: 0;
}

.pp-industry-cards h3 {
  font-size: 17px;
}

.pp-industry-cards p {
  margin-top: 6px;
  color: #667085;
  font-size: 13px;
}

.pp-cases {
  padding-top: 8px;
}

.pp-case-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pp-case-cards article {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 150px;
}

.pp-case-cards img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.pp-case-cards div {
  padding: 20px 18px;
}

.pp-case-cards h3,
.pp-case-cards p {
  margin: 0;
}

.pp-case-cards h3 {
  color: #111827;
  font-size: 16px;
}

.pp-case-cards p {
  margin-top: 10px;
  color: #667085;
  font-size: 13px;
}

.pp-case-cards strong,
.case-link {
  display: inline-block;
  margin-top: 18px;
  color: #075ed4;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.pp-partner {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 27, 69, 0.98), rgba(5, 60, 137, 0.9)),
    url("/assets/images/precision-mold.jpg") center / cover;
}

.pp-partner-inner {
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0;
}

.pp-partner h2,
.pp-partner p {
  margin: 0;
}

.pp-partner h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.pp-partner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.pp-partner-inner > div:last-child {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pp-light-btn {
  color: #075ed4;
  background: #fff;
}

.pp-dark-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.pp-footer-v2 {
  color: rgba(255, 255, 255, 0.66);
  background: #071827;
  padding: 40px 0 18px;
}

.pp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 34px;
}

.pp-logo-footer {
  color: #fff;
}

.pp-footer-v2 p {
  max-width: 290px;
  line-height: 1.8;
  font-size: 13px;
}

.pp-footer-v2 h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.pp-footer-v2 a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 13px;
}

.pp-footer-v2 a:hover {
  color: #fff;
}

.pp-footer-bottom {
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .pp-menu {
    display: none;
  }

  .pp-nav-toggle {
    display: block;
  }

  .pp-menu.is-open {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 64px;
    z-index: 80;
    display: grid;
    gap: 0;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e6ebf2;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  }

  .pp-menu.is-open a {
    padding: 12px 0;
  }

  .pp-menu.is-open a::after {
    display: none;
  }

  .pp-tech-grid,
  .pp-partner-inner {
    grid-template-columns: 1fr;
  }

  .pp-tech-grid {
    display: grid;
  }

  .pp-process-cards,
  .pp-industry-cards,
  .pp-case-cards,
  .pp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .pp-layout .container {
    width: min(100% - 30px, 1140px);
  }

  .pp-nav-actions > span {
    display: none;
  }

  .pp-nav-actions > a {
    padding: 0 12px;
  }

  .pp-hero-v2 {
    min-height: 560px;
  }

  .pp-hero-v2__content {
    padding-top: 82px;
  }

  .pp-advantages-grid,
  .pp-case-cards,
  .pp-metrics-grid,
  .pp-footer-grid {
    grid-template-columns: 1fr;
  }

  .pp-industry-cards {
    display: grid;
    grid-auto-columns: minmax(250px, 80vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .pp-industry-cards article {
    scroll-snap-align: start;
  }

  .pp-process-cards {
    display: grid;
    grid-auto-columns: minmax(240px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0 0 10px;
    scroll-snap-type: x mandatory;
  }

  .pp-process-cards article {
    scroll-snap-align: start;
  }

  .pp-advantages-grid article {
    border-right: 0;
    border-bottom: 1px solid #e8edf5;
  }

  .pp-metrics-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .pp-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .pp-case-cards article {
    grid-template-columns: 1fr;
  }

  .pp-case-cards > article > a {
    aspect-ratio: 16 / 10;
    min-height: 0;
    background: #eef3f8;
  }

  .pp-footer-bottom {
    display: grid;
  }
}

/* Final homepage image corrections */
.pp-layout .pp-industry-cards a {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef3f8;
}

.pp-layout .pp-industry-cards a > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.pp-layout .pp-industry-cards div {
  min-height: 116px;
}

.pp-layout .pp-industry-cards article:nth-child(1) a > img {
  object-position: 50% 48%;
}

.pp-layout .pp-industry-cards article:nth-child(2) a > img {
  object-position: 50% 50%;
}

.pp-layout .pp-industry-cards article:nth-child(3) a > img {
  object-position: 50% 54%;
}

.pp-layout .pp-industry-cards article:nth-child(4) a > img {
  object-position: 55% 52%;
}

.pp-layout .pp-industry-cards article:nth-child(5) a > img {
  object-position: 50% 50%;
}

@media (max-width: 720px) {
  .pp-layout .pp-industry-cards a {
    aspect-ratio: 16 / 10;
  }
}

/* Product center */
.product-page {
  background: #ffffff;
}

.product-page .pp-primary,
.product-page .pp-dark-btn,
.product-page .pp-light-btn,
.product-page .pp-outline-link {
  margin-top: 0;
}

.product-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #071526;
}

.product-hero__bg {
  position: absolute;
  inset: 0;
}

.product-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  opacity: 0.58;
  filter: saturate(0.88) contrast(1.08);
}

.product-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 17, 32, 0.97) 0%, rgba(7, 28, 55, 0.86) 45%, rgba(7, 28, 55, 0.34) 100%),
    radial-gradient(circle at 25% 88%, rgba(7, 94, 212, 0.46), transparent 30rem);
}

.product-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 58px;
  align-items: center;
  min-height: 650px;
  padding: 72px 0;
}

.product-hero__content {
  max-width: 700px;
}

.product-hero__crumb,
.product-hero__crumb a {
  color: rgba(255, 255, 255, 0.72);
}

.product-eyebrow {
  margin: 0 0 12px;
  color: #7db3ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-hero h1,
.product-feature-copy h2,
.product-process-copy h2,
.product-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.product-hero__content > p:not(.product-eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
  font-size: 16px;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-hero__actions .pp-dark-btn {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.product-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.product-hero__stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.product-hero__stats strong,
.product-hero__stats span {
  display: block;
}

.product-hero__stats strong {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.product-hero__stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.product-hero__visual {
  position: relative;
  min-height: 480px;
}

.product-hero-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #dbe7f5;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

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

.product-hero-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(4, 17, 32, 0.78);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.product-hero-card--main {
  inset: 24px 34px auto auto;
  width: min(88%, 480px);
  aspect-ratio: 4 / 3;
}

.product-hero-card--small {
  width: min(46%, 230px);
  aspect-ratio: 1 / 1;
}

.product-hero-card--one {
  left: 0;
  bottom: 48px;
}

.product-hero-card--two {
  right: 0;
  bottom: 0;
}

.product-category-strip {
  position: relative;
  z-index: 2;
  margin-top: -48px;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.product-category-card {
  display: block;
  min-height: 158px;
  padding: 24px;
  text-decoration: none;
  border-right: 1px solid #e6ebf2;
  transition: background 180ms ease, transform 180ms ease;
}

.product-category-card:last-child {
  border-right: 0;
}

.product-category-card:hover {
  background: #f6f9fd;
  transform: translateY(-4px);
}

.product-category-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: #075ed4;
  font-size: 13px;
  font-weight: 900;
}

.product-category-card strong {
  display: block;
  color: #111827;
  font-size: 19px;
}

.product-category-card p {
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.7;
  font-size: 13px;
}

.product-showcase {
  padding-top: 76px;
}

.product-title-row {
  align-items: flex-end;
}

.product-title-row > span {
  max-width: 390px;
  color: #667085;
  line-height: 1.8;
  font-size: 14px;
}

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

.product-rich-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-rich-card:hover {
  border-color: rgba(7, 94, 212, 0.26);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  transform: translateY(-5px);
}

.product-rich-card[hidden] {
  display: none;
}

.product-rich-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #edf3fa;
}

.product-rich-card__media img,
.product-solution-card img,
.product-feature-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-rich-card:hover .product-rich-card__media img {
  transform: scale(1.04);
}

.product-rich-card__media img {
  transition: transform 420ms ease;
}

.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  color: #075ed4;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.product-rich-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-kicker {
  margin: 0 0 8px;
  color: #075ed4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-rich-card h3 {
  margin: 0;
  color: #111827;
  font-size: 21px;
  line-height: 1.35;
}

.product-desc {
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.78;
  font-size: 14px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-tags span {
  padding: 6px 10px;
  color: #31506f;
  background: #f2f6fb;
  border: 1px solid #e6ebf2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.product-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 20px;
  color: #075ed4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

/* Product detail pages */
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(64, 141, 255, 0.22), transparent 28rem),
    linear-gradient(135deg, #061827 0%, #082c62 100%);
}

.detail-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.14);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-height: 560px;
  padding: 80px 0;
}

.detail-hero .breadcrumbs,
.detail-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.68);
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.detail-hero p:not(.product-eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
  font-size: 16px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.detail-main-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #dbe7f5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.detail-main-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: #075ed4;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.detail-sidebar,
.detail-content article {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.detail-sidebar {
  position: sticky;
  top: 92px;
  padding: 26px;
}

.detail-sidebar h2,
.detail-content h2 {
  margin: 0;
  color: #111827;
  letter-spacing: -0.025em;
}

.detail-sidebar h2 {
  font-size: 22px;
}

.detail-sidebar ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.detail-sidebar li {
  position: relative;
  padding-left: 24px;
  color: #475569;
  line-height: 1.75;
  font-size: 14px;
}

.detail-sidebar li::before {
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  content: "";
  background: #075ed4;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(7, 94, 212, 0.1);
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-content article {
  padding: 28px;
}

.detail-content h2 {
  font-size: 24px;
}

.detail-content p {
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.9;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.detail-gallery figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #e8edf5;
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.detail-gallery figure:first-child {
  grid-row: span 2;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.detail-gallery figure:first-child img {
  min-height: 478px;
}

.detail-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 30%, rgba(64, 141, 255, 0.28), transparent 24rem),
    linear-gradient(135deg, #071827, #08347c);
}

.detail-cta .container {
  max-width: 820px;
  padding: 76px 0;
}

.detail-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.detail-cta p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.detail-cta .btn {
  margin-top: 28px;
}

.product-feature {
  padding: 82px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(7, 94, 212, 0.08), transparent 24rem),
    #f5f8fc;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 58px;
  align-items: center;
}

.product-feature-media {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.product-feature-media__note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  color: #fff;
  background: rgba(7, 24, 39, 0.82);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.product-feature-media__note strong,
.product-feature-media__note span {
  display: block;
}

.product-feature-media__note span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.product-feature-copy h2,
.product-process-copy h2 {
  color: #111827;
  font-size: clamp(30px, 4vw, 44px);
}

.product-feature-copy > p:not(.product-eyebrow),
.product-process-copy > p {
  color: #667085;
  line-height: 1.9;
}

.product-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.product-proof-grid article {
  padding: 18px;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 6px;
}

.product-proof-grid strong,
.product-proof-grid span {
  display: block;
}

.product-proof-grid strong {
  color: #111827;
}

.product-proof-grid span {
  margin-top: 8px;
  color: #667085;
  line-height: 1.7;
  font-size: 13px;
}

.product-solutions {
  background: #fff;
}

.mold-advantage-panel {
  padding: 76px 0;
  background: #fff;
}

.mold-advantage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.mold-advantage-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mold-advantage-gallery img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.mold-advantage-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

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

.mold-advantage-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7, 94, 212, 0.06), rgba(7, 94, 212, 0)),
    #fff;
  border: 1px solid #e6ebf2;
  border-radius: 8px;
}

.mold-advantage-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #075ed4;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.mold-advantage-list strong {
  display: block;
  color: #111827;
  font-size: 18px;
}

.mold-advantage-list p {
  margin: 8px 0 0;
  color: #667085;
  line-height: 1.75;
  font-size: 14px;
}

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

.product-solution-card {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  overflow: hidden;
  min-height: 230px;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.product-solution-card img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.product-solution-card div {
  padding: 28px;
}

.product-solution-card span {
  color: #075ed4;
  font-size: 13px;
  font-weight: 900;
}

.product-solution-card h3 {
  margin: 12px 0 0;
  color: #111827;
  font-size: 22px;
}

.product-solution-card p {
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.8;
  font-size: 14px;
}

.product-process {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(44, 129, 255, 0.32), transparent 28rem),
    linear-gradient(135deg, #071827, #082f6f);
}

.product-process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
  padding: 78px 0;
}

.product-process-copy h2 {
  color: #fff;
}

.product-process-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.product-process-steps article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.product-process-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #075ed4;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.product-process-steps strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 19px;
}

.product-process-steps p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 14px;
}

.product-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #071827;
}

.product-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.product-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 24, 39, 0.96), rgba(7, 24, 39, 0.58));
}

.product-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 82px 0;
}

.product-cta__inner p:not(.product-eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.product-cta__inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.factory-proof__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(11, 35, 65, 0.18);
}

.factory-proof__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.factory-proof__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 54px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 28, 44, 0.82);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.factory-proof__steps,
.service-inquiry__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.factory-proof__steps {
  margin: 22px 0 28px;
}

.factory-proof__steps span {
  border: 1px solid #d8e1ec;
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: #41546b;
  font-size: 0.9rem;
  font-weight: 700;
}

.equipment-spec-table {
  overflow-x: auto;
  border: 1px solid #e1e8f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(24, 46, 72, 0.08);
}

.equipment-spec-table table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.equipment-spec-table th,
.equipment-spec-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e8edf4;
  text-align: left;
  vertical-align: top;
}

.equipment-spec-table th {
  background: #0e263f;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

.nda-case-grid article {
  border: 1px solid #e1e8f1;
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(23, 43, 66, 0.07);
}

.nda-case-grid span {
  color: #d9792a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-inquiry {
  padding: 54px 0;
  background: #10243b;
  color: #fff;
}

.service-inquiry__inner {
  align-items: center;
  justify-content: space-between;
}

.service-inquiry__inner > div {
  max-width: 760px;
}

.service-inquiry h2 {
  margin: 8px 0 10px;
  color: #fff;
}

.service-inquiry p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-form input[type="file"] {
  padding: 14px;
  border: 1px dashed #b8c6d8;
  background: #f8fbff;
}

.quote-form__note {
  display: block;
  margin: -6px 0 10px;
  color: #667991;
  line-height: 1.55;
}

.footer-whatsapp {
  display: inline-flex;
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
}

.unified-footer {
  align-items: start;
}

@media (max-width: 1100px) {
  .seo-link-grid,
  .seo-two-column,
  .content-hero-grid,
  .content-layout {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .content-toc {
    position: static;
  }

  .detail-hero-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    gap: 30px;
    min-height: auto;
    padding: 64px 0;
  }

  .detail-sidebar {
    position: static;
  }

  .product-hero__inner,
  .product-feature-grid,
  .product-process-grid,
  .factory-proof {
    grid-template-columns: 1fr;
  }

  .product-hero__inner {
    gap: 28px;
    padding-top: 62px;
  }

  .product-hero__visual {
    min-height: 420px;
  }

  .product-category-grid,
  .product-rich-grid,
  .nda-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 720px) {
  .seo-link-grid,
  .seo-two-column,
  .content-hero-grid,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .seo-card,
  .seo-keyword-panel,
  .content-body section,
  .case-summary {
    padding: 22px;
  }

  .content-hero {
    padding: 54px 0;
  }

  .detail-hero-grid,
  .detail-cta .container {
    padding: 54px 0;
  }

  .detail-actions .btn,
  .detail-cta .btn {
    width: 100%;
  }

  .detail-main-image,
  .detail-main-image img {
    min-height: 280px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery figure:first-child {
    grid-row: auto;
  }

  .detail-gallery img,
  .detail-gallery figure:first-child img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .detail-content article,
  .detail-sidebar {
    padding: 22px;
  }

  .product-hero__inner {
    min-height: auto;
    padding: 56px 0 78px;
  }

  .product-hero__actions .pp-primary,
  .product-hero__actions .pp-dark-btn,
  .product-cta__inner .pp-light-btn,
  .product-cta__inner .pp-dark-btn {
    width: 100%;
  }

  .product-hero__stats,
  .product-category-grid,
  .product-rich-grid,
  .product-proof-grid,
  .product-process-steps {
    grid-template-columns: 1fr;
  }

  .product-hero__visual {
    min-height: 360px;
  }

  .product-hero-card--main {
    inset: 0 0 auto auto;
    width: 88%;
  }

  .product-hero-card--small {
    width: 43%;
  }

  .product-hero-card--one {
    bottom: 44px;
  }

  .product-category-strip {
    margin-top: -36px;
  }

  .product-category-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #e6ebf2;
  }

  .product-category-card:last-child {
    border-bottom: 0;
  }

  .product-title-row {
    align-items: flex-start;
  }

  .product-feature,
  .product-showcase {
    padding-top: 64px;
  }

  .product-feature-media {
    min-height: 330px;
  }

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

  .mold-advantage-panel {
    padding: 64px 0;
  }

  .mold-advantage-gallery {
    grid-template-columns: 1fr;
  }

  .mold-advantage-gallery img:first-child,
  .mold-advantage-gallery img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .mold-advantage-list article {
    grid-template-columns: 1fr;
  }

  .product-solution-card img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-process-grid,
  .product-cta__inner {
    padding: 64px 0;
  }

  .nda-case-grid {
    grid-template-columns: 1fr;
  }

  .service-inquiry__inner {
    align-items: flex-start;
  }

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