:root {
  --ink: #17262b;
  --muted: #5c6b70;
  --line: #d9e1e3;
  --paper: #ffffff;
  --soft: #f3f6f5;
  --dark: #24383f;
  --accent: #e89a2f;
  --accent-dark: #b86914;
  --steel: #6f8389;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 14px clamp(24px, 5vw, 64px);
  border-bottom: 1px solid rgba(23, 38, 43, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.proof-strip,
.trust-band,
.offer-items,
.steps {
  display: flex;
  align-items: center;
}

.brand {
  width: 208px;
  min-width: 188px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  justify-content: center;
  gap: clamp(34px, 4vw, 58px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
}

.nav-links a {
  padding: 8px 0;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 760;
  line-height: 1.15;
}

.header-cta {
  justify-self: end;
  color: #fff;
  background: var(--dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  column-gap: clamp(42px, 6vw, 78px);
  row-gap: 28px;
  align-items: center;
  max-width: var(--max);
  min-height: auto;
  margin: 0 auto;
  padding: clamp(46px, 5vw, 64px) 24px 36px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(38px, 3.8vw, 50px);
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 740;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 740;
  line-height: 1.25;
}

.hero-text,
.section-intro p,
.capability-copy p,
.quote-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(232, 154, 47, 0.26);
}

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

.proof-strip {
  grid-column: 1 / -1;
  align-items: stretch;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proof-strip div {
  flex: 1;
  min-width: 0;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip dt {
  font-size: 24px;
  font-weight: 780;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(23, 38, 43, 0.08);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 22px 60px rgba(23, 38, 43, 0.12);
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.carousel-slide figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  background: rgba(23, 38, 43, 0.78);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  background: rgba(23, 38, 43, 0.5);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--accent);
}

.trust-band {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 24px;
  color: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-band span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: var(--soft);
}

.section,
.offer,
.quote-section,
.detail-hero,
.detail-cta,
.proof-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 6vw, 84px) 24px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

#products.two-column {
  display: block;
  padding-top: clamp(48px, 5vw, 68px);
}

.section-intro {
  max-width: 520px;
}

#products .section-intro,
.material-section .section-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.centered {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.product-grid article,
.offer-items article,
.steps article,
.mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-grid article {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 14px 34px rgba(23, 38, 43, 0.06);
}

.product-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 2.05;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: #f5f7f6;
  border-bottom: 1px solid var(--line);
}

.product-grid h3,
.product-grid p,
.product-grid a,
.product-specs {
  margin-right: 20px;
  margin-left: 20px;
}

.product-grid h3 {
  margin-top: 20px;
  font-size: 18px;
}

.product-grid p {
  font-size: 15px;
}

.product-grid a {
  display: inline-flex;
  margin-top: 12px;
  margin-bottom: 24px;
  color: var(--accent-dark);
  font-weight: 780;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 0;
}

.product-specs div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.product-specs dt,
.product-specs dd {
  margin: 0;
  line-height: 1.3;
}

.product-specs dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.product-specs dd {
  margin-top: 3px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.product-grid p,
.offer-items p,
.steps p,
.mini-card span,
.form-note,
.compact-list,
.detail-row p,
.tech-cards p {
  color: var(--muted);
  line-height: 1.55;
}

.material-section {
  padding-top: 16px;
}

.detail-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: 8px;
  background: #f5f7f6;
}

.detail-preview p {
  color: var(--muted);
  line-height: 1.6;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: 8px;
  background: #f5f7f6;
  box-shadow: 0 24px 70px rgba(23, 38, 43, 0.18);
}

.product-detail-list {
  display: grid;
  gap: 22px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-row img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
}

.detail-row h3 {
  max-width: 650px;
  font-size: clamp(24px, 3vw, 34px);
}

.compact-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.technical-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

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

.tech-cards article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-cta {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background: var(--dark);
}

.thank-you-section {
  display: grid;
  min-height: calc(100vh - 154px);
  align-content: center;
}

.detail-cta h2 {
  max-width: 820px;
}

.detail-cta h1 {
  max-width: 900px;
}

.detail-cta p {
  max-width: 680px;
}

.detail-cta .button {
  margin-top: 10px;
}

.offer {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.offer h2 {
  max-width: 740px;
}

.offer .eyebrow,
.offer-items span {
  color: var(--accent-dark);
}

.offer-items {
  align-items: stretch;
  gap: 16px;
}

.offer-items article {
  flex: 1;
  min-width: 0;
  padding: 26px;
  border-color: var(--line);
  background: #fff;
}

.offer-items span {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 780;
}

.offer-items p {
  color: var(--muted);
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.capability-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(23, 38, 43, 0.13);
}

.capability-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #f5f7f6;
}

.production-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.production-flow article {
  display: grid;
  gap: 9px;
  align-content: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.production-flow span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
}

.production-flow strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.production-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-cases {
  background: #fff;
}

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

.case-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.case-image {
  position: relative;
  margin: 0;
  background: #e9eeee;
}

.case-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.case-image figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(23, 38, 43, 0.78);
}

.case-topline,
.case-customer,
.case-grid h3,
.case-specs,
.case-challenge,
.case-grid ul,
.case-result {
  margin-right: 24px;
  margin-left: 24px;
}

.case-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}

