:root {
  --ink: #111414;
  --ink-2: #1b2326;
  --graphite: #263033;
  --line: #d9dee2;
  --paper: #ffffff;
  --mist: #f4f6f7;
  --mist-2: #e9edf0;
  --yellow: #ffbd0c;
  --yellow-2: #d69a00;
  --green: #194d26;
  --blue: #2379c6;
  --text: #182126;
  --muted: #68747c;
  --danger: #b42318;
  --ok: #157347;
  --shadow: 0 16px 40px rgba(17, 20, 20, 0.14);
  --shadow-soft: 0 20px 70px rgba(17, 20, 20, 0.12);
  --radius: 8px;
  --page-pad: clamp(16px, 4vw, 64px);
  --max: 1240px;
  --hero-image: url("assets/hero-machinery.webp");
  --hero-position: center;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(16px, 4vw, 64px);
  font-size: 12px;
}

.topbar strong {
  color: var(--yellow);
  font-weight: 800;
}

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

.language-select {
  background: #0b0d0e;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  min-height: 32px;
  padding: 4px 12px;
}

.language-menu {
  position: relative;
  z-index: 80;
}

.language-menu summary {
  min-height: 34px;
  min-width: 126px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 12px;
  color: #fff;
  background: #0b0d0e;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover {
  background: #15191a;
  border-color: rgba(255, 189, 12, 0.65);
  transform: translateY(-1px);
}

.language-globe {
  color: var(--yellow);
  font-size: 14px;
}

.language-caret {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1;
}

.language-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 178px;
  padding: 8px;
  background: rgba(11, 13, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.language-panel::before {
  content: "";
  position: absolute;
  right: 22px;
  top: -6px;
  width: 12px;
  height: 12px;
  background: rgba(11, 13, 14, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
}

.language-panel button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  border-radius: 6px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.language-panel button:hover,
.language-panel button.active {
  color: #fff;
  background: rgba(255, 189, 12, 0.16);
  transform: translateX(2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(217, 222, 226, 0.58);
  box-shadow: 0 10px 34px rgba(17, 20, 20, 0.08);
}

.nav-wrap {
  min-height: 72px;
  padding: 0 clamp(16px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo-main {
  width: clamp(132px, 13vw, 184px);
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand:hover .brand-mark,
.brand:hover .brand-logo-main {
  transform: translateY(-1px);
}

.brand-title {
  display: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
  display: block;
  max-width: 180px;
}

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

.main-nav a {
  color: #344047;
  font-size: 13px;
  font-weight: 800;
  padding: 24px 12px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: var(--mist);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--yellow);
  color: #151515;
  border: 0;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.16);
}

.nav-cta:hover {
  background: #ffd24a;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
}

.hero {
  min-height: 620px;
  background-image:
    linear-gradient(90deg, rgba(10, 13, 14, 0.92) 0%, rgba(10, 13, 14, 0.72) 36%, rgba(10, 13, 14, 0.18) 70%, rgba(10, 13, 14, 0.02) 100%),
    linear-gradient(180deg, rgba(10, 13, 14, 0.12), rgba(10, 13, 14, 0.28)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position);
  color: #fff;
  display: grid;
  align-items: center;
  padding: 82px clamp(16px, 4vw, 64px) 56px;
  overflow: hidden;
}

.hero-inner {
  max-width: 760px;
  width: 100%;
  min-width: 0;
  opacity: var(--hero-content-opacity, 1);
  transform: translateY(var(--hero-content-shift, 0px));
  transition: opacity 0.08s linear, transform 0.08s linear;
  will-change: opacity, transform;
}

.eyebrow {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.hero h1,
.page-title h1,
.section-head h2,
.catalog-title,
.product-name,
.admin-title {
  font-family: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: 74px;
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 820px;
  overflow-wrap: anywhere;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.hero-actions,
.action-row,
.filter-row,
.dock-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: var(--radius);
  padding: 11px 16px;
  min-height: 42px;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: none;
  transition: transform 0.18s, background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}

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

.btn-primary {
  background: var(--yellow);
  color: #161616;
  box-shadow: 0 12px 28px rgba(214, 154, 0, 0.18);
}

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

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--graphite);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(17, 20, 20, 0.05);
}

.btn-danger {
  background: #fee4e2;
  color: var(--danger);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  max-width: 900px;
  gap: 1px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat {
  padding: 34px 28px;
  background: rgba(9, 12, 13, 0.62);
  min-height: 168px;
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  margin-top: 6px;
}

.stat-counter {
  display: inline-block;
  min-width: 1.8ch;
  font-variant-numeric: tabular-nums;
}

.stat-counter-static {
  min-width: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
  color: #fff;
}

.buyer-desk {
  background:
    linear-gradient(135deg, #101414, #182124 54%, #0f1515);
  color: #fff;
  padding: clamp(46px, 6vw, 76px) clamp(16px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.buyer-desk-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.buyer-desk-copy {
  max-width: 520px;
}

.buyer-desk-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

.buyer-desk-copy p {
  color: rgba(255, 255, 255, 0.68);
  margin: 18px 0 24px;
  line-height: 1.75;
}

.buyer-desk-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.buyer-step {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px) saturate(120%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.buyer-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 189, 12, 0.42);
}

.buyer-step span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.buyer-step h3 {
  margin: auto 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.buyer-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.about-command {
  padding: clamp(54px, 7vw, 92px) clamp(16px, 4vw, 64px);
  background:
    linear-gradient(135deg, rgba(16, 20, 20, 0.97), rgba(29, 39, 41, 0.92)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position);
  color: #fff;
}

.about-command-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-command-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  text-transform: uppercase;
}

.about-command-copy p {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(120%);
}

.about-proof-item {
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 168px;
}

.about-proof-item:last-child {
  border-right: 0;
}

.about-proof-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.about-proof-strip span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.about-pillar-stack {
  display: grid;
  gap: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(130%);
}

.about-pillar {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: background 0.24s ease;
}

.about-pillar:hover {
  background: rgba(255, 189, 12, 0.055);
}

.about-pillar:last-child {
  border-bottom: 0;
}

.about-pillar > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.about-pillar h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.05;
}

.about-pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.how-buy-section {
  padding: clamp(58px, 7vw, 104px) var(--page-pad);
  background: #fff;
  color: var(--ink);
}

.how-buy-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.how-buy-copy h2 {
  margin: 10px 0 22px;
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 0.98;
  font-weight: 1000;
}

.how-buy-copy h2 span {
  color: var(--yellow);
}

.how-buy-copy p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 720;
}

.how-buy-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: clamp(18px, 2.6vw, 42px);
  align-items: start;
  perspective: 1200px;
}

.how-buy-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  text-align: center;
  opacity: 1;
  animation: howBuyRise 0.48s ease both;
  animation-delay: var(--how-buy-delay, 0ms);
}

.how-buy-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  left: calc(50% + 66px);
  width: calc(100% - 78px);
  height: 12px;
  background:
    radial-gradient(circle, rgba(17, 20, 20, 0.26) 1.6px, transparent 2.2px) 0 50% / 10px 5px repeat-x;
}

.how-buy-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 57px;
  right: -18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(17, 20, 20, 0.26);
  border-right: 2px solid rgba(17, 20, 20, 0.26);
  transform: rotate(45deg);
}

.how-buy-hex {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: clamp(104px, 6.7vw, 130px);
  aspect-ratio: 1.02;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(145deg, #777 0%, #565656 42%, #333 100%);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow:
    0 22px 46px rgba(17, 20, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -18px 24px rgba(0, 0, 0, 0.22);
  perspective: 700px;
  transform: translateZ(0);
  transition: transform 0.28s ease, filter 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.how-buy-hex::before,
.how-buy-hex::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  clip-path: inherit;
}

.how-buy-hex::before {
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(0, 0, 0, 0.24), transparent 44%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.how-buy-hex::after {
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.2), transparent 52%);
}

.how-buy-icon {
  position: relative;
  z-index: 1;
  width: 53%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 0.62s cubic-bezier(0.2, 0.78, 0.22, 1);
  backface-visibility: visible;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.16))
    drop-shadow(0 8px 10px rgba(0, 0, 0, 0.16));
}

.how-buy-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.how-buy-step:hover .how-buy-hex {
  transform: translateY(-8px) rotateX(3deg);
  filter:
    drop-shadow(0 22px 24px rgba(17, 20, 20, 0.16))
    drop-shadow(0 0 18px rgba(255, 189, 12, 0.2));
  background:
    linear-gradient(145deg, #858585 0%, #565656 42%, #2f2f2f 100%);
  box-shadow:
    0 26px 54px rgba(17, 20, 20, 0.2),
    0 0 0 4px rgba(255, 189, 12, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -18px 24px rgba(0, 0, 0, 0.24);
}

.how-buy-step:hover .how-buy-icon {
  transform: rotateY(180deg);
}

.how-buy-step h3 {
  margin: 0;
  max-width: 160px;
  color: var(--ink);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.18;
  font-weight: 900;
}

@keyframes howBuyRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-command {
  position: relative;
  padding: clamp(68px, 7vw, 118px) var(--page-pad);
  background:
    linear-gradient(180deg, rgba(246, 248, 250, 0.94), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 15% 10%, rgba(255, 189, 12, 0.16), transparent 34%);
}

.proof-command-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
}

.proof-intro {
  max-width: 920px;
}

.proof-intro h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  font-size: clamp(52px, 6vw, 98px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
}

.proof-intro p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  font-weight: 700;
}

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

.proof-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(217, 222, 226, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 20, 20, 0.1);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(17, 20, 20, 0.16);
}

.proof-card.featured {
  grid-column: span 2;
}

.proof-card-media {
  position: relative;
  min-height: 270px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.proof-card.featured .proof-card-media {
  min-height: 390px;
}

.proof-card-media span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 1000;
  box-shadow: 0 16px 36px rgba(17, 20, 20, 0.16);
}

.proof-card-body {
  padding: 22px;
}

.proof-card-body h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.02;
}

.proof-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 650;
}

.proof-process {
  border-radius: 26px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, #111415, #263033);
  color: #fff;
  box-shadow: 0 30px 86px rgba(17, 20, 20, 0.18);
}

.proof-process h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
}

.proof-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-process-grid a {
  display: block;
  color: inherit;
  text-decoration: none;
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.proof-process-grid a:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.proof-process-grid a span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 189, 12, 0.12);
  color: var(--yellow);
  font-size: 14px;
  line-height: 1;
  font-weight: 1000;
}

.proof-process-grid a h4 {
  margin: 30px 0 12px;
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.04;
}

.proof-process-grid a p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 650;
}

.service-record-page,
.industry-article-page {
  padding: clamp(32px, 5vw, 72px) var(--page-pad) clamp(76px, 8vw, 118px);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 183, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #f4f6f7 0%, #ffffff 54%, #f7f8f8 100%);
}

.service-record-shell,
.industry-article-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 1000;
}

.back-link:hover {
  color: var(--yellow-2);
}

.service-record-layout,
.service-record-spotlight {
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
}

.service-record-media-stack {
  min-width: 0;
}

.service-record-visual {
  position: relative;
  min-height: clamp(520px, 60vw, 760px);
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 42px 110px rgba(17, 20, 20, 0.2), inset 0 -170px 150px rgba(0, 0, 0, 0.34);
}

.service-record-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 10, 0.08), rgba(7, 10, 10, 0.2) 46%, rgba(7, 10, 10, 0.7)),
    linear-gradient(90deg, rgba(7, 10, 10, 0.22), transparent 46%);
  pointer-events: none;
}

.service-record-visual-top {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-record-visual-top span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 1000;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.service-record-visual-top b {
  border-radius: 999px;
  background: rgba(17, 20, 20, 0.68);
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 1000;
  backdrop-filter: blur(14px);
}

.service-record-arrows {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.service-record-arrows a {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.service-record-arrows a:hover {
  transform: scale(1.06);
  background: var(--yellow);
  border-color: var(--yellow);
}

.service-record-arrows a i {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: translateX(2px) rotate(45deg);
}

.service-record-arrows a:first-child i {
  transform: translateX(-2px) rotate(-135deg);
}

.service-record-thumb-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 24%);
  gap: 14px;
  margin-top: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 2px 2px 12px;
}

.service-record-thumb-strip a {
  position: relative;
  display: block;
  height: 110px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #111415;
  scroll-snap-align: start;
  box-shadow: 0 12px 30px rgba(17, 20, 20, 0.12);
}

.service-record-thumb-strip a.active {
  border-color: var(--yellow);
}

.service-record-thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.service-record-thumb-strip a:hover img,
.service-record-thumb-strip a.active img {
  opacity: 1;
  transform: scale(1.04);
}

.service-record-thumb-strip span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(17, 20, 20, 0.72);
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 1000;
}

.service-record-panel,
.industry-article-document {
  border: 1px solid rgba(217, 222, 226, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 32px 92px rgba(17, 20, 20, 0.11);
  padding: clamp(28px, 4.4vw, 58px);
}

.service-record-count {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px;
  border-radius: 999px;
  background: #111415;
  color: var(--yellow);
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0;
}

.service-record-panel h1 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(44px, 4.7vw, 82px);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
}

.service-record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 42px);
}

.industry-article-document {
  display: grid;
  gap: 20px;
}

.proof-detail-modal,
.proof-article-modal {
  width: min(1180px, 100%);
}

.proof-detail-body {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 24px;
}

.proof-detail-image,
.proof-article-hero {
  position: relative;
  min-height: 460px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: inset 0 -120px 120px rgba(0, 0, 0, 0.22);
}

.proof-detail-content {
  display: grid;
  align-content: start;
  gap: 18px;
}

.proof-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.proof-detail-meta div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafb, #eef2f4);
}

.proof-detail-meta span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.proof-detail-meta b {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.15;
}

.proof-detail-summary {
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.72;
  font-weight: 760;
}

.proof-article-body {
  display: grid;
  gap: 18px;
}

.service-record-more {
  margin-top: clamp(44px, 6vw, 78px);
}

.service-record-more-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.service-record-more-head p {
  margin: 0;
  color: var(--yellow-2);
  font-size: 14px;
  font-weight: 1000;
}

.service-record-more-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  font-weight: 1000;
}

.service-record-more-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 32%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 2px 2px 16px;
}

.service-record-more-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  align-content: start;
  min-height: 420px;
  border: 1px solid rgba(217, 222, 226, 0.92);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f5f7f8);
  color: var(--ink);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(17, 20, 20, 0.08);
  scroll-snap-align: start;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.service-record-more-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 0, 0.65);
  box-shadow: 0 24px 68px rgba(17, 20, 20, 0.14);
}

.service-record-more-card figure {
  position: relative;
  margin: 0;
  min-height: 180px;
  overflow: hidden;
  background: #111415;
}

.service-record-more-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 20, 20, 0.06), rgba(17, 20, 20, 0.58));
}

.service-record-more-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.service-record-more-card:hover figure img {
  transform: scale(1.05);
}

.service-record-more-card figure span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 1000;
}

.service-record-more-card > div {
  display: grid;
  align-content: start;
  padding: 26px;
}

.service-record-more-card strong {
  display: block;
  font-size: clamp(27px, 2.35vw, 40px);
  line-height: 1.08;
  font-weight: 1000;
}

.service-record-more-card p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 760;
}

.service-record-more-card small {
  margin-top: auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 1000;
}

.proof-article-hero {
  min-height: 420px;
}

.proof-news-video-upload {
  right: 16px;
  top: 16px;
}

.proof-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-article-meta span {
  border-radius: 999px;
  background: #eef2f4;
  color: var(--ink);
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 900;
}

.proof-article-video {
  width: 100%;
  max-height: 520px;
  border-radius: 18px;
  background: #111415;
}

.proof-article-copy {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.86;
  font-weight: 700;
  white-space: pre-wrap;
}

.brand-wall {
  background: #fff;
}

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

.brand-logo {
  min-height: 124px;
  border: 1px solid rgba(217, 222, 226, 0.88);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 250, 0.98));
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 22px 18px 18px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(17, 20, 20, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.brand-wall .section-head.reveal,
.brand-logo.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.brand-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 189, 12, 0.72);
  background: linear-gradient(180deg, #fff, #fff8df);
  box-shadow: var(--shadow-soft);
}

.brand-logo b {
  min-width: min(164px, 100%);
  min-height: 54px;
  padding: 10px 16px;
  border: 2px solid currentColor;
  border-radius: 6px;
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: inset 0 -3px 0 rgba(17, 20, 20, 0.08);
}

.brand-logo img {
  width: 100%;
  max-width: 172px;
  height: 54px;
  object-fit: contain;
  display: block;
  filter: saturate(1.05) contrast(1.06);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.brand-logo b[hidden] {
  display: none;
}

.brand-logo:hover img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.08);
}

