/* TONZO Site v2 - complete equipment homepage */
:root {
  --bg: #101820;
  --bg-deep: #071014;
  --surface: #ffffff;
  --surface-soft: #f4f7f6;
  --surface-steel: #e8eef0;
  --ink: #162027;
  --ink-soft: #53636d;
  --ink-muted: #77858d;
  --line: #d9e1e4;
  --line-dark: rgba(255, 255, 255, 0.16);
  --green: #176b4d;
  --green-dark: #0f4936;
  --green-soft: #e7f3ee;
  --orange: #e98324;
  --orange-dark: #a75310;
  --orange-soft: #fff1e3;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(16, 24, 32, 0.16);
  --container: 1180px;
  --header-h: 74px;
  --font: "Segoe UI", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--bg-deep);
}

.skip-link:focus {
  left: 14px;
  top: 14px;
}

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

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.brand-text strong {
  display: block;
  line-height: 1.1;
  font-size: 18px;
}

.brand-text span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 15px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  padding: 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--bg-deep);
  box-shadow: 0 12px 28px rgba(233, 131, 36, 0.28);
}

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

.btn-ghost,
.btn-ghost-light {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--surface-soft);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  transform: scale(1.02);
  animation: heroPush 16s ease-out forwards;
}

@keyframes heroPush {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.9) 0%, rgba(7, 16, 20, 0.68) 42%, rgba(7, 16, 20, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 16, 20, 0.52), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 0 86px;
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 760px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
}

.hero-lede {
  margin: 0;
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

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

.hero-proof span {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.section {
  padding: 82px 0;
}

.section:nth-of-type(even) {
  background: var(--surface-soft);
}

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

.section-head.centered {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.section-head > div {
  max-width: 760px;
}

.section-head h2,
.factory-copy h2,
.inquiry-copy h2,
.page-hero h1 {
  margin: 12px 0 10px;
  font-size: 38px;
  line-height: 1.14;
}

.section-head p,
.factory-copy p,
.inquiry-copy p,
.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-section {
  background: var(--surface);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), #f7faf9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-track {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), var(--orange), transparent);
  opacity: 0.28;
}

.process-track::after {
  content: "";
  position: absolute;
  inset: -5px auto -5px 0;
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(23, 107, 77, 0.58), transparent);
  animation: processFlow 3.8s linear infinite;
}

@keyframes processFlow {
  from {
    transform: translateX(-120px);
  }
  to {
    transform: translateX(calc(100vw + 120px));
  }
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 77, 0.45);
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.12);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.process-step p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.process-step strong {
  display: block;
  color: var(--orange-dark);
  font-size: 14px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.equipment-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.08);
}

.equipment-card-media {
  display: block;
  overflow: hidden;
  background: var(--surface-steel);
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-steel);
  transition: transform 0.3s ease;
}

.equipment-card:hover img {
  transform: scale(1.04);
}

.equipment-card div {
  padding: 18px 18px 8px;
}

.equipment-card span,
.category-card span,
.solution-card span {
  display: inline-flex;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.equipment-card h3,
.category-card h3,
.solution-card h3 {
  margin: 8px 0 8px;
  font-size: 20px;
  line-height: 1.22;
}

.equipment-card p,
.category-card p,
.solution-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.equipment-card > a {
  margin: 8px 18px 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 14px;
}

.equipment-card.optional {
  border-color: rgba(233, 131, 36, 0.42);
}

.equipment-card.optional span {
  color: var(--orange-dark);
}

.text-equipment-section .equipment-card {
  grid-template-rows: auto 1fr auto;
  border-top: 4px solid var(--green);
}

.text-equipment-section .equipment-card.optional {
  border-top-color: var(--orange);
}

.text-equipment-section .equipment-card img {
  display: block;
  aspect-ratio: 16 / 10;
}

.text-equipment-section .equipment-card div {
  padding-top: 18px;
}

.text-equipment-section .equipment-card h3 {
  min-height: 48px;
}

.solutions-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.solution-photo {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-steel);
}