.case-grid span,
.case-result {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 780;
  background: #fff4e3;
}

.case-topline strong {
  color: #315159;
  font-size: 13px;
}

.case-customer {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.case-customer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.case-customer div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.case-customer strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.case-customer span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

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

.case-grid h3 {
  margin-right: 24px;
  margin-left: 24px;
}

.case-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.case-specs div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
}

.case-specs dt,
.case-specs dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.case-specs dt {
  color: var(--muted);
  font-weight: 800;
}

.case-specs dd {
  color: var(--ink);
  font-weight: 760;
}

.case-grid p,
.case-grid li {
  color: var(--muted);
  line-height: 1.55;
}

.case-grid .case-challenge strong,
.case-actions strong,
.case-grid .case-result strong {
  color: var(--ink);
}

.case-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.case-grid .case-challenge {
  margin-right: 24px;
  margin-left: 24px;
}

.case-grid .case-result {
  margin-bottom: 24px;
  margin-right: 24px;
  margin-left: 24px;
  color: #8a540d;
  line-height: 1.4;
}

.case-grid .case-result strong {
  color: #8a540d;
}

.proof-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--soft);
}

.proof-metrics,
.proof-grid,
.factory-gallery,
.qa-strip,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

.proof-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proof-metrics div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.proof-metrics dt {
  color: var(--ink);
  font-size: 26px;
  font-weight: 780;
}

.proof-metrics dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.proof-grid article,
.factory-gallery article,
.qa-strip article,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.factory-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.factory-gallery article {
  overflow: hidden;
}

.factory-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.factory-gallery h3,
.factory-gallery p {
  margin-right: 22px;
  margin-left: 22px;
}

.factory-gallery h3 {
  margin-top: 20px;
}

.factory-gallery p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.process-detail {
  background: var(--soft);
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

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

.proof-grid article {
  padding: 26px;
}

.proof-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 780;
  background: #fff4e3;
}

.proof-grid p,
.qa-strip span,
.testimonial-grid blockquote,
.testimonial-grid figcaption {
  color: var(--muted);
  line-height: 1.55;
}

.qa-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.qa-strip article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.qa-strip strong {
  color: var(--ink);
  font-size: 18px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
}

.testimonial-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.testimonial-grid blockquote {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 3px;
  font-size: 14px;
  font-weight: 800;
}

.testimonial-grid figcaption span {
  color: var(--muted);
  font-weight: 700;
}

.testimonial-note {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: inset 0 0 0 5px #fff;
  border: 1px solid var(--accent);
}

.process {
  background: var(--soft);
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.steps {
  align-items: stretch;
  gap: 16px;
}

.steps article {
  flex: 1;
  min-width: 0;
  padding: 26px;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 760;
  background: var(--dark);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 98px;
}

.mini-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
}

.quote-benefits {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.quote-benefits strong {
  font-size: 18px;
}

.quote-benefits ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.form-panel {
  display: grid;
  gap: 14px;
  padding: clamp(14px, 3vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  overflow: visible;
}

.response-card {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid #f0c987;
  border-radius: 8px;
  color: var(--ink);
  background: #fff7e8;
}

.response-card strong {
  font-size: 17px;
}

.response-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #526267;
  font-size: 14px;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd6d9;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.lead-form input[type="file"] {
  padding: 10px;
}

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

.full {
  grid-column: 1 / -1;
}

.upload-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.upload-box em {
  color: #315159;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.submission-reassurance {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #f0c987;
  border-radius: 8px;
  color: #315159;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  background: #fff7e8;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.submit-button {
  border: 0;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(190px, 0.8fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px clamp(20px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #17262b;
}

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

.footer-contact span,
.footer-links span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer strong {
  color: #fff;
}

.footer address {
  font-style: normal;
}

.footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 7px 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(23, 38, 43, 0.24);
}

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

  .hero,
  .two-column,
  .capability,
  .production-flow,
  .quote-section,
  .detail-preview,
  .detail-hero,
  .detail-row,
  .technical-grid,
  .proof-metrics,
  .proof-grid,
  .case-grid,
  .factory-gallery,
  .process-detail .factory-gallery,
  .qa-strip,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .proof-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-metrics div:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 340px;
  }

  .quote-copy {
    position: static;
  }
}

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

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    grid-template-columns: minmax(120px, 1fr) auto;
    padding: 12px 16px;
  }

  .brand {
    width: 154px;
    min-width: 120px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    padding: 26px 16px 24px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-text,
  .section-intro p,
  .capability-copy p,
  .quote-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .offer-items,
  .steps {
    flex-direction: column;
  }

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

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .product-grid,
  .lead-form,
  .tech-cards {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 232px;
  }

  .section,
  .offer,
  .quote-section,
  .detail-hero,
  .detail-cta,
  .proof-section,
  .process-detail {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 84px;
  }

  .mobile-sticky-cta {
    display: inline-flex;
    left: 16px;
  }
}