.brand-logo span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-caterpillar b { color: #151515; background: linear-gradient(135deg, #ffc400 0 38%, #111 38% 100%); border-color: #111; color: #fff; text-shadow: 0 1px 0 #000; }
.brand-komatsu b { color: #fff; background: #2426a8; border-color: #2426a8; }
.brand-volvo b { color: #2f73b7; border-radius: 999px; background: #f7fbff; }
.brand-doosan b { color: #fff; background: linear-gradient(90deg, #006db2, #f15a24); border-color: transparent; }
.brand-sany b { color: #fff; background: #d71920; border-color: #d71920; }
.brand-hitachi b { color: #111; background: #f4f4f4; border-color: #111; }
.brand-hyundai b { color: #fff; background: #064f9e; border-color: #064f9e; border-radius: 999px; }
.brand-liugong b { color: #fff; background: #1d4f9a; border-color: #1d4f9a; }
.brand-bobcat b { color: #111; background: linear-gradient(180deg, #fff, #efefef); border-color: #111; }
.brand-kobelco b { color: #fff; background: #0086c8; border-color: #0086c8; }
.brand-xcmg b { color: #fff; background: #0065b3; border-color: #0065b3; }
.brand-kubota b { color: #fff; background: #14a37f; border-color: #14a37f; }

.trust-item {
  padding: 18px clamp(16px, 4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: background 0.24s ease, transform 0.24s ease;
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.11) 42%, transparent 72%);
  transform: translateX(-110%);
  transition: transform 0.7s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.trust-item:hover::after {
  transform: translateX(110%);
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 189, 12, 0.18);
  color: var(--yellow);
  flex: 0 0 auto;
  transition: transform 0.24s ease, background 0.24s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.08);
  background: rgba(255, 189, 12, 0.28);
}

.section {
  padding: 68px clamp(16px, 4vw, 64px);
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

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

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.dark .section-head h2,
.section.dark .section-head h2 {
  color: #fff;
}

.section-head p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.62);
}

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

.category-tile {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 226, 0.86);
  border-radius: 16px;
  padding: 16px;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 36px rgba(17, 20, 20, 0.045);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.category-tile:hover {
  border-color: rgba(255, 189, 12, 0.7);
  background: linear-gradient(180deg, #fff 0%, #fff8df 100%);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.category-tile b {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.category-tile span {
  color: var(--muted);
  font-size: 12px;
}

.machinery-band {
  background:
    linear-gradient(90deg, rgba(17, 20, 20, 0.92), rgba(17, 20, 20, 0.7)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position);
  color: #fff;
  padding: 44px clamp(16px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: center;
}

.machinery-band h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.machinery-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 12px 0 0;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(17, 20, 20, 0.94), rgba(17, 20, 20, 0.76)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 68px clamp(16px, 4vw, 64px);
  overflow: hidden;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-title h1 {
  margin: 0;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 1;
  overflow-wrap: anywhere;
}

.page-title {
  width: 100%;
  min-width: 0;
}

.page-title p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  overflow-wrap: anywhere;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 92px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-title {
  background: var(--ink);
  color: #fff;
  padding: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-list {
  max-height: calc(100vh - 190px);
  overflow: auto;
}

.category-list button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  color: #334047;
  font-size: 13px;
  font-weight: 800;
}

[dir="rtl"] .category-list button {
  text-align: right;
}

.category-list button:hover,
.category-list button.active {
  background: #fff8df;
  color: var(--ink);
  box-shadow: inset 4px 0 0 var(--yellow);
}

[dir="rtl"] .category-list button:hover,
[dir="rtl"] .category-list button.active {
  box-shadow: inset -4px 0 0 var(--yellow);
}

.catalog-toolbar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 10px;
}

.filter-action .btn {
  width: 100%;
}

.field,
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label,
.form-field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.form-field input,
.form-field select,
.form-field textarea,
.admin-input,
.admin-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  min-height: 42px;
  padding: 10px 12px;
  outline: none;
}

.field input:focus,
.field select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.admin-input:focus,
.admin-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 189, 12, 0.18);
}

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

.product-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 226, 0.86);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 12px 34px rgba(17, 20, 20, 0.045);
  transition: box-shadow 0.24s ease, transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.product-card:hover {
  border-color: rgba(255, 189, 12, 0.52);
  background: #fff;
  box-shadow: 0 26px 70px rgba(17, 20, 20, 0.14);
  transform: translateY(-5px);
}

.product-media {
  height: 190px;
  background-color: var(--mist-2);
  background-size: 720px auto;
  background-repeat: no-repeat;
  position: relative;
  transition: filter 0.24s ease, transform 0.24s ease;
}

.product-card:hover .product-media {
  filter: saturate(1.08) contrast(1.02);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2));
}

.badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
}

.badge.hot {
  background: #fff3c4;
}

.badge.certified {
  background: #dff3e4;
  color: var(--green);
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-name {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.product-summary {
  color: var(--muted);
  font-size: 13px;
  min-height: 42px;
}

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

.spec {
  background: linear-gradient(180deg, #f8fafb, #f1f4f6);
  border: 1px solid rgba(217, 222, 226, 0.9);
  border-radius: 10px;
  padding: 10px;
  min-width: 0;
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.product-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.price {
  color: var(--yellow-2);
  font-size: 20px;
  font-weight: 900;
}

.empty-state {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--muted);
}

.service-grid,
.faq-grid,
.contact-grid,
.admin-grid,
.video-grid,
.calculator-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-card,
.faq-card,
.contact-card,
.admin-panel,
.calculator-panel,
.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.section.dark .service-card {
  background: #181f21;
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card h3,
.faq-card h3,
.contact-card h3,
.admin-panel h3,
.calculator-panel h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.section.dark .service-card h3 {
  color: #fff;
}

.service-card p,
.faq-card p,
.contact-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.section.dark .service-card p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-command {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-intro {
  border-radius: 20px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(17, 20, 20, 0.96), rgba(27, 35, 38, 0.92)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position);
  color: #fff;
  box-shadow: 0 24px 70px rgba(17, 20, 20, 0.18);
  display: grid;
  gap: 18px;
}

.contact-intro h2 {
  margin: 0;
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", "Arial", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.contact-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
}

.contact-note {
  width: fit-content;
  border: 1px solid rgba(255, 189, 12, 0.4);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--yellow);
  background: rgba(255, 189, 12, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.contact-facts {
  display: grid;
  gap: 10px;
}

.contact-fact {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  overflow-wrap: anywhere;
}

.contact-fact span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-fact b {
  color: #fff;
  font-size: 15px;
}

.contact-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 18px;
  margin-top: 18px;
}

.contact-form-card {
  box-shadow: var(--shadow-soft);
}

.contact-map-panel {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(217, 222, 226, 0.86);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-map-panel > div {
  padding: 20px 22px;
}

.contact-map-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.contact-map-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 820px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

.contact-map-panel iframe {
  width: 100%;
  height: min(420px, 52vw);
  min-height: 280px;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(0.98);
}

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

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--mist);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-method:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 20, 20, 0.08);
  transform: translateY(-1px);
}

.contact-method b {
  color: var(--ink);
}

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

.qr-box {
  min-height: 150px;
  background: var(--mist);
  border: 1px dashed #b8c0c7;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 12px;
  overflow: hidden;
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

textarea {
  resize: vertical;
  min-height: 110px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px) saturate(140%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  animation: fadeIn 0.18s ease;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  overscroll-behavior: contain;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  animation: modalRise 0.22s cubic-bezier(.2, .8, .2, 1);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.modal-body {
  padding: 20px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.floating-dock {
  position: fixed;
  right: 28px;
  bottom: 34px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.back-to-top {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 196, 0, 0.82);
  border-radius: 50%;
  background: rgba(17, 20, 20, 0.92);
  color: var(--yellow);
  box-shadow: 0 14px 36px rgba(17, 20, 20, 0.2);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 1000;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--yellow);
  color: var(--ink);
}

.dock-menu {
  display: grid;
  width: min(360px, calc(100vw - 56px));
  max-height: min(620px, calc(100vh - 150px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(17, 20, 20, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(150%);
  overflow: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-dock.open .dock-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.dock-panel-head {
  display: grid;
  gap: 4px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
}

.dock-panel-head b {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.dock-panel-head span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.dock-inquiry {
  margin: 12px 12px 6px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.dock-menu a,
.dock-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  text-decoration: none;
}

.dock-menu a span,
.dock-menu button span {
  max-width: 190px;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: right;
  line-height: 1.25;
}

.dock-menu a:hover,
.dock-menu button:hover {
  background: rgba(255, 189, 12, 0.12);
}

.dock-menu .dock-inquiry {
  width: auto;
  justify-content: center;
  border-bottom: 0;
  background: var(--yellow);
  color: var(--ink);
}

.dock-menu .dock-inquiry:hover {
  background: #ffd04a;
}

.dock-trigger {
  min-width: 132px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(17, 20, 20, 0.22);
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dock-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(17, 20, 20, 0.26);
}

.dock-trigger b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 20, 20, 0.12);
}

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

.video-thumb {
  position: relative;
  height: 170px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 20, 20, 0.74), rgba(17, 20, 20, 0.2)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 189, 12, 0.92);
  color: var(--ink);
  font-weight: 900;
}

.video-card {
  cursor: pointer;
}

.video-card:hover .video-thumb {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.visual-video-upload {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 189, 12, 0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  box-shadow: var(--shadow);
}

.video-file-name {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.video-player-modal {
  width: min(1060px, 100%);
}

.video-player {
  width: 100%;
  max-height: 70vh;
  display: block;
  border-radius: 14px;
  background: #000;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes detailImageIn {
  from { opacity: 0; transform: scale(1.04); filter: saturate(0.92) blur(6px); }
  to { opacity: 1; transform: scale(1.012); filter: saturate(1) blur(0); }
}

.upload-zone {
  border: 2px dashed #b8c0c7;
  border-radius: var(--radius);
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  color: var(--muted);
  background: #fff;
}

.calculator-panel {
  max-width: 960px;
  margin: 0 auto;
}

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

.calc-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.calc-result {
  margin-top: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 8px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
}

.calc-row:last-child {
  border: 0;
  padding-bottom: 0;
  color: var(--yellow);
  font-weight: 900;
}

.admin-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.admin-title {
  margin: 0 0 16px;
  font-size: 32px;
  color: var(--ink);
}

.admin-headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-headline .admin-title {
  margin: 0;
}

.admin-tools {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.compact-field {
  min-width: 180px;
}

.admin-stack {
  display: grid;
  gap: 12px;
}

.admin-textarea {
  min-height: 230px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.admin-hint {
  color: var(--muted);
  font-size: 13px;
}

.visual-editor-toolbar {
  position: sticky;
  top: 72px;
  z-index: 70;
  background: #101414;
  color: #fff;
  border-bottom: 3px solid var(--yellow);
  padding: 12px clamp(16px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(17, 20, 20, 0.16);
}

.visual-editor-toolbar strong {
  color: var(--yellow);
  margin-right: 10px;
}

.visual-editor-toolbar span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.visual-editor-toolbar .cloud-status {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.visual-editor-toolbar .cloud-status.ok {
  color: #d9ffe6;
  background: rgba(21, 128, 61, 0.42);
}

.visual-editor-toolbar .cloud-status.bad {
  color: #ffe1e1;
  background: rgba(185, 28, 28, 0.46);
}

.visual-editor-toolbar .cloud-status.local {
  color: #fff4cc;
  background: rgba(255, 184, 0, 0.24);
}

.visual-editor-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.visual-editor-actions label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.72);
}

.visual-editor-actions select {
  min-height: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #070909;
  color: #fff;
  padding: 6px 10px;
}

.editable-inline {
  outline: 2px dashed rgba(255, 189, 12, 0.92);
  outline-offset: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.16s, outline-color 0.16s;
}

.editable-inline:hover {
  background: rgba(255, 189, 12, 0.18);
  outline-color: #fff;
}

.login-note {
  color: var(--muted);
  margin: -4px 0 18px;
}

.footer-edit-hint {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 189, 12, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 189, 12, 0.12);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.visual-edit-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  border: 0;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  box-shadow: var(--shadow);
}

.visual-image-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.visual-image-tools button {
  border: 0;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  box-shadow: var(--shadow);
}

.hero,
.product-media,
.page-hero,
.video-thumb,
.qr-box {
  position: relative;
}

.visual-edit-modal textarea {
  min-height: 180px;
}

.admin-image-preview {
  display: block;
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 8px 0;
  background: #f4f6f8;
}

.admin-image-preview.wide {
  max-height: 180px;
}

.article-body-input {
  min-height: 180px;
}

.admin-map-panel {
  border-color: rgba(255, 189, 12, 0.5) !important;
  background: linear-gradient(180deg, #fffdf5, #ffffff);
}

.admin-panel-actions {
  margin: 10px 0 14px;
}

.add-product-modal {
  width: min(920px, 100%);
}

.product-gallery-modal {
  width: min(980px, 100%);
}

.product-detail-modal {
  width: min(1380px, 100%);
  background: rgba(255, 255, 255, 0.96);
}

.product-detail-head {
  align-items: center;
}

.detail-kicker {
  margin: 0 0 7px;
  color: var(--yellow-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-body {
  display: grid;
  grid-template-columns: minmax(440px, 0.86fr) minmax(460px, 1.14fr);
  gap: 34px;
  background: #fff;
}

.product-detail-gallery {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.product-detail-media {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f4f6f7;
  box-shadow: none;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  display: block;
  transform: scale(var(--detail-zoom, 1));
  transform-origin: center;
  transition: transform 0.2s ease;
  animation: detailImageIn 0.46s cubic-bezier(.2, .8, .2, 1) both;
}

.product-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.product-detail-media .badges {
  z-index: 2;
}

.detail-image-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform: translateY(-50%);
  box-shadow: 0 18px 46px rgba(17, 20, 20, 0.2);
  backdrop-filter: blur(16px) saturate(140%);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.detail-image-nav::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
  display: block;
}

.detail-image-nav:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 24px 54px rgba(17, 20, 20, 0.28);
}

.detail-image-nav:focus-visible {
  outline: 3px solid rgba(255, 185, 0, 0.82);
  outline-offset: 4px;
}

.detail-image-prev {
  left: 14px;
}

.detail-image-prev::before {
  transform: translateX(3px) rotate(-135deg);
}

.detail-image-next {
  right: 14px;
}

.detail-image-next::before {
  transform: translateX(-3px) rotate(45deg);
}

.detail-image-tools {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(17, 20, 20, 0.18);
  backdrop-filter: blur(16px) saturate(140%);
}

.detail-image-tools button {
  min-width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 20, 20, 0.08);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  transition: background 0.18s ease, transform 0.18s ease;
}

.detail-image-tools button:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
}

.detail-image-tools span {
  min-width: 52px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.detail-image-counter {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 5;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(17, 20, 20, 0.84);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.detail-shortcuts {
  margin-top: -8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.product-detail-content {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
}

.product-detail-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.16;
}

.product-detail-content p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-title-block {
  padding-bottom: 20px;
  border-bottom: 4px solid var(--blue);
}

.detail-label {
  margin: 0 0 8px;
  color: var(--blue) !important;
  font-size: 15px;
  font-weight: 900;
}

.detail-spec-block,
.detail-info-block,
.detail-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.detail-note.soft {
  background: rgba(246, 248, 250, 0.72);
}

.detail-spec-block h4,
.detail-info-block h4,
.detail-note h4 {
  margin: 0;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.detail-spec-table {
  display: grid;
  border-top: 0;
}

.detail-spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  border-bottom: 1px solid var(--line);
  min-height: 44px;
}

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

.detail-spec-row span {
  display: block;
  padding: 11px 14px;
  color: var(--ink);
  background: #f4f4f4;
  border-right: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
}

.detail-spec-row b {
  display: block;
  padding: 11px 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.detail-thumb-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.detail-thumb-row button {
  min-height: 74px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #f4f6f7;
  overflow: hidden;
}

.detail-thumb-row button.active,
.detail-thumb-row button:hover {
  border-color: var(--blue);
}

.detail-thumb-row img {
  width: 100%;
  height: 74px;
  object-fit: cover;
}

.detail-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.detail-service-strip div {
  min-height: 96px;
  padding: 18px;
  background: #f3f4f5;
  display: grid;
  align-content: center;
  gap: 12px;
}

.detail-service-strip span {
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.detail-service-strip b {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.detail-info-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  list-style: none;
}

.detail-info-block li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-info-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 189, 12, 0.16);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.gallery-main {
  position: relative;
  background: #f4f6f8;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gallery-main img.is-changing {
  animation: gallerySwap 0.24s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(17, 20, 20, 0.2);
  backdrop-filter: blur(16px) saturate(140%);
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.gallery-nav::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
  display: block;
}

.gallery-nav:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 24px 54px rgba(17, 20, 20, 0.28);
}

.gallery-nav:focus-visible {
  outline: 3px solid rgba(255, 185, 0, 0.82);
  outline-offset: 4px;
}

.gallery-prev {
  left: 14px;
}

.gallery-prev::before {
  transform: translateX(3px) rotate(-135deg);
}

.gallery-next {
  right: 14px;
}

.gallery-next::before {
  transform: translateX(-3px) rotate(45deg);
}

.gallery-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  border-radius: 999px;
  background: rgba(17, 20, 20, 0.68);
  color: #fff;
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb-wrap {
  position: relative;
  min-width: 0;
}

.gallery-thumb-wrap > button:first-child {
  width: 100%;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.gallery-thumb-wrap > button:first-child.active,
.gallery-thumb-wrap > button:first-child:hover {
  opacity: 1;
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.thumb-delete {
  position: absolute;
  right: -6px;
  top: -6px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: #ffe1df;
  color: #b42318;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 20, 20, 0.16);
}

.thumb-delete:hover {
  background: #ffc7c2;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes gallerySwap {
  from { opacity: 0.35; transform: scale(0.992); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.992);
  filter: blur(8px);
  transition:
    opacity 0.72s cubic-bezier(.2, .8, .2, 1),
    transform 0.72s cubic-bezier(.2, .8, .2, 1),
    filter 0.72s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible,
.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section-head.reveal {
  transform: translateY(18px);
}

.machinery-band.reveal {
  transform: translateY(16px) scale(0.996);
}

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

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

}

.add-product-modal .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.login-panel {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(17, 20, 20, 0.08);
}

.login-panel h2 {
  margin: 0 0 18px;
  color: var(--ink);
}

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

.simple-admin-form .form-field:nth-child(2),
.simple-admin-form .form-field:nth-child(4),
.simple-admin-form .form-field:nth-child(6),
.simple-admin-form .form-field:nth-child(10),
.simple-admin-form .form-field:nth-child(12),
.simple-admin-form .form-field:nth-child(14),
.simple-admin-form .form-field:nth-child(16),
.simple-admin-form .form-field:nth-child(18),
.simple-admin-form .form-field:nth-child(20),
.simple-admin-form .form-field:nth-child(22),
.simple-admin-form .form-field:nth-child(24),
.simple-admin-form .form-field:nth-child(26),
.simple-admin-form .form-field:nth-child(29) {
  grid-column: 1 / -1;
}

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

.simple-editor {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.simple-editor-title {
  color: var(--ink);
  font-weight: 900;
}

.simple-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.58);
  padding: 42px clamp(16px, 4vw, 64px) 24px;
}

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

.footer h3,
.footer h4 {
  color: #fff;
  margin: 0 0 12px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  margin: 7px 0;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

#toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 160;
  transform: translateX(-50%) translateY(80px);
  opacity: 0;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, opacity 0.2s;
  max-width: min(560px, calc(100vw - 32px));
}

#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Typography elevation: make the site feel more premium, confident and readable. */
.topbar {
  font-size: 13.5px;
  font-weight: 700;
}

.language-menu summary,
.language-panel button {
  font-size: 14px;
  font-weight: 800;
}

.brand-mark {
  width: 46px;
  height: 46px;
  font-size: 17px;
}

.brand-title {
  font-size: 22px;
  line-height: 1;
}

.brand-subtitle {
  font-size: 12.5px;
  font-weight: 800;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 900;
}

.nav-cta,
.btn {
  min-height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 900;
}

.eyebrow {
  font-size: 14px;
  font-weight: 900;
}

.hero-copy,
.page-title p,
.section-head p,
.about-command-copy p,
.buyer-desk-copy p,
.machinery-band p,
.private-band p,
.contact-command-copy p {
  font-size: 18px;
  line-height: 1.82;
}

.hero-stat strong,
.about-proof-strip strong {
  color: var(--yellow);
  font-size: clamp(64px, 6.2vw, 92px);
  line-height: 0.92;
  text-shadow: 0 12px 34px rgba(255, 189, 12, 0.22);
}

.hero-stat strong .editable-inline,
.about-proof-strip strong .editable-inline {
  font-size: inherit;
  line-height: inherit;
}

.hero-stat span,
.about-proof-strip span,
.trust-item p,
.category-tile span,
.product-meta,
.spec span,
.badge,
.contact-fact span,
.footer a,
.footer-bottom,
.category-list button,
.admin-tabs button,
.simple-editor-tabs button,
.detail-list li,
.thumb-strip button {
  font-size: 14px;
  line-height: 1.55;
}

.hero-stat span,
.about-proof-strip span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 900;
}

.trust-item {
  font-size: 15px;
  font-weight: 900;
}

.buyer-step span,
.about-pillar > span,
.brand-logo span,
.form-field label,
.video-play-label {
  font-size: 13.5px;
  font-weight: 900;
}

.buyer-step h3,
.category-tile b,
.service-card h3,
.faq-card h3,
.contact-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.buyer-step p,
.service-card p,
.faq-card p,
.contact-card p,
.product-summary,
.product-detail-content p,
.video-card p {
  font-size: 16px;
  line-height: 1.76;
}

.about-pillar h3 {
  font-size: 30px;
}

.about-pillar p {
  font-size: 17px;
  line-height: 1.78;
}

.brand-logo {
  font-size: clamp(23px, 2.4vw, 34px);
}

.category-tile {
  min-height: 150px;
}

.product-body {
  gap: 18px;
}

.product-name {
  font-size: 28px;
  line-height: 1.08;
}

.spec {
  min-height: 64px;
}

.spec b {
  font-size: 15px;
}

.product-price,
.detail-price {
  font-size: 26px;
}

.form-field input,
.form-field select,
.form-field textarea,
.catalog-toolbar input,
.catalog-toolbar select,
.catalog-toolbar .filter-count,
.simple-admin-form input,
.simple-admin-form select,
.simple-admin-form textarea {
  min-height: 52px;
  font-size: 16px;
}

.product-detail-content h3,
.modal-head h3 {
  font-size: 34px;
  line-height: 1.12;
}

.modal-head p,
.qr-box p,
.contact-fact strong,
.dock-menu a,
.dock-menu button,
.video-card h3,
.detail-section h4 {
  font-size: 16px;
}

.contact-fact b,
.dock-trigger,
.product-footer .btn {
  font-size: 15px;
  font-weight: 900;
}

.footer h3,
.footer h4 {
  font-size: 18px;
}

@media (max-width: 1180px) {
  .buyer-desk-inner,
  .buyer-desk-steps,
  .about-command-inner,
  .how-buy-inner {
    grid-template-columns: 1fr;
  }

  .how-buy-copy p {
    max-width: 760px;
  }

  .how-buy-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 40px;
  }

  .how-buy-step:nth-child(3)::before,
  .how-buy-step:nth-child(3)::after {
    display: none;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .about-proof-strip {
    max-width: 760px;
  }

  .catalog-toolbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .language-panel {
    right: auto;
    left: 0;
  }

  .main-nav {
    display: flex;
    position: static;
    order: 3;
    flex: 0 0 100%;
    overflow-x: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    padding: 0 0 8px;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 12px 10px;
  }

  .mobile-toggle {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 560px;
    background-position: 58% center;
  }

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

  .page-title h1 {
    font-size: 46px;
  }

  .section-head h2,
  .machinery-band h2 {
    font-size: 36px;
  }

  .hero-stats,
  .trust-strip,
  .machinery-band,
  .catalog-layout,
  .contact-grid,
  .contact-command,
  .contact-lower,
  .admin-grid,
  .admin-headline,
  .simple-admin-form,
  .simple-editor-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .admin-headline {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-editor-toolbar {
    top: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-sidebar {
    position: static;
  }

  .category-list {
    display: flex;
    overflow-x: auto;
    max-height: none;
  }

  .category-list button {
    min-width: 190px;
    border-right: 1px solid var(--line);
  }

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

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

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

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

  .buyer-desk {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .product-detail-body {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery {
    position: relative;
    top: auto;
  }

  .product-detail-media {
    position: relative;
    top: auto;
    min-height: 380px;
  }

  .product-detail-media img {
    min-height: 380px;
  }

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

  .how-buy-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .how-buy-step:nth-child(2n)::before,
  .how-buy-step:nth-child(2n)::after {
    display: none;
  }

  .how-buy-step:nth-child(3)::before,
  .how-buy-step:nth-child(3)::after {
    display: block;
  }

  .how-buy-step h3 {
    max-width: 180px;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 64px;
    flex-wrap: nowrap;
    padding-left: 16px;
    padding-right: 16px;
    width: 100vw;
    max-width: 100vw;
  }

  .how-buy-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .how-buy-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-buy-step {
    grid-template-columns: 86px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .how-buy-step::before,
  .how-buy-step::after,
  .how-buy-step:nth-child(3)::before,
  .how-buy-step:nth-child(3)::after {
    display: none !important;
  }

  .how-buy-hex {
    width: 82px;
  }

  .how-buy-step h3 {
    max-width: none;
    font-size: 19px;
  }

  .main-nav {
    display: none;
  }

  .brand-title {
    display: none;
  }

  .brand {
    min-width: 0;
    flex: 0 0 auto;
  }

  .brand-logo-main {
    width: 148px;
  }

  .nav-wrap {
    gap: 10px;
    position: relative;
    padding-right: 16px;
  }

  .mobile-toggle {
    display: none !important;
    place-items: center;
    flex: 0 0 42px;
    position: fixed;
    right: 16px;
    top: 12px;
    transform: none;
    z-index: 90;
    background: var(--ink);
    color: var(--yellow);
    border: 2px solid var(--yellow);
  }

  .brand-subtitle {
    display: none;
  }

  .buyer-desk-copy h2 {
    font-size: 34px;
  }

  .buyer-step {
    padding: 18px;
    border-radius: 14px;
  }

  .about-command {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .about-command-copy h2 {
    font-size: 38px;
  }

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

  .about-proof-item:nth-child(2) {
    border-right: 0;
  }

  .about-proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-pillar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .brand-logo {
    min-height: 92px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 540px;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.02;
    max-width: 360px;
  }

  .eyebrow {
    font-size: 13px;
    max-width: 360px;
  }

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

  .page-title h1 {
    font-size: 38px;
    max-width: 360px;
  }

  .page-title p {
    max-width: 360px;
    font-size: 16px;
  }

  .section-head h2,
  .machinery-band h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-stat,
  .about-proof-item {
    min-height: 136px;
    padding: 26px 20px;
  }

  .hero-stat strong,
  .about-proof-strip strong {
    font-size: clamp(46px, 16vw, 68px);
  }

  .hero-stat span,
  .about-proof-strip span {
    font-size: 17px;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .product-grid,
  .service-grid,
  .video-grid,
  .footer-grid,
  .form-grid,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    height: 210px;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 8px;
  }

  .modal {
    max-height: calc(100vh - 16px);
    border-radius: 20px 20px 14px 14px;
  }

  .modal-head {
    padding: 16px;
  }

  .modal-body {
    padding: 16px;
  }

  .product-detail-content h3 {
    font-size: 28px;
  }

  .product-detail-media,
  .product-detail-media img {
    min-height: 260px;
  }

  .detail-spec-row {
    grid-template-columns: 1fr;
  }

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

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

  .detail-service-strip {
    grid-template-columns: 1fr;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .floating-dock {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .back-to-top {
    position: absolute;
    right: 0;
    bottom: 66px;
    width: 44px;
    height: 44px;
  }

  .dock-menu {
    width: min(340px, calc(100vw - 28px));
    max-height: calc(100vh - 120px);
  }

  .dock-menu a span,
  .dock-menu button span {
    max-width: 165px;
  }

  .dock-trigger {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 12px;
    font-size: 15px;
    justify-content: center;
  }

  .dock-trigger b {
    width: 22px;
    height: 22px;
  }
}

/* UX-17: make proof numbers behave like primary brand metrics, not small labels. */
.hero-stats,
.about-proof-strip {
  max-width: 1060px;
}

.hero-stat,
.about-proof-item {
  min-height: 188px;
  padding: 40px 34px;
}

.hero-stat strong,
.about-proof-strip strong,
.hero-stat strong .editable-inline,
.about-proof-strip strong .editable-inline,
.stat-counter,
.stat-counter-static {
  color: var(--yellow) !important;
  font-size: clamp(64px, 5.4vw, 98px) !important;
  line-height: 0.9 !important;
  font-weight: 1000 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 16px 38px rgba(255, 189, 12, 0.28);
}

.hero-stat span,
.about-proof-strip span {
  margin-top: 20px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(20px, 1.35vw, 25px) !important;
  line-height: 1.18 !important;
  font-weight: 1000 !important;
}

.about-pillar {
  grid-template-columns: 118px 1fr;
  gap: 28px;
  padding: 36px 28px;
}

.about-pillar > span {
  color: var(--yellow) !important;
  font-size: clamp(54px, 4vw, 74px) !important;
  line-height: 0.82 !important;
  font-weight: 1000 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 14px 34px rgba(255, 189, 12, 0.3);
}

@media (max-width: 900px) {
  .hero-stat,
  .about-proof-item {
    min-height: 156px;
    padding: 30px 24px;
  }

  .hero-stat strong,
  .about-proof-strip strong,
  .hero-stat strong .editable-inline,
  .about-proof-strip strong .editable-inline,
  .stat-counter,
  .stat-counter-static {
    font-size: clamp(50px, 13vw, 76px) !important;
  }

  .hero-stat span,
  .about-proof-strip span {
    font-size: clamp(17px, 4vw, 22px) !important;
  }

  .about-pillar {
    grid-template-columns: 84px 1fr !important;
    gap: 18px;
    padding: 26px 20px;
  }

  .about-pillar > span {
    font-size: clamp(42px, 12vw, 58px) !important;
  }

  .proof-intro h2 {
    font-size: clamp(42px, 12vw, 66px);
  }

  .proof-gallery-grid,
  .proof-process-grid {
    grid-template-columns: 1fr;
  }

  .proof-card.featured {
    grid-column: auto;
  }

  .proof-card-media,
  .proof-card.featured .proof-card-media {
    min-height: 300px;
  }

  .proof-process-grid a {
    min-height: auto;
  }

  .service-record-layout,
  .service-record-spotlight {
    grid-template-columns: 1fr;
  }

  .service-record-visual {
    min-height: 390px;
    border-radius: 24px;
  }

  .service-record-visual-top {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .service-record-arrows {
    left: 16px;
    right: 16px;
  }

  .service-record-arrows a {
    width: 52px;
    height: 52px;
  }

  .service-record-thumb-strip {
    grid-auto-columns: minmax(138px, 42%);
  }

  .service-record-panel {
    border-radius: 24px;
  }

  .service-record-panel h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .proof-detail-body {
    grid-template-columns: 1fr;
  }

  .proof-detail-image,
  .proof-article-hero {
    min-height: 300px;
  }

  .proof-detail-meta {
    grid-template-columns: 1fr;
  }

  .proof-article-copy {
    font-size: 18px;
  }

  .service-record-more-grid {
    grid-auto-columns: minmax(280px, 86%);
  }

  .service-record-more-head {
    display: block;
  }
}

/* UX-26: enterprise visual system refresh. Keep the site premium, spacious and buyer-facing. */
:root {
  --ink: #0d1112;
  --ink-2: #182022;
  --graphite: #263034;
  --yellow: #ffc400;
  --yellow-2: #b57900;
  --line: #e3e8ec;
  --mist: #f6f7f8;
  --mist-2: #eef2f4;
  --muted: #63717a;
  --shadow-soft: 0 24px 80px rgba(13, 17, 18, 0.1);
}

body {
  background: #f7f8f8;
  color: #121819;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.topbar {
  min-height: 42px;
  background: linear-gradient(90deg, #0d1112, #151b1d);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
}

.topbar strong {
  color: var(--yellow);
  font-weight: 1000;
}

.topbar-actions > span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.language-menu {
  z-index: 120;
}

.language-menu summary {
  min-width: 150px;
  min-height: 40px;
  padding: 7px 13px 7px 14px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-menu[open] summary,
.language-menu summary:hover {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 196, 0, 0.9);
  transform: translateY(-1px);
}

.language-menu[open] .language-globe,
.language-menu summary:hover .language-globe,
.language-menu[open] .language-caret,
.language-menu summary:hover .language-caret {
  color: var(--yellow-2);
}

.language-current {
  font-weight: 1000;
}

.language-code {
  min-width: 26px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.16);
  color: var(--yellow);
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 1000;
}

.language-menu[open] .language-code,
.language-menu summary:hover .language-code {
  background: rgba(255, 196, 0, 0.24);
  color: var(--ink);
}

.language-panel {
  width: min(286px, calc(100vw - 28px));
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border: 1px solid rgba(227, 232, 236, 0.98);
  border-radius: 18px;
  box-shadow: 0 28px 76px rgba(13, 17, 18, 0.18);
  backdrop-filter: blur(20px);
}

.language-menu[open] .language-panel {
  z-index: 240;
}

.language-menu[open] .language-panel::before {
  display: none;
}

.language-panel::before {
  background: #fff;
  border-left: 1px solid rgba(227, 232, 236, 0.98);
  border-top: 1px solid rgba(227, 232, 236, 0.98);
}

.language-panel button {
  min-height: 50px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #172022;
  background: transparent;
  gap: 12px;
  transform: none;
}

.language-panel button:hover {
  color: var(--ink);
  background: #f3f5f6;
  transform: none;
}

.language-panel button.active {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 196, 0, 0.22);
  transform: none;
}

.language-flag {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 17, 18, 0.06);
  font-size: 18px;
  flex: 0 0 auto;
}

.language-panel button.active .language-flag {
  background: rgba(13, 17, 18, 0.12);
}

.language-name {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-weight: 1000;
}

.language-short {
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
}

.language-panel button.active .language-short {
  color: rgba(13, 17, 18, 0.72);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(227, 232, 236, 0.92);
}

.nav-wrap {
  min-height: 78px;
}

.main-nav {
  gap: 8px;
}

.main-nav a {
  position: relative;
  border-radius: 0;
  background: transparent !important;
  color: #243036;
  padding: 28px 10px 26px;
  font-size: 15px;
  font-weight: 950;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  border-radius: 12px;
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.nav-cta {
  background: var(--yellow) !important;
  color: #0d1112 !important;
  box-shadow: 0 16px 34px rgba(255, 196, 0, 0.24);
}

.btn-primary:hover,
.nav-cta:hover {
  background: #ffd84a !important;
  box-shadow: 0 22px 42px rgba(255, 196, 0, 0.32);
}

.hero h1,
.page-title h1,
.section-head h2,
.proof-intro h2,
.service-record-panel h1,
.service-record-more-head h2,
.about-command-copy h2,
.machinery-band h2 {
  max-width: 980px;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(58px, 6.2vw, 108px);
}

.section-head h2,
.proof-intro h2 {
  font-size: clamp(44px, 4.8vw, 82px);
  line-height: 0.98;
}

.page-hero {
  padding-top: clamp(74px, 7vw, 118px);
  padding-bottom: clamp(74px, 7vw, 118px);
}

.page-title h1 {
  font-size: clamp(50px, 5.2vw, 92px);
  line-height: 0.98;
}

.section,
.proof-command,
.service-record-page,
.industry-article-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 248, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(255, 196, 0, 0.12), transparent 34%);
}

.product-card,
.category-tile,
.service-card,
.faq-item,
.proof-card,
.proof-process-grid a,
.service-record-panel,
.industry-article-document,
.service-record-more-card,
.contact-panel,
.admin-panel {
  border-color: rgba(227, 232, 236, 0.96) !important;
  box-shadow: 0 18px 58px rgba(13, 17, 18, 0.08) !important;
}

.product-card:hover,
.category-tile:hover,
.service-card:hover,
.proof-card:hover,
.service-record-more-card:hover {
  box-shadow: 0 28px 86px rgba(13, 17, 18, 0.14) !important;
}

.service-record-page {
  padding-top: clamp(42px, 5vw, 82px);
}

.service-record-panel h1 {
  font-size: clamp(42px, 4vw, 70px);
  line-height: 1.02;
}

.service-record-more-head {
  display: block;
  margin-bottom: 26px;
}

.service-record-more-head h2 {
  max-width: 920px;
  font-size: clamp(40px, 4.3vw, 78px);
  line-height: 1.02;
}

.service-record-more-head p {
  margin-bottom: 10px;
}

.service-record-more-grid {
  grid-auto-columns: minmax(360px, 31%);
}

.service-record-more-card {
  background: #fff;
}

/* UX-27: fix visual hierarchy for buyer steps, article cards and article browsing. */
.buyer-step {
  position: relative;
  overflow: hidden;
  padding: 30px 28px 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.buyer-step::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.08);
  pointer-events: none;
}

.buyer-step-index,
.buyer-step span.buyer-step-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: var(--yellow);
  color: #0d1112 !important;
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  box-shadow: 0 20px 48px rgba(255, 196, 0, 0.32);
}

.buyer-step h3 {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  font-size: clamp(26px, 2.1vw, 34px);
}

.buyer-step p {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.76;
}

.proof-process {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #111415, #263033);
  background-clip: padding-box;
  box-sizing: border-box;
  isolation: isolate;
}

.proof-process-grid {
  gap: 14px;
  background: transparent;
  border: 0;
  overflow: visible;
}

.proof-process-grid a {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  overflow: hidden;
}

.proof-process-grid a:first-child {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.proof-process-grid a:last-child {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.proof-process-grid a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.proof-command {
  padding-top: clamp(48px, 5vw, 78px);
}

.proof-command-inner {
  gap: clamp(22px, 3vw, 38px);
}

.proof-intro {
  max-width: 1040px;
  display: grid;
  gap: 12px;
}

.proof-intro .eyebrow {
  margin: 0;
  width: fit-content;
}

.proof-intro h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(38px, 4vw, 62px) !important;
  line-height: 1.08 !important;
  text-transform: none;
}

.proof-intro p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
}

.proof-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 18px;
}

.proof-card {
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(13, 17, 18, 0.08) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.proof-card.featured {
  grid-column: auto;
  grid-row: auto;
}

.proof-card-media {
  min-height: 220px;
  padding: 16px;
}

.proof-card.featured .proof-card-media {
  min-height: 220px;
}

.proof-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 13, 14, 0.04), rgba(10, 13, 14, 0.5));
  pointer-events: none;
}

.proof-card-media span {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 12px;
  box-shadow: 0 10px 26px rgba(13, 17, 18, 0.16);
}

.proof-card-body {
  padding: 20px 22px 24px;
}

.proof-card-body h3 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
}

.proof-card-body p {
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.65;
}

.proof-process {
  margin-top: 8px;
}

.proof-process-grid a.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 820px) {
  .proof-intro h2 {
    font-size: clamp(34px, 10vw, 52px) !important;
  }

  .proof-gallery-grid {
    grid-template-columns: 1fr;
  }

  .proof-card.featured {
    grid-row: auto;
  }

  .proof-card-media,
  .proof-card.featured .proof-card-media {
    min-height: 230px;
  }

  .proof-card-body h3 {
    font-size: clamp(24px, 8vw, 34px);
  }
}

.industry-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.industry-article-list {
  position: sticky;
  top: 118px;
  border: 1px solid rgba(227, 232, 236, 0.96);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(13, 17, 18, 0.1);
  padding: 22px;
}

.industry-article-list-head {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.industry-article-list-head span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 22px;
  background: var(--yellow);
  color: #0d1112;
  font-size: 28px;
  font-weight: 1000;
}

.industry-article-list-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 1000;
}

.industry-article-list-scroll {
  display: grid;
  gap: 12px;
  max-height: 660px;
  overflow-y: auto;
  padding-right: 4px;
}

.industry-article-list-scroll a {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(227, 232, 236, 0.95);
  border-radius: 20px;
  background: #f7f8f8;
  color: var(--ink);
  padding: 18px;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.industry-article-list-scroll a:hover,
.industry-article-list-scroll a.active {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 0, 0.72);
  background: #fff8dc;
}

.industry-article-list-scroll small {
  width: fit-content;
  border-radius: 999px;
  background: rgba(13, 17, 18, 0.08);
  color: var(--muted);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 1000;
}

.industry-article-list-scroll a.active small {
  background: var(--yellow);
  color: var(--ink);
}

.industry-article-list-scroll strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 1000;
}

.industry-article-list-scroll p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 720;
}

.industry-article-list-scroll b {
  color: var(--yellow-2);
  font-size: 14px;
  font-weight: 1000;
}

@media (max-width: 900px) {
  .language-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 58px;
    width: auto;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    z-index: 240;
  }

  .language-panel::before {
    display: none;
  }

  .hero h1,
  .page-title h1,
  .section-head h2,
  .proof-intro h2,
  .service-record-more-head h2 {
    font-size: clamp(40px, 11vw, 64px);
  }

  .main-nav a {
    padding: 15px 10px;
  }

  .service-record-more-grid {
    grid-auto-columns: minmax(290px, 86%);
  }

  .buyer-step-index,
  .buyer-step span.buyer-step-index {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    font-size: 27px !important;
  }

  .industry-article-layout {
    grid-template-columns: 1fr;
  }

  .industry-article-list {
    position: static;
    order: -1;
  }

  .industry-article-list-scroll {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84%);
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    scroll-snap-type: x mandatory;
  }

  .industry-article-list-scroll a {
    scroll-snap-align: start;
  }
}

/* UX-54: premium industrial finish. Sharper surfaces, stronger imagery, and quieter high-end hierarchy. */
:root {
  --premium-bg: #f3f4f2;
  --premium-surface: rgba(255, 255, 255, 0.92);
  --premium-line: rgba(22, 28, 30, 0.11);
  --premium-line-strong: rgba(22, 28, 30, 0.18);
  --premium-shadow: 0 28px 76px rgba(13, 17, 18, 0.13);
  --premium-shadow-hover: 0 34px 96px rgba(13, 17, 18, 0.18);
  --premium-radius: 8px;
  --premium-gold: #ffc400;
  --premium-gold-dark: #9a6700;
}

body {
  background:
    linear-gradient(180deg, #f2f3f1 0, #fbfbfa 460px, #f5f6f4 100%),
    repeating-linear-gradient(90deg, rgba(13, 17, 18, 0.025) 0 1px, transparent 1px 88px);
}

.site-header {
  background: rgba(250, 251, 249, 0.88);
  border-bottom: 1px solid rgba(13, 17, 18, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.site-header.is-scrolled {
  background: rgba(250, 251, 249, 0.9);
  box-shadow:
    0 18px 54px rgba(13, 17, 18, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.topbar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    linear-gradient(90deg, #080b0c, #151b1d 52%, #090c0d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo-main {
  filter: drop-shadow(0 8px 18px rgba(13, 17, 18, 0.1));
}

.main-nav a {
  color: rgba(18, 25, 27, 0.82);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
}

.nav-cta,
.btn {
  border-radius: var(--premium-radius);
  min-height: 46px;
  padding: 12px 18px;
  letter-spacing: 0;
}

.btn-primary,
.nav-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffd84b 0%, var(--premium-gold) 55%, #e5a900 100%) !important;
  border: 1px solid rgba(154, 103, 0, 0.28) !important;
  box-shadow:
    0 18px 42px rgba(255, 196, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -2px 0 rgba(154, 103, 0, 0.14);
}

.btn-primary::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 42%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.btn-primary:hover::after,
.nav-cta:hover::after {
  transform: translateX(130%);
}

.btn-dark,
.btn-light,
.btn-ghost {
  border-radius: var(--premium-radius);
}

.btn-dark {
  background: linear-gradient(180deg, #192123, #0c1011);
  box-shadow: 0 18px 42px rgba(13, 17, 18, 0.22);
}

.btn-light {
  background: linear-gradient(180deg, #fff, #f5f6f4);
  border: 1px solid rgba(13, 17, 18, 0.12);
  box-shadow:
    0 12px 28px rgba(13, 17, 18, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.hero {
  position: relative;
  min-height: clamp(680px, 82vh, 860px);
  padding-top: clamp(96px, 9vw, 138px);
  padding-bottom: clamp(72px, 7vw, 108px);
  background-image:
    linear-gradient(90deg, rgba(4, 7, 8, 0.96) 0%, rgba(8, 12, 13, 0.84) 37%, rgba(10, 13, 14, 0.38) 68%, rgba(10, 13, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 13, 14, 0.18), rgba(10, 13, 14, 0.58)),
    var(--hero-image);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(90deg, black 0, rgba(0, 0, 0, 0.7) 44%, transparent 78%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(7, 10, 11, 0.58));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero h1 {
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.36);
}

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

.hero-stats,
.about-proof-strip {
  border-radius: var(--premium-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(130%);
}

.hero-stat,
.about-proof-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    rgba(7, 10, 11, 0.72);
}

.section,
.proof-command,
.service-record-page,
.industry-article-page,
.how-buy-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 245, 0.98)),
    repeating-linear-gradient(90deg, rgba(13, 17, 18, 0.022) 0 1px, transparent 1px 84px);
}

.section.alt,
.brand-wall,
.buyer-desk {
  background:
    linear-gradient(180deg, #f8f8f6, #ecefeb),
    repeating-linear-gradient(90deg, rgba(13, 17, 18, 0.024) 0 1px, transparent 1px 90px);
}

.section.dark,
.about-command,
.machinery-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    linear-gradient(135deg, #0b0f10 0%, #182124 48%, #0d1112 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(7, 10, 11, 0.96), rgba(12, 17, 18, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.section-head,
.service-record-more-head,
.proof-intro {
  border-top: 1px solid rgba(13, 17, 18, 0.08);
  padding-top: 22px;
}

.section-head h2,
.proof-intro h2,
.service-record-more-head h2,
.how-buy-copy h2 {
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--premium-gold-dark);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--premium-gold);
}

.hero .eyebrow,
.section.dark .eyebrow,
.about-command .eyebrow,
.machinery-band .eyebrow {
  color: var(--premium-gold);
}

.product-card,
.category-tile,
.brand-logo,
.service-card,
.faq-card,
.contact-card,
.calculator-panel,
.video-card,
.proof-card,
.proof-process-grid a,
.catalog-sidebar,
.catalog-toolbar,
.contact-panel,
.admin-panel,
.industry-article-list,
.industry-article-document,
.service-record-panel,
.service-record-more-card {
  border-radius: var(--premium-radius) !important;
  border: 1px solid var(--premium-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 248, 0.91)) !important;
  box-shadow:
    var(--premium-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.product-card:hover,
.category-tile:hover,
.brand-logo:hover,
.service-card:hover,
.faq-card:hover,
.contact-card:hover,
.video-card:hover,
.proof-card:hover,
.proof-process-grid a:hover,
.service-record-more-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 196, 0, 0.54) !important;
  box-shadow:
    var(--premium-shadow-hover),
    0 0 0 1px rgba(255, 196, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

.product-card {
  background: #fff !important;
}

.product-media,
.video-thumb,
.proof-card-media,
.service-record-more-card figure {
  filter: saturate(0.98) contrast(1.06);
}

.product-media {
  height: clamp(230px, 21vw, 330px);
}

.product-media::after,
.proof-card-media::after,
.service-record-more-card figure::after {
  background:
    linear-gradient(180deg, rgba(7, 10, 11, 0.02), rgba(7, 10, 11, 0.46)),
    linear-gradient(90deg, rgba(7, 10, 11, 0.16), transparent 44%);
}

.product-body {
  padding: clamp(20px, 2vw, 28px);
}

.product-name {
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.02;
}

.product-summary {
  color: #5c6870;
  font-size: 15px;
  line-height: 1.68;
}

.spec {
  border-radius: var(--premium-radius);
  background:
    linear-gradient(180deg, #f8f9f7, #eff1ee);
  border-color: rgba(13, 17, 18, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.price {
  color: var(--premium-gold-dark);
}

.badge {
  border: 1px solid rgba(13, 17, 18, 0.08);
  box-shadow: 0 10px 24px rgba(13, 17, 18, 0.1);
}

.brand-logo {
  min-height: 142px;
}

.brand-logo img {
  max-width: 184px;
  height: 62px;
}

.category-tile {
  min-height: 176px;
  background:
    linear-gradient(180deg, #fff, #f4f5f2) !important;
}

.category-tile::after,
.brand-logo::after,
.service-card::after,
.contact-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 32%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.category-tile,
.brand-logo,
.service-card,
.contact-card,
.product-card {
  position: relative;
}

.category-tile:hover::after,
.brand-logo:hover::after,
.service-card:hover::after,
.contact-card:hover::after,
.product-card:hover::after {
  opacity: 1;
}

.service-card,
.contact-card,
.calculator-panel,
.video-card {
  padding: clamp(22px, 2.2vw, 34px);
}

.section.dark .service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.field input,
.field select,
.form-field input,
.form-field select,
.form-field textarea,
.admin-input,
.admin-textarea {
  border-radius: var(--premium-radius);
  border-color: rgba(13, 17, 18, 0.13);
  background:
    linear-gradient(180deg, #fff, #fbfbfa);
  min-height: 48px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.field input:focus,
.field select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.admin-input:focus,
.admin-textarea:focus {
  border-color: rgba(255, 196, 0, 0.82);
  box-shadow:
    0 0 0 4px rgba(255, 196, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.how-buy-section {
  border-top: 1px solid rgba(13, 17, 18, 0.08);
  border-bottom: 1px solid rgba(13, 17, 18, 0.08);
}

.how-buy-hex {
  box-shadow:
    0 28px 62px rgba(13, 17, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -18px 24px rgba(0, 0, 0, 0.24);
}

.floating-dock .dock-trigger,
.back-to-top {
  border-radius: var(--premium-radius);
  box-shadow:
    0 22px 56px rgba(13, 17, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

@media (max-width: 900px) {
  .hero {
    min-height: 620px;
  }

  .product-media {
    height: 260px;
  }
}

@media (min-width: 901px) {
  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 3px;
  }

  .main-nav a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 13.5px;
    letter-spacing: 0;
  }

  .nav-wrap {
    gap: 14px;
  }

  .nav-cta {
    flex: 0 0 auto;
    min-width: 106px;
  }
}

/* UX-56: restore buyer-desk contrast after premium surface refresh. */
.buyer-desk {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 9, 10, 0.98) 0%, rgba(14, 20, 21, 0.94) 42%, rgba(24, 31, 32, 0.88) 100%),
    var(--hero-image) !important;
  background-size: cover !important;
  background-position: center !important;
  color: #fff;
}

.buyer-desk::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 196, 0, 0.12), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.buyer-desk-inner {
  position: relative;
  z-index: 1;
}

.buyer-desk-copy h2 {
  color: #fff !important;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.buyer-desk-copy p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.buyer-desk .eyebrow {
  color: var(--premium-gold) !important;
}

.buyer-step {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)) !important;
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(18px) saturate(130%);
}

.buyer-step h3 {
  color: #fff !important;
}

.buyer-step p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.buyer-step::after {
  background: rgba(255, 196, 0, 0.12);
}

.buyer-step:hover {
  border-color: rgba(255, 196, 0, 0.48) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.145), rgba(255, 255, 255, 0.07)) !important;
}

/* UX-57: site-wide color unification across every page. */
:root {
  --pg-black: #0b0f10;
  --pg-ink: #111819;
  --pg-graphite: #1b2426;
  --pg-steel: #5f6b70;
  --pg-paper: #f5f4ef;
  --pg-paper-2: #ebe9df;
  --pg-surface: #ffffff;
  --pg-gold: #ffc400;
  --pg-gold-2: #9a6700;
  --pg-line: rgba(17, 24, 25, 0.12);
  --pg-line-dark: rgba(255, 255, 255, 0.14);
}

body {
  background:
    linear-gradient(180deg, var(--pg-paper) 0%, #faf9f5 44%, var(--pg-paper) 100%),
    repeating-linear-gradient(90deg, rgba(17, 24, 25, 0.022) 0 1px, transparent 1px 96px) !important;
  color: var(--pg-ink);
}

.topbar,
.site-header,
.footer {
  color-scheme: light;
}

.site-header {
  background: rgba(245, 244, 239, 0.92) !important;
}

.page-hero,
.hero,
.buyer-desk,
.about-command,
.machinery-band,
.section.dark,
.proof-process,
.contact-intro {
  background:
    linear-gradient(90deg, rgba(8, 12, 13, 0.96), rgba(20, 28, 29, 0.84)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.1)),
    var(--hero-image) !important;
  background-size: cover !important;
  background-position: var(--hero-position, center) !important;
  color: #fff;
}

.section,
.section.alt,
.brand-wall,
.proof-command,
.service-record-page,
.industry-article-page,
.how-buy-section,
.contact-section,
.calculator-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 244, 239, 0.96)),
    repeating-linear-gradient(90deg, rgba(17, 24, 25, 0.022) 0 1px, transparent 1px 96px) !important;
}

.page-title p,
.hero-copy,
.buyer-desk-copy p,
.about-command-copy p,
.machinery-band p,
.section.dark .section-head p,
.contact-intro p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.eyebrow,
.service-record-more-head p,
.proof-process h3,
.industry-article-list-scroll b,
.price {
  color: var(--pg-gold-2) !important;
}

.hero .eyebrow,
.page-hero .eyebrow,
.buyer-desk .eyebrow,
.about-command .eyebrow,
.machinery-band .eyebrow,
.section.dark .eyebrow,
.proof-process .eyebrow,
.contact-intro .eyebrow {
  color: var(--pg-gold) !important;
}

.eyebrow::before {
  background: var(--pg-gold) !important;
}

.product-card,
.category-tile,
.brand-logo,
.service-card,
.faq-card,
.faq-item,
.contact-card,
.contact-panel,
.calculator-panel,
.video-card,
.proof-card,
.proof-process-grid a,
.catalog-sidebar,
.catalog-toolbar,
.admin-panel,
.simple-admin-card,
.industry-article-list,
.industry-article-document,
.industry-article-list-scroll a,
.service-record-panel,
.service-record-more-card,
.proof-detail-meta div,
.modal {
  border-color: var(--pg-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 248, 243, 0.94)) !important;
  color: var(--pg-ink) !important;
}

.section.dark .service-card,
.buyer-step,
.about-pillar,
.proof-process-grid a {
  border-color: var(--pg-line-dark) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)) !important;
  color: #fff !important;
}

.section.dark .service-card h3,
.section.dark .service-card p,
.buyer-step h3,
.buyer-step p,
.about-pillar h3,
.about-pillar p,
.proof-process-grid a h4,
.proof-process-grid a p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.section.dark .service-card h3,
.buyer-step h3,
.about-pillar h3,
.proof-process-grid a h4 {
  color: #fff !important;
}

.field input,
.field select,
.form-field input,
.form-field select,
.form-field textarea,
.admin-input,
.admin-textarea,
.catalog-toolbar input,
.catalog-toolbar select,
.simple-admin-form input,
.simple-admin-form select,
.simple-admin-form textarea {
  background: linear-gradient(180deg, #fff, #f8f7f1) !important;
  border-color: var(--pg-line) !important;
  color: var(--pg-ink) !important;
}

.category-list button,
.industry-article-list-scroll a,
.language-panel button {
  background: transparent;
  color: var(--pg-ink);
}

.category-list button:hover,
.category-list button.active,
.industry-article-list-scroll a:hover,
.industry-article-list-scroll a.active,
.language-panel button.active,
.language-panel button:hover {
  background: linear-gradient(180deg, #fff6d6, #f3e8bd) !important;
  color: var(--pg-ink) !important;
}

.badge,
.badge.hot,
.badge.certified,
.industry-article-list-scroll small,
.proof-card-media span,
.service-record-more-card figure span {
  background: rgba(255, 196, 0, 0.94) !important;
  color: var(--pg-ink) !important;
  border-color: rgba(154, 103, 0, 0.2) !important;
}

.btn-primary,
.nav-cta,
.dock-inquiry,
.back-to-top,
.floating-dock .dock-trigger {
  background: linear-gradient(180deg, #ffd84b 0%, var(--pg-gold) 58%, #dfa200 100%) !important;
  color: var(--pg-ink) !important;
  border-color: rgba(154, 103, 0, 0.28) !important;
}

.btn-dark,
.sidebar-title {
  background: linear-gradient(180deg, #182123, var(--pg-black)) !important;
  color: #fff !important;
}

.btn-light {
  background: linear-gradient(180deg, #fff, #f3f1e8) !important;
  color: var(--pg-ink) !important;
}

.btn-danger {
  background: #fff0df !important;
  color: #8b3b00 !important;
}

.product-summary,
.section-head p,
.contact-card p,
.service-card p,
.faq-card p,
.video-card p,
.industry-article-list-scroll p,
.proof-card-body p,
.service-record-more-card p,
.how-buy-copy p,
.about-proof-strip span,
.hero-stat span {
  color: var(--pg-steel);
}

.footer {
  background:
    linear-gradient(180deg, #101718, #080b0c) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

/* UX-58: fill the home hero's right side with a compact quote desk instead of empty backdrop. */
.hero-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 1720px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(390px, 520px);
  gap: clamp(32px, 4vw, 76px);
  align-items: center;
}

.hero-layout .hero-inner {
  max-width: 880px !important;
}

.hero-layout .hero-stats {
  max-width: 820px;
  margin-top: clamp(28px, 3vw, 42px);
}

.hero-layout .hero-inner h1 {
  max-width: 860px;
  font-size: clamp(58px, 5.15vw, 92px) !important;
  line-height: 0.96;
}

.hero-layout .hero-inner h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero .hero-stat span {
  color: rgba(255, 255, 255, 0.74) !important;
}

.hero-side-panel {
  position: relative;
  width: 100%;
  align-self: start;
  justify-self: end;
  margin-top: clamp(18px, 3vw, 46px);
  padding: clamp(22px, 2.1vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    linear-gradient(180deg, rgba(7, 10, 11, 0.72), rgba(7, 10, 11, 0.5));
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(140%);
  overflow: hidden;
}

.hero-side-panel::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -112px;
  right: -86px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.16);
  filter: blur(1px);
  pointer-events: none;
}

.hero-side-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 72px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-side-panel > * {
  position: relative;
  z-index: 1;
}

.hero-side-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pg-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-side-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pg-gold);
}

.hero-side-panel h2 {
  margin: 16px 0 10px;
  color: #fff !important;
  font-size: clamp(30px, 2.45vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-side-panel p {
  max-width: 34em;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76) !important;
  font-weight: 760;
  line-height: 1.55;
}

.hero-side-steps {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.hero-side-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-side-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffd84b, var(--pg-gold));
  color: var(--pg-ink);
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(255, 196, 0, 0.2);
}

.hero-side-step strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.hero-contact-list {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.hero-contact-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  color: #fff;
  text-decoration: none;
}

.hero-contact-row span,
.hero-qr-row small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-contact-row strong {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hero-contact-row:hover {
  border-color: rgba(255, 196, 0, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.14), rgba(255, 255, 255, 0.055));
}

.hero-qr-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 196, 0, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.14), rgba(255, 255, 255, 0.055));
}

.hero-qr-row img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.hero-qr-row strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.hero-side-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-side-contact small {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 850;
}

.hero-side-contact a {
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.hero-side-cta {
  width: 100%;
  margin-top: 18px;
}

.hero-facade {
  position: relative;
  width: 100%;
  align-self: center;
  justify-self: end;
  min-height: 468px;
  border-radius: 8px;
  perspective: 1000px;
  transform: translateY(-48px);
}

.hero-facade-shell {
  position: relative;
  height: 100%;
  min-height: 468px;
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05) 42%, rgba(255, 196, 0, 0.09)),
    linear-gradient(180deg, rgba(13, 18, 19, 0.78), rgba(9, 12, 13, 0.54));
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 196, 0, 0.18);
  backdrop-filter: blur(24px) saturate(145%);
  overflow: hidden;
}

.hero-facade-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.hero-facade-shell::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -92px;
  top: -110px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 216, 75, 0.42), rgba(255, 196, 0, 0.16) 44%, transparent 68%);
  pointer-events: none;
}

.hero-facade-kicker,
.hero-facade-brand,
.hero-facade-company,
.hero-facade-slogan,
.hero-facade-meta,
.hero-facade-badges,
.hero-facade-link {
  position: relative;
  z-index: 1;
}

.hero-facade-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pg-gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-facade-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--pg-gold);
}

.hero-facade-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(24px, 2.4vw, 34px);
}

.hero-facade-brand img {
  width: clamp(70px, 5vw, 88px);
  height: clamp(70px, 5vw, 88px);
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.34));
}

