/*
  AFV home-page visual system.
  The same scoped rules were approved in the local preview before release.
*/

:root {
  --preview-ink: #0b1b29;
  --preview-ink-deep: #07131f;
  --preview-mist: #eff4f6;
  --preview-line: rgba(19, 49, 67, 0.16);
  --preview-orange: #f26b2b;
  --preview-cyan: #58cad1;
}

/* A single visual system for the capability cards */
.capabilities-section-preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(88, 202, 209, 0.11), transparent 30%),
    linear-gradient(180deg, #f7fafb 0%, var(--preview-mist) 100%);
}

.capabilities-section-preview::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(13, 46, 62, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 46, 62, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.capabilities-section-preview .section-heading {
  align-items: end;
  gap: clamp(32px, 7vw, 120px);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.capabilities-section-preview .section-heading h2 {
  color: var(--preview-ink);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.capabilities-section-preview .section-heading h2 em {
  color: var(--preview-orange);
}

.capabilities-section-preview .section-heading > p {
  max-width: 520px;
  color: #536c79;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 2.05;
}

.capability-grid-preview {
  align-items: stretch;
  gap: 16px;
}

.capabilities-section-preview .capability-card {
  position: relative;
  min-height: 316px;
  overflow: hidden;
  border: 1px solid rgba(126, 180, 190, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(20, 52, 68, 0.98), rgba(7, 20, 31, 0.99)),
    var(--preview-ink);
  box-shadow: 0 18px 38px rgba(7, 25, 38, 0.14);
  color: #f5fbfc;
  transform: translateZ(0);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.capabilities-section-preview .capability-card::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(88, 202, 209, 0.9), transparent);
  content: "";
  opacity: 0.8;
}

.capabilities-section-preview .capability-card::after {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(88, 202, 209, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(88, 202, 209, 0.035), 0 0 0 33px rgba(88, 202, 209, 0.025);
  content: "";
}

.capabilities-section-preview .capability-card:hover {
  border-color: rgba(88, 202, 209, 0.58);
  box-shadow: 0 24px 48px rgba(7, 25, 38, 0.22);
  transform: translateY(-5px);
}

.capabilities-section-preview .capability-card-feature {
  background:
    radial-gradient(circle at 82% 12%, rgba(242, 107, 43, 0.18), transparent 28%),
    linear-gradient(150deg, #123d4b, #071520 80%);
}

.capabilities-section-preview .card-topline {
  position: relative;
  z-index: 1;
  color: #8caeb7;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.capabilities-section-preview .card-topline-status {
  background: var(--preview-orange);
  box-shadow: 0 0 0 5px rgba(242, 107, 43, 0.14), 0 0 18px rgba(242, 107, 43, 0.7);
}

.capabilities-section-preview .capability-icon {
  position: relative;
  z-index: 1;
  border-color: rgba(146, 223, 225, 0.36);
  background: rgba(102, 212, 215, 0.08);
}

.capabilities-section-preview .capability-card:nth-child(2) .capability-icon,
.capabilities-section-preview .capability-card:nth-child(3) .capability-icon {
  border-color: rgba(242, 107, 43, 0.32);
  background: rgba(242, 107, 43, 0.08);
}

.capabilities-section-preview .capability-card h3 {
  position: relative;
  z-index: 1;
  color: #f8fcfd;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 850;
}

.capabilities-section-preview .capability-card p {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  color: #b2c7cd;
  font-size: 13px;
  line-height: 2.05;
}

/* Stronger hierarchy and focus for BOM intake */
.process-section-preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 10%, rgba(88, 202, 209, 0.12), transparent 28%),
    linear-gradient(180deg, #f2f7f8 0%, #e8f0f2 100%);
}

.process-section-preview::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(7, 35, 48, 0.035) 1px, transparent 1px);
  background-size: 72px 100%;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.process-section-preview .section-heading-compact {
  margin-bottom: clamp(38px, 5vw, 64px);
}

.process-section-preview .section-heading h2 {
  color: var(--preview-ink);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.process-section-preview .section-heading h2 em {
  color: var(--preview-orange);
}

.process-section-preview .bom-intake {
  min-height: 666px;
  overflow: hidden;
  border: 1px solid rgba(20, 64, 79, 0.22);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(12, 44, 57, 0.16);
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
}

.process-section-preview .bom-intake-visual {
  min-height: 666px;
  background:
    radial-gradient(circle at 35% 30%, rgba(88, 202, 209, 0.18), transparent 30%),
    linear-gradient(145deg, #0d2b3b, #06131f 78%);
}

.process-section-preview .bom-intake-panel {
  position: relative;
  padding: clamp(38px, 5vw, 76px) clamp(28px, 5.2vw, 82px);
}

.process-section-preview .bom-intake-panel::before {
  position: absolute;
  top: 64px;
  right: 0;
  bottom: 64px;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--preview-orange) 18%, var(--preview-orange) 82%, transparent);
  content: "";
}

.process-section-preview .bom-intake-kicker {
  color: #6e8992;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-section-preview .bom-intake-kicker > span {
  background: var(--preview-orange);
  box-shadow: 0 0 0 4px rgba(242, 107, 43, 0.12), 0 0 16px rgba(242, 107, 43, 0.55);
}

.process-section-preview .bom-intake-head h3 {
  color: var(--preview-ink);
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.process-section-preview .bom-intake-head h3 em {
  color: var(--preview-orange);
}

.process-section-preview .bom-form {
  margin-top: 34px;
}

.process-section-preview .bom-dropzone {
  position: relative;
  min-height: 124px;
  overflow: hidden;
  border: 2px dashed rgba(242, 107, 43, 0.54);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(242, 107, 43, 0.08), transparent 42%),
    #fffaf7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75), 0 12px 30px rgba(17, 49, 61, 0.06);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-section-preview .bom-dropzone::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: 9%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(88, 202, 209, 0.8), transparent);
  box-shadow: 0 0 16px rgba(88, 202, 209, 0.45);
  content: "";
  opacity: 0;
  transform: rotate(18deg) translateX(-30px);
  transition: opacity 220ms ease, transform 500ms ease;
}

.process-section-preview .bom-dropzone:hover,
.process-section-preview .bom-dropzone:focus-within {
  border-color: var(--preview-orange);
  background: #fff7f1;
  box-shadow: 0 0 0 5px rgba(242, 107, 43, 0.09), 0 18px 36px rgba(17, 49, 61, 0.1);
  transform: translateY(-2px);
}

.process-section-preview .bom-dropzone:hover::after,
.process-section-preview .bom-dropzone:focus-within::after {
  opacity: 1;
  transform: rotate(18deg) translateX(280px);
}

.process-section-preview .bom-drop-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(242, 107, 43, 0.38);
  border-radius: 15px;
  background: #fff;
  color: var(--preview-orange);
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(242, 107, 43, 0.14);
  animation: bomPreviewFloat 2.8s ease-in-out infinite;
}

.process-section-preview .bom-drop-copy {
  position: relative;
  z-index: 1;
  gap: 7px;
}

.process-section-preview .bom-drop-copy strong {
  color: var(--preview-ink);
  font-size: 15px;
  font-weight: 900;
}

.process-section-preview .bom-drop-copy small {
  color: #6b8189;
  font-size: 11px;
  line-height: 1.8;
}

.process-section-preview .bom-file-meta {
  position: relative;
  z-index: 1;
  align-self: center;
  color: #82969d;
  font-size: 10px;
}

.process-section-preview .bom-analysis {
  border-color: rgba(88, 202, 209, 0.34);
  background: linear-gradient(120deg, rgba(88, 202, 209, 0.09), rgba(242, 107, 43, 0.04));
}

.process-section-preview .bom-submit {
  min-height: 52px;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(242, 107, 43, 0.2);
}

/* Roadmap: clean route, readable 1–4 markers */
.process-section-preview .bom-roadmap {
  margin-top: clamp(48px, 7vw, 88px);
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid rgba(89, 173, 181, 0.28);
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(15, 49, 63, 0.98), rgba(6, 20, 31, 0.99)),
    var(--preview-ink-deep);
  box-shadow: 0 24px 52px rgba(7, 25, 38, 0.16);
}

.process-section-preview .bom-roadmap-head {
  margin-bottom: 32px;
}

.process-section-preview .bom-roadmap-head > span,
.process-section-preview .bom-roadmap-code {
  font-family: Arial, sans-serif;
  letter-spacing: 0.08em;
}

.process-section-preview .bom-roadmap-track {
  gap: 16px;
}

.process-section-preview .bom-roadmap-step {
  position: relative;
  min-height: 220px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(146, 223, 225, 0.16);
  border-radius: 18px;
  background: rgba(5, 17, 27, 0.36);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.process-section-preview .bom-roadmap-step:hover {
  border-color: rgba(242, 107, 43, 0.52);
  background: rgba(9, 32, 43, 0.78);
  transform: translateY(-4px);
}

.process-section-preview .bom-roadmap-node {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(88, 202, 209, 0.62);
  border-radius: 17px;
  background: linear-gradient(145deg, #173f4d, #0a1c29);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22), 0 0 0 5px rgba(88, 202, 209, 0.06);
  transform: rotate(45deg);
}

.process-section-preview .bom-roadmap-node span {
  color: #e9fcfc;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  transform: rotate(-45deg);
}

.process-section-preview .bom-roadmap-step:nth-child(2) .bom-roadmap-node,
.process-section-preview .bom-roadmap-step:nth-child(4) .bom-roadmap-node {
  border-color: rgba(242, 107, 43, 0.62);
  background: linear-gradient(145deg, #6d321d, #281811);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22), 0 0 0 5px rgba(242, 107, 43, 0.07);
}

.process-section-preview .bom-roadmap-copy {
  min-height: 116px;
}

.process-section-preview .bom-roadmap-copy h3 {
  color: #f3fbfc;
  font-size: 18px;
  font-weight: 900;
}

.process-section-preview .bom-roadmap-copy p {
  color: #a9c0c7;
  font-size: 12px;
  line-height: 1.95;
}

@keyframes bomPreviewFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Keep technical counters and route markers optically consistent across pages. */
.page-intro-index,
.project-code,
.project-slider-status strong,
.source-card-index,
.source-process-grid > div > span,
.bom-roadmap-node span,
.trust-icon,
.service-number,
.warranty-number,
.three-hud,
.three-float-panel > span {
  font-variant-numeric: tabular-nums;
}

.page-intro-index,
.project-code,
.project-slider-status strong,
.source-card-index,
.source-process-grid > div > span,
.bom-roadmap-node span,
.trust-icon,
.service-number,
.three-hud,
.three-float-panel > span {
  font-family: Arial, Vazirmatn, sans-serif;
}

@media (max-width: 980px) {
  .capability-grid-preview {
    grid-template-columns: 1fr;
  }

  .capabilities-section-preview .capability-card {
    min-height: 260px;
  }

  .process-section-preview .bom-intake {
    grid-template-columns: 1fr;
  }

  .process-section-preview .bom-intake-visual {
    min-height: 360px;
  }

  .process-section-preview .bom-roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .capabilities-section-preview .section-heading {
    display: block;
  }

  .capabilities-section-preview .section-heading > p {
    margin-top: 20px;
  }

  .process-section-preview .bom-intake-panel::before {
    top: 28px;
    bottom: 28px;
  }

  .process-section-preview .bom-dropzone {
    align-items: start;
    padding: 16px;
  }

  .process-section-preview .bom-drop-copy strong {
    font-size: 13px;
  }

  .process-section-preview .bom-file-meta {
    display: none;
  }

  .process-section-preview .bom-roadmap-track {
    grid-template-columns: 1fr;
  }

  .process-section-preview .bom-roadmap-step {
    min-height: auto;
  }
}

/* Engineering delivery roadmap: a restrained PCB-inspired route for the detailed page. */
.engineering-roadmap {
  position: relative;
  isolation: isolate;
  margin-top: clamp(54px, 7vw, 92px);
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid rgba(111, 211, 216, .24);
  border-radius: 28px;
  color: #f5fbfc;
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 107, 43, .16), transparent 25%),
    linear-gradient(135deg, #091d2b 0%, #06131f 72%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
}

.engineering-roadmap::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: .5;
  background-image:
    linear-gradient(rgba(111, 211, 216, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 211, 216, .06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 49.7%, rgba(242, 107, 43, .12) 50%, transparent 50.3%);
  background-size: 42px 42px, 42px 42px, 180px 180px;
  mask-image: linear-gradient(135deg, black, transparent 74%);
}

.engineering-roadmap::after {
  position: absolute;
  top: -120px;
  left: -110px;
  z-index: -1;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(111, 211, 216, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(111, 211, 216, .035), 0 0 0 58px rgba(242, 107, 43, .025);
}

.engineering-roadmap-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .72fr);
  align-items: end;
  gap: 32px;
}

.engineering-roadmap-heading h3 {
  margin: 18px 0 0;
  color: #f7fcfd;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.05em;
}

.engineering-roadmap-heading h3 em {
  color: var(--preview-orange);
  font-style: normal;
}

.engineering-roadmap-heading p {
  max-width: 360px;
  margin: 0;
  color: #a8c1c8;
  font-size: 13px;
  line-height: 2.05;
}

.engineering-roadmap-visual {
  position: absolute;
  top: 174px;
  right: 54px;
  left: 54px;
  z-index: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(111, 211, 216, .28), rgba(242, 107, 43, .72), rgba(111, 211, 216, .28), transparent);
}