.solution-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

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

.solution-card,
.category-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.solution-card:hover,
.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 107, 77, 0.38);
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.1);
}

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

.section.factory-section {
  background: var(--bg);
  color: var(--white);
}

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

.factory-copy p,
.factory-section .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.factory-section .section-kicker {
  background: rgba(255, 255, 255, 0.12);
}

.factory-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
}

.factory-points div,
.quote-note {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
}

.factory-points strong,
.quote-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.factory-points span,
.quote-note span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.factory-section .btn-ghost {
  color: var(--white);
  border-color: var(--line-dark);
}

.factory-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.factory-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.factory-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--bg-deep);
}

.factory-gallery figure.wide {
  grid-column: 1 / -1;
  min-height: 300px;
}

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

.factory-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(7, 16, 20, 0.74);
  color: var(--white);
  font-size: 13px;
}

.inquiry-section {
  background: var(--surface);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface), var(--surface-soft));
  box-shadow: var(--shadow);
}

.quote-note {
  margin-top: 24px;
  background: var(--green-soft);
  border-color: rgba(23, 107, 77, 0.18);
}

.quote-note strong {
  color: var(--green-dark);
}

.quote-note span {
  color: var(--ink-soft);
}

.inquiry-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 77, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  font-size: 14px;
}

.form-status.ok {
  color: var(--green);
}

.form-status.err {
  color: #b42318;
}

.site-footer {
  padding: 44px 0 22px;
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.float-quote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--bg-deep);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(233, 131, 36, 0.32);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 0.18s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.page-hero {
  padding: 52px 0 28px;
  background: var(--surface-soft);
}

.page-hero .breadcrumb {
  color: var(--ink-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.solution-hero,
.factory-hero,
.contact-hero {
  padding: 64px 0;
}

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

.solution-summary,
.factory-hero-photo,
.contact-card,
.capability-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.solution-summary img,
.factory-hero-photo img,
.capability-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-steel);
}

.summary-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
}

.summary-points span,
.route-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(23, 107, 77, 0.18);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

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

.route-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.07);
}

.route-card-media {
  display: block;
  overflow: hidden;
  margin: -22px -22px 2px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--surface-steel);
}

.route-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.route-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.route-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: var(--surface-steel);
}

.route-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.route-card h3,
.contact-card h2,
.capability-copy h2,
.request-copy h2 {
  margin: 0;
  line-height: 1.18;
}

.route-card p,
.capability-copy p,
.request-copy p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.flow-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.flow-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr 1.18fr;
  border-bottom: 1px solid var(--line);
}

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

.flow-row span {
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
}

.flow-row span:last-child {
  border-right: 0;
}

.flow-row.head span {
  background: var(--bg);
  color: var(--white);
  font-weight: 800;
}

.request-layout,
.capability-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: center;
}

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

.quote-checklist div,
.contact-methods a,
.contact-methods div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.quote-checklist strong,
.contact-methods strong,
.plain-list li::marker {
  color: var(--green-dark);
}

.quote-checklist strong,
.contact-methods strong {
  display: block;
  margin-bottom: 6px;
}

.quote-checklist span,
.contact-methods span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.visual-strip-grid,
.equipment-gallery-grid,
.factory-scene-grid {
  display: grid;
  gap: 18px;
}

.visual-strip-grid,
.equipment-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.scene-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.07);
}

.scene-card.wide {
  grid-row: span 2;
}

.scene-media {
  display: block;
  background: var(--surface-steel);
}

.scene-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scene-card.wide .scene-media img {
  height: 100%;
  min-height: 394px;
}