.hero-facade-brand span {
  color: #fff;
  font-size: clamp(42px, 3.3vw, 58px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-facade-company {
  max-width: 26em;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 820;
}

.hero-facade-slogan {
  margin-top: 14px;
  padding: 13px 16px;
  border-left: 4px solid var(--pg-gold);
  background: rgba(255, 196, 0, 0.1);
  color: #fff;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.32;
  font-weight: 950;
}

.hero-facade-meta {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 1px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.hero-facade-meta span {
  min-height: 64px;
  padding: 12px 14px;
  background: rgba(7, 10, 11, 0.42);
}

.hero-facade-meta b {
  display: block;
  color: var(--pg-gold);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1;
  font-weight: 950;
}

.hero-facade-meta small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facade-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-facade-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.hero-facade-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 196, 0, 0.34);
  border-radius: 8px;
  background: rgba(255, 196, 0, 0.13);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.hero-facade-link:hover {
  background: rgba(255, 196, 0, 0.22);
  transform: translateY(-1px);
}

.floating-dock.home-dock .dock-trigger {
  display: none;
}

.floating-dock.home-dock .dock-menu {
  right: 0;
}

@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .hero-layout .hero-inner,
  .hero-layout .hero-stats {
    max-width: 760px !important;
  }

  .hero-side-panel {
    justify-self: start;
    width: min(100%, 760px);
  }

  .hero-facade {
    justify-self: start;
    width: min(100%, 760px);
  }
}

@media (max-width: 720px) {
  .hero-layout {
    display: block;
  }

  .hero-layout .hero-inner,
  .hero-layout .hero-stats {
    max-width: 100% !important;
  }

  .hero-layout .hero-inner h1 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 62px) !important;
  }

  .hero-side-panel {
    display: none;
  }

  .hero-facade {
    display: none;
  }

  .hero-layout .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 24px;
  }

  .hero-layout .hero-stat {
    min-height: 112px !important;
    padding: 18px 16px !important;
  }

  .hero-layout .hero-stat strong,
  .hero-layout .hero-stat strong .editable-inline,
  .hero-layout .stat-counter,
  .hero-layout .stat-counter-static {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 0.95 !important;
  }

  .hero-layout .hero-stat span {
    margin-top: 8px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

/* UX-63: replace the right-side utility card with a cleaner brand storefront. */
.hero-facade {
  min-height: auto !important;
  height: clamp(420px, 42vw, 540px);
  display: grid;
  place-items: center;
  transform: none !important;
}

.hero-door {
  position: relative;
  width: min(100%, 500px);
  height: min(100%, 520px);
  min-height: 420px;
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--pg-gold);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 46%, rgba(255, 196, 0, 0.08)),
    rgba(8, 12, 13, 0.46);
  box-shadow:
    0 46px 120px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
}