.engineering-roadmap-visual::before {
  position: absolute;
  inset: -4px 0;
  content: "";
  opacity: .72;
  background-image: radial-gradient(circle, rgba(164, 238, 238, .72) 1px, transparent 1.4px);
  background-position: right center;
  background-size: 20px 8px;
}

.engineering-roadmap-flow {
  position: absolute;
  top: -4px;
  right: 18%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f26b2b;
  box-shadow: 0 0 0 6px rgba(242, 107, 43, .12), 0 0 24px rgba(242, 107, 43, .72);
  animation: engineeringRoadmapRun 5.8s linear infinite;
}

.engineering-roadmap-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.engineering-roadmap-track::before {
  position: absolute;
  top: 42px;
  right: 3%;
  left: 3%;
  height: 1px;
  content: "";
  opacity: .62;
  background: linear-gradient(90deg, rgba(111, 211, 216, .08), rgba(111, 211, 216, .6), rgba(242, 107, 43, .46), rgba(111, 211, 216, .08));
  box-shadow: 0 224px 0 rgba(111, 211, 216, .22);
  pointer-events: none;
}

.engineering-roadmap-step {
  position: relative;
  display: flex;
  min-height: 208px;
  flex-direction: column;
  padding: 18px 16px 20px;
  border: 1px solid rgba(146, 223, 225, .16);
  border-radius: 18px;
  background: rgba(9, 33, 45, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.engineering-roadmap-step:hover {
  border-color: rgba(242, 107, 43, .58);
  background: rgba(13, 43, 55, .9);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .05);
  transform: translateY(-5px);
}

.engineering-roadmap-node {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  color: #eafcfc;
  border: 1px solid rgba(111, 211, 216, .58);
  border-radius: 14px;
  background: linear-gradient(145deg, #174553, #0a1d2b);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22), 0 0 0 5px rgba(111, 211, 216, .05);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.engineering-roadmap-step:nth-child(2n) .engineering-roadmap-node,
.engineering-roadmap-step:nth-child(5n) .engineering-roadmap-node {
  color: #fff3ed;
  border-color: rgba(242, 107, 43, .66);
  background: linear-gradient(145deg, #73351f, #281812);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22), 0 0 0 5px rgba(242, 107, 43, .07);
}

.engineering-roadmap-step > div {
  flex: 1;
}

.engineering-roadmap-step small {
  color: #73aeb4;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.engineering-roadmap-step h4 {
  margin: 12px 0 8px;
  color: #f4fbfc;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.engineering-roadmap-step p {
  margin: 0;
  color: #a3bdc4;
  font-size: 11px;
  line-height: 1.95;
}

@keyframes engineeringRoadmapRun {
  0% { transform: translateX(0); opacity: .2; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateX(-460%); opacity: .2; }
}

/* Final content-QC pass: stronger hierarchy and more consistent B2B surfaces. */
.source-data-dark .source-card-grid {
  align-items: stretch;
}

.source-data-dark .source-card {
  border-radius: 22px;
  border-color: rgba(146, 223, 225, .2);
  background: linear-gradient(150deg, rgba(22, 48, 64, .82), rgba(11, 29, 42, .72));
}

.source-data-dark .source-card:hover {
  border-color: rgba(242, 107, 43, .55);
  transform: translateY(-4px);
}

.source-company-section {
  background-image:
    linear-gradient(rgba(22, 67, 76, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 67, 76, .045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(239, 246, 247, .62));
  background-size: 42px 42px, 42px 42px, auto;
}

.source-company-section .source-company-copy > p {
  padding: 21px 22px;
  border: 1px solid rgba(22, 67, 76, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 30px rgba(26, 65, 73, .05);
}

.source-company-section .source-company-visual {
  gap: 18px;
  margin-top: 34px;
}

.source-company-section .source-company-visual > div {
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(26, 65, 73, .1);
}

.source-company-section .source-factory-panel {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(26, 65, 73, .08);
}

.source-company-section .source-factory-image {
  height: 290px;
  border-radius: 18px;
}

.contact-section {
  isolation: isolate;
}

.contact-copy {
  max-width: 560px;
}

.contact-card {
  padding: 16px;
  border-radius: 24px;
  border-color: rgba(157, 199, 215, .28);
  background: linear-gradient(150deg, rgba(25, 55, 72, .88), rgba(10, 28, 41, .82));
  box-shadow: 0 30px 78px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.contact-card-head {
  min-height: 56px;
  padding-inline: 14px;
}

.contact-production-addresses {
  margin-top: 16px;
  padding-top: 15px;
  border-top-color: rgba(157, 199, 215, .18);
}

.contact-form {
  margin-top: 16px;
  padding: 16px 12px 3px;
  border-top: 1px solid rgba(157, 199, 215, .16);
}

@media (max-width: 980px) {
  .engineering-roadmap-heading {
    grid-template-columns: 1fr;
  }

  .engineering-roadmap-visual {
    top: 190px;
    right: 40px;
    left: 40px;
  }

  .engineering-roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 66px;
  }

  .engineering-roadmap-track::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .engineering-roadmap {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .engineering-roadmap-heading h3 {
    font-size: 30px;
  }

  .engineering-roadmap-heading p {
    font-size: 12px;
  }

  .engineering-roadmap-visual {
    display: none;
  }

  .engineering-roadmap-track {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .engineering-roadmap-step {
    min-height: auto;
  }

  .source-company-section .source-company-copy > p {
    padding: 18px;
  }

  .source-company-section .source-factory-image {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .engineering-roadmap-flow {
    animation: none;
  }
}

/* Roadmap visual upgrade: live traces and an isometric controller board. */
.engineering-roadmap-visual {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  height: 156px;
  margin: 36px -18px 0;
  overflow: hidden;
  border: 1px solid rgba(111, 211, 216, .12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 52%, rgba(242, 107, 43, .11), transparent 20%),
    linear-gradient(180deg, rgba(3, 15, 25, .3), rgba(3, 15, 25, .76));
}

.engineering-roadmap-visual::before {
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(111, 211, 216, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 211, 216, .08) 1px, transparent 1px),
    radial-gradient(circle, rgba(164, 238, 238, .8) 1px, transparent 1.3px);
  background-size: 34px 34px, 34px 34px, 18px 18px;
}

.engineering-roadmap-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.roadmap-trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 10;
  animation: roadmapTraceFlow 8s linear infinite;
}

.roadmap-trace-soft {
  stroke: rgba(111, 211, 216, .38);
  stroke-width: 1.4;
}

.roadmap-trace-main {
  stroke: rgba(183, 243, 241, .7);
  stroke-width: 1.8;
  stroke-dasharray: 12 11;
  animation-duration: 6.2s;
}

.roadmap-trace-accent {
  stroke: rgba(242, 107, 43, .65);
  stroke-width: 1.5;
  stroke-dasharray: 4 13;
  animation-duration: 5.4s;
}

.roadmap-node {
  stroke-width: 2;
  animation: roadmapNodePulse 3.8s ease-in-out infinite;
}

.roadmap-node-cyan {
  fill: #9cf4ef;
  stroke: rgba(111, 211, 216, .46);
}

.roadmap-node-orange {
  fill: #f26b2b;
  stroke: rgba(242, 107, 43, .38);
  animation-delay: -1.2s;
}

.engineering-roadmap-board {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 176px;
  height: 94px;
  align-content: center;
  justify-items: center;
  transform: translate(-50%, -50%) perspective(600px) rotateX(12deg) rotateZ(-3deg);
  border: 1px solid rgba(156, 244, 239, .54);
  border-radius: 13px;
  background:
    linear-gradient(rgba(111, 211, 216, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 211, 216, .08) 1px, transparent 1px),
    linear-gradient(145deg, #164552, #071923 72%);
  background-size: 14px 14px, 14px 14px, auto;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .35), 0 0 0 6px rgba(111, 211, 216, .045), 0 0 32px rgba(111, 211, 216, .13);
  animation: roadmapBoardFloat 5.8s ease-in-out infinite;
}

.engineering-roadmap-board::before,
.engineering-roadmap-board::after {
  position: absolute;
  top: 20px;
  width: 24px;
  height: 52px;
  content: "";
  border-block: 1px solid rgba(242, 107, 43, .55);
}

.engineering-roadmap-board::before {
  right: -24px;
  border-right: 1px solid rgba(242, 107, 43, .55);
  border-radius: 0 8px 8px 0;
}

.engineering-roadmap-board::after {
  left: -24px;
  border-left: 1px solid rgba(242, 107, 43, .55);
  border-radius: 8px 0 0 8px;
}

.engineering-roadmap-board span {
  color: #b9f8f3;
  font: 900 10px/1 Arial, sans-serif;
  letter-spacing: .16em;
}

.engineering-roadmap-board strong {
  margin-top: 5px;
  color: #fff;
  font: 900 23px/1 Arial, sans-serif;
  letter-spacing: .08em;
}

.engineering-roadmap-board small {
  margin-top: 7px;
  color: #7daeb3;
  direction: ltr;
  font: 700 7px/1 Arial, sans-serif;
  letter-spacing: .08em;
}

.engineering-roadmap-board i {
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f26b2b;
  box-shadow: 0 0 0 4px rgba(242, 107, 43, .12), 0 0 14px rgba(242, 107, 43, .65);
  animation: roadmapLedBlink 2.4s ease-in-out infinite;
}

.engineering-roadmap-flow {
  top: auto;
  right: auto;
  bottom: 27px;
  left: 8%;
  z-index: 2;
  width: 8px;
  height: 8px;
  animation: roadmapSignalTraverse 6.5s linear infinite;
}

.engineering-roadmap-track {
  margin-top: 26px;
}

@keyframes roadmapTraceFlow {
  to { stroke-dashoffset: -180; }
}

@keyframes roadmapNodePulse {
  0%, 100% { opacity: .62; transform: scale(.84); transform-box: fill-box; transform-origin: center; }
  50% { opacity: 1; transform: scale(1.24); transform-box: fill-box; transform-origin: center; }
}

@keyframes roadmapBoardFloat {
  0%, 100% { transform: translate(-50%, -50%) perspective(600px) rotateX(12deg) rotateZ(-3deg); }
  50% { transform: translate(-50%, calc(-50% - 5px)) perspective(600px) rotateX(12deg) rotateZ(-1deg); }
}

@keyframes roadmapLedBlink {
  0%, 100% { opacity: .35; }
  48% { opacity: 1; }
  60% { opacity: .42; }
}

@keyframes roadmapSignalTraverse {
  0% { transform: translateX(0); opacity: .15; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(1080%); opacity: .15; }
}

@media (max-width: 620px) {
  .engineering-roadmap-visual {
    display: block;
    height: 112px;
    margin: 28px -7px 0;
  }

  .engineering-roadmap-board {
    width: 146px;
    height: 80px;
  }

  .engineering-roadmap-board strong {
    font-size: 19px;
  }

  .engineering-roadmap-board::before,
  .engineering-roadmap-board::after {
    top: 17px;
    height: 45px;
  }

  .engineering-roadmap-track {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-trace,
  .roadmap-node,
  .engineering-roadmap-board,
  .engineering-roadmap-board i,
  .engineering-roadmap-flow {
    animation: none;
  }
}

/* Calm cursor field: a smaller, lighter signal that follows the pointer smoothly. */
.hero-visual-hero .magnetic-field-anchor {
  width: min(23%, 220px);
  transform: translate(-50%, -50%) translate3d(calc(var(--mx) * -3px), calc(var(--my) * -2px), 210px) rotateZ(calc(var(--mx) * 1.5deg));
  transition: opacity .28s ease, transform .34s cubic-bezier(.16, 1, .3, 1);
  will-change: top, left, transform, opacity;
}

.hero-visual-hero .magnetic-field-halo {
  width: 32%;
  height: 54%;
  opacity: .34;
  filter: blur(8px);
  animation-duration: 6.4s;
}

.hero-visual-hero .magnetic-field-svg {
  opacity: .54;
  filter: drop-shadow(0 0 2px rgba(141, 224, 192, .2));
  transform: rotate(calc(var(--my) * -1.2deg)) scale(.98);
}

.hero-visual-hero .magnetic-field-line {
  stroke-width: .86;
  stroke-dasharray: 2 16;
  animation-duration: 7.2s;
}

.hero-visual-hero .magnetic-field-line-two {
  stroke-width: .68;
  animation-duration: 6.3s;
}

.hero-visual-hero .magnetic-needle-one {
  width: clamp(48px, 6vw, 84px);
  height: 5px;
  opacity: .58;
  transform: translate(-98%, -50%) rotate(calc(-12deg + var(--mx) * 2deg)) translate3d(calc(var(--mx) * -3px), calc(var(--my) * -2px), 16px);
}

.hero-visual-hero .magnetic-needle-one::before {
  top: 1px;
  right: 10px;
  left: 12px;
}

.hero-visual-hero .magnetic-needle-one i {
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 3px rgba(243, 108, 50, .08), 0 0 12px rgba(243, 108, 50, .56);
}

.hero-visual-hero .magnetic-field-node-one {
  width: 4px;
  height: 4px;
  box-shadow: 0 0 9px rgba(141, 224, 192, .6);
  transform: translate3d(calc(var(--mx) * -3px), calc(var(--my) * 2px), 24px);
}

.hero-visual-hero .magnetic-cursor-core {
  width: 20px;
  height: 20px;
  opacity: .68;
  box-shadow: 0 0 0 4px rgba(141, 224, 192, .035), 0 0 16px rgba(141, 224, 192, .2);
}

.hero-visual-hero .magnetic-cursor-core::before {
  top: 9px;
  left: -7px;
  width: 34px;
}

.hero-visual-hero .magnetic-cursor-core::after {
  top: -7px;
  left: 9px;
  height: 34px;
}

.hero-visual-hero .magnetic-cursor-core i {
  width: 4px;
  height: 4px;
  box-shadow: 0 0 0 3px rgba(243, 108, 50, .08), 0 0 12px rgba(243, 108, 50, .72);
}

@media (max-width: 650px) {
  .hero-visual-hero .magnetic-field-anchor {
    width: min(44%, 160px);
  }
}

/* Catalog-backed network marks: use the supplied resume artwork without text labels. */
.client-grid.client-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.client-grid.client-logo-grid span,
.client-grid.client-logo-grid span:nth-child(odd),
.client-grid.client-logo-grid span:nth-last-child(-n+4) {
  display: grid;
  min-height: 72px;
  padding: 5px;
  place-items: center;
  border: 1px solid #e1eaec;
  border-radius: 11px;
  background: #fbfdfd;
}

.client-grid.client-logo-grid span::before,
.client-grid.client-logo-grid b {
  display: none;
}

.client-grid.client-logo-grid img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: contain;
  filter: none;
}

.client-grid.client-logo-grid span:hover {
  border-color: rgba(243, 108, 50, .34);
  background: #fffaf7;
}

/* Resume viewer: a lightweight book-like page turn, without a heavy PDF viewer. */
.resume-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: center;
  margin-top: 52px;
  padding: 31px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(141, 224, 192, .2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 108, 50, .2), transparent 27%),
    linear-gradient(135deg, #081824, #0b2a35 62%, #102f3b);
  box-shadow: 0 28px 68px rgba(7, 28, 40, .18);
}

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

.resume-showcase::before {
  top: -120px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(141, 224, 192, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(141, 224, 192, .025), 0 0 0 48px rgba(243, 108, 50, .02);
}

.resume-showcase::after {
  right: 7%;
  bottom: 24px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 224, 192, .35), transparent);
}

.resume-showcase-copy,
.resume-flipbook {
  position: relative;
  z-index: 1;
}

.resume-showcase-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resume-showcase-copy .eyebrow {
  color: #ffb18b;
  font-size: 9px;
  letter-spacing: 1.2px;
}

.resume-showcase-copy h3 {
  margin: 19px 0 14px;
  color: #f7fcfb;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.48;
}

.resume-showcase-copy h3 em {
  color: #ff9b6a;
  font-style: normal;
}

.resume-showcase-copy p {
  max-width: 330px;
  margin: 0;
  color: #aec7ce;
  font-size: 12px;
  line-height: 2.15;
}

.resume-showcase-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.resume-showcase-actions .button {
  min-height: 48px;
}

.resume-counter {
  color: #8de0c0;
  direction: rtl;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .5px;
}

.resume-flipbook {
  min-width: 0;
}

.resume-page-viewer {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.resume-page-stack {
  position: absolute;
  inset: 2.5% 1.5% 1% 2.5%;
  z-index: 0;
  border: 1px solid rgba(141, 224, 192, .18);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .9), rgba(223, 232, 229, .86));
  box-shadow: 3px 3px 0 rgba(219, 229, 226, .9), 6px 6px 0 rgba(151, 170, 166, .35), 18px 24px 42px rgba(0, 0, 0, .2);
  transform: rotateZ(1.2deg) translateZ(-14px);
}

.resume-page-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  border: 1px solid rgba(141, 224, 192, .3);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 25px 42px rgba(0, 0, 0, .28), 0 0 0 8px rgba(141, 224, 192, .035);
}

.resume-page-spine {
  position: absolute;
  inset: 3px auto 3px 0;
  z-index: 2;
  width: 9px;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(90deg, rgba(4, 22, 30, .28), rgba(255, 255, 255, .75), transparent);
  box-shadow: 3px 0 5px rgba(6, 25, 32, .13);
  pointer-events: none;
}

.resume-page-turn {
  position: absolute;
  inset: 0;
  z-index: 4;
  visibility: hidden;
  transform-origin: right center;
  transform-style: preserve-3d;
  pointer-events: none;
}

.resume-page-turn.is-turning {
  visibility: visible;
  animation: resume-real-page-turn-next .82s cubic-bezier(.2, .68, .18, 1) forwards;
}

.resume-flipbook[data-resume-direction="prev"] .resume-page-turn {
  transform-origin: left center;
}

.resume-flipbook[data-resume-direction="prev"] .resume-page-turn.is-turning {
  animation-name: resume-real-page-turn-prev;
}

.resume-page-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(141, 224, 192, .34);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 25px 42px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(8, 24, 36, .04);
  backface-visibility: hidden;
  pointer-events: none;
}

.resume-page-face::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .04), transparent 36%, rgba(5, 24, 32, .13));
  opacity: 0;
  transition: opacity .1s linear;
}