.scene-card figcaption {
  padding: 12px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.trust-card .num {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.factory-capability-section {
  background: var(--bg);
  color: var(--white);
}

.factory-capability-section .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.factory-capability-section .capability-copy p,
.factory-capability-section .plain-list li {
  color: rgba(255, 255, 255, 0.76);
}

.factory-capability-section .plain-list li::marker {
  color: var(--orange);
}

.plain-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.plain-list li {
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.contact-card {
  padding: 24px;
}

.contact-card h2 {
  margin: 12px 0 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a:hover {
  border-color: rgba(23, 107, 77, 0.38);
  background: var(--green-soft);
}

.quote-process-section {
  background: var(--surface);
}

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

.quote-process-card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.06);
}

.quote-process-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.quote-process-card h3 {
  margin: 0 0 8px;
  line-height: 1.22;
}

.quote-process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.quote-helper-section {
  background: var(--surface-soft);
}

.quote-helper-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.quote-helper-copy h2 {
  margin: 12px 0 10px;
  font-size: 38px;
  line-height: 1.14;
}

.quote-helper-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.quote-helper-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.quote-helper-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.quote-helper-grid span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-hero {
  padding: 62px 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.product-hero .hero-actions {
  margin-top: 24px;
}

.product-hero-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-steel);
}

.product-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-jump {
  padding-top: 58px;
  padding-bottom: 58px;
}

.catalog-nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.catalog-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.catalog-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 107, 77, 0.38);
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.08);
}

.catalog-section {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.catalog-card,
.catalog-note {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.07);
}

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

.catalog-card div,
.catalog-note {
  padding: 18px;
}

.catalog-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-card h3,
.catalog-note h3,
.cta-panel h2 {
  margin: 8px 0 8px;
  line-height: 1.22;
}

.catalog-card p,
.catalog-note p,
.cta-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.catalog-card.featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.catalog-card.featured img {
  height: 100%;
  min-height: 280px;
}

.catalog-note {
  display: grid;
  align-content: center;
  gap: 16px;
  background: var(--green-soft);
}

.product-family-section {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

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

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

.product-family-card,
.product-callout,
.product-requirement-card,
.optional-product-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.06);
}

.product-family-media,
.optional-product-media {
  display: block;
  overflow: hidden;
  margin: -20px -20px 14px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--surface-steel);
}

.product-family-media img,
.optional-product-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.optional-product-media {
  margin: 0 0 18px;
  border-radius: var(--radius);
}

.product-callout .product-family-media {
  margin-bottom: 18px;
}

.product-family-card span,
.product-callout span {
  display: inline-flex;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-family-card h3,
.product-callout h3,
.product-requirement-card h3,
.optional-product-card h3 {
  margin: 8px 0 8px;
  line-height: 1.22;
}

.product-family-card p,
.product-callout p,
.product-requirement-card p,
.optional-product-card li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.product-callout-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.product-callout {
  min-height: 180px;
  display: grid;
  align-content: center;
  background: linear-gradient(135deg, var(--surface), var(--green-soft));
}

.product-requirement-card {
  display: grid;
  align-content: center;
  gap: 14px;
  border-top-color: var(--orange);
}

.optional-product-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: center;
}

.optional-product-layout .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.optional-product-layout h2 {
  margin: 14px 0 12px;
  font-size: 38px;
  line-height: 1.12;
}

.optional-product-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.optional-product-card {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.optional-product-card h3 {
  color: var(--white);
}

.optional-product-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.optional-product-card li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.section.optional-section {
  background: var(--bg);
  color: var(--white);
}

.optional-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.optional-layout .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.optional-layout h2 {
  margin: 14px 0 12px;
  font-size: 38px;
  line-height: 1.12;
}

.optional-layout p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.optional-layout img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.product-cta {
  background: var(--surface);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-soft), var(--surface));
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.panel h3 {
  margin: 0 0 10px;
}

.panel p,
.panel li {
  color: var(--ink-soft);
}