.hero-door::before {
  content: "PASTGEAR";
  position: absolute;
  right: -22px;
  top: 34px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 82px;
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-door::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -88px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 0, 0.24);
  background: radial-gradient(circle, rgba(255, 196, 0, 0.16), transparent 64%);
  pointer-events: none;
}

.hero-door > * {
  position: relative;
  z-index: 1;
}

.hero-door-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pg-gold);
  font-size: 12px;
  font-weight: 950;
}

.hero-door-top::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--pg-gold);
}

.hero-door-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(56px, 6vw, 88px);
}

.hero-door-brand img {
  width: clamp(72px, 5.4vw, 96px);
  height: clamp(72px, 5.4vw, 96px);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-door-brand strong {
  color: #fff;
  font-size: clamp(44px, 3.9vw, 66px);
  line-height: 0.92;
  font-weight: 950;
  white-space: nowrap;
}

.hero-door p {
  max-width: 21em;
  margin: 26px 0 0;
  color: #fff !important;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.24;
  font-weight: 950;
}

.hero-door small {
  display: block;
  max-width: 34em;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 780;
}

.hero-door-meta {
  position: absolute;
  left: clamp(30px, 3vw, 46px);
  right: clamp(30px, 3vw, 46px);
  bottom: clamp(26px, 2.6vw, 38px);
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12px;
}

.hero-door-meta span {
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.hero-door-meta b {
  display: block;
  margin-bottom: 8px;
  color: var(--pg-gold);
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 0.95;
  font-weight: 950;
}

@media (max-width: 1280px) {
  .hero-facade {
    height: auto;
  }

  .hero-door {
    height: auto;
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .hero-facade {
    display: none;
  }
}

/* UX-64: storefront sign, not a boxed information card. */
.hero-facade {
  height: auto !important;
  min-height: 0 !important;
  align-self: center;
  justify-self: end;
  transform: translateY(-18px) !important;
}

.hero-door {
  width: min(100%, 520px) !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 12px 0 18px 34px !important;
  border: 0 !important;
  border-left: 4px solid var(--pg-gold) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.hero-door::before,
.hero-door::after {
  display: none !important;
}

.hero-door-top {
  margin-bottom: 34px;
}

.hero-door-top span {
  color: var(--pg-gold);
  font-size: 12px;
  font-weight: 950;
}

.hero-door-brand {
  gap: 20px !important;
  margin-top: 0 !important;
}

.hero-door-brand img {
  width: 82px !important;
  height: 82px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.16), rgba(0, 0, 0, 0.34)) !important;
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

.hero-door-brand strong {
  color: #fff !important;
  font-size: clamp(50px, 4.1vw, 68px) !important;
  line-height: 0.9 !important;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
}

.hero-door p {
  max-width: 15em !important;
  margin-top: 28px !important;
  color: #fff !important;
  font-size: clamp(25px, 2.2vw, 36px) !important;
  line-height: 1.16 !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.hero-door small {
  max-width: 30em !important;
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.hero-door small::after {
  content: " · 2011 · Export Desk";
  color: var(--pg-gold);
}

.hero-door-meta {
  display: none !important;
}

@media (max-width: 1280px) {
  .hero-facade {
    justify-self: start;
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .hero-facade {
    display: none !important;
  }
}

/* UX-65: grand brand stage for the right side of the hero. */
.hero-marquee {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  min-height: clamp(410px, 38vw, 500px);
  align-self: center;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 48px) 0 clamp(28px, 3vw, 48px) clamp(34px, 4vw, 70px);
  color: #fff;
  overflow: visible;
  transform: translateY(-58px);
}

.hero-marquee::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--pg-gold) 18%, var(--pg-gold) 82%, transparent);
  box-shadow: 0 0 42px rgba(255, 196, 0, 0.42);
}

.hero-marquee::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 50%;
  width: 460px;
  height: 460px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 196, 0, 0.14), rgba(255, 196, 0, 0.045) 38%, transparent 68%);
  pointer-events: none;
}