.resume-page-turn.is-turning .resume-page-face::after {
  opacity: .9;
}

.resume-page-face-front {
  transform: rotateY(0deg);
}

.resume-page-face-back {
  transform: rotateY(180deg);
}

.resume-page-face img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.resume-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.resume-control {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  cursor: pointer;
  color: #eafff8;
  border: 1px solid rgba(141, 224, 192, .34);
  border-radius: 50%;
  background: rgba(141, 224, 192, .08);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.resume-control:hover {
  border-color: #ff9b6a;
  background: rgba(243, 108, 50, .2);
  transform: translateY(-2px);
}

.resume-control:disabled {
  cursor: wait;
  opacity: .42;
  pointer-events: none;
}

.resume-dots {
  display: flex;
  max-width: 325px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.resume-dot {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  cursor: pointer;
  color: #9ebcc2;
  border: 1px solid rgba(141, 224, 192, .18);
  border-radius: 7px;
  background: rgba(2, 17, 26, .28);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 8px;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.resume-dot:hover,
.resume-dot.is-active {
  color: #fff;
  border-color: rgba(243, 108, 50, .72);
  background: rgba(243, 108, 50, .24);
  transform: translateY(-1px);
}

@keyframes resume-real-page-turn-next {
  0% { transform: rotateY(0deg) translateZ(0); }
  14% { transform: rotateY(-12deg) translateZ(5px); }
  52% { transform: rotateY(-112deg) translateZ(14px); }
  78% { transform: rotateY(-164deg) translateZ(7px); }
  100% { transform: rotateY(-180deg) translateZ(0); }
}

@keyframes resume-real-page-turn-prev {
  0% { transform: rotateY(0deg) translateZ(0); }
  14% { transform: rotateY(12deg) translateZ(5px); }
  52% { transform: rotateY(112deg) translateZ(14px); }
  78% { transform: rotateY(164deg) translateZ(7px); }
  100% { transform: rotateY(180deg) translateZ(0); }
}

@media (max-width: 860px) {
  .resume-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .resume-showcase-copy {
    max-width: 620px;
  }

  .resume-page-viewer {
    width: min(100%, 500px);
  }
}

@media (max-width: 560px) {
  .client-grid.client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-grid.client-logo-grid span,
  .client-grid.client-logo-grid span:nth-child(odd),
  .client-grid.client-logo-grid span:nth-last-child(-n+4) {
    min-height: 61px;
  }

  .client-grid.client-logo-grid img {
    height: 49px;
  }

  .resume-showcase {
    gap: 22px;
    margin-top: 36px;
    padding: 20px 15px;
    border-radius: 20px;
  }

  .resume-showcase-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .resume-dots {
    max-width: 245px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .resume-page-turn.is-turning {
    animation: none;
  }
}

/* Home route cards: match the warm signal treatment used by order tracking. */
.home-route-card,
.home-route-card.tracking-route-card {
  border-color: rgba(243, 108, 50, .34);
  background: linear-gradient(145deg, #fffaf7, #fff 78%);
  box-shadow: 0 15px 35px rgba(243, 108, 50, .08);
}

.home-route-card::after,
.home-route-card.tracking-route-card::after {
  border-color: rgba(243, 108, 50, .2);
}

.home-route-card:hover,
.home-route-card.tracking-route-card:hover {
  border-color: rgba(243, 108, 50, .62);
  background: linear-gradient(145deg, #fff4ed, #fff 82%);
  box-shadow: 0 25px 50px rgba(243, 108, 50, .14);
}

/* English presentation: keep the same content architecture while making the reading flow native to LTR. */
html[lang="en"] {
  direction: ltr;
}

body.is-english {
  direction: ltr;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-variant-numeric: tabular-nums lining-nums;
}

body.is-english .site-shell,
body.is-english .announcement,
body.is-english .site-header,
body.is-english .page-switcher,
body.is-english main,
body.is-english .site-footer {
  direction: ltr;
}

body.is-english .announcement-inner,
body.is-english .header-inner,
body.is-english .desktop-nav,
body.is-english .header-actions,
body.is-english .page-switcher-inner,
body.is-english .page-switcher-links,
body.is-english .footer-top,
body.is-english .footer-links {
  direction: ltr;
}

body.is-english .announcement-inner a {
  margin-right: 0;
  margin-left: 18px;
}

body.is-english .nav-link::after {
  right: auto;
  left: 0;
}

body.is-english .hero-copy,
body.is-english .section-heading,
body.is-english .service-copy,
body.is-english .commerce-copy,
body.is-english .proof-copy,
body.is-english .warranty-copy,
body.is-english .contact-copy,
body.is-english .page-intro,
body.is-english .source-data-section,
body.is-english .source-data-heading,
body.is-english .source-card,
body.is-english .source-long-card,
body.is-english .source-list-panel,
body.is-english .source-factory-panel,
body.is-english .source-faq-block,
body.is-english .import-form-panel,
body.is-english .faq-section,
body.is-english .home-route-overview,
body.is-english .home-route-card,
body.is-english .resume-showcase,
body.is-english .resume-showcase-copy,
body.is-english .bom-intake,
body.is-english .bom-intake-panel,
body.is-english .bom-form,
body.is-english .bom-roadmap,
body.is-english .bom-roadmap-copy {
  direction: ltr;
  text-align: left;
}

body.is-english .eyebrow,
body.is-english .source-form label,
body.is-english .contact-form label,
body.is-english .bom-field,
body.is-english .bom-dropzone,
body.is-english .bom-form-footer,
body.is-english .source-panel-heading,
body.is-english .contact-card-head,
body.is-english .contact-line {
  direction: ltr;
  text-align: left;
}

body.is-english .hero-copy h1,
body.is-english .section-heading h2,
body.is-english .service-copy h2,
body.is-english .commerce-copy h2,
body.is-english .proof-copy h2,
body.is-english .warranty-copy h2,
body.is-english .contact-copy h2,
body.is-english .page-intro h1,
body.is-english .source-data-heading h2,
body.is-english .source-card h3,
body.is-english .source-long-card h3,
body.is-english .source-faq-block > h3,
body.is-english .import-form-panel h3,
body.is-english .faq-section h2 {
  letter-spacing: -.35px;
}

body.is-english .source-bullet-list {
  padding-right: 0;
  padding-left: 18px;
}

body.is-english .text-link:hover span,
body.is-english .button:hover span,
body.is-english .announcement-inner a:hover span {
  transform: translateX(3px);
}

body.is-english .header-phone,
body.is-english .resume-counter,
body.is-english .resume-dot,
body.is-english .source-card-index,
body.is-english .source-counter-grid strong,
body.is-english .source-process-grid > div > span,
body.is-english .bom-roadmap-node span,
body.is-english .project-code,
body.is-english .project-slider-status,
body.is-english .three-brand-lockup,
body.is-english .three-hud,
body.is-english .three-route-tag,
body.is-english .three-board-caption {
  direction: ltr;
}

body.is-english .bom-file-meta {
  text-align: right;
}

body.is-english .bom-roadmap-link,
body.is-english .source-form .button,
body.is-english .contact-form .button {
  direction: ltr;
}

body.is-english .mobile-nav {
  direction: ltr;
  text-align: left;
}

body.is-english .site-footer .footer-bottom {
  direction: ltr;
  text-align: left;
}

@media (max-width: 860px) {
  body.is-english .source-data-heading,
  body.is-english .section-heading,
  body.is-english .import-form-panel,
  body.is-english .contact-copy,
  body.is-english .commerce-copy,
  body.is-english .proof-copy,
  body.is-english .warranty-copy {
    text-align: left;
  }
}

/* About page readability and catalogue controls. */
body[data-page-view="about"] .client-grid.client-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

body[data-page-view="about"] .client-grid.client-logo-grid span,
body[data-page-view="about"] .client-grid.client-logo-grid span:nth-child(odd),
body[data-page-view="about"] .client-grid.client-logo-grid span:nth-last-child(-n+4) {
  grid-template-columns: minmax(0, 1fr);
  min-height: 124px;
  padding: 10px;
  overflow: hidden;
  place-items: center;
  border-radius: 14px;
}

body[data-page-view="about"] .client-grid.client-logo-grid img {
  width: 100%;
  max-width: 190px;
  height: 112px;
  margin: auto;
  object-fit: contain;
  transform: scale(2.22);
  transform-origin: center;
}

body[data-page-view="about"] .client-proof-head {
  font-size: 15px;
}

body[data-page-view="about"] .client-proof-head span:last-child {
  font-size: 11px;
}

body[data-page-view="about"] .client-proof-note {
  font-size: 12px;
}

body[data-page-view="about"] .proof-copy > p,
body[data-page-view="about"] .source-company-section .source-company-copy > p,
body[data-page-view="about"] .source-company-section .source-factory-panel p,
body[data-page-view="about"] .source-data-heading > p {
  font-size: 16px;
  line-height: 2.1;
}

body[data-page-view="about"] .proof-stats strong {
  font-size: 25px;
}

body[data-page-view="about"] .proof-stats span,
body[data-page-view="about"] .source-company-visual span {
  font-size: 13px;
}

body[data-page-view="about"] .source-badge-row-muted span {
  font-size: 14px;
}

body[data-page-view="about"] .source-bullet-list {
  font-size: 15px;
  line-height: 2.1;
}

body[data-page-view="about"] .certificate-showcase-heading .eyebrow {
  font-size: 12px;
}

body[data-page-view="about"] .certificate-showcase-heading p {
  font-size: 16px;
  line-height: 2.05;
}

body[data-page-view="about"] .certificate-card strong {
  font-size: 16px;
}

body[data-page-view="about"] .certificate-card small {
  font-size: 13px;
}

body[data-page-view="about"] .certificate-card b {
  font-size: 11px;
}

body[data-page-view="about"] .faq-item summary {
  font-size: 16px;
}

body[data-page-view="about"] .faq-item p {
  font-size: 15px;
  line-height: 2.05;
}

body[data-page-view="about"] .resume-showcase-copy .eyebrow {
  font-size: 12px;
}

body[data-page-view="about"] .resume-showcase-copy p {
  font-size: 16px;
}

body[data-page-view="about"] .resume-counter {
  font-size: 13px;
}

body[data-page-view="about"] .resume-viewer-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
  direction: ltr;
}

body[data-page-view="about"] .resume-viewer-row > .resume-control {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  font-size: 25px;
}

body[data-page-view="about"] .resume-page-viewer {
  width: min(100%, 560px);
}

body[data-page-view="about"] .resume-controls {
  margin-top: 15px;
}

body[data-page-view="about"] .resume-controls .resume-dots {
  margin-inline: auto;
}

body[data-page-view="about"] .resume-dot {
  width: 29px;
  height: 29px;
  font-size: 11px;
}

body[data-page-view="about"] .resume-page-turn.is-turning {
  animation-duration: .86s;
}

@media (max-width: 860px) {
  body[data-page-view="about"] .client-grid.client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body[data-page-view="about"] .client-grid.client-logo-grid span,
  body[data-page-view="about"] .client-grid.client-logo-grid span:nth-child(odd),
  body[data-page-view="about"] .client-grid.client-logo-grid span:nth-last-child(-n+4) {
    grid-template-columns: minmax(0, 1fr);
    min-height: 108px;
  }

  body[data-page-view="about"] .client-grid.client-logo-grid img {
    height: 96px;
  }
}

@media (max-width: 560px) {
  body[data-page-view="about"] .client-grid.client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  body[data-page-view="about"] .client-grid.client-logo-grid span,
  body[data-page-view="about"] .client-grid.client-logo-grid span:nth-child(odd),
  body[data-page-view="about"] .client-grid.client-logo-grid span:nth-last-child(-n+4) {
    grid-template-columns: minmax(0, 1fr);
    min-height: 118px;
    padding: 6px;
  }

  body[data-page-view="about"] .client-grid.client-logo-grid img {
    height: 96px;
    transform: scale(1.9);
  }

  body[data-page-view="about"] .resume-viewer-row {
    grid-template-columns: 35px minmax(0, 1fr) 35px;
    gap: 7px;
  }

  body[data-page-view="about"] .resume-viewer-row > .resume-control {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    font-size: 21px;
  }

  body[data-page-view="about"] .resume-dot {
    width: 27px;
    height: 27px;
    font-size: 10px;
  }
}

/* About page: place the official factory and certificate artwork in one compact row. */
body[data-page-view="about"] .source-company-feature-row {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
  direction: rtl;
}

body[data-page-view="about"] .source-company-feature-row > * {
  min-width: 0;
  margin: 0;
  direction: rtl;
}

body[data-page-view="about"] .source-factory-panel-compact {
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(141, 224, 192, .2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 13% 10%, rgba(141, 224, 192, .12), transparent 31%),
    linear-gradient(140deg, #081824, #0c2b36 66%, #102f3b);
  box-shadow: 0 24px 65px rgba(7, 28, 40, .16);
}

body[data-page-view="about"] .source-factory-panel-compact .source-panel-heading {
  margin-bottom: 16px;
  color: #f7fcfb;
}

body[data-page-view="about"] .source-factory-panel-compact .source-panel-heading > span:last-child {
  color: #9fc0c8;
  font-size: 11px;
}

body[data-page-view="about"] .source-factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-page-view="about"] .source-factory-gallery figure {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(157, 199, 215, .22);
  border-radius: 16px;
  background: #07131d;
}

body[data-page-view="about"] .source-factory-gallery figure:nth-child(3) {
  grid-column: 1 / -1;
}

body[data-page-view="about"] .source-factory-gallery figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 13, 21, .68));
}

body[data-page-view="about"] .source-factory-gallery img {
  flex: 1 1 auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04);
  transition: transform .45s ease, filter .45s ease;
}

body[data-page-view="about"] .source-factory-gallery figure:nth-child(3) img {
  aspect-ratio: 2.35;
}

body[data-page-view="about"] .source-factory-gallery figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.06);
}

