:root {
  --red: #cb1217;
  --red-dark: #a40d11;
  --ink: #171717;
  --ink-2: #242424;
  --muted: #6f7278;
  --line: #e4e5e8;
  --paper: #f5f5f6;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 64px);
  border: 1px solid transparent;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(18, 18, 18, 0.58);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.brand img {
  width: clamp(138px, 15vw, 206px);
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 1rem;
  font-weight: 800;
}

.nav-links a,
.account-link {
  position: relative;
  opacity: 0.82;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.account-link {
  font-size: 0.84rem;
  font-weight: 800;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 900;
}

.nav-cta {
  min-height: 42px;
  padding: 0 17px;
  color: var(--white);
  background: var(--red);
  font-size: 0.84rem;
}

.site-header.is-scrolled .nav-cta {
  box-shadow: 0 10px 24px rgba(203, 18, 23, 0.28);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--red-dark);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 20px 78px;
  color: var(--white);
  text-align: center;
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) saturate(0.82) contrast(1.04);
  transform: translate3d(0, var(--hero-media-y, 0), 0) scale(1.04);
  transition: transform 80ms linear;
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 48%, rgba(203, 18, 23, 0.18), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  transform: translate3d(0, var(--hero-content-y, 0), 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 18px;
}

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

h1 {
  width: min(900px, 100%);
  margin: 0 auto 22px;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 {
  position: relative;
  width: min(1120px, 100%);
  padding-bottom: 18px;
  white-space: nowrap;
}

.hero h1::before,
.hero h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(360px, 44%);
  height: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  pointer-events: none;
}

.hero h1::before {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 12px rgba(203, 18, 23, 0.48);
  animation: laser-title-trace 900ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
}

.hero h1::after {
  background:
    radial-gradient(ellipse at center, #ffffff 0 7%, rgba(255, 255, 255, 0.82) 8% 14%, rgba(203, 18, 23, 0.86) 15% 38%, rgba(203, 18, 23, 0.22) 39% 58%, transparent 72%);
  background-repeat: no-repeat;
  background-size: 88px 22px;
  background-position: -88px 50%;
  filter:
    drop-shadow(0 0 10px rgba(203, 18, 23, 0.9))
    drop-shadow(0 0 18px rgba(203, 18, 23, 0.44));
  animation:
    laser-title-trace 900ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards,
    laser-title-scan 3.8s ease-in-out 1.45s infinite alternate;
}

h2 {
  width: min(800px, 100%);
  margin: 0 auto 16px;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.04;
  font-weight: 900;
}

h2 span {
  display: block;
}

#servicii h2 {
  width: min(980px, 100%);
}

#servicii h2 span {
  white-space: nowrap;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy,
.section-heading p,
.quote-copy p,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

p.eyebrow {
  color: var(--red);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.hero-copy span {
  display: block;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(203, 18, 23, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.partners-carousel {
  overflow: hidden;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partners-carousel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.logo-track {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
}

.logo-track::before,
.logo-track::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(140px, 18vw);
  pointer-events: none;
}

.logo-track::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.logo-track::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.logo-row {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: partner-scroll 28s linear infinite;
}

.partner-logo {
  min-width: 236px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #9a9da3;
  background: #fafafa;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.partner-logo img {
  width: auto;
  max-width: 178px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) opacity(0.52);
  transition: filter 160ms ease;
}

.partner-logo:hover {
  border-color: #d4d6da;
  color: var(--ink);
  background: var(--white);
}

.partner-logo:hover img {
  filter: grayscale(1) brightness(0) opacity(0.68);
}

.logo-track:hover .logo-row {
  animation-play-state: paused;
}

.section,
.quote-section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p {
  width: min(650px, 100%);
  margin: 0 auto;
}

.services,
.faq {
  background: var(--paper);
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.services::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 245, 246, 0.82), rgba(245, 245, 246, 0.5) 38%, rgba(245, 245, 246, 0.84)),
    radial-gradient(ellipse at 50% 54%, rgba(245, 245, 246, 0.66), transparent 44%);
  pointer-events: none;
}

.services .section-heading,
.services .service-grid {
  position: relative;
  z-index: 2;
}

.services .section-heading p {
  color: var(--muted);
}

.services .section-heading .eyebrow {
  color: var(--red);
}

.services h2 {
  color: var(--ink);
}

.parts-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  opacity: 0.62;
  pointer-events: none;
}