.hero-marquee-watermark {
  position: absolute;
  right: -0.24em;
  top: 0.02em;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(96px, 9vw, 170px);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: 0;
  pointer-events: none;
  white-space: nowrap;
}

.hero-marquee-brand,
.hero-marquee-line,
.hero-marquee-copy,
.hero-marquee-tags {
  position: relative;
  z-index: 1;
}

.hero-marquee-brand {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 26px);
}

.hero-marquee-brand img {
  width: clamp(72px, 5vw, 88px);
  height: clamp(72px, 5vw, 88px);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.18), rgba(0, 0, 0, 0.36));
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-marquee-brand span {
  color: #fff;
  font-size: clamp(50px, 3.55vw, 64px);
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 26px 68px rgba(0, 0, 0, 0.48);
  white-space: nowrap;
}

.hero-marquee-line {
  width: min(420px, 78%);
  height: 1px;
  margin: clamp(22px, 2.4vw, 34px) 0 clamp(18px, 2vw, 28px);
  background: linear-gradient(90deg, var(--pg-gold), rgba(255, 255, 255, 0.28), transparent);
}

.hero-marquee-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
  max-width: 610px;
}

.hero-marquee-copy b {
  color: var(--pg-gold);
  font-size: clamp(44px, 4vw, 68px);
  line-height: 0.9;
  font-weight: 950;
  text-shadow: 0 20px 54px rgba(255, 196, 0, 0.22);
}

