:root {
  --ink: #151211;
  --charcoal: #24201d;
  --soft-ink: #3c3632;
  --paper: #f8f6f2;
  --white: #ffffff;
  --line: #ded8cf;
  --muted: #766f68;
  --steel: #58616a;
  --gold: #f5b33b;
  --amber: #ffcf70;
  --orange: #e76719;
  --blue: #2d5f73;
  --shadow: 0 18px 48px rgba(20, 16, 14, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 44px);
  background: rgba(23, 20, 19, 0.96);
  border-bottom: 1px solid rgba(245, 179, 59, 0.22);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 230px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--white);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(231, 103, 25, 0.45);
  border-radius: 7px;
  color: #1c1511;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(245, 179, 59, 0.14), rgba(231, 103, 25, 0.08));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.home-hero {
  min-height: 590px;
  height: min(720px, calc(100vh - 112px));
  display: grid;
  align-items: center;
  padding: 42px clamp(20px, 5vw, 70px) 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 13, 13, 0.92) 0%, rgba(16, 14, 14, 0.76) 43%, rgba(16, 14, 14, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

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

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 20px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: #1c1511;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 30px rgba(231, 103, 25, 0.25);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn.ghost.dark {
  color: var(--ink);
  border-color: rgba(21, 18, 17, 0.16);
}

.btn.light {
  color: var(--ink);
  background: var(--white);
}

.hero-proof {
  position: absolute;
  left: clamp(20px, 5vw, 70px);
  right: clamp(20px, 5vw, 70px);
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-proof span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  font-weight: 850;
}

.hero-proof span:last-child { border-right: 0; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 94px) clamp(18px, 4vw, 28px);
}

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

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

.stats-band {
  padding-top: clamp(74px, 9vw, 112px);
}

.stats-band.compact { padding-top: 46px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.stat-tile {
  min-height: 126px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stat-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
}

.stat-tile span { color: var(--muted); font-weight: 750; font-size: 14px; }

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

.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }

.split-copy p {
  color: var(--soft-ink);
  font-size: 17px;
}

.capability-list,
.checklist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.capability-list span,
.checklist-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(245, 179, 59, 0.42);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  color: var(--soft-ink);
}

.media-frame,
.image-pair img,
.manufacturing-gallery article,
.process-card,
.case-card,
.faq-item,
.order-step,
.contact-card,
.inquiry-form {
  border-radius: 8px;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.dark-section {
  max-width: none;
  background: var(--charcoal);
  color: var(--white);
  padding-left: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
}

.dark-section .section-head,
.dark-section .timeline,
.dark-section .product-strip { max-width: var(--max); margin-left: auto; margin-right: auto; }

.dark-section h2 { color: var(--white); }

.text-link {
  color: var(--orange);
  font-weight: 900;
  white-space: nowrap;
}

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

.mini-product {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.mini-product div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.mini-product span { color: rgba(255, 255, 255, 0.64); font-size: 12px; font-weight: 800; }

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

.process-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.process-card div { padding: 18px; }
.process-card span { color: var(--orange); font-weight: 950; }
.process-card p { color: var(--muted); }

.contact-band {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-left: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(clamp(18px, 4vw, 28px), calc((100vw - var(--max)) / 2 + 28px));
  background: linear-gradient(135deg, #f7ead3, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-band h2 { max-width: 760px; margin-bottom: 0; }

.page-hero {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 70px);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 14, 14, 0.90), rgba(17, 14, 14, 0.66)),
    url("../img/workshop-cnc.webp") center / cover;
  opacity: 0.92;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.page-hero h1 { font-size: clamp(38px, 5.5vw, 68px); }
.page-hero p:not(.eyebrow) { max-width: 740px; color: rgba(255, 255, 255, 0.8); font-size: 18px; }
.compact-hero { padding-bottom: clamp(66px, 8vw, 100px); }
.catalog-hero::before { background: linear-gradient(90deg, rgba(17, 14, 14, 0.90), rgba(17, 14, 14, 0.52)), url("../img/hero-wheels.webp") center / cover; }
.contact-hero::before { background: linear-gradient(90deg, rgba(17, 14, 14, 0.90), rgba(17, 14, 14, 0.62)), url("../img/quality-lab.webp") center / cover; }

.values-grid,
.manufacturing-gallery,
.cases-grid,
.faq-grid,
.order-grid,
.contact-layout {
  display: grid;
  gap: 16px;
}

.values-grid { grid-template-columns: repeat(3, 1fr); }
.values-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.values-grid p { color: var(--muted); }

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

.image-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.manufacturing-gallery { grid-template-columns: repeat(2, 1fr); }
.manufacturing-gallery article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.manufacturing-gallery img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.manufacturing-gallery h2,
.manufacturing-gallery p { padding-left: 22px; padding-right: 22px; }
.manufacturing-gallery h2 { padding-top: 22px; margin-bottom: 8px; font-size: 24px; }
.manufacturing-gallery p { color: var(--muted); padding-bottom: 22px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.timeline-item {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--ink);
  font-weight: 950;
}

.timeline-item p { color: rgba(255, 255, 255, 0.68); }

.order-grid { grid-template-columns: repeat(5, 1fr); }
.order-step {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}
.order-step span {
  color: var(--orange);
  font-weight: 950;
}
.order-step h2 { margin-top: 18px; font-size: 23px; }
.order-step p { color: var(--muted); }

.faq-grid { grid-template-columns: repeat(3, 1fr); }
.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}
.faq-item p { color: var(--muted); }

.catalog-shell {
  max-width: 1460px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) clamp(16px, 3vw, 34px) clamp(70px, 8vw, 100px);
}