body[data-page-view="about"] .source-factory-gallery figcaption {
  position: absolute;
  right: 11px;
  bottom: 10px;
  left: 11px;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

body[data-page-view="about"] .source-factory-gallery figure::after {
  display: none;
}

body[data-page-view="about"] .source-factory-gallery figcaption {
  position: static;
  flex: 0 0 auto;
  padding: 8px 9px 9px;
  color: #eaf7f5;
  background: rgba(5, 19, 28, .96);
  text-align: center;
  white-space: nowrap;
}

body[data-page-view="about"] .source-factory-panel-compact > p {
  margin: 16px 0 0;
  padding-top: 14px;
  color: #b9d0d5;
  border-top: 1px solid rgba(157, 199, 215, .16);
  font-size: 14px;
  line-height: 1.95;
}

body[data-page-view="about"] .certificate-showcase-compact {
  display: grid;
  grid-template-columns: minmax(172px, .72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "heading visual"
    "list visual";
  gap: 18px;
  align-items: start;
  margin-top: 0;
  padding: 24px;
  overflow: hidden;
}

body[data-page-view="about"] .certificate-showcase-compact .certificate-showcase-heading {
  grid-area: heading;
  justify-content: flex-start;
}

body[data-page-view="about"] .certificate-showcase-compact .certificate-showcase-heading h3 {
  margin: 14px 0 10px;
  font-size: clamp(24px, 3vw, 35px);
  line-height: 1.38;
}

body[data-page-view="about"] .certificate-showcase-compact .certificate-showcase-heading p {
  max-width: 245px;
  font-size: 13px;
  line-height: 1.9;
}

body[data-page-view="about"] .certificate-slider {
  grid-area: visual;
  min-width: 0;
}

body[data-page-view="about"] .certificate-slider:focus-visible {
  outline: 2px solid rgba(243, 108, 50, .78);
  outline-offset: 5px;
}

body[data-page-view="about"] .certificate-slider-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.08;
  border: 1px solid rgba(157, 199, 215, .26);
  border-radius: 19px;
  background:
    radial-gradient(circle at 16% 12%, rgba(141, 224, 192, .12), transparent 32%),
    linear-gradient(145deg, #e9eff0, #f9fbfa 64%, #dae6e5);
  box-shadow: 0 18px 36px rgba(3, 13, 21, .2), inset 0 0 0 1px rgba(255, 255, 255, .55);
}

body[data-page-view="about"] .certificate-slider-track {
  display: flex;
  height: 100%;
  direction: ltr;
  transition: transform .68s cubic-bezier(.22, .78, .18, 1);
  will-change: transform;
}

body[data-page-view="about"] .certificate-slider-slide {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #eef2f2;
}

body[data-page-view="about"] .certificate-slider-slide::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(38, 73, 83, .12);
  border-radius: 11px;
  pointer-events: none;
}

body[data-page-view="about"] .certificate-slider-slide::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 82px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 13, 21, .82));
  pointer-events: none;
}

body[data-page-view="about"] .certificate-slider-slide img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px 24px 45px;
  object-fit: contain;
  filter: saturate(.94) contrast(1.03);
  transition: transform .5s ease, filter .5s ease;
}

body[data-page-view="about"] .certificate-slider-slide.is-active img {
  transform: scale(1.015);
  filter: saturate(1.02) contrast(1.05);
}