.hero-marquee-copy strong {
  display: block;
  max-width: 14em;
  color: #fff;
  font-size: clamp(22px, 1.8vw, 31px);
  line-height: 1.12;
  font-weight: 950;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.hero-marquee-copy p {
  max-width: 34em;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 820;
}

.hero-marquee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(18px, 2vw, 28px);
}

.hero-marquee-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1280px) {
  .hero-marquee {
    justify-self: start;
    width: min(100%, 760px);
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 720px) {
  .hero-marquee {
    display: none;
  }
}

/* UX-66: no right-side widgets. Let the machinery image become the storefront. */
.hero {
  min-height: clamp(720px, 82vh, 880px) !important;
  background-image:
    linear-gradient(90deg, rgba(7, 10, 11, 0.96) 0%, rgba(8, 12, 13, 0.86) 34%, rgba(8, 12, 13, 0.42) 66%, rgba(8, 12, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(7, 10, 11, 0.18), rgba(7, 10, 11, 0.58)),
    var(--hero-image) !important;
  background-position: center right !important;
}

.hero-layout {
  grid-template-columns: minmax(0, 980px) !important;
  width: min(100%, 1720px);
  gap: 0 !important;
}

.hero-layout .hero-inner {
  max-width: 980px !important;
}

.hero-layout .hero-inner h1 {
  max-width: 920px;
  font-size: clamp(74px, 6.1vw, 118px) !important;
  line-height: 0.88;
}

.hero-layout .hero-inner h1 span {
  display: block;
  width: fit-content;
}

.hero-copy {
  max-width: 780px !important;
  font-size: clamp(18px, 1.2vw, 21px) !important;
}

.hero-layout .hero-stats {
  max-width: 880px !important;
  margin-top: clamp(34px, 4vw, 58px) !important;
}

.hero::before {
  opacity: 0.46;
  mask-image: linear-gradient(90deg, black 0, rgba(0, 0, 0, 0.62) 48%, transparent 86%);
}

.hero::after {
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(7, 10, 11, 0.68));
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px !important;
    background-position: 56% center !important;
  }

  .hero-layout .hero-inner h1 {
    font-size: clamp(48px, 13vw, 72px) !important;
    line-height: 0.92;
  }
}

/* UX-67: better title spacing and move the four proof modules to the right side. */
.hero-layout {
  grid-template-columns: minmax(0, 1fr) !important;
}

.hero-layout .hero-inner {
  max-width: none !important;
  display: grid;
  grid-template-columns: minmax(520px, 860px) minmax(360px, 520px);
  grid-template-areas:
    "eyebrow stats"
    "title stats"
    "copy stats"
    "actions stats";
  column-gap: clamp(56px, 7vw, 140px);
  align-items: center;
}

.hero-layout .hero-inner > .eyebrow {
  grid-area: eyebrow;
  align-self: end;
}

.hero-layout .hero-inner > h1 {
  grid-area: title;
  max-width: 900px !important;
  margin-top: 6px;
  font-size: clamp(68px, 5.35vw, 104px) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.012em !important;
  text-wrap: balance;
}

.hero-layout .hero-inner > h1 span {
  letter-spacing: 0.018em !important;
}

.hero-layout .hero-inner > .hero-copy {
  grid-area: copy;
  max-width: 760px !important;
  margin-top: 26px;
  letter-spacing: 0.01em;
  line-height: 1.72;
}

.hero-layout .hero-inner > .hero-actions {
  grid-area: actions;
  margin-top: 8px;
}

.hero-layout .hero-inner > .hero-stats {
  grid-area: stats;
  justify-self: end;
  width: min(100%, 520px);
  max-width: 520px !important;
  margin-top: 0 !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1px;
  align-self: center;
}

.hero-layout .hero-inner > .hero-stats .hero-stat {
  min-height: 188px;
  padding: 30px 28px;
}

.hero-layout .hero-inner > .hero-stats .hero-stat strong,
.hero-layout .hero-inner > .hero-stats .hero-stat strong .editable-inline,
.hero-layout .hero-inner > .hero-stats .stat-counter,
.hero-layout .hero-inner > .hero-stats .stat-counter-static {
  font-size: clamp(42px, 3.4vw, 62px) !important;
}

.hero-layout .hero-inner > .hero-stats .hero-stat span {
  margin-top: 14px !important;
  font-size: clamp(17px, 1.1vw, 21px) !important;
  line-height: 1.22 !important;
}

@media (max-width: 1180px) {
  .hero-layout .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "actions"
      "stats";
  }

  .hero-layout .hero-inner > .hero-stats {
    justify-self: start;
    width: min(100%, 760px);
    max-width: 760px !important;
    margin-top: 34px !important;
  }
}

@media (max-width: 720px) {
  .hero-layout .hero-inner {
    display: block;
  }

  .hero-layout .hero-inner > h1 {
    font-size: clamp(46px, 12vw, 66px) !important;
    letter-spacing: 0 !important;
  }

  .hero-layout .hero-inner > .hero-stats {
    width: 100%;
    max-width: 100% !important;
    margin-top: 24px !important;
  }
}

/* UX-68: Apple-style hero. Minimal, centered, product-image led. */
.hero {
  min-height: clamp(760px, 88vh, 940px) !important;
  padding-top: clamp(108px, 10vh, 148px) !important;
  padding-bottom: clamp(48px, 6vh, 82px) !important;
  background-image:
    linear-gradient(180deg, rgba(7, 10, 11, 0.58) 0%, rgba(7, 10, 11, 0.22) 38%, rgba(7, 10, 11, 0.78) 100%),
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(90deg, rgba(7, 10, 11, 0.84) 0%, rgba(7, 10, 11, 0.28) 46%, rgba(7, 10, 11, 0.24) 100%),
    var(--hero-image) !important;
  background-position: center center !important;
}

.hero-layout {
  width: min(100%, 1480px) !important;
  display: block !important;
  margin: 0 auto !important;
}

.hero-layout .hero-inner {
  max-width: 1160px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-layout .hero-inner > .eyebrow {
  justify-content: center;
  align-self: center !important;
  margin-bottom: 18px;
  color: var(--pg-gold) !important;
  font-size: 13px;
  letter-spacing: 0.04em !important;
}

.hero-layout .hero-inner > .eyebrow::before {
  width: 42px;
}

.hero-layout .hero-inner > h1 {
  max-width: 1120px !important;
  margin: 0 auto !important;
  font-size: clamp(70px, 7.4vw, 138px) !important;
  line-height: 0.88 !important;
  letter-spacing: 0 !important;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 28px 72px rgba(0, 0, 0, 0.48);
}

.hero-layout .hero-inner > h1 span {
  display: block;
  width: auto;
  color: var(--pg-gold);
  letter-spacing: 0 !important;
}

.hero-layout .hero-inner > .hero-copy {
  max-width: 760px !important;
  margin: 28px auto 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(18px, 1.28vw, 22px) !important;
  line-height: 1.68 !important;
  font-weight: 760;
  letter-spacing: 0 !important;
}

.hero-layout .hero-inner > .hero-actions {
  justify-content: center;
  margin-top: 30px;
  gap: 14px;
}

.hero .btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px !important;
}

.hero .btn-primary {
  box-shadow:
    0 20px 48px rgba(255, 196, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.56) !important;
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(14px);
}

.hero-layout .hero-inner > .hero-stats {
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin: clamp(56px, 8vh, 96px) auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(130%);
}

.hero-layout .hero-inner > .hero-stats .hero-stat {
  min-height: 96px !important;
  padding: 22px 24px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent !important;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-layout .hero-inner > .hero-stats .hero-stat:last-child {
  border-right: 0;
}

.hero-layout .hero-inner > .hero-stats .hero-stat strong,
.hero-layout .hero-inner > .hero-stats .hero-stat strong .editable-inline,
.hero-layout .hero-inner > .hero-stats .stat-counter,
.hero-layout .hero-inner > .hero-stats .stat-counter-static {
  color: #fff !important;
  font-size: clamp(24px, 2.05vw, 36px) !important;
  line-height: 1 !important;
  text-shadow: none !important;
}

.hero-layout .hero-inner > .hero-stats .hero-stat span {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
}

@media (max-width: 900px) {
  .hero {
    min-height: 760px !important;
    padding-top: 92px !important;
    background-position: 58% center !important;
  }

  .hero-layout .hero-inner > h1 {
    font-size: clamp(52px, 14vw, 76px) !important;
    line-height: 0.92 !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    font-size: 17px !important;
  }

  .hero-layout .hero-inner > .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 22px;
    margin-top: 34px !important;
  }

  .hero-layout .hero-inner > .hero-stats .hero-stat {
    min-height: 102px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-layout .hero-inner > .hero-stats .hero-stat:nth-child(2n) {
    border-right: 0;
  }

  .hero-layout .hero-inner > .hero-stats .hero-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* UX-70: give the large Chinese hero title more breathing room. */
.hero-layout .hero-inner > h1 {
  line-height: 0.98 !important;
}

.hero-layout .hero-inner > h1 span {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .hero-layout .hero-inner > h1 {
    line-height: 1 !important;
  }

  .hero-layout .hero-inner > h1 span {
    margin-top: 6px;
  }
}

/* UX-71: language selector uses real flag-style icons plus language names. */
.language-menu summary {
  min-width: auto !important;
  padding: 7px 14px 7px 12px !important;
  gap: 9px !important;
}

.language-globe,
.language-code,
.language-short {
  display: none !important;
}

.language-current,
.language-name {
  letter-spacing: 0 !important;
}

.language-flag {
  position: relative;
  display: inline-block !important;
  width: 30px !important;
  height: 20px !important;
  min-width: 30px;
  border-radius: 4px !important;
  overflow: hidden;
  background: #d8dde0;
  box-shadow:
    0 0 0 1px rgba(13, 17, 18, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
  font-size: 0 !important;
}

.language-menu summary .language-flag {
  width: 28px !important;
  height: 19px !important;
  min-width: 28px;
}

.language-panel {
  width: min(292px, calc(100vw - 28px)) !important;
}

.language-panel button {
  min-height: 54px !important;
  gap: 14px !important;
}

.flag-zh {
  background: #de2910;
}

.flag-zh::before {
  content: "★";
  position: absolute;
  left: 4px;
  top: 1px;
  color: #ffde00;
  font-size: 10px;
  line-height: 1;
}

.flag-en {
  background:
    linear-gradient(90deg, #3c3b6e 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #b22234 0 7.7%, #fff 7.7% 15.4%);
}

.flag-ar {
  background: #006c35;
}

.flag-ar::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 6px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66%);
}

.flag-pt {
  background: linear-gradient(90deg, #006600 0 42%, #ff0000 42%);
}

.flag-pt::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffcc00;
}

.flag-ru {
  background: linear-gradient(180deg, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%);
}

.flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.flag-es::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 5px;
  height: 6px;
  border-radius: 1px;
  background: #c60b1e;
}

.language-menu summary .language-flag.flag-zh,
.language-panel button .language-flag.flag-zh,
.language-panel button.active .language-flag.flag-zh,
.language-panel button:hover .language-flag.flag-zh {
  background: #de2910 !important;
}

.language-menu summary .language-flag.flag-en,
.language-panel button .language-flag.flag-en,
.language-panel button.active .language-flag.flag-en,
.language-panel button:hover .language-flag.flag-en {
  background:
    linear-gradient(90deg, #3c3b6e 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #b22234 0 7.7%, #fff 7.7% 15.4%) !important;
}

.language-menu summary .language-flag.flag-ar,
.language-panel button .language-flag.flag-ar,
.language-panel button.active .language-flag.flag-ar,
.language-panel button:hover .language-flag.flag-ar {
  background: #006c35 !important;
}

.language-menu summary .language-flag.flag-fr,
.language-panel button .language-flag.flag-fr,
.language-panel button.active .language-flag.flag-fr,
.language-panel button:hover .language-flag.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66%) !important;
}

.language-menu summary .language-flag.flag-pt,
.language-panel button .language-flag.flag-pt,
.language-panel button.active .language-flag.flag-pt,
.language-panel button:hover .language-flag.flag-pt {
  background: linear-gradient(90deg, #006600 0 42%, #ff0000 42%) !important;
}

.language-menu summary .language-flag.flag-ru,
.language-panel button .language-flag.flag-ru,
.language-panel button.active .language-flag.flag-ru,
.language-panel button:hover .language-flag.flag-ru {
  background: linear-gradient(180deg, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%) !important;
}

.language-menu summary .language-flag.flag-es,
.language-panel button .language-flag.flag-es,
.language-panel button.active .language-flag.flag-es,
.language-panel button:hover .language-flag.flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%) !important;
}

/* UX-72: calmer premium frontage, tighter top controls and cleaner flag menu. */
.topbar {
  min-height: 44px !important;
  padding: 6px clamp(18px, 4vw, 58px) !important;
  gap: 16px !important;
  flex-wrap: nowrap !important;
  position: relative;
  z-index: 160;
  font-size: 13px !important;
}

.topbar > div:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-actions {
  flex: 0 0 auto;
  flex-wrap: nowrap !important;
  gap: 12px !important;
}

.topbar-actions > span {
  white-space: nowrap;
  font-size: 13px;
}

.site-header {
  z-index: 120 !important;
}

.nav-wrap {
  overflow: visible !important;
  gap: 18px !important;
}

.brand-subtitle {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
  gap: 2px;
}

.main-nav a {
  padding-inline: 8px !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.language-menu {
  z-index: 320 !important;
}

.language-menu summary {
  min-height: 38px !important;
  padding: 7px 12px 7px 11px !important;
  gap: 9px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.16) !important;
}

.language-menu[open] summary,
.language-menu summary:hover {
  color: var(--pg-ink) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(255, 196, 0, 0.92) !important;
}

.language-current {
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px !important;
  font-weight: 950 !important;
}

.language-caret {
  color: currentColor !important;
  opacity: 0.74;
}