.parts-map {
  width: 100%;
  height: 100%;
  display: block;
}

.cad-part {
  fill: rgba(218, 221, 226, 0.4);
  fill-rule: evenodd;
  stroke: rgba(104, 112, 123, 0.44);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.cad-hole {
  fill: rgba(245, 245, 246, 0.76);
  stroke: rgba(104, 112, 123, 0.4);
  stroke-width: 1.1;
}

.cad-nested-part {
  fill: rgba(224, 227, 231, 0.3);
  stroke: rgba(104, 112, 123, 0.34);
}

.service-grid {
  width: min(1340px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(2) {
  transition-delay: 90ms;
}

.service-card:nth-child(3) {
  transition-delay: 180ms;
}

.service-card:nth-child(4) {
  transition-delay: 270ms;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.service-card::before {
  background:
    linear-gradient(var(--red), var(--red)) left top / 24px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) left top / 2px 24px no-repeat,
    linear-gradient(var(--red), var(--red)) right top / 24px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) right top / 2px 24px no-repeat;
}

.service-card::after {
  background:
    linear-gradient(var(--red), var(--red)) left bottom / 24px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) left bottom / 2px 24px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 24px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 2px 24px no-repeat;
}

.service-card:hover {
  border-color: rgba(203, 18, 23, 0.32);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-visual {
  position: relative;
  height: 170px;
  min-height: 170px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: var(--ink);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2));
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.service-index {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 26px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.service-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  min-height: 26px;
  display: flex;
  align-items: center;
  padding-left: 34px;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.38;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.service-card:hover .service-visual img {
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.08);
}

.service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-link::after {
  content: "";
  width: 34px;
  height: 2px;
  margin-left: 12px;
  background: var(--red);
  transform: scaleX(0.62);
  transform-origin: left;
  transition: transform 160ms ease;
}

.service-link:hover::after {
  transform: scaleX(1);
}

.section-cta {
  width: min(760px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 34px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(18, 20, 25, 0.06);
}

.section-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
}

.section-cta .button {
  flex: 0 0 auto;
}

.materials {
  background:
    radial-gradient(circle at 12% 8%, rgba(203, 18, 23, 0.045), transparent 26%),
    var(--white);
}

.material-catalog {
  width: min(1340px, 100%);
  margin: 0 auto;
}

.material-filter-panel {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 18px;
  color: var(--white);
  background: #1b1d21;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.material-filter-heading,
.material-results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.material-filter-heading {
  padding-bottom: 22px;
}

.material-filter-heading h3,
.material-results-heading p {
  margin: 0;
}

.material-filter-heading h3 {
  margin-top: 7px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.material-filter-heading p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.58;
  text-align: right;
}

.filter-kicker,
.filter-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material-family-filter {
  padding: 20px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.material-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.material-tab {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.material-tab:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.material-tab.active {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.material-secondary-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(180px, 1fr) minmax(170px, 0.86fr) auto;
  align-items: end;
  gap: 12px;
  padding-top: 22px;
}

.material-secondary-filters label {
  display: grid;
  gap: 8px;
}

.material-secondary-filters input,
.material-secondary-filters select,
.material-reset {
  min-height: 48px;
  border-radius: 5px;
}

.material-secondary-filters input,
.material-secondary-filters select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  outline: none;
  padding: 0 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.9rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.material-secondary-filters input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.material-secondary-filters input:focus,
.material-secondary-filters select:focus {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.11);
}

.material-secondary-filters select option {
  color: var(--ink);
  background: var(--white);
}

.material-reset {
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.material-reset:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
}

.material-results-heading {
  padding: 30px 2px 15px;
}

.material-results-heading .filter-kicker {
  color: var(--red);
}

.material-results-heading p {
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.material-results-heading > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.material-results {
  position: relative;
}

.material-results.is-collapsed::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 54px;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.94) 82%);
}

.material-card {
  position: relative;
  display: grid;
  grid-template-rows: 136px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18, 20, 25, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.material-card:hover {
  border-color: rgba(203, 18, 23, 0.45);
  box-shadow: 0 16px 32px rgba(18, 20, 25, 0.1);
  transform: translateY(-4px);
}

.material-card.is-hidden,
.material-card.is-folded {
  display: none;
}

.material-thumb {
  --plate: #838a93;
  --plate-light: #b9bec5;
  --plate-dark: #69717b;
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #22252a;
  background-size: 22px 22px;
}

.material-thumb::before,
.material-thumb::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 17%;
  bottom: 17%;
  clip-path: polygon(0 0, 84% 0, 100% 30%, 100% 100%, 0 100%);
}

.material-thumb::before {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.48), transparent 32%),
    linear-gradient(145deg, var(--plate-light), var(--plate) 55%, var(--plate-dark));
  box-shadow: 0 14px 18px rgba(0, 0, 0, 0.24);
  transform: rotate(-3deg);
}