.sticky-cta {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

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

.product-card,
.trust-card,
.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-card .media {
  aspect-ratio: 4 / 3;
  background: var(--surface-steel);
}

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

.product-card .body,
.trust-card,
.feature-body {
  padding: 18px;
}

.product-card h3,
.trust-card h3,
.feature-body h3 {
  margin: 0 0 8px;
}

.product-card p,
.trust-card p,
.feature-body p {
  color: var(--ink-soft);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.spec-table th {
  background: var(--surface-soft);
  color: var(--ink-soft);
}

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

.product-card .media {
  display: block;
}

.product-card .media img {
  object-fit: contain;
  padding: 12px;
}

.product-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.product-card h2 a {
  color: inherit;
}

.content-entry {
  max-width: 860px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.pagination {
  margin-top: 34px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface);
}

.pagination .current {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .catalog-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .catalog-nav a {
    min-width: 150px;
    scroll-snap-align: start;
  }

  .hero h1 {
    font-size: 52px;
  }

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

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

  .solutions-layout,
  .solution-hero-grid,
  .factory-layout,
  .factory-hero-grid,
  .contact-hero-grid,
  .inquiry-layout,
  .optional-layout,
  .optional-product-layout,
  .product-hero-grid,
  .request-layout,
  .capability-layout,
  .quote-helper-layout,
  .product-callout-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .factory-proof-grid,
  .factory-scene-grid,
  .visual-strip-grid,
  .equipment-gallery-grid,
  .quote-checklist,
  .quote-process-grid,
  .quote-helper-grid,
  .product-family-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scene-card.wide {
    grid-row: auto;
  }

  .scene-card.wide .scene-media img {
    min-height: 0;
  }

  .route-card.featured {
    grid-template-columns: 1fr;
  }

  .solution-photo img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header {
    --header-h: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text span {
    display: none;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 16, 20, 0.88), rgba(7, 16, 20, 0.62)),
      linear-gradient(0deg, rgba(7, 16, 20, 0.66), transparent 50%);
  }

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

  .hero h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head,
  .section-head.centered {
    display: block;
    text-align: left;
  }

  .section-head h2,
  .factory-copy h2,
  .inquiry-copy h2,
  .quote-helper-copy h2,
  .page-hero h1 {
    font-size: 30px;
  }

  .process-line,
  .equipment-grid,
  .category-grid,
  .factory-points,
  .factory-gallery,
  .form-grid,
  .catalog-grid,
  .catalog-grid.two,
  .route-grid,
  .factory-proof-grid,
  .factory-scene-grid,
  .visual-strip-grid,
  .equipment-gallery-grid,
  .quote-checklist,
  .quote-process-grid,
  .quote-helper-grid,
  .product-family-grid,
  .product-family-grid.two,
  .product-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card.featured {
    grid-template-columns: 1fr;
  }

  .catalog-card.featured img {
    min-height: 0;
  }

  .optional-layout img {
    max-height: 320px;
    object-fit: cover;
  }

  .optional-product-layout h2 {
    font-size: 30px;
  }

  .process-track {
    left: 35px;
    right: auto;
    top: 26px;
    bottom: 26px;
    width: 3px;
    height: auto;
  }

  .process-track::after {
    width: 3px;
    height: 100px;
    animation-name: processFlowMobile;
  }

  @keyframes processFlowMobile {
    from {
      transform: translateY(-100px);
    }
    to {
      transform: translateY(2200px);
    }
  }

  .process-step {
    min-height: auto;
  }

  .solution-hero,
  .factory-hero,
  .contact-hero {
    padding: 46px 0;
  }

  .route-body,
  .contact-card {
    padding: 18px;
  }

  .route-media img {
    min-height: 240px;
  }

  .flow-row,
  .flow-row.head {
    grid-template-columns: 1fr;
  }

  .flow-row.head {
    display: none;
  }

  .flow-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .solution-photo img {
    min-height: 280px;
  }

  .inquiry-layout {
    padding: 16px;
  }

  .inquiry-form {
    padding: 16px;
  }

  .float-quote {
    display: none;
  }

  .site-footer {
    padding-bottom: 22px;
  }
}