.catalog-toolbar {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.search-box span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.filter-buttons {
  display: flex;
  gap: 8px;
}

.filter-buttons button {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.filter-buttons button.active {
  border-color: rgba(231, 103, 25, 0.46);
  background: linear-gradient(135deg, rgba(245, 179, 59, 0.22), rgba(231, 103, 25, 0.12));
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 18px 2px 24px;
  color: var(--muted);
  font-weight: 800;
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(21, 18, 17, 0.06);
  cursor: pointer;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--paper);
}

.catalog-card footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
}

.catalog-card strong { font-size: 15px; }
.catalog-card span { color: var(--muted); font-size: 12px; font-weight: 850; text-align: right; }

.load-more {
  width: min(340px, 100%);
  margin: 34px auto 0;
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.catalog-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.catalog-pager button,
.catalog-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
}

.catalog-pager button {
  cursor: pointer;
}

.catalog-pager button.active {
  border-color: rgba(231, 103, 25, 0.48);
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.catalog-pager button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 850;
}

.product-modal {
  width: min(930px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.product-modal::backdrop { background: rgba(13, 11, 10, 0.72); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  font-size: 26px;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 30px;
  align-items: center;
}

.modal-grid img {
  width: 100%;
  border-radius: 8px;
  background: var(--paper);
}

.modal-grid p { color: var(--muted); }

.cases-grid { grid-template-columns: repeat(5, 1fr); }
.case-card {
  min-height: 278px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}
.case-card h2 { font-size: 24px; }
.case-card p { color: var(--muted); }
.case-card strong { color: var(--blue); }

.contact-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  align-items: start;
}

.contact-card,
.inquiry-form {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(21, 18, 17, 0.06);
}

.contact-card h2 { font-size: 34px; }
.contact-card a {
  display: block;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 900;
}

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

.inquiry-form label { display: grid; gap: 7px; }
.inquiry-form label:nth-child(4),
.inquiry-form button { grid-column: 1 / -1; }
.inquiry-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  padding: 12px;
}
.inquiry-form input { min-height: 46px; }
.inquiry-form textarea { resize: vertical; }

.checklist-section { padding-top: 22px; }
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.checklist-grid span { justify-content: center; background: var(--white); }

.site-footer {
  background: #171413;
  color: rgba(255, 255, 255, 0.76);
  padding: 48px clamp(18px, 4vw, 44px) 26px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-logo {
  width: 240px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 8px;
  margin-bottom: 16px;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    background: rgba(23, 20, 19, 0.98);
    border-bottom: 1px solid rgba(245, 179, 59, 0.22);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .header-cta { justify-self: end; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .product-strip,
  .process-grid,
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline,
  .order-grid,
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }
  .brand img { width: 176px; height: 58px; }
  .header-cta { display: none; }
  .site-nav { top: 69px; }
  .home-hero {
    min-height: 660px;
    height: auto;
    padding: 54px 20px 190px;
  }
  .hero-bg::after { background: linear-gradient(180deg, rgba(15, 13, 13, 0.94), rgba(16, 14, 14, 0.58)); }
  h1 { font-size: 42px; }
  .hero-proof {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr;
  }
  .hero-proof span {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-proof span:last-child { border-bottom: 0; }
  .section-head,
  .contact-band,
  .catalog-meta,
  .footer-bottom {
    display: block;
  }
  .split,
  .split.reverse,
  .manufacturing-gallery,
  .values-grid,
  .faq-grid,
  .contact-layout,
  .footer-grid,
  .modal-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }
  .stats-grid,
  .product-strip,
  .process-grid,
  .timeline,
  .order-grid,
  .cases-grid,
  .catalog-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-toolbar {
    position: static;
    grid-template-columns: 1fr;
  }
  .filter-buttons {
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .filter-buttons button { white-space: nowrap; }
  .modal-grid { padding: 20px; }
}

@media (max-width: 520px) {
  .stats-grid,
  .product-strip,
  .process-grid,
  .timeline,
  .order-grid,
  .faq-grid,
  .values-grid,
  .manufacturing-gallery,
  .checklist-grid,
  .image-pair,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .stat-tile,
  .values-grid article,
  .order-step,
  .faq-item,
  .timeline-item,
  .case-card {
    min-height: auto;
    padding: 14px 12px;
  }
  .stat-tile strong {
    font-size: 23px;
  }
  .stat-tile span,
  .mini-product span,
  .catalog-card span,
  .process-card p,
  .timeline-item p,
  .order-step p,
  .faq-item p,
  .values-grid p,
  .manufacturing-gallery p {
    font-size: 12px;
    line-height: 1.35;
  }
  .mini-product div {
    display: grid;
    gap: 3px;
    padding: 10px;
  }
  .process-card div {
    padding: 12px;
  }
  .process-card h3,
  .timeline-item h3,
  .order-step h2,
  .faq-item h3,
  .values-grid h2,
  .manufacturing-gallery h2 {
    font-size: 16px;
    line-height: 1.15;
  }
  .manufacturing-gallery h2,
  .manufacturing-gallery p {
    padding-left: 12px;
    padding-right: 12px;
  }
  .manufacturing-gallery h2 {
    padding-top: 12px;
  }
  .manufacturing-gallery p {
    padding-bottom: 12px;
  }
  .timeline-item > span {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }
  .order-step h2 {
    margin-top: 10px;
  }
  .catalog-card footer { min-height: 56px; }
  .catalog-card footer {
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 10px;
  }
  .catalog-card strong { font-size: 14px; }
  .catalog-card span {
    text-align: left;
    font-size: 11px;
  }
  .btn { width: 100%; }
}