.material-thumb::after {
  opacity: 0.8;
  background:
    radial-gradient(circle at 18% 53%, #26292e 0 7px, rgba(255, 255, 255, 0.34) 8px, transparent 10px),
    radial-gradient(circle at 74% 53%, #26292e 0 7px, rgba(255, 255, 255, 0.34) 8px, transparent 10px),
    linear-gradient(165deg, transparent 12%, rgba(255, 255, 255, 0.22) 13%, transparent 14%);
  transform: rotate(-3deg);
}

.material-thumb span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  width: 58px;
  height: 2px;
  background: var(--red);
}

.material-thumb--steel-dark {
  --plate: #68717a;
  --plate-light: #a4aab0;
  --plate-dark: #4d5660;
}

.material-thumb--galvanized {
  --plate: #a9b1b7;
  --plate-light: #d8dde0;
  --plate-dark: #7f8b93;
}

.material-thumb--aluminium,
.material-thumb--aluminium-light {
  --plate: #b2b8bf;
  --plate-light: #e3e6e9;
  --plate-dark: #8c959f;
}

.material-thumb--aluminium-cool {
  --plate: #9da8b1;
  --plate-light: #d4dce1;
  --plate-dark: #78858f;
}

.material-thumb--stainless,
.material-thumb--stainless-brushed {
  --plate: #a3aab0;
  --plate-light: #eef0f1;
  --plate-dark: #77828a;
}

.material-thumb--stainless-dark {
  --plate: #87939b;
  --plate-light: #cbd2d5;
  --plate-dark: #5f6c75;
}

.material-thumb--titanium {
  --plate: #8d929e;
  --plate-light: #c9ccd4;
  --plate-dark: #626a78;
}

.material-thumb--titanium-dark {
  --plate: #737786;
  --plate-light: #b1b4bf;
  --plate-dark: #505564;
}

.material-thumb--brass {
  --plate: #b99743;
  --plate-light: #e1ca7e;
  --plate-dark: #806521;
}

.material-thumb--brass-dark {
  --plate: #a78436;
  --plate-light: #d4ba6c;
  --plate-dark: #72591d;
}

.material-thumb--copper {
  --plate: #b76543;
  --plate-light: #e19b7a;
  --plate-dark: #7e3f2b;
}

.material-thumb--copper-dark {
  --plate: #9e573d;
  --plate-light: #cf8a68;
  --plate-dark: #6c3628;
}

.material-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px;
}

.material-family {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.material-card-body > strong {
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.12rem;
}

.material-card-body small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
}

.material-description {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.material-thickness {
  display: grid;
  gap: 5px;
  margin-top: 16px;
}

.material-thickness b {
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-thickness span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.48;
}

.material-processes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.material-processes em {
  padding: 5px 7px;
  border-radius: 3px;
  color: #5b6069;
  background: var(--paper);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 850;
}

.material-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 19px;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 900;
}

.material-card-link::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
  transition: width 160ms ease;
}

.material-card:hover .material-card-link::after {
  width: 40px;
}

.material-empty {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 52px 20px;
  border: 1px dashed #d3d5da;
  border-radius: 14px;
  color: var(--muted);
  background: var(--paper);
  text-align: center;
}

.material-empty strong {
  color: var(--ink);
}

.material-empty[hidden],
.material-expand[hidden] {
  display: none;
}

.material-expand {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin: 18px auto 0;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 9px 22px rgba(18, 20, 25, 0.07);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.material-expand::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 1rem;
  line-height: 1;
}

.material-expand[aria-expanded="true"]::after {
  content: "−";
}

.material-expand:hover {
  border-color: rgba(203, 18, 23, 0.42);
  color: var(--red);
  box-shadow: 0 12px 26px rgba(18, 20, 25, 0.1);
}

.guide {
  --guide-progress: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(203, 18, 23, 0.1), transparent 32%),
    #17181b;
}