body[data-page-view="about"] .certificate-slider-slide figcaption {
  position: absolute;
  right: 20px;
  bottom: 13px;
  left: 20px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

body[data-page-view="about"] .certificate-slider-controls {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  direction: ltr;
}

body[data-page-view="about"] .certificate-slider-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  cursor: pointer;
  color: #eafff8;
  border: 1px solid rgba(141, 224, 192, .4);
  border-radius: 50%;
  background: rgba(141, 224, 192, .1);
  font-family: Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

body[data-page-view="about"] .certificate-slider-control:hover {
  border-color: rgba(243, 108, 50, .75);
  background: rgba(243, 108, 50, .23);
  transform: translateY(-2px);
}

body[data-page-view="about"] .certificate-slider-status {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

body[data-page-view="about"] .certificate-slider-counter {
  color: #b8d4d5;
  direction: rtl;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

body[data-page-view="about"] .certificate-slider-dots {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  direction: ltr;
}

body[data-page-view="about"] .certificate-slider-dot {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  cursor: pointer;
  color: #9ebcc2;
  border: 1px solid rgba(141, 224, 192, .2);
  border-radius: 8px;
  background: rgba(2, 17, 26, .28);
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

body[data-page-view="about"] .certificate-slider-dot:hover,
body[data-page-view="about"] .certificate-slider-dot.is-active {
  color: #fff;
  border-color: rgba(243, 108, 50, .76);
  background: rgba(243, 108, 50, .26);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-view="about"] .certificate-slider-track,
  body[data-page-view="about"] .certificate-slider-slide img {
    transition: none;
  }
}

body[data-page-view="about"] .certificate-membership-list {
  display: grid;
  grid-area: list;
  gap: 7px;
  margin: 0;
  padding: 0 17px 0 0;
  color: #b7cdd3;
  font-size: 12px;
  line-height: 1.8;
}

body[data-page-view="about"] .certificate-membership-list li::marker {
  color: #ff9b6a;
}

body[data-page-view="about"] .source-achievements-panel {
  margin-top: 18px;
}

body[data-page-view="about"] .source-achievements-panel .source-bullet-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
}

body.is-english .source-company-feature-row,
body.is-english .source-company-feature-row > * {
  direction: ltr;
  text-align: left;
}

body.is-english .certificate-showcase-compact {
  grid-template-areas:
    "visual heading"
    "visual list";
}

@media (max-width: 860px) {
  body[data-page-view="about"] .source-company-feature-row {
    grid-template-columns: 1fr;
  }

  body[data-page-view="about"] .source-achievements-panel .source-bullet-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body[data-page-view="about"] .source-factory-panel-compact,
  body[data-page-view="about"] .certificate-showcase-compact {
    padding: 19px 16px;
    border-radius: 21px;
  }

  body[data-page-view="about"] .source-factory-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-view="about"] .certificate-showcase-compact {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "list";
    gap: 15px;
  }

  body[data-page-view="about"] .certificate-showcase-compact .certificate-showcase-heading p {
    max-width: none;
  }

  body[data-page-view="about"] .certificate-membership-list {
    font-size: 13px;
  }

  body[data-page-view="about"] .source-achievements-panel .source-bullet-list {
    grid-template-columns: 1fr;
  }
}

/* Footer: one polished LinkedIn touchpoint instead of a noisy social row. */
.footer-network-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 218px;
  min-height: 66px;
  padding: 10px 14px;
  overflow: hidden;
  isolation: isolate;
  color: #eaf7fb;
  border: 1px solid rgba(111, 196, 228, .34);
  border-radius: 17px;
  background: #0a1c2a;
  box-shadow: 0 14px 32px rgba(2, 12, 20, .22);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.footer-network-card::before {
  position: absolute;
  inset: -150%;
  z-index: -2;
  content: "";
  background: conic-gradient(from 18deg, transparent 0 69%, rgba(111, 196, 228, .05) 74%, rgba(141, 224, 192, .72) 78%, rgba(243, 108, 50, .5) 81%, transparent 87% 100%);
  animation: footer-network-orbit 8s linear infinite;
}

.footer-network-card::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  border-radius: 16px;
  background:
    linear-gradient(118deg, rgba(141, 224, 192, .08), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(243, 108, 50, .17), transparent 38%),
    #0a1c2a;
}

.footer-network-card:hover {
  transform: translateY(-3px);
  border-color: rgba(141, 224, 192, .72);
  box-shadow: 0 18px 38px rgba(2, 12, 20, .3), 0 0 0 4px rgba(141, 224, 192, .06);
}

.footer-network-icon {
  position: relative;
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: #0a66c2;
  box-shadow: 0 8px 20px rgba(10, 102, 194, .3);
}

.footer-network-icon b {
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -1.4px;
  line-height: 1;
}

.footer-network-icon i {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8de0c0;
  box-shadow: 0 0 0 4px rgba(141, 224, 192, .16), 0 0 13px rgba(141, 224, 192, .9);
  animation: footer-network-pulse 2.6s ease-in-out infinite;
}

.footer-network-copy {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.footer-network-copy small {
  color: #8eb8c4;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-network-copy strong {
  color: #f3fbfc;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.footer-network-arrow {
  position: relative;
  margin-right: auto;
  color: #ffae83;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  transition: transform .25s ease, color .25s ease;
}

.footer-network-card:hover .footer-network-arrow {
  color: #8de0c0;
  transform: translate(-2px, -2px);
}

body.is-english .footer-network-card {
  direction: ltr;
}

body.is-english .footer-network-arrow {
  margin-right: 0;
  margin-left: auto;
}

@keyframes footer-network-orbit {
  to { transform: rotate(360deg); }
}

@keyframes footer-network-pulse {
  0%, 100% { opacity: .72; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@media (max-width: 860px) {
  .footer-network-card {
    min-width: min(100%, 218px);
  }
}

@media (max-width: 650px) {
  .footer-network-card {
    align-self: stretch;
    width: min(100%, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-network-card::before,
  .footer-network-icon i {
    animation: none;
  }
}

/* High-priority PeakMeter warranty action in the site chrome. */
.button-warranty-registration {
  gap: 8px;
  min-width: 174px;
  color: #fff !important;
  border-color: rgba(255, 177, 137, .35) !important;
  background: linear-gradient(135deg, #fb7a3d 0%, #df5726 100%) !important;
  box-shadow: 0 9px 22px rgba(224, 86, 37, .26);
  white-space: nowrap;
}

.button-warranty-registration:hover {
  border-color: rgba(255, 231, 218, .8) !important;
  background: linear-gradient(135deg, #ff8952 0%, #d94d1e 100%) !important;
  box-shadow: 0 13px 28px rgba(224, 86, 37, .36);
}

.warranty-link-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  color: #f26b2e;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 7px;
  background: #fff5ef;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}

.warranty-link-icon svg {
  display: block;
  width: 15px;
  height: 15px;
  overflow: visible;
}

.warranty-link-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-warranty-registration:hover .warranty-link-icon {
  color: #e6531f;
  transform: scale(1.06) rotate(-4deg);
}

.mobile-nav-warranty {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
  padding-inline: 12px !important;
  color: #fff !important;
  border: 1px solid rgba(255, 167, 124, .28) !important;
  border-radius: 9px;
  background: linear-gradient(135deg, #fb7a3d, #df5726);
  font-weight: 800;
}

.mobile-nav-warranty .warranty-link-icon {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

body.is-english .button-warranty-registration,
body.is-english .mobile-nav-warranty {
  direction: ltr;
}

.button-order-tracking {
  gap: 7px;
  min-width: 116px;
  color: #ffc3aa !important;
  border-color: rgba(255, 162, 124, .42) !important;
  background: rgba(255, 111, 55, .08) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
  white-space: nowrap;
}

.button-order-tracking:hover {
  color: #fff !important;
  border-color: rgba(255, 151, 108, .9) !important;
  background: linear-gradient(135deg, #ef7139, #c94c22) !important;
  box-shadow: 0 10px 23px rgba(201, 76, 34, .24);
}

.order-tracking-icon {
  display: inline-grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 7px;
  background: rgba(255, 237, 228, .08);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.order-tracking-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  overflow: visible;
}

.order-tracking-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-order-tracking:hover .order-tracking-icon {
  transform: translateX(-1px) rotate(-4deg);
  background: rgba(255, 255, 255, .12);
}

.mobile-nav-order-tracking {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 7px;
  padding-inline: 12px !important;
  color: #ffc3aa !important;
  border: 1px solid rgba(255, 162, 124, .32) !important;
  border-radius: 9px;
  background: rgba(255, 111, 55, .08);
  font-weight: 800;
}

.mobile-nav-order-tracking .order-tracking-icon {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

body.is-english .button-order-tracking,
body.is-english .mobile-nav-order-tracking {
  direction: ltr;
}

/* Keep LinkedIn as a compact, icon-only footer action. */
.footer-network-card {
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.footer-network-card .footer-network-copy,
.footer-network-card .footer-network-arrow {
  display: none;
}

/* The home tracking route keeps one clear promise and no supporting copy. */
.home-route-card.tracking-route-card-simple {
  justify-content: center;
  min-height: 196px;
}

.home-route-card.tracking-route-card-simple strong {
  max-width: 190px;
  margin-top: 0;
  line-height: 1.8;
}

@media (max-width: 860px) {
  .footer-network-card {
    width: 58px;
    min-width: 58px;
  }
}

@media (max-width: 650px) {
  .footer-network-card {
    align-self: auto;
    width: 58px;
  }
}

@media (min-width: 861px) and (max-width: 1280px) {
  .header-inner {
    gap: 16px;
  }

  .desktop-nav {
    gap: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .button-header {
    padding-inline: 9px;
    font-size: 9px;
  }

  .button-warranty-registration {
    min-width: 160px;
    gap: 6px;
  }

  .button-order-tracking {
    min-width: 100px;
    gap: 5px;
  }

  .warranty-link-icon,
  .order-tracking-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

/* About page refinement: compact partner marks, shorter credential copy, and a photo-only factory album. */
body[data-page-view="about"] .client-grid.client-logo-grid {
  gap: 10px;
}

body[data-page-view="about"] .client-grid.client-logo-grid span,
body[data-page-view="about"] .client-grid.client-logo-grid span:nth-child(odd),
body[data-page-view="about"] .client-grid.client-logo-grid span:nth-last-child(-n+4) {
  min-height: 86px;
  padding: 6px;
  border-radius: 12px;
}

body[data-page-view="about"] .client-grid.client-logo-grid img {
  width: 88%;
  max-width: 138px;
  height: 66px;
  transform: none;
}

body[data-page-view="about"] .source-company-feature-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body[data-page-view="about"] .source-factory-panel-compact {
  display: block;
  padding: 16px;
}

body[data-page-view="about"] .factory-album {
  min-width: 0;
}

body[data-page-view="about"] .factory-album-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.26;
  border: 1px solid rgba(157, 199, 215, .3);
  border-radius: 19px;
  background: #07131d;
  box-shadow: 0 18px 36px rgba(3, 13, 21, .22), inset 0 0 0 1px rgba(255, 255, 255, .05);
  touch-action: pan-y;
}

body[data-page-view="about"] .factory-album-track {
  display: flex;
  width: 100%;
  height: 100%;
  direction: ltr;
  transition: transform .78s cubic-bezier(.22, .78, .18, 1);
  will-change: transform;
}

body[data-page-view="about"] .factory-album-slide {
  position: relative;
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #07131d;
}

body[data-page-view="about"] .factory-album-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 18, 28, .04), transparent 52%, rgba(4, 18, 28, .28));
}

body[data-page-view="about"] .factory-album-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.03);
  transition: transform .7s ease, filter .7s ease;
}

body[data-page-view="about"] .factory-album-slide.is-active img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.015);
}

body[data-page-view="about"] .factory-album-controls {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  direction: ltr;
}

body[data-page-view="about"] .factory-album-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  cursor: pointer;
  color: #eafff8;
  border: 1px solid rgba(141, 224, 192, .4);
  border-radius: 50%;
  background: rgba(141, 224, 192, .1);
  font-family: Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

body[data-page-view="about"] .factory-album-control:hover {
  border-color: rgba(243, 108, 50, .75);
  background: rgba(243, 108, 50, .23);
  transform: translateY(-2px);
}

body[data-page-view="about"] .factory-album-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  direction: ltr;
}

body[data-page-view="about"] .factory-album-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(141, 224, 192, .48);
  border-radius: 50%;
  background: rgba(141, 224, 192, .2);
  transition: width .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

body[data-page-view="about"] .factory-album-dot:hover,
body[data-page-view="about"] .factory-album-dot.is-active {
  width: 24px;
  border-color: rgba(243, 108, 50, .9);
  border-radius: 6px;
  background: #f36c32;
  transform: translateY(-1px);
}

body[data-page-view="about"] .certificate-showcase-compact {
  grid-template-columns: minmax(150px, .58fr) minmax(0, 1.42fr);
  grid-template-areas: "heading visual";
  align-items: center;
}

body[data-page-view="about"] .certificate-showcase-compact .certificate-showcase-heading p,
body[data-page-view="about"] .certificate-showcase-compact .certificate-membership-list {
  display: none;
}

body[data-page-view="about"] .certificate-showcase-compact .certificate-showcase-heading h3 {
  margin-bottom: 0;
}

body[data-page-view="about"] .certificate-slider-viewport {
  aspect-ratio: 1.28;
}

body[data-page-view="about"] .certificate-slider-slide::after,
body[data-page-view="about"] .certificate-slider-slide figcaption {
  display: none;
}

body[data-page-view="about"] .certificate-slider-slide img {
  padding: 14px 20px;
}

/* A slower hinge and a delayed base-page swap make the catalogue reveal the next sheet instead of popping it underneath. */
body[data-page-view="about"] .resume-page-turn {
  will-change: transform;
  backface-visibility: hidden;
}

body[data-page-view="about"] .resume-page-turn.is-turning {
  animation-duration: 1.04s;
  animation-timing-function: cubic-bezier(.18, .72, .18, 1);
  animation-name: resume-real-page-turn-next-v2;
}

body[data-page-view="about"] .resume-flipbook[data-resume-direction="prev"] .resume-page-turn.is-turning {
  animation-name: resume-real-page-turn-prev-v2;
}

body[data-page-view="about"] .resume-page-face-front::after {
  background: linear-gradient(90deg, rgba(4, 22, 30, .2), transparent 34%, rgba(4, 22, 30, .18));
}

body[data-page-view="about"] .resume-page-face-back::after {
  background: linear-gradient(270deg, rgba(4, 22, 30, .2), transparent 34%, rgba(4, 22, 30, .18));
}

@keyframes resume-real-page-turn-next-v2 {
  0% { transform: rotateY(0deg) translateZ(0) rotateZ(0deg); }
  12% { transform: rotateY(-12deg) translateZ(5px) rotateZ(-.25deg); }
  42% { transform: rotateY(-84deg) translateZ(25px) rotateZ(-.65deg); }
  70% { transform: rotateY(-146deg) translateZ(17px) rotateZ(.25deg); }
  100% { transform: rotateY(-180deg) translateZ(0) rotateZ(0deg); }
}

@keyframes resume-real-page-turn-prev-v2 {
  0% { transform: rotateY(0deg) translateZ(0) rotateZ(0deg); }
  12% { transform: rotateY(12deg) translateZ(5px) rotateZ(.25deg); }
  42% { transform: rotateY(84deg) translateZ(25px) rotateZ(.65deg); }
  70% { transform: rotateY(146deg) translateZ(17px) rotateZ(-.25deg); }
  100% { transform: rotateY(180deg) translateZ(0) rotateZ(0deg); }
}

@media (max-width: 860px) {
  body[data-page-view="about"] .source-company-feature-row {
    grid-template-columns: 1fr;
  }

  body[data-page-view="about"] .certificate-showcase-compact {
    grid-template-columns: minmax(150px, .7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 560px) {
  body[data-page-view="about"] .client-grid.client-logo-grid span,
  body[data-page-view="about"] .client-grid.client-logo-grid span:nth-child(odd),
  body[data-page-view="about"] .client-grid.client-logo-grid span:nth-last-child(-n+4) {
    min-height: 82px;
  }

  body[data-page-view="about"] .client-grid.client-logo-grid img {
    width: 88%;
    height: 58px;
  }

  body[data-page-view="about"] .source-factory-panel-compact,
  body[data-page-view="about"] .certificate-showcase-compact {
    padding: 14px;
  }

  body[data-page-view="about"] .certificate-showcase-compact {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "visual";
    gap: 14px;
  }

  body[data-page-view="about"] .certificate-showcase-compact .certificate-showcase-heading h3 {
    font-size: 26px;
  }

  body[data-page-view="about"] .factory-album-viewport,
  body[data-page-view="about"] .certificate-slider-viewport {
    aspect-ratio: 1.08;
  }

  body[data-page-view="about"] .factory-album-control {
    width: 36px;
    height: 36px;
  }

  body[data-page-view="about"] .factory-album-controls {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-view="about"] .factory-album-track,
  body[data-page-view="about"] .factory-album-slide img {
    transition: none;
  }

  body[data-page-view="about"] .resume-page-turn.is-turning {
    animation: none;
  }
}

/* FAQ-only layout: keep the questions and answers, with no hero artwork, side rail, or introductory copy. */
body[data-page-view="about"] .faq-section {
  padding-block: clamp(58px, 8vw, 104px);
  background: #f7fafb;
}

body[data-page-view="about"] .faq-only {
  width: min(900px, calc(100% - 32px));
  margin-inline: auto;
}

body[data-page-view="about"] .faq-only-title {
  margin: 0 0 30px;
  color: #102331;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.35;
  text-align: center;
}

body[data-page-view="about"] .faq-only .faq-list {
  border-top: 1px solid #dbe5ea;
}

body[data-page-view="about"] .faq-only .faq-item summary {
  min-height: 76px;
  padding: 18px 0;
  color: #122231;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.85;
}

body[data-page-view="about"] .faq-only .faq-item summary span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-inline-start: 18px;
  border: 1px solid rgba(239, 107, 50, .2);
  border-radius: 8px;
  background: #fff4ee;
}

body[data-page-view="about"] .faq-only .faq-item p {
  max-width: 760px;
  margin: -2px 0 22px;
  padding-inline-end: 48px;
  color: #647986;
  font-size: 15px;
  line-height: 2.15;
}

body[data-page-view="about"] .faq-only .faq-item:last-child {
  border-bottom-color: #dbe5ea;
}

@media (max-width: 560px) {
  body[data-page-view="about"] .faq-only {
    width: min(100% - 24px, 520px);
  }

  body[data-page-view="about"] .faq-only-title {
    margin-bottom: 21px;
    font-size: 30px;
  }

  body[data-page-view="about"] .faq-only .faq-item summary {
    min-height: 68px;
    padding: 15px 0;
    font-size: 14px;
  }

  body[data-page-view="about"] .faq-only .faq-item summary span {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
    margin-inline-start: 11px;
  }

  body[data-page-view="about"] .faq-only .faq-item p {
    padding-inline-end: 0;
    font-size: 13px;
  }
}

/* Commerce component field: compact, low-weight component cues beside the sourcing categories. */
body[data-page-view="commerce"] #commerce .commerce-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 640px);
  margin-top: 24px;
}

body[data-page-view="commerce"] #commerce .commerce-tags > .commerce-tag {
  --component-color: #ef6b32;
  --component-soft: rgba(239, 107, 50, .11);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  overflow: hidden;
  padding: 10px 12px;
  border: 1px solid rgba(40, 81, 99, .15);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 18%, var(--component-soft), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(243, 248, 250, .9));
  color: #274556;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.5;
  box-shadow: 0 8px 22px rgba(10, 44, 61, .05);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

body[data-page-view="commerce"] #commerce .commerce-tags > .commerce-tag::before {
  content: "";
  display: block;
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(39, 69, 86, .18);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .64);
  color: var(--component-color);
}

body[data-page-view="commerce"] #commerce .commerce-tags > .commerce-tag::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--component-color));
  opacity: .38;
}

body[data-page-view="commerce"] #commerce .commerce-tags > .commerce-tag:hover {
  border-color: rgba(239, 107, 50, .34);
  box-shadow: 0 12px 28px rgba(10, 44, 61, .09);
  transform: translateY(-2px);
}