.language-panel {
  position: fixed !important;
  left: auto !important;
  right: clamp(18px, 4vw, 58px) !important;
  top: 56px !important;
  width: min(266px, calc(100vw - 24px)) !important;
  max-height: min(420px, calc(100vh - 86px));
  overflow-y: auto;
  padding: 8px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow:
    0 30px 90px rgba(13, 17, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.language-panel::before {
  display: none !important;
}

.language-panel button {
  min-height: 48px !important;
  padding: 9px 10px !important;
  gap: 12px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
}

.language-panel button:hover {
  background: #f3f5f6 !important;
  box-shadow: none !important;
}

.language-panel button.active {
  background: linear-gradient(180deg, #fff5c4, #f4df86) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

.language-name {
  font-size: 15px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.language-flag {
  width: 32px !important;
  height: 22px !important;
  min-width: 32px !important;
  border-radius: 5px !important;
  box-shadow:
    0 0 0 1px rgba(13, 17, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

.language-menu summary .language-flag {
  width: 28px !important;
  height: 19px !important;
  min-width: 28px !important;
}

.flag-zh::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  width: 7px !important;
  height: 7px !important;
  background: #ffde00 !important;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%) !important;
}

.hero {
  min-height: 820px !important;
  padding: 96px 0 64px !important;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 10, 11, 0.88) 0%, rgba(7, 10, 11, 0.55) 43%, rgba(7, 10, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 10, 11, 0.34) 0%, rgba(7, 10, 11, 0.08) 45%, rgba(7, 10, 11, 0.8) 100%),
    var(--hero-image) !important;
}

.hero-layout {
  width: min(100%, 1540px) !important;
  padding: 0 clamp(24px, 5vw, 86px);
}

.hero-layout .hero-inner > h1,
.hero-layout .hero-inner > h1 span {
  letter-spacing: 0 !important;
}

@media (min-width: 1180px) {
  .hero-layout .hero-inner {
    max-width: 1420px !important;
    min-height: 620px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 390px;
    grid-template-areas:
      "eyebrow stats"
      "title stats"
      "copy stats"
      "actions stats";
    align-content: center;
    align-items: center;
    column-gap: 72px;
    margin: 0 auto !important;
    text-align: left;
  }

  .hero-layout .hero-inner > .eyebrow {
    grid-area: eyebrow;
    justify-content: flex-start;
    align-self: end !important;
    margin: 0 0 20px !important;
  }

  .hero-layout .hero-inner > h1 {
    grid-area: title;
    max-width: 860px !important;
    margin: 0 !important;
    font-size: 96px !important;
    line-height: 1.08 !important;
    text-align: left;
  }

  .hero-layout .hero-inner > h1 span {
    margin-top: 4px !important;
    line-height: 1.08 !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    grid-area: copy;
    max-width: 650px !important;
    margin: 24px 0 0 !important;
    font-size: 19px !important;
    line-height: 1.72 !important;
    text-align: left;
  }

  .hero-layout .hero-inner > .hero-actions {
    grid-area: actions;
    justify-content: flex-start;
    margin-top: 32px !important;
  }

  .hero-layout .hero-inner > .hero-stats {
    grid-area: stats;
    justify-self: end;
    align-self: center;
    width: 390px !important;
    max-width: 390px !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 30px !important;
    background: rgba(8, 11, 12, 0.42) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow:
      0 34px 100px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(18px) saturate(130%);
  }

  .hero-layout .hero-inner > .hero-stats .hero-stat {
    min-height: 154px !important;
    padding: 28px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .hero-layout .hero-inner > .hero-stats .hero-stat:nth-child(2n) {
    border-right: 0 !important;
  }

  .hero-layout .hero-inner > .hero-stats .hero-stat:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }
}

@media (min-width: 1600px) {
  .hero-layout .hero-inner {
    grid-template-columns: minmax(0, 1fr) 430px;
    column-gap: 92px;
  }

  .hero-layout .hero-inner > h1 {
    max-width: 980px !important;
    font-size: 112px !important;
  }

  .hero-layout .hero-inner > .hero-stats {
    width: 430px !important;
    max-width: 430px !important;
  }
}

@media (max-width: 1179px) {
  .hero {
    min-height: 760px !important;
    padding-top: 88px !important;
  }

  .hero-layout .hero-inner > h1 {
    max-width: 860px !important;
    font-size: 74px !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: flex !important;
    min-height: 42px !important;
    padding: 5px 12px !important;
  }

  .topbar > div:first-child {
    display: none;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .topbar-actions > span {
    max-width: 52vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .language-panel {
    position: fixed !important;
    top: 50px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
  }

  .hero-layout {
    padding-inline: 18px;
  }

  .hero-layout .hero-inner > h1 {
    font-size: 52px !important;
    line-height: 1.08 !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }
}

/* UX-73: use real SVG flag assets instead of CSS-drawn approximations. */
img.language-flag {
  display: block !important;
  width: 34px !important;
  height: 23px !important;
  min-width: 34px !important;
  padding: 0 !important;
  object-fit: cover;
  background: transparent !important;
  border-radius: 5px !important;
  box-shadow: 0 0 0 1px rgba(13, 17, 18, 0.18) !important;
  image-rendering: auto;
  overflow: hidden;
}

.language-menu summary img.language-flag {
  width: 30px !important;
  height: 20px !important;
  min-width: 30px !important;
}

img.language-flag::before,
img.language-flag::after {
  display: none !important;
  content: none !important;
}

.language-panel button.active img.language-flag,
.language-panel button:hover img.language-flag,
.language-menu summary img.language-flag {
  background: transparent !important;
}

.language-panel button {
  gap: 14px !important;
}

/* UX-74: refined arrows, anchored first reveal, and persistent contact dock. */
.arrow-icon,
.inline-arrow,
.trust-arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
}

.arrow-icon::before,
.arrow-icon::after,
.inline-arrow::before,
.inline-arrow::after,
.trust-arrow::before,
.trust-arrow::after {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.arrow-up::before {
  left: 50%;
  top: 4px;
  width: 15px;
  height: 2px;
  transform: translateX(-50%);
}

.arrow-up::after {
  left: 50%;
  top: 9px;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  background: transparent;
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.arrow-ne::before,
.trust-arrow::before {
  left: 3px;
  top: 9px;
  width: 14px;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.arrow-ne::after,
.trust-arrow::after {
  right: 2px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  border-radius: 2px;
}

.inline-arrow-right::before {
  left: 2px;
  top: 8px;
  width: 13px;
  height: 2px;
}

.inline-arrow-right::after {
  right: 2px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  border-radius: 2px;
  transform: rotate(45deg);
}

.inline-arrow-left::before {
  right: 2px;
  top: 8px;
  width: 13px;
  height: 2px;
}

.inline-arrow-left::after {
  left: 2px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: transparent;
  border-radius: 2px;
  transform: rotate(45deg);
}

.language-caret {
  width: 18px !important;
  height: 18px !important;
  display: inline-grid;
  place-items: center;
  font-size: 0 !important;
  opacity: 0.82 !important;
}

.language-caret::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 1px;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.language-menu[open] .language-caret::before {
  transform: translateY(2px) rotate(225deg);
}

.trust-strip {
  position: relative;
  z-index: 2;
}

.trust-strip .trust-item {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.trust-strip + .buyer-desk .reveal {
  transform: translateY(54px) scale(0.992);
}

.trust-strip + .buyer-desk .reveal.is-visible {
  transform: translateY(0) scale(1);
}

.trust-icon.trust-arrow {
  display: grid;
  place-items: center;
  color: var(--pg-gold, var(--yellow));
  font-size: 0 !important;
}

.trust-icon.trust-arrow::before,
.trust-icon.trust-arrow::after {
  color: currentColor;
}

.floating-dock.home-dock .dock-trigger {
  display: inline-flex !important;
}

.floating-dock {
  z-index: 180 !important;
  position: fixed !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 10px !important;
}

.floating-dock .dock-menu {
  position: absolute !important;
  right: 0 !important;
  bottom: calc(100% + 14px) !important;
  margin: 0 !important;
}

.back-to-top {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 196, 0, 0.5) !important;
  background:
    linear-gradient(180deg, rgba(255, 216, 75, 0.98), rgba(255, 196, 0, 0.96)) !important;
  color: #101516 !important;
  font-size: 0 !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
}

.back-to-top:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.back-to-top.visible {
  transform: translateY(0);
}

.back-to-top.visible:hover {
  transform: translateY(-2px) !important;
}

.dock-trigger {
  min-width: 142px !important;
  border-radius: 16px !important;
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.58) !important;
}

.dock-trigger b {
  width: 28px !important;
  height: 28px !important;
  color: currentColor;
  font-size: 0 !important;
  background: rgba(16, 21, 22, 0.14) !important;
}

.dock-menu a::after,
.dock-menu button:not(.dock-inquiry)::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
  opacity: 0.36;
  flex: 0 0 auto;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dock-menu a:hover::after,
.dock-menu button:not(.dock-inquiry):hover::after {
  opacity: 0.78;
  transform: translateX(2px) rotate(45deg);
}

.back-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.proof-card small,
.industry-article-list-scroll b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.detail-image-nav,
.gallery-nav {
  font-size: 0 !important;
  color: transparent !important;
}

.detail-image-nav::after,
.gallery-nav::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px;
  color: #fff;
}

.detail-image-prev::after,
.gallery-prev::after {
  transform: rotate(-135deg);
}

.detail-image-next::after,
.gallery-next::after {
  transform: rotate(45deg);
}

.detail-fast-icon {
  width: 22px;
  height: 22px;
}

@media (max-width: 760px) {
  .floating-dock {
    left: auto !important;
    right: 14px !important;
    bottom: 18px !important;
    gap: 10px !important;
    align-items: flex-end !important;
    width: auto !important;
  }

  .dock-trigger {
    width: auto !important;
    min-width: 128px !important;
    max-width: calc(100vw - 28px) !important;
    height: 50px !important;
    padding-inline: 14px !important;
  }

  .back-to-top {
    width: 50px !important;
    height: 50px !important;
  }
}

/* UX-76: big-tech style icon system, cleaner masks and softer icon buttons. */
.arrow-icon::before,
.arrow-icon::after,
.inline-arrow::before,
.inline-arrow::after,
.trust-arrow::before,
.trust-arrow::after {
  display: none !important;
  content: none !important;
}

.arrow-icon,
.inline-arrow,
.trust-arrow {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  background: currentColor !important;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.arrow-up {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5.75l-6.25 6.25 1.55 1.55 3.6-3.6V19h2.2V9.95l3.6 3.6 1.55-1.55L12 5.75z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5.75l-6.25 6.25 1.55 1.55 3.6-3.6V19h2.2V9.95l3.6 3.6 1.55-1.55L12 5.75z' fill='black'/%3E%3C/svg%3E");
}

.arrow-ne,
.trust-arrow,
.inline-arrow-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.4 5.6v2.15h7.35L5.95 16.55l1.5 1.5 8.8-8.8v7.35h2.15v-11H7.4z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.4 5.6v2.15h7.35L5.95 16.55l1.5 1.5 8.8-8.8v7.35h2.15v-11H7.4z' fill='black'/%3E%3C/svg%3E");
}

.inline-arrow-left {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6 5.6v2.15H9.25l8.8 8.8-1.5 1.5-8.8-8.8v7.35H5.6v-11h11z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6 5.6v2.15H9.25l8.8 8.8-1.5 1.5-8.8-8.8v7.35H5.6v-11h11z' fill='black'/%3E%3C/svg%3E");
}

.back-to-top {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background:
    linear-gradient(180deg, rgba(255, 222, 86, 0.98), rgba(255, 196, 0, 0.96)) !important;
  border: 1px solid rgba(130, 93, 0, 0.18) !important;
  color: #11181a !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}

.back-to-top .arrow-icon {
  width: 22px !important;
  height: 22px !important;
}

.dock-trigger {
  min-width: 144px !important;
  height: 54px !important;
  border-radius: 18px !important;
  padding: 0 16px 0 20px !important;
  gap: 12px !important;
}

.dock-trigger b {
  width: 34px !important;
  height: 34px !important;
  background: rgba(17, 20, 20, 0.1) !important;
  color: #11181a !important;
  transition: background 0.18s ease, transform 0.18s ease;
}

.dock-trigger:hover b {
  background: rgba(17, 20, 20, 0.16) !important;
  transform: translateX(1px) translateY(-1px);
}

.dock-trigger b .arrow-icon {
  width: 19px !important;
  height: 19px !important;
}

.trust-icon.trust-arrow {
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 196, 0, 0.14) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: 999px !important;
  color: var(--pg-gold, var(--yellow)) !important;
}

.trust-icon.trust-arrow::before {
  display: block !important;
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  background: currentColor !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.4 5.6v2.15h7.35L5.95 16.55l1.5 1.5 8.8-8.8v7.35h2.15v-11H7.4z' fill='black'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.4 5.6v2.15h7.35L5.95 16.55l1.5 1.5 8.8-8.8v7.35h2.15v-11H7.4z' fill='black'/%3E%3C/svg%3E") !important;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.trust-icon.trust-arrow::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 760px) {
  .back-to-top {
    width: 48px !important;
    height: 48px !important;
  }

  .dock-trigger {
    min-width: 132px !important;
    height: 50px !important;
    border-radius: 16px !important;
    padding-inline: 16px 12px !important;
  }

  .dock-trigger b {
    width: 32px !important;
    height: 32px !important;
  }
}

/* UX-78: remove the empty scroll band between the hero and green proof strip. */
.hero {
  min-height: clamp(700px, 78vh, 800px) !important;
  padding-top: clamp(78px, 8vh, 108px) !important;
  padding-bottom: clamp(22px, 4vh, 42px) !important;
}

@media (min-width: 1180px) {
  .hero-layout .hero-inner {
    min-height: clamp(520px, 58vh, 590px) !important;
  }
}

.hero-layout .hero-inner {
  opacity: var(--hero-content-opacity, 1);
  transform: translateY(var(--hero-content-shift, 0px));
  transition: opacity 0.12s linear, transform 0.12s linear;
}

.trust-strip {
  margin-top: -1px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 650px !important;
    padding-bottom: 24px !important;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 600px !important;
  }
}

/* UX-79: flagship storefront hero. Cleaner hierarchy, premium right desk, no empty stage. */
.hero {
  min-height: clamp(680px, 76vh, 760px) !important;
  padding-top: clamp(60px, 7vh, 88px) !important;
  padding-bottom: clamp(18px, 3vh, 34px) !important;
  display: grid !important;
  align-items: center !important;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(4, 8, 9, 0.94) 0%, rgba(4, 8, 9, 0.84) 28%, rgba(4, 8, 9, 0.42) 57%, rgba(4, 8, 9, 0.16) 100%),
    linear-gradient(180deg, rgba(4, 8, 9, 0.18) 0%, rgba(4, 8, 9, 0.12) 48%, rgba(4, 8, 9, 0.7) 100%),
    var(--hero-image) !important;
  background-position: center var(--hero-position) !important;
}

.hero::before {
  opacity: 0.32 !important;
}

.hero::after {
  opacity: 0.42 !important;
}

.hero-layout {
  width: min(100%, 1580px) !important;
  margin: 0 auto !important;
  padding-inline: clamp(28px, 5.4vw, 96px) !important;
}

.hero-layout .hero-inner {
  max-width: none !important;
  width: 100% !important;
}

.hero-layout .hero-inner > .eyebrow {
  color: var(--pg-gold, var(--yellow)) !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  margin-bottom: clamp(18px, 2.4vh, 28px) !important;
  text-shadow: none !important;
}

.hero-layout .hero-inner > .eyebrow::before {
  width: 44px !important;
  height: 2px !important;
}

.hero-layout .hero-inner > h1 {
  max-width: 820px !important;
  color: #fff !important;
  font-size: clamp(72px, 5.7vw, 112px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.32) !important;
}

.hero-layout .hero-inner > h1 span {
  display: block !important;
  margin-top: clamp(6px, 0.8vw, 12px) !important;
  color: var(--pg-gold, var(--yellow)) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

.hero-layout .hero-inner > .hero-copy {
  max-width: 620px !important;
  margin-top: clamp(22px, 2.5vh, 34px) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(17px, 1.05vw, 20px) !important;
  line-height: 1.74 !important;
  font-weight: 760 !important;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.34) !important;
}

.hero-layout .hero-inner > .hero-actions {
  margin-top: clamp(28px, 3.2vh, 42px) !important;
  gap: 14px !important;
}

.hero .btn {
  min-height: 48px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.hero .btn-primary {
  color: #111717 !important;
  border: 1px solid rgba(255, 225, 100, 0.6) !important;
  background:
    linear-gradient(180deg, #ffdc45 0%, #ffc400 58%, #edaf00 100%) !important;
  box-shadow:
    0 22px 54px rgba(255, 196, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.74) !important;
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(14px);
}

.hero-side-panel {
  display: block !important;
  position: relative !important;
  width: min(100%, 468px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(12, 16, 17, 0.54) !important;
  box-shadow:
    0 36px 92px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(22px) saturate(125%) !important;
  overflow: hidden !important;
}

.hero-side-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: inherit !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px) !important;
  opacity: 0.55 !important;
  filter: none !important;
  pointer-events: none;
}

.hero-side-panel::after {
  content: "" !important;
  position: absolute !important;
  top: -82px !important;
  right: -86px !important;
  width: 190px !important;
  height: 190px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.3), rgba(255, 196, 0, 0) 68%) !important;
  opacity: 0.72 !important;
  pointer-events: none;
}

.hero-side-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 30px 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-side-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pg-gold, var(--yellow));
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.hero-side-head span::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-side-head strong {
  max-width: 11em;
  color: #fff;
  font-size: clamp(24px, 1.75vw, 32px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-side-head small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.hero-side-panel .hero-stats {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 4px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-side-panel .hero-stat {
  min-height: 76px !important;
  display: grid !important;
  grid-template-columns: 104px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 18px 32px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
}

.hero-side-panel .hero-stat:last-child {
  border-bottom: 0 !important;
}

.hero-side-panel .hero-stat strong,
.hero-side-panel .hero-stat strong .editable-inline,
.hero-side-panel .stat-counter,
.hero-side-panel .stat-counter-static {
  color: #fff !important;
  font-size: clamp(24px, 1.85vw, 34px) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

.hero-side-panel .hero-stat span {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
}

.trust-strip {
  min-height: 68px !important;
  background: #145327 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 -1px 0 rgba(255, 255, 255, 0.04) !important;
}

.trust-strip .trust-item {
  min-height: 68px !important;
  padding: 0 clamp(20px, 2.6vw, 42px) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

.trust-strip .trust-item span:last-child {
  font-size: clamp(15px, 1.1vw, 18px) !important;
  line-height: 1.18 !important;
  color: #fff !important;
  font-weight: 900 !important;
}

@media (min-width: 1180px) {
  .hero-layout .hero-inner {
    min-height: clamp(500px, 55vh, 570px) !important;
    display: grid !important;
    grid-template-columns: minmax(560px, 820px) minmax(390px, 468px) !important;
    grid-template-areas:
      "eyebrow side"
      "title side"
      "copy side"
      "actions side" !important;
    align-content: center !important;
    align-items: center !important;
    column-gap: clamp(52px, 6vw, 118px) !important;
    text-align: left !important;
  }

  .hero-layout .hero-inner > .eyebrow {
    grid-area: eyebrow !important;
    justify-content: flex-start !important;
    align-self: end !important;
    margin-left: 0 !important;
  }

  .hero-layout .hero-inner > h1 {
    grid-area: title !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    grid-area: copy !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .hero-layout .hero-inner > .hero-actions {
    grid-area: actions !important;
    justify-content: flex-start !important;
  }

  .hero-layout .hero-inner > .hero-side-panel {
    grid-area: side !important;
    justify-self: end !important;
    align-self: center !important;
  }
}

@media (min-width: 1660px) {
  .hero-layout .hero-inner > h1 {
    font-size: 118px !important;
  }

  .hero-side-panel {
    width: 492px !important;
  }
}

@media (max-width: 1179px) {
  .hero {
    min-height: auto !important;
    padding-top: clamp(48px, 7vh, 76px) !important;
    padding-bottom: 34px !important;
  }

  .hero-layout .hero-inner {
    display: grid !important;
    gap: 0 !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .hero-layout .hero-inner > h1 {
    max-width: 820px !important;
    text-align: center !important;
    font-size: clamp(52px, 8.5vw, 82px) !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    text-align: center !important;
    margin-inline: auto !important;
  }

  .hero-layout .hero-inner > .hero-actions {
    justify-content: center !important;
  }

  .hero-side-panel {
    width: min(100%, 620px) !important;
    margin-top: 34px !important;
  }

  .hero-side-head {
    text-align: left;
  }

  .hero-side-panel .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-side-panel .hero-stat {
    grid-template-columns: 1fr !important;
    align-content: start !important;
    gap: 8px !important;
    min-height: 118px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .hero-side-panel .hero-stat:nth-child(2n) {
    border-right: 0 !important;
  }

  .hero-side-panel .hero-stat:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 38px !important;
  }

  .hero-layout {
    padding-inline: 18px !important;
  }

  .hero-layout .hero-inner > .eyebrow {
    font-size: 12px !important;
    margin-bottom: 18px !important;
  }

  .hero-layout .hero-inner > h1 {
    max-width: 10em !important;
    font-size: clamp(42px, 13vw, 58px) !important;
    line-height: 1.04 !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    max-width: 22em !important;
    margin-top: 20px !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
  }

  .hero-layout .hero-inner > .hero-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .hero .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-side-panel {
    display: block !important;
    margin-top: 24px !important;
    border-radius: 24px !important;
  }

  .hero-side-head {
    padding: 24px 24px 18px !important;
  }

  .hero-side-head strong {
    font-size: 22px !important;
  }

  .hero-side-panel .hero-stat {
    min-height: 96px !important;
    padding: 18px 20px !important;
  }

  .hero-side-panel .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .hero-side-panel .hero-stat {
    min-height: 92px !important;
    padding: 15px 8px !important;
    align-content: center !important;
    justify-items: center !important;
    text-align: center !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 0 !important;
  }

  .hero-side-panel .hero-stat:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .hero-side-panel .hero-stat:last-child {
    border-right: 0 !important;
  }

  .hero-side-panel .hero-stat strong,
  .hero-side-panel .hero-stat strong .editable-inline,
  .hero-side-panel .stat-counter,
  .hero-side-panel .stat-counter-static {
    font-size: 22px !important;
  }

  .hero-side-panel .hero-stat span {
    max-width: 4.8em !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
  }

  .trust-strip .trust-item {
    min-height: 62px !important;
    padding: 0 20px !important;
  }

  .trust-strip .trust-item span:last-child {
    font-size: 16px !important;
  }
}

/* UX-80: Apple-inspired hero stage. Centered product theater with restrained motion. */
.hero {
  min-height: clamp(720px, 84vh, 860px) !important;
  padding-top: clamp(54px, 7vh, 92px) !important;
  padding-bottom: clamp(18px, 4vh, 42px) !important;
  align-items: center !important;
  background-image:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.2), transparent 33%),
    linear-gradient(180deg, rgba(4, 8, 9, 0.32) 0%, rgba(4, 8, 9, 0.18) 36%, rgba(4, 8, 9, 0.74) 100%),
    linear-gradient(90deg, rgba(4, 8, 9, 0.72) 0%, rgba(4, 8, 9, 0.34) 44%, rgba(4, 8, 9, 0.08) 100%),
    var(--hero-image) !important;
  background-size: cover !important;
  background-position: center calc(50% + var(--hero-bg-y, 0px)) !important;
}

.hero::before {
  opacity: 0.22 !important;
}

.hero::after {
  opacity: 0.28 !important;
}

.hero-layout {
  width: min(100%, 1440px) !important;
  padding-inline: clamp(24px, 5vw, 84px) !important;
}

.hero-layout .hero-inner {
  max-width: 1160px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "eyebrow"
    "title"
    "copy"
    "actions"
    "side" !important;
  justify-items: center !important;
  align-content: center !important;
  min-height: clamp(560px, 63vh, 680px) !important;
  text-align: center !important;
  opacity: var(--hero-content-opacity, 1) !important;
  transform: translate3d(0, var(--hero-content-shift, 0px), 0) !important;
  will-change: opacity, transform;
}

.hero-layout .hero-inner > .eyebrow {
  grid-area: eyebrow !important;
  justify-content: center !important;
  margin: 0 0 clamp(16px, 2vh, 24px) !important;
  color: #ffd03b !important;
  font-size: clamp(12px, 0.85vw, 14px) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32) !important;
  animation: pgHeroStageIn 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) 0.04s both;
}

.hero-layout .hero-inner > .eyebrow::before {
  width: 42px !important;
  height: 2px !important;
  border-radius: 999px !important;
}

.hero-layout .hero-inner > h1 {
  grid-area: title !important;
  max-width: 1050px !important;
  margin: 0 auto !important;
  color: #f8f8f6 !important;
  font-size: clamp(74px, 7.1vw, 128px) !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-wrap: balance;
  text-shadow: 0 22px 68px rgba(0, 0, 0, 0.42) !important;
  animation: pgHeroStageIn 0.9s cubic-bezier(0.18, 0.82, 0.18, 1) 0.1s both;
}

.hero-layout .hero-inner > h1 span {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  margin-top: clamp(4px, 0.6vw, 10px) !important;
  color: #ffc400 !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
}

.hero-layout .hero-inner > .hero-copy {
  grid-area: copy !important;
  max-width: 720px !important;
  margin: clamp(22px, 2.8vh, 34px) auto 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(16px, 1vw, 19px) !important;
  line-height: 1.68 !important;
  font-weight: 760 !important;
  text-align: center !important;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
  animation: pgHeroStageIn 0.86s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.hero-layout .hero-inner > .hero-actions {
  grid-area: actions !important;
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: clamp(26px, 3.4vh, 42px) !important;
  animation: pgHeroStageIn 0.82s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
}

.hero .btn {
  min-height: 46px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

.hero .btn-primary {
  color: #111615 !important;
  background: linear-gradient(180deg, #ffd951, #ffc400 64%, #efb100) !important;
  border-color: rgba(255, 224, 92, 0.7) !important;
  box-shadow:
    0 18px 52px rgba(255, 196, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.hero-layout .hero-inner > .hero-side-panel {
  grid-area: side !important;
  width: min(100%, 960px) !important;
  margin-top: clamp(38px, 5vh, 64px) !important;
  justify-self: center !important;
  align-self: center !important;
  border-radius: 26px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(8, 11, 12, 0.46) !important;
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(24px) saturate(130%) !important;
  transform: translate3d(0, var(--hero-side-shift, 0px), 0);
  animation: pgHeroPanelIn 0.92s cubic-bezier(0.2, 0.8, 0.2, 1) 0.42s both;
}

.hero-side-panel::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 112px) !important;
  opacity: 0.36 !important;
}

.hero-side-panel::after {
  width: 280px !important;
  height: 280px !important;
  top: -180px !important;
  right: -120px !important;
  opacity: 0.42 !important;
}

.hero-side-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding: 22px 28px !important;
  text-align: left !important;
}

.hero-side-head span {
  font-size: 11px !important;
}

.hero-side-head strong {
  max-width: none !important;
  color: #fff !important;
  font-size: clamp(20px, 1.6vw, 28px) !important;
  line-height: 1.12 !important;
}

.hero-side-head small {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.56) !important;
}

.hero-side-panel .hero-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  padding: 0 !important;
}

.hero-side-panel .hero-stat {
  min-height: 100px !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-content: center !important;
  gap: 10px !important;
  padding: 20px 18px !important;
  text-align: center !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom: 0 !important;
}

.hero-side-panel .hero-stat:last-child {
  border-right: 0 !important;
}

.hero-side-panel .hero-stat strong,
.hero-side-panel .hero-stat strong .editable-inline,
.hero-side-panel .stat-counter,
.hero-side-panel .stat-counter-static {
  font-size: clamp(24px, 1.8vw, 34px) !important;
  letter-spacing: 0 !important;
}

.hero-side-panel .hero-stat span {
  max-width: 10em;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  line-height: 1.24 !important;
}

.trust-strip {
  min-height: 64px !important;
  background: #145127 !important;
}

.trust-strip .trust-item {
  min-height: 64px !important;
}

@keyframes pgHeroStageIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 24px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pgHeroPanelIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 28px, 0) scale(0.988);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, var(--hero-side-shift, 0px), 0) scale(1);
  }
}

@media (max-width: 1179px) {
  .hero {
    min-height: auto !important;
    padding-top: clamp(42px, 7vh, 70px) !important;
    padding-bottom: 36px !important;
  }

  .hero-layout .hero-inner {
    min-height: auto !important;
  }

  .hero-layout .hero-inner > h1 {
    max-width: 9.8em !important;
    font-size: clamp(58px, 9.2vw, 88px) !important;
    line-height: 1 !important;
  }

  .hero-layout .hero-inner > .hero-side-panel {
    width: min(100%, 760px) !important;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 40px !important;
    padding-bottom: 30px !important;
    background-position: center calc(48% + var(--hero-bg-y, 0px)) !important;
  }

  .hero-layout {
    padding-inline: 18px !important;
  }

  .hero-layout .hero-inner > .eyebrow {
    margin-bottom: 16px !important;
    font-size: 12px !important;
  }

  .hero-layout .hero-inner > h1 {
    max-width: 8.4em !important;
    font-size: clamp(44px, 13.8vw, 60px) !important;
    line-height: 1.04 !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    max-width: 22em !important;
    margin-top: 18px !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .hero-layout .hero-inner > .hero-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .hero .btn {
    width: 100% !important;
    min-height: 50px !important;
    justify-content: center !important;
  }

  .hero-layout .hero-inner > .hero-side-panel {
    width: 100% !important;
    margin-top: 24px !important;
    border-radius: 24px !important;
  }

  .hero-side-head {
    display: grid !important;
    gap: 8px !important;
    padding: 22px 22px 16px !important;
  }

  .hero-side-head strong {
    font-size: 22px !important;
  }

  .hero-side-head small {
    white-space: normal;
    font-size: 12px !important;
  }

  .hero-side-panel .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .hero-side-panel .hero-stat {
    min-height: 88px !important;
    padding: 14px 7px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .hero-side-panel .hero-stat:last-child {
    border-right: 0 !important;
  }

  .hero-side-panel .hero-stat strong,
  .hero-side-panel .hero-stat strong .editable-inline,
  .hero-side-panel .stat-counter,
  .hero-side-panel .stat-counter-static {
    font-size: 21px !important;
  }

  .hero-side-panel .hero-stat span {
    max-width: 5em !important;
    font-size: 10.5px !important;
    line-height: 1.18 !important;
  }

  .trust-strip {
    min-height: 58px !important;
  }

  .trust-strip .trust-item {
    min-height: 58px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-layout .hero-inner > .eyebrow,
  .hero-layout .hero-inner > h1,
  .hero-layout .hero-inner > .hero-copy,
  .hero-layout .hero-inner > .hero-actions,
  .hero-layout .hero-inner > .hero-side-panel {
    animation: none !important;
  }
}

/* UX-80b: keep the Apple-style stage fully composed in the first viewport. */
@media (min-width: 1180px) {
  .hero {
    min-height: clamp(690px, 80vh, 790px) !important;
    padding-top: clamp(44px, 5.4vh, 72px) !important;
    padding-bottom: 22px !important;
  }

  .hero-layout .hero-inner {
    min-height: clamp(520px, 58vh, 620px) !important;
  }

  .hero-layout .hero-inner > h1 {
    font-size: clamp(70px, 6.55vw, 116px) !important;
  }

  .hero-layout .hero-inner > .hero-copy {
    margin-top: clamp(16px, 2vh, 26px) !important;
  }

  .hero-layout .hero-inner > .hero-actions {
    margin-top: clamp(20px, 2.5vh, 32px) !important;
  }

  .hero-layout .hero-inner > .hero-side-panel {
    margin-top: clamp(24px, 3vh, 38px) !important;
  }

  .hero-side-head {
    padding: 16px 24px !important;
  }

  .hero-side-head strong {
    font-size: clamp(19px, 1.35vw, 24px) !important;
  }

  .hero-side-head small {
    font-size: 12px !important;
  }

  .hero-side-panel .hero-stat {
    min-height: 74px !important;
    padding: 14px 12px !important;
    gap: 7px !important;
  }

  .hero-side-panel .hero-stat strong,
  .hero-side-panel .hero-stat strong .editable-inline,
  .hero-side-panel .stat-counter,
  .hero-side-panel .stat-counter-static {
    font-size: clamp(22px, 1.45vw, 28px) !important;
  }

  .hero-side-panel .hero-stat span {
    font-size: 12px !important;
  }
}

/* UX-81: make the export desk bar wider and more substantial. */
@media (min-width: 1180px) {
  .hero-layout .hero-inner > .hero-side-panel {
    width: min(100%, 1120px) !important;
    margin-top: clamp(26px, 3.2vh, 42px) !important;
    border-radius: 28px !important;
  }

  .hero-side-head {
    padding: 20px 30px 18px !important;
  }

  .hero-side-head span {
    font-size: 12px !important;
  }

  .hero-side-head span::before {
    width: 38px !important;
  }

  .hero-side-head strong {
    font-size: clamp(24px, 1.65vw, 31px) !important;
    line-height: 1.1 !important;
  }

  .hero-side-head small {
    font-size: 14px !important;
  }

  .hero-side-panel .hero-stat {
    min-height: 88px !important;
    padding: 18px 18px !important;
  }

  .hero-side-panel .hero-stat strong,
  .hero-side-panel .hero-stat strong .editable-inline,
  .hero-side-panel .stat-counter,
  .hero-side-panel .stat-counter-static {
    font-size: clamp(25px, 1.7vw, 34px) !important;
  }

  .hero-side-panel .hero-stat span {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }
}

@media (min-width: 1540px) {
  .hero-layout .hero-inner > .hero-side-panel {
    width: min(100%, 1200px) !important;
  }
}

/* UX-84: keep the mobile quote dock present without covering hero copy. */
@media (max-width: 760px) {
  .hero-layout .hero-inner > h1 {
    width: min(100%, 356px) !important;
    max-width: 356px !important;
    font-size: 46px !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    text-wrap: balance;
  }

  .hero-layout .hero-inner > h1 span,
  .hero-layout .hero-inner > h1 .editable-inline {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .floating-dock.home-dock {
    right: 12px !important;
    bottom: 12px !important;
  }

  .floating-dock.home-dock .dock-trigger {
    min-width: 118px !important;
    height: 44px !important;
    padding: 0 10px 0 14px !important;
    gap: 8px !important;
    border-radius: 15px !important;
    font-size: 14px !important;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
  }

  .floating-dock.home-dock .dock-trigger b {
    width: 28px !important;
    height: 28px !important;
  }

  .floating-dock.home-dock .dock-trigger b .arrow-icon {
    width: 17px !important;
    height: 17px !important;
  }
}

@media (max-width: 380px) {
  .hero-layout .hero-inner > h1 {
    max-width: 326px !important;
    font-size: 40px !important;
  }
}