.guide-sticky {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(78px, 9vh, 112px) clamp(18px, 5vw, 72px) clamp(38px, 5vh, 62px);
}

.guide-sticky::before,
.guide-sticky::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.guide-sticky::before {
  inset: 0;
  opacity: 0.7;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.guide-sticky::after {
  right: -170px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.015),
    0 0 0 150px rgba(255, 255, 255, 0.01);
}

.guide-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.guide-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 5vh, 54px);
}

.guide-heading h2,
.guide-heading p {
  margin-left: 0;
  margin-right: 0;
}

.guide-heading h2 {
  max-width: 720px;
  color: var(--white);
  text-align: left;
}

.guide-heading p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.64);
  text-align: left;
}

.guide-heading .eyebrow {
  color: var(--red);
}

.guide-progress-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  padding-bottom: 4px;
  white-space: nowrap;
}

.guide-progress-meta span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-progress-meta strong {
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
}

.guide-rail {
  position: relative;
  height: 30px;
  margin: 0 clamp(36px, 8vw, 100px) 16px;
}

.guide-track {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.guide-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(203, 18, 23, 0.8);
  transform: scaleX(var(--guide-progress));
  transform-origin: left;
}

.guide-station {
  position: absolute;
  top: 7px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: #1b1d20;
  box-shadow: 0 0 0 5px #1b1d20;
  transform: translateX(-50%);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.guide-station--one {
  left: 0;
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 5px #1b1d20, 0 0 14px rgba(203, 18, 23, 0.5);
}

.guide-station--two {
  left: 50%;
}

.guide-station--three {
  left: 100%;
}

.guide-station.is-reached {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 5px #1b1d20, 0 0 14px rgba(203, 18, 23, 0.5);
}

.guide-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.guide-step {
  --step-progress: 0;
  --step-opacity: 0.48;
  --step-offset: 18px;
  --upload-offset: 14px;
  --format-offset: 8px;
  --format-two-opacity: 0;
  --format-three-opacity: 0;
  --quote-offset: 16px;
  --quote-material-opacity: 0;
  --quote-cut-opacity: 0;
  --quote-finish-opacity: 0;
  --quote-total-opacity: 0;
  --quote-material-offset: -9px;
  --quote-cut-offset: -9px;
  --quote-finish-offset: -9px;
  --delivery-left: 20px;
  --delivery-top: 90px;
  --delivery-scale: 0.82;
  --delivery-marker-opacity: 0;
  --delivery-marker-scale: 0.72;
  position: relative;
  z-index: 1;
  min-height: 390px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  opacity: var(--step-opacity);
  transform: translateY(var(--step-offset));
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.guide-step.is-active,
.guide-step.is-complete {
  border-color: rgba(203, 18, 23, 0.56);
  background: rgba(255, 255, 255, 0.085);
}

.guide-step.is-active {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(203, 18, 23, 0.15);
}

.guide-step-header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.guide-step-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  font-weight: 900;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.guide-step.is-active .guide-step-index,
.guide-step.is-complete .guide-step-index {
  background: var(--red);
  box-shadow: 0 0 18px rgba(203, 18, 23, 0.42);
}

.guide-step-kicker {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-step h3 {
  margin: 18px 0 8px;
  color: var(--white);
  font-size: 1.16rem;
}

.guide-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.62;
}

.guide-step-action {
  display: inline-flex;
  margin-top: 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-step-action::after {
  content: "→";
  margin-left: 8px;
  color: var(--red);
}

.guide-visual {
  position: relative;
  height: 184px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(8, 9, 11, 0.28);
  background-size: 22px 22px;
}

.guide-cad-drawing {
  position: absolute;
  inset: 12px 14px 8px;
  width: calc(100% - 28px);
  height: calc(100% - 20px);
}

.cad-sheet,
.cad-fold {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2;
}

.cad-part-line {
  fill: none;
  stroke: #e3272c;
  stroke-width: 2.5;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--step-progress));
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cad-center-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-dasharray: 6 7;
}

.guide-upload-arrow {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 28px;
  height: 38px;
  opacity: var(--step-progress);
  transform: translateY(var(--upload-offset));
}

.guide-upload-arrow::before,
.guide-upload-arrow::after,
.guide-upload-arrow span {
  content: "";
  position: absolute;
  left: 50%;
  background: var(--red);
  transform: translateX(-50%);
}

.guide-upload-arrow::before {
  top: 0;
  width: 3px;
  height: 28px;
}

.guide-upload-arrow::after {
  top: 0;
  width: 14px;
  height: 14px;
  background: transparent;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
  transform: translateX(-50%) rotate(45deg);
}

.guide-upload-arrow span {
  bottom: 0;
  width: 26px;
  height: 3px;
}

.guide-format-list {
  position: absolute;
  left: 18px;
  bottom: 15px;
  display: flex;
  gap: 5px;
}

.guide-format-list span {
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.58rem;
  font-weight: 900;
  opacity: var(--step-progress);
  transform: translateY(var(--format-offset));
}

.guide-format-list span:nth-child(2) {
  opacity: var(--format-two-opacity);
}

.guide-format-list span:nth-child(3) {
  opacity: var(--format-three-opacity);
}

.guide-quote-visual {
  display: grid;
  place-items: center;
}

.quote-document {
  width: min(232px, 82%);
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.065);
  opacity: clamp(0.16, var(--step-progress), 1);
  transform: translateY(var(--quote-offset));
}