body[data-page-view="commerce"] #commerce .commerce-tag-ic {
  --component-color: #ef6b32;
  --component-soft: rgba(239, 107, 50, .12);
}

body[data-page-view="commerce"] #commerce .commerce-tag-ic::before {
  border-color: rgba(239, 107, 50, .42);
  background:
    linear-gradient(var(--component-color), var(--component-color)) center / 13px 13px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 0 7px / 5px 1px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 0 13px / 5px 1px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 23px 7px / 5px 1px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 23px 13px / 5px 1px no-repeat,
    rgba(255, 255, 255, .64);
}

body[data-page-view="commerce"] #commerce .commerce-tag-module {
  --component-color: #247e91;
  --component-soft: rgba(36, 126, 145, .12);
}

body[data-page-view="commerce"] #commerce .commerce-tag-module::before {
  border-color: rgba(36, 126, 145, .42);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 44%, var(--component-color) 45% 55%, transparent 56%) 0 0 / 7px 7px,
    linear-gradient(0deg, transparent 44%, var(--component-color) 45% 55%, transparent 56%) 0 0 / 7px 7px,
    linear-gradient(var(--component-soft), var(--component-soft)) center / 17px 17px no-repeat,
    rgba(255, 255, 255, .64);
}

body[data-page-view="commerce"] #commerce .commerce-tag-capacitor {
  --component-color: #e5a52c;
  --component-soft: rgba(229, 165, 44, .15);
}

body[data-page-view="commerce"] #commerce .commerce-tag-capacitor::before {
  border-color: rgba(229, 165, 44, .42);
  background:
    linear-gradient(var(--component-color), var(--component-color)) 0 13px / 7px 1px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 21px 13px / 7px 1px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 9px 5px / 2px 16px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 17px 5px / 2px 16px no-repeat,
    rgba(255, 255, 255, .64);
}

body[data-page-view="commerce"] #commerce .commerce-tag-resistor {
  --component-color: #647d8a;
  --component-soft: rgba(100, 125, 138, .12);
}

body[data-page-view="commerce"] #commerce .commerce-tag-resistor::before {
  width: 28px;
  border: 0;
  border-radius: 0;
  background: var(--component-color);
  clip-path: polygon(0 44%, 12% 44%, 22% 12%, 33% 86%, 44% 12%, 55% 86%, 66% 12%, 77% 86%, 88% 44%, 100% 44%, 100% 56%, 88% 56%, 77% 100%, 66% 30%, 55% 100%, 44% 30%, 33% 100%, 22% 56%, 12% 56%, 0 56%);
}

body[data-page-view="commerce"] #commerce .commerce-tag-inductor {
  --component-color: #477b76;
  --component-soft: rgba(71, 123, 118, .12);
}

body[data-page-view="commerce"] #commerce .commerce-tag-inductor::before {
  border-color: rgba(71, 123, 118, .42);
  border-width: 0;
  border-radius: 0;
  background:
    linear-gradient(var(--component-color), var(--component-color)) 0 14px / 5px 1px no-repeat,
    linear-gradient(var(--component-color), var(--component-color)) 23px 14px / 5px 1px no-repeat,
    radial-gradient(ellipse at center, transparent 46%, var(--component-color) 48% 60%, transparent 63%) 4px 50% / 7px 15px repeat-x;
}

@media (max-width: 860px) {
  body[data-page-view="commerce"] #commerce .commerce-tags {
    width: 100%;
    max-width: 640px;
  }
}

@media (max-width: 560px) {
  body[data-page-view="commerce"] #commerce .commerce-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  body[data-page-view="commerce"] #commerce .commerce-tags > .commerce-tag {
    min-height: 50px;
    padding: 9px 10px;
    font-size: 11px;
  }

  body[data-page-view="commerce"] #commerce .commerce-tags > .commerce-tag::before {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
  }

  body[data-page-view="commerce"] #commerce .commerce-tag-resistor::before {
    width: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-view="commerce"] #commerce .commerce-tags > .commerce-tag {
    transition: none;
  }
}

/* Supply-chain orbit: turn the decorative chips into a readable, real-world order flow. */
body[data-page-view="commerce"] #commerce .commerce-visual {
  width: min(100%, 520px);
}

body[data-page-view="commerce"] #commerce .commerce-chip {
  --chip-color: #247e91;
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 138px;
  min-height: 58px;
  padding: 9px 12px;
  overflow: hidden;
  color: #274556;
  border: 1px solid color-mix(in srgb, var(--chip-color) 38%, #d5e2e7);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(245, 249, 250, .9)),
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--chip-color) 15%, transparent), transparent 60%);
  box-shadow: 0 14px 28px rgba(11, 30, 45, .1), 0 0 0 4px rgba(255, 255, 255, .35);
  font-family: "Vazirmatn", sans-serif;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.4;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