.quote-document-header,
.quote-row,
.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-document-header {
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.quote-document-header i {
  width: 22px;
  height: 3px;
  background: var(--red);
}

.quote-row {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  opacity: 0;
  transform: translateX(-9px);
}

.quote-row b {
  color: var(--red);
}

.quote-row--material {
  opacity: var(--quote-material-opacity);
  transform: translateX(var(--quote-material-offset));
}

.quote-row--cut {
  opacity: var(--quote-cut-opacity);
  transform: translateX(var(--quote-cut-offset));
}

.quote-row--finish {
  opacity: var(--quote-finish-opacity);
  transform: translateX(var(--quote-finish-offset));
}

.quote-total {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  opacity: var(--quote-total-opacity);
}

.quote-total strong {
  color: var(--white);
  font-size: 0.82rem;
}

.guide-delivery-visual {
  isolation: isolate;
}

.guide-delivery-route {
  position: absolute;
  inset: 18px 10px 2px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

.delivery-path {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--step-progress));
  stroke-linecap: round;
}

.delivery-origin,
.delivery-destination {
  fill: #202226;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 3;
}

.delivery-destination {
  stroke: var(--red);
}

.delivery-package {
  position: absolute;
  z-index: 2;
  left: var(--delivery-left);
  top: var(--delivery-top);
  width: 52px;
  height: 38px;
  transform: scale(var(--delivery-scale));
}

.delivery-package span {
  position: absolute;
  display: block;
}

.delivery-package-top {
  top: 0;
  left: 9px;
  width: 42px;
  height: 15px;
  background: #c8ccd1;
  clip-path: polygon(0 100%, 28% 0, 100% 0, 75% 100%);
}

.delivery-package-front {
  left: 0;
  top: 15px;
  width: 40px;
  height: 23px;
  background: #929aa3;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 78%);
}

.delivery-package-side {
  top: 15px;
  right: 1px;
  width: 13px;
  height: 23px;
  background: #707a85;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}

.delivery-marker {
  position: absolute;
  right: 22px;
  top: 18px;
  display: grid;
  justify-items: center;
  width: 62px;
  height: 62px;
  align-content: center;
  border: 1px solid rgba(203, 18, 23, 0.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(203, 18, 23, 0.11);
  opacity: var(--delivery-marker-opacity);
  transform: scale(var(--delivery-marker-scale));
}

.delivery-marker span {
  font-size: 1rem;
  font-weight: 900;
}

.delivery-marker small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.guide-scroll-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-scroll-note span {
  position: relative;
  width: 15px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.guide-scroll-note span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(-50%) translateY(var(--guide-scroll-dot, 0px));
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-band div {
  min-height: 138px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 22px;
  background: var(--white);
  text-align: center;
}

.proof-band strong {
  font-size: 1.04rem;
}

.proof-band span {
  color: var(--muted);
}

.faq-list {
  width: min(820px, 100%);
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.quote-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(390px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 12, 15, 0.08) 0%, rgba(10, 12, 15, 0.28) 42%, rgba(10, 12, 15, 0.9) 100%),
    linear-gradient(180deg, rgba(10, 12, 15, 0.04), rgba(10, 12, 15, 0.42)),
    url("assets/contact-fabshop-worker-v2.webp") 34% center / auto 122% no-repeat,
    #111419;
}

.quote-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 44%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, rgba(203, 18, 23, 0.06), transparent 48%);
}

.quote-copy {
  max-width: 680px;
  padding: clamp(22px, 4vw, 42px);
  border-left: 3px solid rgba(203, 18, 23, 0.88);
  background: linear-gradient(90deg, rgba(10, 12, 15, 0.76), rgba(10, 12, 15, 0.12));
  backdrop-filter: blur(3px);
}

.quote-copy h2 {
  margin-left: 0;
  margin-right: 0;
}

.quote-heading-nowrap {
  white-space: nowrap;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.quote-copy a {
  color: var(--white);
  font-weight: 900;
}

.quote-copy .quote-shop-cta {
  display: inline-flex;
  margin-top: 12px;
  text-decoration: none;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(16, 19, 23, 0.74);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.quote-form input,
.quote-form select {
  min-height: 50px;
  padding: 0 14px;
}

.quote-form textarea {
  resize: vertical;
  padding: 14px;
}

.quote-form button:disabled {
  opacity: 0.76;
  cursor: default;
}

.quote-form-status {
  min-height: 1.2em;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
  min-height: 184px;
  padding: 48px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.035), transparent 38%),
    #090a0c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(203, 18, 23, 0.18) 46%, transparent);
}

.site-footer img {
  width: clamp(172px, 16vw, 220px);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease;
}

.site-footer a:hover {
  border-color: rgba(203, 18, 23, 0.7);
  background: rgba(203, 18, 23, 0.16);
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes laser-title-trace {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes laser-title-scan {
  0% {
    background-position: -88px 50%;
  }

  100% {
    background-position: calc(100% + 88px) 50%;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .proof-band,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .quote-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-section {
    background-position: 34% center;
  }

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

  .service-card {
    min-height: 470px;
  }

  .service-visual {
    height: 170px;
    min-height: 170px;
  }

  .service-body {
    padding: 22px 18px 24px;
  }

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

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

  .guide {
    min-height: auto;
  }

  .guide-sticky {
    padding-left: 24px;
    padding-right: 24px;
  }

  .guide-timeline {
    gap: 12px;
  }

  .guide-step {
    min-height: 376px;
    padding: 14px;
  }

  .guide-visual {
    height: 172px;
  }

}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 12px 18px;
  }

  .brand img {
    width: 138px;
  }

  .account-link {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 62px;
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
    line-height: 1;
  }

  .hero h1 {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2rem, 9.2vw, 2.8rem);
  }

  #servicii h2 span {
    white-space: normal;
  }

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

  .section-cta {
    display: grid;
    justify-items: start;
    gap: 14px;
  }

  .section-cta .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .quote-section {
    min-height: auto;
    background-position: 39% top;
    background-size: cover;
  }

  .quote-copy {
    padding: 24px 20px;
    text-align: left;
  }

  .quote-heading-nowrap {
    white-space: normal;
  }

  .material-filter-panel {
    padding: 18px;
    border-radius: 13px;
  }

  .material-filter-heading,
  .material-results-heading {
    display: grid;
    gap: 10px;
  }

  .material-filter-heading p {
    text-align: left;
  }

  .material-secondary-filters,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .material-results-heading {
    padding-top: 24px;
  }

  .material-results-heading > span {
    display: none;
  }

  .guide {
    min-height: auto;
  }

  .guide-sticky {
    position: relative;
    min-height: auto;
    padding: 74px 18px 58px;
  }

  .guide-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
  }

  .guide-progress-meta {
    display: none;
  }

  .guide-timeline {
    grid-template-columns: 1fr;
  }

  .guide-rail {
    display: none;
  }

  .guide-step {
    --step-progress: 1 !important;
    min-height: auto;
    opacity: 1;
    transform: none;
  }

  .guide-scroll-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .hero-media img,
  .hero-content,
  .service-card {
    transform: none !important;
  }

  .service-card {
    opacity: 1;
  }

  .parts-backdrop,
  .service-card {
    opacity: 1;
    transform: none !important;
  }

  .guide {
    --guide-progress: 1 !important;
    min-height: auto;
  }

  .guide-sticky {
    position: relative;
    min-height: auto;
  }

  .guide-step {
    --step-progress: 1 !important;
    opacity: 1;
    transform: none !important;
  }

}