body[data-page-view="commerce"] #commerce .commerce-chip::before {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--chip-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--chip-color) 15%, transparent);
}

body[data-page-view="commerce"] #commerce .commerce-chip:hover {
  box-shadow: 0 18px 36px rgba(11, 30, 45, .14), 0 0 0 5px rgba(255, 255, 255, .42);
  transform: translateY(-3px) translateZ(0);
}

body[data-page-view="commerce"] #commerce .commerce-chip-index {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid color-mix(in srgb, var(--chip-color) 48%, #d5e2e7);
  border-radius: 50%;
  background: color-mix(in srgb, var(--chip-color) 10%, #fff);
  color: var(--chip-color);
  font-family: "Vazirmatn", sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

body[data-page-view="commerce"] #commerce .commerce-chip-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
  text-align: right;
}

body[data-page-view="commerce"] #commerce .commerce-chip-copy strong {
  overflow: hidden;
  color: #1f4051;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .55px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page-view="commerce"] #commerce .commerce-chip-copy small {
  overflow: hidden;
  color: #637987;
  font-family: "Vazirmatn", sans-serif;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page-view="commerce"] #commerce .commerce-chip.chip-top {
  --chip-color: #477b76;
  top: 9%;
  left: 29%;
}

body[data-page-view="commerce"] #commerce .commerce-chip.chip-right {
  --chip-color: #ef6b32;
  top: 35%;
  right: -1%;
}

body[data-page-view="commerce"] #commerce .commerce-chip.chip-quote {
  --chip-color: #d29a24;
  top: 62%;
  right: 2%;
}

body[data-page-view="commerce"] #commerce .commerce-chip.chip-left {
  --chip-color: #247e91;
  bottom: 27%;
  left: 0;
}

body[data-page-view="commerce"] #commerce .commerce-chip.chip-bottom {
  --chip-color: #477b76;
  right: 22%;
  bottom: 7%;
}

@media (max-width: 860px) {
  body[data-page-view="commerce"] #commerce .commerce-visual {
    width: min(100%, 470px);
  }
}

@media (max-width: 560px) {
  body[data-page-view="commerce"] #commerce .commerce-chip {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
    width: 116px;
    min-height: 51px;
    padding: 8px 9px;
    border-radius: 11px;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip-index {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip-copy strong {
    font-size: 8px;
    letter-spacing: .3px;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip-copy small {
    font-size: 8px;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip.chip-top {
    top: 7%;
    left: 25%;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip.chip-right {
    top: 34%;
    right: -2%;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip.chip-quote {
    top: 61%;
    right: 0;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip.chip-left {
    bottom: 24%;
    left: -2%;
  }

  body[data-page-view="commerce"] #commerce .commerce-chip.chip-bottom {
    right: 17%;
    bottom: 5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-view="commerce"] #commerce .commerce-chip {
    transition: none;
  }
}

/* Engineering process: keep the original four-step structure, but present it as a clear horizontal route. */
body[data-page-view="engineering"] #engineering .service-list {
  --engineering-accent: #58cad1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding: 17px;
  isolation: isolate;
  border: 1px solid rgba(157, 199, 215, .28);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(18, 45, 60, .96), rgba(8, 23, 35, .98)),
    #102332;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .05);
}

body[data-page-view="engineering"] #engineering .service-list::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(88, 202, 209, .06) 1px, transparent 1px) 0 0 / 54px 100%,
    radial-gradient(circle at 12% 20%, rgba(88, 202, 209, .13), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(243, 108, 50, .09), transparent 24%);
  opacity: .8;
}

body[data-page-view="engineering"] #engineering .service-list-header {
  grid-column: 1 / -1;
  min-height: 43px;
  padding: 0 7px 14px;
  border-bottom-color: rgba(157, 199, 215, .2);
}

body[data-page-view="engineering"] #engineering .service-list-header > span:first-child {
  color: #f3fbfc;
  font-size: 14px;
  font-weight: 850;
}

body[data-page-view="engineering"] #engineering .service-list-status {
  color: #8aaab4;
  font-size: 9px;
}

body[data-page-view="engineering"] #engineering .service-row {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 172px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(157, 199, 215, .2);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(30, 63, 78, .92), rgba(12, 31, 45, .94)),
    rgba(16, 35, 50, .72);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .04);
  animation: engineeringServiceCardFloat 6.4s ease-in-out infinite;
  transition: border-color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease;
}

body[data-page-view="engineering"] #engineering .service-row::before {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--engineering-accent);
  box-shadow: 0 0 0 4px rgba(88, 202, 209, .1), 0 0 14px rgba(88, 202, 209, .55);
  transform: translate(-50%, -50%);
}

body[data-page-view="engineering"] #engineering .service-row:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 12px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(88, 202, 209, .16), rgba(88, 202, 209, .78));
  box-shadow: 0 0 9px rgba(88, 202, 209, .26);
  transform: translateY(-50%);
}

body[data-page-view="engineering"] #engineering .service-row:nth-of-type(1) {
  animation-delay: -.6s;
}

body[data-page-view="engineering"] #engineering .service-row:nth-of-type(2) {
  --engineering-accent: #f36c32;
  animation-delay: -1.8s;
}

body[data-page-view="engineering"] #engineering .service-row:nth-of-type(3) {
  --engineering-accent: #d9aa37;
  animation-delay: -3s;
}

body[data-page-view="engineering"] #engineering .service-row:nth-of-type(4) {
  --engineering-accent: #7ed5b2;
  animation-delay: -4.2s;
}

body[data-page-view="engineering"] #engineering .service-row:hover {
  padding: 15px;
  border-color: rgba(88, 202, 209, .56);
  background: linear-gradient(145deg, rgba(32, 72, 87, .98), rgba(12, 31, 45, .98));
  box-shadow: 0 20px 34px rgba(0, 0, 0, .24), 0 0 0 4px rgba(88, 202, 209, .07);
  animation-play-state: paused;
  transform: translateY(-5px);
}

body[data-page-view="engineering"] #engineering .service-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--engineering-accent) 62%, rgba(157, 199, 215, .3));
  border-radius: 13px;
  background: color-mix(in srgb, var(--engineering-accent) 11%, #102b3b);
  color: var(--engineering-accent);
  font-family: "Vazirmatn", sans-serif;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

body[data-page-view="engineering"] #engineering .service-row > span:nth-child(2) {
  display: block;
  width: 100%;
  min-width: 0;
}

body[data-page-view="engineering"] #engineering .service-row strong {
  display: -webkit-box;
  overflow: hidden;
  color: #f0f8f9;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}

body[data-page-view="engineering"] #engineering .service-row small {
  display: block;
  margin-top: 7px;
  overflow: visible;
  color: #9eb8c0;
  font-size: 11px;
  line-height: 1.9;
  text-overflow: clip;
  white-space: normal;
}

body[data-page-view="engineering"] #engineering .service-row:nth-of-type(2) .service-number,
body[data-page-view="engineering"] #engineering .service-row:nth-of-type(2):hover {
  border-color: rgba(243, 108, 50, .58);
}

@keyframes engineeringServiceCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 980px) {
  body[data-page-view="engineering"] #engineering .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page-view="engineering"] #engineering .service-row:nth-of-type(2)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  body[data-page-view="engineering"] #engineering .service-list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
  }

  body[data-page-view="engineering"] #engineering .service-list-header {
    min-height: 39px;
    padding-inline: 4px;
  }

  body[data-page-view="engineering"] #engineering .service-row {
    min-height: 137px;
  }

  body[data-page-view="engineering"] #engineering .service-row::before,
  body[data-page-view="engineering"] #engineering .service-row:not(:last-child)::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-view="engineering"] #engineering .service-row {
    animation: none;
    transition: none;
  }
}

/* A quiet, discoverable employee entry point in the site footer. */
.footer-org-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 143px;
  min-height: 54px;
  padding: 8px 11px;
  overflow: hidden;
  color: #dceff1;
  border: 1px solid rgba(88, 202, 209, .3);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18, 53, 66, .9), rgba(8, 26, 39, .96));
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.footer-org-login::after {
  position: absolute;
  right: -10px;
  bottom: -16px;
  width: 54px;
  height: 54px;
  content: "";
  border: 1px solid rgba(243, 108, 50, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(243, 108, 50, .035), 0 0 0 14px rgba(88, 202, 209, .025);
  pointer-events: none;
}

.footer-org-login:hover {
  border-color: rgba(141, 224, 192, .68);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .24), 0 0 0 4px rgba(88, 202, 209, .06);
  transform: translateY(-2px);
}

.footer-org-login-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(243, 108, 50, .32);
  border-radius: 9px;
  background: rgba(243, 108, 50, .1);
  color: #ffad84;
}

.footer-org-login-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.footer-org-login-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}

.footer-org-login-copy strong {
  color: #eef9fa;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-org-login-copy small {
  color: #8fb4bc;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: .08em;
  line-height: 1.4;
  text-align: right;
}

body.is-english .footer-org-login {
  direction: ltr;
}

body.is-english .footer-org-login-copy small {
  text-align: left;
}

@media (max-width: 860px) {
  .footer-org-login {
    order: 2;
  }
}

@media (max-width: 650px) {
  .footer-org-login {
    width: min(100%, 220px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-org-login {
    transition: none;
  }
}

/* Contained catalogue turn: the page flips toward the viewer frame instead of flying beyond it. */
body[data-page-view="about"] .resume-page-viewer {
  overflow: hidden;
  border-radius: 13px;
}

body[data-page-view="about"] .resume-page-turn.is-turning {
  animation-duration: 1.02s;
  animation-timing-function: cubic-bezier(.22, .72, .18, 1);
  animation-name: resume-contained-page-turn-next;
}

body[data-page-view="about"] .resume-flipbook[data-resume-direction="prev"] .resume-page-turn.is-turning {
  animation-name: resume-contained-page-turn-prev;
}

body[data-page-view="about"] .resume-page-face {
  box-shadow: 0 19px 34px rgba(0, 0, 0, .2), inset 0 0 0 1px rgba(8, 24, 36, .04);
}

@keyframes resume-contained-page-turn-next {
  0% { transform: rotateY(0deg) translateZ(0); }
  16% { transform: rotateY(9deg) translateZ(2px); }
  48% { transform: rotateY(88deg) translateZ(8px); }
  76% { transform: rotateY(158deg) translateZ(4px); }
  100% { transform: rotateY(180deg) translateZ(0); }
}

@keyframes resume-contained-page-turn-prev {
  0% { transform: rotateY(0deg) translateZ(0); }
  16% { transform: rotateY(-9deg) translateZ(2px); }
  48% { transform: rotateY(-88deg) translateZ(8px); }
  76% { transform: rotateY(-158deg) translateZ(4px); }
  100% { transform: rotateY(-180deg) translateZ(0); }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-view="about"] .resume-page-turn.is-turning {
    animation: none;
  }
}

/* Responsive integrity pass: keep every interactive surface inside the device frame. */
html {
  overflow-x: hidden;
}

body.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.site-shell,
.page-shell main,
.page-shell main > *,
.hero-inner,
.hero-art,
.three-stage,
.source-data-section,
.source-data-section > .container {
  min-width: 0;
  max-width: 100%;
}

.page-shell img,
.page-shell svg,
.page-shell video,
.page-shell canvas {
  max-width: 100%;
}

/* Grid children must be allowed to shrink instead of imposing their min-content width. */
.bom-intake,
.bom-intake > *,
.bom-intake-visual,
.bom-intake-panel,
.bom-form,
.bom-field-grid,
.bom-field,
.bom-field input,
.bom-field textarea,
.bom-dropzone,
.source-commerce-hero,
.source-commerce-motion {
  min-width: 0;
  max-width: 100%;
}

.bom-intake > * {
  width: 100%;
}

.bom-field input,
.bom-field textarea {
  min-width: 0;
}

.source-commerce-hero,
.source-commerce-motion {
  overflow: hidden;
}

@media (min-width: 621px) and (max-width: 860px) {
  /* Portrait tablets have enough room for two readable cards, not three cramped ones. */
  .capabilities-section-preview .capability-grid,
  .source-card-grid,
  .source-service-grid,
  .source-two-column,
  .source-warranty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capabilities-section-preview .capability-card,
  .source-card,
  .source-long-card,
  .source-list-panel,
  .source-factory-panel,
  .source-projects-panel,
  .import-form-panel {
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .header-inner,
  .brand,
  .brand-copy {
    min-width: 0;
  }

  .brand {
    max-width: calc(100% - 52px);
  }

  .brand-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-three-art,
  .three-stage,
  .three-stage-grid,
  .three-board,
  .electro-scene,
  .magnetic-field-anchor {
    min-width: 0;
  }

  .three-stage {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .bom-intake {
    width: 100%;
    max-width: 100%;
  }

  .bom-intake-visual,
  .bom-intake-panel {
    width: 100%;
    max-width: 100%;
  }

  .bom-field-grid {
    width: 100%;
    max-width: 100%;
  }

  .project-slider,
  .project-slider-viewport,
  .project-slider-track,
  .project-slide {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  body[data-page-view="commerce"] .commerce-visual {
    overflow: hidden;
  }

  .process-section-preview .bom-drop-icon {
    width: 36px;
    height: 36px;
    flex-basis: auto;
    font-size: 22px;
  }

  .bom-intake-panel {
    padding-inline: clamp(16px, 5vw, 28px);
  }

  .bom-field > span {
    font-size: 11px;
  }

  .bom-field input,
  .bom-field textarea {
    font-size: 12px;
  }

  .bom-field input {
    min-height: 46px;
  }

  .bom-field textarea {
    min-height: 100px;
  }

  .bom-dropzone {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    column-gap: 12px;
    row-gap: 4px;
  }

  .bom-drop-icon {
    grid-row: span 2;
  }

  .bom-drop-copy {
    min-width: 0;
  }

  .bom-drop-copy strong {
    font-size: 12px;
    line-height: 1.7;
  }

  .bom-drop-copy small {
    overflow: visible;
    font-size: 10px;
    line-height: 1.65;
    white-space: normal;
  }

  .bom-file-meta {
    grid-column: 2;
    max-width: none;
    font-size: 9px;
    line-height: 1.6;
    white-space: normal;
  }

  .bom-privacy-note,
  .bom-form-status {
    font-size: 10px;
  }

  .bom-submit {
    font-size: 12px;
  }

  .footer-top,
  .footer-bottom,
  .footer-links,
  .footer-org-login,
  .footer-network-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* Smooth, contained catalogue turn: keep the sheet on the compositor and commit the next image on animationend. */
body[data-page-view="about"] .resume-page-viewer {
  contain: paint;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

body[data-page-view="about"] .resume-page-viewer {
  touch-action: pan-y;
  user-select: none;
}

body[data-page-view="about"] .resume-page-turn {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

body[data-page-view="about"] .resume-page-turn.is-turning {
  animation: resume-smooth-page-turn-next .94s cubic-bezier(.18, .74, .24, 1) both;
}

body[data-page-view="about"] .resume-flipbook[data-resume-direction="prev"] .resume-page-turn.is-turning {
  animation-name: resume-smooth-page-turn-prev;
}

body[data-page-view="about"] .resume-page-face,
body[data-page-view="about"] .resume-page-face img {
  backface-visibility: hidden;
}

body[data-page-view="about"] .resume-page-face img {
  transform: translateZ(0);
}

body[data-page-view="about"] .resume-page-face::after {
  opacity: 0;
  transition: none;
}

body[data-page-view="about"] .resume-page-turn.is-turning .resume-page-face::after {
  opacity: 1;
  animation: resume-smooth-page-shade .94s ease-out both;
}

@keyframes resume-smooth-page-turn-next {
  0% { transform: rotateY(0deg) translateZ(0) scale(1); }
  14% { transform: rotateY(-10deg) translateZ(2px) scale(.999); }
  48% { transform: rotateY(-92deg) translateZ(10px) scale(.997); }
  76% { transform: rotateY(-160deg) translateZ(5px) scale(.999); }
  100% { transform: rotateY(-180deg) translateZ(0) scale(1); }
}

@keyframes resume-smooth-page-turn-prev {
  0% { transform: rotateY(0deg) translateZ(0) scale(1); }
  14% { transform: rotateY(10deg) translateZ(2px) scale(.999); }
  48% { transform: rotateY(92deg) translateZ(10px) scale(.997); }
  76% { transform: rotateY(160deg) translateZ(5px) scale(.999); }
  100% { transform: rotateY(180deg) translateZ(0) scale(1); }
}

@keyframes resume-smooth-page-shade {
  0% { opacity: .14; }
  42% { opacity: .78; }
  73% { opacity: .28; }
  100% { opacity: .08; }
}

@media (max-width: 560px) {
  body[data-page-view="about"] .resume-page-turn.is-turning {
    animation-duration: .78s;
  }

  body[data-page-view="about"] .resume-page-turn.is-turning .resume-page-face::after {
    animation-duration: .78s;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-view="about"] .resume-page-turn.is-turning,
  body[data-page-view="about"] .resume-page-turn.is-turning .resume-page-face::after {
    animation: none !important;
  }
}

/* Footer readability: keep every utility label legible on desktop and mobile. */
.site-footer .brand-footer .brand-copy strong {
  color: #f0f7f8;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
}

.site-footer .brand-footer .brand-copy small {
  color: #a7bec6;
  font-size: clamp(10px, .78vw, 12px);
  line-height: 1.8;
}

.site-footer .footer-links {
  gap: clamp(16px, 2vw, 28px);
  color: #b5c9d0;
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.8;
}

.site-footer .footer-links a {
  color: inherit;
  line-height: inherit;
}

.site-footer .footer-back {
  color: #b9cbd1;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer .footer-bottom {
  min-height: 68px;
  color: #91aab4;
  font-size: clamp(11px, .8vw, 13px);
  line-height: 1.95;
}

.site-footer .footer-bottom span {
  color: inherit;
}

.site-footer .footer-org-login-copy strong {
  font-size: 13px;
  line-height: 1.6;
}

.site-footer .footer-org-login-copy small {
  color: #a4c1c8;
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .site-footer .footer-links {
    gap: 16px;
  }

  .site-footer .footer-bottom {
    min-height: 74px;
  }
}

@media (max-width: 650px) {
  .site-footer .brand-footer .brand-copy strong {
    font-size: 15px;
  }

  .site-footer .brand-footer .brand-copy small {
    font-size: 11px;
  }

  .site-footer .footer-links {
    gap: 13px 18px;
    font-size: 13px;
  }

  .site-footer .footer-back {
    font-size: 13px;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    min-height: 0;
    padding-block: 17px;
    font-size: 11px;
    line-height: 2;
  }
}

/* Public form delivery feedback. */
.static-form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.static-form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin-top: -2px;
  color: #6e858f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
}

.static-form-status.is-loading {
  color: #a56a42;
}

.static-form-status.is-success {
  color: #168460;
}

.static-form-status.is-error {
  color: #c4554b;
}

.contact-form .static-form-status {
  color: #b5cdd2;
}

.contact-form .static-form-status.is-loading {
  color: #ffc09b;
}

.contact-form .static-form-status.is-success {
  color: #8de0c0;
}

.contact-form .static-form-status.is-error {
  color: #ff9a91;
}

@media (max-width: 600px) {
  .static-form-status {
    font-size: 12px;
  }
}

/* PeakMeter warranty page: a clear, premium terms layout with one focused product visual. */
.source-warranty-terms-layout {
  grid-template-columns: minmax(0, 1.42fr) minmax(250px, .58fr);
  align-items: stretch;
  gap: clamp(18px, 2.5vw, 30px);
}

.source-warranty-terms-panel {
  overflow: hidden;
  border-color: rgba(242, 107, 43, .22);
  background:
    radial-gradient(circle at 100% 0, rgba(242, 107, 43, .10), transparent 28%),
    linear-gradient(145deg, #fff 0%, #fff8f4 100%);
}

.source-warranty-terms-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(242, 107, 43, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 107, 43, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, black, transparent 72%);
}

.source-warranty-terms-panel > * {
  position: relative;
  z-index: 1;
}

.source-warranty-terms-panel .source-panel-heading {
  align-items: end;
  margin-bottom: 10px;
  font-size: 18px;
}

.source-warranty-terms-panel .source-panel-heading small {
  color: var(--orange-deep);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  direction: ltr;
}

.source-bullet-list.source-warranty-terms {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  counter-reset: warranty-term;
  list-style: none;
}

.source-bullet-list.source-warranty-terms li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(19, 49, 67, .11);
  font-size: 14px;
  line-height: 2.05;
  counter-increment: warranty-term;
}

.source-bullet-list.source-warranty-terms li::before {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(242, 107, 43, .35);
  border-radius: 11px;
  background: linear-gradient(145deg, #f47c3c, #df5726);
  box-shadow: 0 7px 15px rgba(223, 87, 38, .18);
  content: counter(warranty-term, decimal-leading-zero);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  direction: ltr;
}

.source-warranty-terms-panel .button {
  margin-top: 12px;
}

.source-warranty-activation-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-color: rgba(88, 202, 209, .22);
  background:
    radial-gradient(circle at 12% 10%, rgba(88, 202, 209, .17), transparent 33%),
    linear-gradient(145deg, #112c3b 0%, #081722 100%);
  box-shadow: 0 24px 56px rgba(8, 23, 34, .18);
}

.source-warranty-activation-panel::after {
  position: absolute;
  right: -38px;
  bottom: -56px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(242, 107, 43, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(242, 107, 43, .04), 0 0 0 38px rgba(242, 107, 43, .025);
  content: "";
  pointer-events: none;
}

.source-warranty-activation-panel > * {
  position: relative;
  z-index: 1;
}

.warranty-activation-kicker {
  color: #8ee0d3;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  direction: ltr;
}

.source-warranty-activation-panel h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.source-warranty-activation-panel p {
  margin: 16px 0 0;
  color: #b8cbd3;
  font-size: 13px;
  line-height: 2.1;
}

.warranty-activation-number {
  display: block;
  margin-top: 28px;
  color: #ff8b54;
  font-family: Arial, sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
}

.warranty-activation-caption {
  display: block;
  margin-top: 10px;
  color: #8faab5;
  font-size: 11px;
}

@media (max-width: 860px) {
  .source-warranty-terms-layout {
    grid-template-columns: 1fr;
  }

  .source-warranty-activation-panel {
    min-height: 260px;
  }
}

@media (max-width: 650px) {
  .source-warranty-terms-panel,
  .source-warranty-activation-panel {
    padding: 22px 18px;
  }

  .source-bullet-list.source-warranty-terms li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 0;
    font-size: 13px;
    line-height: 1.95;
  }

  .source-bullet-list.source-warranty-terms li::before {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 10px;
  }
}

/* Keep the square PeakMeter product photo intact instead of cropping it into a banner strip. */
body[data-page-view="warranty"] .source-warranty-hero {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  height: 320px;
  min-height: 320px;
  direction: ltr;
  background: #474650;
}

body[data-page-view="warranty"] .source-warranty-hero img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #474650;
  filter: saturate(.92) contrast(1.04);
}

body[data-page-view="warranty"] .source-warranty-hero::after {
  z-index: 1;
  background: linear-gradient(90deg, rgba(71, 70, 80, 0) 0%, rgba(16, 28, 37, .2) 34%, rgba(8, 23, 34, .95) 100%);
}

body[data-page-view="warranty"] .source-warranty-hero > div {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  right: auto;
  bottom: auto;
  align-self: center;
  z-index: 2;
  padding: 36px clamp(28px, 5vw, 68px) 36px 42px;
  direction: rtl;
}

body[data-page-view="warranty"] .source-warranty-hero > div strong {
  display: block;
  max-width: 440px;
  margin-top: 8px;
}

@media (max-width: 860px) {
  body[data-page-view="warranty"] .source-warranty-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    direction: rtl;
  }

  body[data-page-view="warranty"] .source-warranty-hero img {
    grid-column: 1;
    grid-row: 1;
    height: 280px;
  }

  body[data-page-view="warranty"] .source-warranty-hero::after {
    background: linear-gradient(180deg, rgba(71, 70, 80, 0) 20%, rgba(8, 23, 34, .9) 100%);
  }

  body[data-page-view="warranty"] .source-warranty-hero > div {
    grid-column: 1;
    grid-row: 2;
    margin-top: -1px;
    padding: 22px 24px 26px;
    background: #081722;
  }
}
