:root {
  --ink: #18212b;
  --muted: #637083;
  --line: #dfe5ea;
  --paper: #f6f3ef;
  --white: #ffffff;
  --blue: #0e4f75;
  --blue-dark: #0a3048;
  --green: #57785d;
  --gold: #b88138;
  --shadow: 0 24px 70px rgba(14, 39, 57, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  color: var(--white);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(8, 22, 36, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  height: 50px;
  width: auto;
  background: rgba(255, 255, 255, .9);
  border-radius: 4px;
  padding: 3px 7px;
}

.brand span {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
}

.site-header.is-scrolled .nav-item {
  min-height: 70px;
}

.desktop-nav a,
.link-quiet {
  text-decoration: none;
  opacity: .86;
}

.desktop-nav a:hover,
.link-quiet:hover {
  opacity: 1;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 230px);
  gap: 28px;
  padding: 26px;
  border: 1px solid rgba(24, 33, 43, .1);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity .2s ease, transform .2s ease;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  padding: 8px 0;
  color: #4b5868;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.mega-menu a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(10, 48, 72, .18);
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
  background: var(--gold);
  border-color: var(--gold);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .5);
}

.button-ghost-dark {
  color: var(--ink);
  background: transparent;
  border-color: rgba(24, 33, 43, .3);
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: #0a1b28;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 34, .92) 0%, rgba(7, 22, 34, .72) 42%, rgba(7, 22, 34, .18) 100%),
    linear-gradient(0deg, rgba(7, 22, 34, .65) 0%, rgba(7, 22, 34, .05) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  gap: 70px;
  width: min(1400px, calc(100% - 112px));
  min-height: 760px;
  margin: 0 auto;
  padding: 150px 0 78px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.hero-panel > p {
  margin: 0 0 22px;
  font-weight: 800;
}

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

.metric-grid div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.metric-grid strong {
  display: block;
  font-size: 34px;
}

.metric-grid span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.4;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip span {
  padding: 22px 18px;
  border-right: 1px solid rgba(24, 33, 43, .12);
  text-align: center;
  color: #465260;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section {
  width: min(1400px, calc(100% - 112px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head h2,
.split-copy h2,
.cta h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-head > p:last-child,
.split-copy > p,
.quality-card p,
.timeline-item p,
.product-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.section-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 38px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 31, 46, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 79, 117, .35);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #f2f2f2;
}

.product-card div {
  padding: 24px;
}

.tag {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card h3,
.quality-card h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.product-card p:not(.tag) {
  min-height: 76px;
  margin: 0 0 18px;
}

.product-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 110px max(56px, calc((100% - 1400px) / 2));
  background: var(--paper);
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform .7s ease;
}

.split-media:hover img {
  transform: scale(1.05);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(24, 33, 43, .14);
}

.feature-list span {
  color: var(--gold);
  font-weight: 800;
}

.feature-list p {
  margin: 0;
  color: #465260;
  line-height: 1.65;
}

.quality {
  width: 100%;
  padding-inline: max(56px, calc((100% - 1400px) / 2));
  background: #0e2535;
  color: var(--white);
}

.quality .section-head {
  width: 100%;
}

.quality .section-head h2 {
  max-width: 820px;
}

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

.quality-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.quality-card span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.quality-card p {
  color: rgba(255, 255, 255, .68);
}

.process {
  padding: 110px max(56px, calc((100% - 1400px) / 2));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-item {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

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

.timeline-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.cta {
  padding: 0 max(56px, calc((100% - 1400px) / 2)) 110px;
}

.cta-card {
  overflow: hidden;
  position: relative;
  padding: 64px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(10, 48, 72, .96), rgba(10, 48, 72, .82)),
    url("../assets/generated/factory-workshop-hero-v2.webp") center/cover;
}

.cta-card h2 {
  max-width: 940px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 56px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
  font-weight: 800;
}

.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #23c063;
  box-shadow: 0 16px 36px rgba(35, 192, 99, .32);
  animation: pulse 2.4s infinite;
}

.float-whatsapp img {
  width: 38px;
  height: 38px;
}

.inner-header {
  position: sticky;
  top: 0;
}

.v2-products-header {
  position: sticky;
  top: 0;
  height: 68px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 38px rgba(12, 24, 28, .1);
  backdrop-filter: blur(18px);
}

.v2-products-header .v2-nav a {
  color: inherit;
}

.v2-products-header .v2-search,
.v2-products-header .v2-action-dropdown > button,
.v2-products-header .v2-header-contact-links {
  border-color: var(--line);
  background: #f6f8fa;
}

.v2-products-header .v2-header-contact-links a {
  border-right-color: var(--line);
}

.products-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 24px max(28px, calc((100% - 1080px) / 2)) 10px;
  color: var(--ink);
  background: var(--white);
}

.products-hero::after {
  content: none;
}

.products-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.products-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

.products-hero p:last-child {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.products-breadcrumb {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.products-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  width: min(1080px, calc(100% - 56px));
  gap: 44px;
  align-items: start;
  margin: 0 auto;
  padding: 18px 0 72px;
  background: var(--white);
}

.catalog-sidebar {
  position: sticky;
  top: 98px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 31, 46, .05);
}

.catalog-sidebar p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.catalog-filter {
  display: grid;
  gap: 6px;
  padding: 0;
  border-top: 0;
}

.catalog-filter span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: .64;
}

.catalog-sidebar a {
  display: flex;
  min-height: 36px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  text-decoration: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.catalog-sidebar a:hover {
  color: var(--blue);
  background: #f3f6f8;
}

.catalog-sidebar a.is-active {
  color: var(--white);
  background: var(--blue);
}

.catalog-sidebar a.is-active::after {
  content: "→";
  font-weight: 900;
}

.catalog-content {
  display: grid;
  gap: 56px;
}

.catalog-group {
  scroll-margin-top: 104px;
}

.catalog-title {
  margin-bottom: 14px;
}

.catalog-title h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.catalog-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.catalog-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 170px 1fr;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 31, 46, .04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.catalog-card:hover {
  border-color: rgba(14, 79, 117, .35);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 31, 46, .08);
}

.catalog-card img {
  width: 100%;
  height: 170px;
  min-height: 0;
  object-fit: cover;
  background: #f2f2f2;
}

.catalog-card div {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  padding: 16px;
}

.catalog-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.catalog-card p {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.catalog-card .catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.catalog-meta span {
  color: var(--blue);
}

.catalog-card a {
  justify-self: start;
  align-self: end;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
  align-self: end;
}

.catalog-card-actions a {
  margin: 0;
  justify-self: stretch;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.catalog-card-actions a:hover {
  background: var(--blue);
  color: #fff;
}

.catalog-quote {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8742c;
  color: #fff;
  border: 1px solid #e8742c;
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.catalog-quote:hover {
  filter: brightness(.95);
}

.detail-hero,
.detail-section {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
}

.detail-hero {
  padding: 40px 0;
}

.detail-hero .products-breadcrumb {
  margin-bottom: 24px;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.detail-gallery {
  display: block;
}

.detail-gallery.has-thumbnails {
  display: block;
}

.detail-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #f7f8f8;
  border: 1px solid var(--line);
}

.detail-gallery.has-thumbnails .detail-main-image {
  width: 100%;
}

.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 92px));
  justify-content: start;
  gap: 8px;
  margin-top: 10px;
  padding: 2px;
}

.detail-gallery-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  transition: all .2s ease;
}

.detail-gallery-thumb:hover,
.detail-gallery-thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(14, 79, 117, 0.1);
}

.detail-gallery-thumb:hover {
  transform: translateY(-2px);
}

.detail-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.detail-summary {
  position: sticky;
  top: 100px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.detail-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-summary h1 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  color: var(--ink);
}

.detail-summary > p:not(.detail-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.detail-tags span {
  border-radius: 4px;
  padding: 6px 12px;
  color: var(--blue);
  background: #f0f4f7;
  border: 1px solid rgba(14, 79, 117, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-actions .button {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 14px;
}

.detail-actions [data-rfq-open] {
  grid-column: 1 / -1;
}

.detail-section {
  padding: 40px 0;
}

.detail-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.detail-section h2,
.detail-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.14;
}

.detail-section p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.detail-section p:last-child {
  margin-bottom: 0;
}

.detail-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #f8f9fa;
}

.detail-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
}

.detail-spec-table {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.detail-spec-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  padding: 0;
  border-right: none;
  border-bottom: 1px solid var(--line);
}

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

.detail-spec-table span {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: #f8f9fa;
  color: #4b5868;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-right: 1px solid var(--line);
}

.detail-spec-table strong {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  background: var(--white);
}

.detail-spec-table.is-technical .detail-spec-head {
  grid-column: 1 / -1;
  grid-template-columns: 180px minmax(0, 1fr) 180px minmax(0, 1fr);
  background: var(--blue);
}

.detail-spec-table.is-technical .detail-spec-head span,
.detail-spec-table.is-technical .detail-spec-head strong {
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-right-color: rgba(255, 255, 255, 0.2);
}

.detail-spec-table div:nth-child(even) strong {
  background: #fbfcfc;
}

.detail-spec-table div:hover strong {
  background: #f5f7f9;
}

.detail-spec-table.is-technical {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-spec-table.is-technical > div:not(.detail-spec-head) {
  grid-template-columns: 180px minmax(0, 1fr);
}

.detail-spec-table.is-technical > div:not(.detail-spec-head):nth-child(even) {
  border-right: 1px solid var(--line);
}

.detail-spec-table.is-technical > div:not(.detail-spec-head):nth-last-child(-n + 2) {
  border-bottom: 0;
}


.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.detail-feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
}

.detail-feature-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.detail-feature-grid h3 {
  margin: 12px 0 6px;
  font-size: 15px;
}

.detail-feature-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.48;
}

.detail-applications {
  display: grid;
  grid-template-columns: .36fr 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 56px;
}

.detail-applications ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: application;
}

.detail-applications li {
  counter-increment: application;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px 13px 50px;
  color: var(--ink);
  background: #fbfcfc;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.detail-applications li::before {
  content: counter(application, decimal-leading-zero);
  position: absolute;
  top: 13px;
  left: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.about-hero,
.about-section {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
  scroll-margin-top: 92px;
}

.about-hero {
  display: grid;
  gap: 14px;
  padding: 26px 0 30px;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-hero p:last-child,
.about-copy p,
.about-section-head p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.about-hero p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-hero-actions .button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
}

.about-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #eef2f5;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 31, .92), rgba(4, 20, 31, .66) 56%, rgba(4, 20, 31, .2));
}

.about-hero-media img {
  width: 100%;
  height: 430px;
  min-height: 0;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: var(--white);
}

.about-hero-overlay .products-breadcrumb,
.about-hero-overlay .eyebrow,
.about-hero-overlay p {
  color: rgba(255, 255, 255, .86);
}

.about-hero-overlay .products-breadcrumb a {
  color: var(--white);
}

.about-hero-overlay h1 {
  color: var(--white);
}

.about-hero-overlay p {
  max-width: 700px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.about-hero-overlay .about-hero-actions {
  margin-top: 20px;
}

.about-hero-overlay .button-ghost-dark {
  border-color: rgba(255, 255, 255, .54);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.about-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.about-intro,
.about-quality,
.about-markets {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.about-copy h2,
.about-section-head h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-copy p,
.about-section-head p {
  margin: 10px 0 0;
}

.about-range-grid,
.about-process-grid,
.about-cert-grid,
.about-shipment-grid {
  display: grid;
  gap: 12px;
}

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

.about-range-grid a,
.about-process-grid article,
.about-cert-grid article,
.about-shipment-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.about-range-grid a {
  display: grid;
  gap: 8px;
  overflow: hidden;
}

.about-range-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-range-grid strong,
.about-range-grid span {
  padding: 0 14px;
}

.about-range-grid strong {
  padding-top: 4px;
}

.about-range-grid span {
  padding-bottom: 14px;
}

.about-factory-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-factory-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #eef2f5;
}

.about-factory-card strong {
  display: block;
  padding: 14px 16px 0;
}

.about-factory-card ul {
  margin: 10px 0 0;
  padding: 0 16px 16px 30px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.about-group-note,
.about-product-panel,
.about-support-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fbfcfc;
}

.about-group-note strong,
.about-support-panel strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.about-group-note p,
.about-product-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.about-structure-grid {
  display: grid;
  grid-template-columns: .86fr 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.about-structure-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-structure-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #eef2f5;
}

.about-structure-card .about-yard-image {
  object-position: center 38%;
}

.about-structure-card strong,
.about-structure-card p,
.about-structure-card .about-card-label,
.about-structure-card .about-card-tags {
  margin-right: 16px;
  margin-left: 16px;
}

.about-card-label {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-structure-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.about-structure-card p {
  margin-top: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.about-structure-export {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 0;
  color: var(--white);
  background: linear-gradient(145deg, #082435, #123f56);
}

.about-structure-export .about-card-label,
.about-structure-export p {
  color: rgba(255, 255, 255, .72);
}

.about-structure-export strong {
  color: var(--white);
  font-size: 28px;
}

.about-card-tags,
.about-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-card-tags span,
.about-tag-list a {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 7px 10px;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.about-supply-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
  margin-top: 18px;
}

.about-tag-list {
  margin-top: 14px;
}

.about-tag-list a {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.about-support-panel ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.about-support-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.about-support-panel li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.about-range-grid strong,
.about-process-grid strong,
.about-cert-grid strong,
.about-shipment-grid strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.about-range-grid span,
.about-process-grid span,
.about-cert-grid span,
.about-shipment-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.about-process-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
}

.about-process-grid-wide {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.about-process-grid article {
  overflow: hidden;
}

.about-process-grid img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.about-process-grid strong,
.about-process-grid span {
  display: block;
  padding: 0 14px;
}

.about-process-grid strong {
  padding-top: 12px;
}

.about-process-grid span {
  padding-bottom: 14px;
  margin-top: 6px;
}

.about-process-grid-wide strong {
  font-size: 14px;
}

.about-process-grid-wide span {
  font-size: 11px;
  line-height: 1.45;
}

.about-check-grid,
.about-market-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.about-check-grid span,
.about-market-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fbfcfc;
  font-size: 12px;
  font-weight: 800;
}

.about-quality-panel,
.about-market-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 12px;
  align-items: stretch;
}

.about-quality-panel img,
.about-market-panel img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef2f5;
}

.about-quality-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.about-quality-cards article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfc;
}

.about-quality-cards strong {
  color: var(--ink);
  font-size: 14px;
}

.about-quality-cards span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.about-cert-grid {
  grid-template-columns: repeat(6, 1fr);
  margin-top: 16px;
}

.about-cert-grid article {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 12px;
  text-align: center;
}

.about-cert-grid img {
  max-height: 42px;
  width: auto;
  margin-bottom: 8px;
}

.about-cert-grid article:not(:has(img)) {
  align-content: center;
  gap: 6px;
}

.about-cert-documents {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #fbfcfc;
}

.about-cert-documents-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.about-cert-documents-head strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.about-cert-documents-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.about-cert-scroll {
  overflow: hidden;
  overscroll-behavior-x: contain;
  padding-bottom: 6px;
}

.about-cert-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: aboutCertScroll 34s linear infinite;
}

.about-cert-scroll:hover .about-cert-track {
  animation-play-state: paused;
}

.about-cert-track figure {
  flex: 0 0 190px;
  display: grid;
  gap: 8px;
  margin: 0;
}

.about-cert-track img {
  width: 100%;
  height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.about-cert-track figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

@keyframes aboutCertScroll {
  from {
    transform: translateX(0);
  }

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

.market-section.support-next.market-next {
  gap: 14px;
  padding: 22px 24px;
  background: #fbfcfc;
}

.market-section.support-next.market-next p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.market-next-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.market-next .button {
  min-width: 160px;
  min-height: 42px;
  padding: 0 18px;
}

.about-shipment {
  padding-bottom: 64px;
}

.about-shipment-media {
  overflow: hidden;
  margin: 16px 0 0;
  border-radius: 8px;
  background: #eef2f5;
}

.about-shipment-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-shipment-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.about-shipment-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #fbfcfc;
}

.support-hero,
.support-section {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: end;
  padding: 26px 0 30px;
}

.support-hero-compact {
  padding-bottom: 14px;
}

.support-hero-text {
  grid-template-columns: 1fr;
  align-items: start;
  padding-bottom: 18px;
}

.support-hero-text > div {
  max-width: 780px;
}

.support-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

.support-hero p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.support-hero > img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef2f5;
}

.support-doc-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfc;
}

.support-doc-wall article {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  text-align: center;
}

.support-doc-wall img {
  max-height: 46px;
  width: auto;
}

.support-doc-wall strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.support-doc-wall span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.support-match-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfc;
}

.support-match-board article {
  overflow: hidden;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.support-match-board img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.support-match-board strong,
.support-match-board article span {
  padding: 0 12px;
}

.support-match-board strong {
  padding-top: 12px;
  color: var(--ink);
  font-size: 14px;
}

.support-match-board article span {
  padding-bottom: 12px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.support-match-tags {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.support-match-tags span {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--blue);
  background: var(--white);
  text-align: center;
  font-size: 11px;
  font-weight: 900;
}

.support-proof-media {
  display: grid;
  gap: 10px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: #fbfcfc;
}

.support-proof-media img {
  width: 100%;
  height: 256px;
  border-radius: 8px;
  object-fit: cover;
  background: #edf2f6;
}

.support-proof-media figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.support-image-placeholder {
  display: grid;
  min-height: 256px;
  place-items: center;
  border: 1px dashed #b7c3cc;
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafb 0%, #eef3f6 100%);
  color: #5f6f78;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.support-evidence-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}

.support-evidence-grid.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.support-lab-panel,
.support-execution-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.support-evidence-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  background: #fbfcfc;
}

.support-evidence-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.12;
}

.support-evidence-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-note {
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}

.qc-lab-gallery-section {
  display: grid;
  gap: 22px;
}

.qc-lab-gallery-section > .support-two-col {
  align-items: end;
}

.qc-lab-gallery-section > .support-two-col > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.qc-lab-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.qc-lab-gallery figure {
  display: grid;
  align-content: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(22, 35, 43, .06);
}

.qc-lab-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #edf2f6;
}

.qc-lab-gallery figcaption {
  display: grid;
  gap: 2px;
  min-height: 66px;
  margin: 0;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.qc-lab-gallery figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.support-evidence-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

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

.support-process-track article {
  overflow: hidden;
  display: grid;
  grid-template-rows: 142px 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.support-process-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #edf2f6;
}

.support-process-track div {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.support-process-track h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.support-process-track p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.support-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.support-section-tight {
  padding-top: 16px;
}

.support-grid-3,
.support-grid-4 {
  display: grid;
  gap: 12px;
}

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

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

.support-grid-3 article,
.support-grid-4 article,
.support-next,
.support-check-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
}

.support-grid-3 article,
.support-grid-4 article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.support-grid-3 strong,
.support-next strong {
  color: var(--ink);
  font-size: 15px;
}

.support-grid-3 span,
.support-next p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.support-two-col {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 24px;
  align-items: start;
}

.support-two-col h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.support-check-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.support-check-list span {
  padding: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.support-next {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
  padding: 18px;
}

.support-next .button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 13px;
  justify-self: start;
}

.support-next-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.support-next-link {
  color: var(--accent, #1a6b3c);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: opacity .2s;
}

.support-next-link:hover {
  opacity: .7;
}

/* About page: two factory base cards */
.about-base-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-base-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 24px;
}

.about-base-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--ink);
}

.about-base-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-base-card li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.about-base-card li:last-child {
  border-bottom: none;
}

/* About page: trust points row */
.about-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.about-trust-row article {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
}

.about-trust-row strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.market-hero,
.market-section {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
}

.market-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0 30px;
}

.market-copy {
  max-width: 760px;
}

.market-copy h1 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.market-copy > p:last-of-type {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  max-width: 680px;
}

.market-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfcfc;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.market-stats strong {
  color: var(--blue);
  font-size: 18px;
}

.market-map {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #111923;
  box-shadow: 0 18px 42px rgba(15, 31, 46, .12);
}

.market-map img {
  display: block;
  width: 100%;
  height: auto;
}

.market-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.market-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.market-region-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfcfc;
}

.market-region-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.market-region-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.market-route-support {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 64px;
}

.market-route-support h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease var(--delay, 0s), transform .75s ease var(--delay, 0s);
}

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

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-18px, -10px, 0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 28px;
  }

  .desktop-nav,
  .link-quiet {
    display: none;
  }

  .hero-inner,
  .section {
    width: min(100% - 40px, 1000px);
  }

  .hero-inner,
  .section-head,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

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

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

  .catalog-layout {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 1000px);
    gap: 28px;
    padding: 48px 0 64px;
  }

  .catalog-sidebar {
    position: static;
  }

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

  .catalog-card {
    grid-template-rows: 170px 1fr;
  }

  .detail-hero,
  .detail-section {
    width: min(100% - 40px, 1000px);
  }

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

  .detail-hero-grid,
  .detail-two-col {
    grid-template-columns: 1fr;
  }

  .detail-summary {
    position: static;
  }

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

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

  .about-hero,
  .about-section {
    width: min(100% - 40px, 1000px);
  }

  .about-hero,
  .about-intro,
  .about-quality,
  .about-markets {
    grid-template-columns: 1fr;
  }

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

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

  .about-check-grid,
  .about-market-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-quality-panel,
  .about-market-panel {
    grid-template-columns: 1fr;
  }

  .about-structure-grid,
  .about-supply-grid {
    grid-template-columns: 1fr;
  }

  .about-structure-export {
    min-height: 260px;
  }

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

  .support-hero,
  .support-two-col {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .support-next {
    grid-template-columns: 1fr;
  }

  .market-hero,
  .market-route-support {
    grid-template-columns: 1fr;
  }

  .market-map {
    min-height: 0;
    width: 100%;
  }

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

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    height: 44px;
  }

  .header-actions .button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    display: block;
    padding: 118px 0 42px;
  }

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

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

  .hero-panel {
    margin-top: 34px;
  }

  .trust-strip,
  .product-grid,
  .quality-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 33, 43, .12);
  }

  .section,
  .split-section,
  .quality,
  .process,
  .cta {
    padding: 70px 20px;
  }

  .section {
    width: 100%;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .section-head h2,
  .split-copy h2,
  .cta h2,
  .products-hero h1,
  .catalog-title h2 {
    font-size: 32px;
  }

  .products-hero {
    min-height: auto;
    padding: 76px 20px 14px;
  }

  .products-hero p:last-child {
    font-size: 16px;
  }

  .catalog-layout {
    width: calc(100% - 32px);
    padding: 22px 0 56px;
  }

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

  .catalog-title {
    display: block;
  }

  .catalog-card {
    grid-template-rows: auto 1fr;
  }

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

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

  .detail-hero,
  .detail-section {
    width: calc(100% - 32px);
  }

  .detail-hero {
    padding: 22px 0 24px;
  }

  .detail-hero-grid {
    gap: 20px;
  }

  .detail-summary {
    padding: 0;
  }

  .detail-summary h1 {
    font-size: 32px;
  }

  .detail-gallery.detail-gallery.has-thumbnails {
    display: block !important;
  }

  .detail-gallery.detail-gallery.has-thumbnails .detail-main-image {
    display: block;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .detail-gallery .detail-gallery-thumbs {
    display: grid;
    position: static;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(auto-fill, minmax(66px, 84px));
    justify-content: start;
    gap: 8px;
    margin-top: 10px;
  }

  .detail-gallery-thumb {
    width: 100%;
    height: auto;
  }

  .detail-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 24px;
  }

  .detail-section {
    padding: 24px 0;
  }

  .detail-spec-table,
  .detail-feature-grid {
    grid-template-columns: 1fr;
  }

  .detail-spec-table.is-technical {
    grid-template-columns: 1fr;
  }

  .detail-spec-table.is-technical .detail-spec-head {
    grid-template-columns: minmax(100px, .4fr) 1fr;
  }

  .detail-spec-table.is-technical .detail-spec-head span:nth-child(3),
  .detail-spec-table.is-technical .detail-spec-head strong:nth-child(4) {
    display: none;
  }

  .detail-spec-table.is-technical > div:not(.detail-spec-head) {
    grid-template-columns: minmax(100px, .4fr) 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-spec-table.is-technical > div:not(.detail-spec-head):nth-child(even),
  .detail-spec-table.is-technical > div:not(.detail-spec-head):nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-spec-table.is-technical > div:not(.detail-spec-head):last-child {
    border-bottom: 0;
  }

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

  .detail-spec-table span {
    padding: 10px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: #f1f3f5;
  }

  .detail-spec-table strong {
    padding: 12px 16px;
  }


  .detail-applications ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-applications li {
    padding: 12px 12px 12px 46px;
  }

  .detail-spec-table div,
  .detail-spec-table div:nth-child(2n),
  .detail-spec-table div:nth-last-child(-n + 2) {
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .about-hero,
  .about-section {
    width: calc(100% - 32px);
  }

  .about-hero {
    padding: 22px 0 24px;
  }

  .about-hero-media img {
    height: 460px;
  }

  .about-hero-overlay {
    justify-content: flex-end;
    padding: 20px;
  }

  .about-hero-overlay p {
    font-size: 12px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-section {
    padding: 24px 0;
  }

  .about-range-grid,
  .about-process-grid,
  .about-cert-grid,
  .about-shipment-grid {
    grid-template-columns: 1fr;
  }

  .about-cert-documents {
    padding: 12px;
  }

  .about-cert-track figure {
    flex-basis: 164px;
  }

  .about-cert-track img {
    height: 214px;
  }

  .about-process-grid-wide,
  .about-quality-cards {
    grid-template-columns: 1fr;
  }

  .about-structure-card img {
    height: 210px;
  }

  .about-structure-export {
    min-height: 0;
  }

  .support-hero,
  .support-section {
    width: calc(100% - 32px);
  }

  .support-hero {
    padding: 22px 0 24px;
  }

  .support-hero h1 {
    font-size: 34px;
  }

  .support-hero > img {
    height: 210px;
  }

  .support-doc-wall {
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
  }

  .support-match-board {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .support-match-board img {
    height: 160px;
  }

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

  .support-grid-3,
  .support-grid-4,
  .support-check-list {
    grid-template-columns: 1fr;
  }

  .about-base-grid {
    grid-template-columns: 1fr;
  }

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

  .support-next-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .market-hero,
  .market-section {
    width: calc(100% - 32px);
  }

  .market-hero {
    padding: 22px 0 24px;
  }

  .market-copy h1 {
    font-size: 34px;
  }

  .market-map {
    min-height: 190px;
    width: 100%;
  }

  .market-stats {
    grid-template-columns: 1fr;
  }

  .market-region-grid {
    grid-template-columns: 1fr;
  }

  .about-check-grid,
  .about-market-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-process-grid img {
    height: 170px;
  }

  .about-quality-panel img,
  .about-market-panel img {
    min-height: 180px;
  }

  .about-shipment-media img {
    height: 190px;
  }

  .about-shipment {
    padding-bottom: 52px;
  }


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

  .split-media img {
    height: 320px;
  }

  .timeline-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-card {
    padding: 34px 24px;
  }

  .site-footer {
    display: grid;
    gap: 12px;
    padding: 24px 20px;
  }
}

/* Minimal homepage concept */
.minimal-home {
  background: #f7f4ee;
  color: #141619;
}

.minimal-home a {
  text-decoration: none;
}

.minimal-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  height: 84px;
  padding: 0 42px;
  color: #f9f6ef;
  transition: background .25s ease, color .25s ease, height .25s ease, box-shadow .25s ease;
}

.minimal-header.is-scrolled {
  height: 72px;
  color: #141619;
  background: rgba(247, 244, 238, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(20, 22, 25, .08);
}

.minimal-brand img {
  width: 116px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .9);
}

.minimal-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.minimal-nav a {
  color: inherit;
  opacity: .78;
}

.minimal-nav a:hover {
  opacity: 1;
}

.minimal-quote {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.minimal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
  gap: 42px;
  min-height: 100vh;
  padding: 132px 42px 42px;
  background: #11171a;
  color: #f9f6ef;
  overflow: hidden;
}

.minimal-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(249, 246, 239, .12);
  border-radius: 50%;
  transform: translate(-38%, 38%);
}

.minimal-hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding-bottom: 36px;
}

.minimal-kicker {
  margin: 0 0 24px;
  color: #c7a56a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.minimal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 7vw, 118px);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.minimal-hero-copy > p:not(.minimal-kicker) {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(249, 246, 239, .7);
  font-size: 18px;
  line-height: 1.72;
}

.minimal-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.minimal-actions a,
.minimal-contact a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: #11171a;
  background: #f9f6ef;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.minimal-actions a:nth-child(2),
.minimal-contact a:nth-child(2) {
  color: #f9f6ef;
  background: transparent;
  border: 1px solid rgba(249, 246, 239, .38);
}

.minimal-actions a:hover,
.minimal-contact a:hover {
  transform: translateY(-2px);
  background: #c7a56a;
}

.minimal-hero-visual {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  min-height: 600px;
  border-radius: 6px;
}

.minimal-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.04);
  animation: minimalZoom 18s ease-in-out infinite alternate;
}

.minimal-card {
  position: absolute;
  width: 180px;
  padding: 20px;
  border-radius: 6px;
  color: #141619;
  background: rgba(249, 246, 239, .92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.minimal-card strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.minimal-card span {
  display: block;
  margin-top: 8px;
  color: #66707a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-a {
  left: 26px;
  bottom: 28px;
}

.floating-b {
  right: 26px;
  top: 28px;
}

.minimal-products,
.minimal-quality {
  padding: 112px 42px;
}

.minimal-section-title {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.minimal-section-title span,
.minimal-factory-copy > span {
  color: #a07137;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.minimal-section-title h2,
.minimal-factory-copy h2,
.minimal-contact h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: .98;
  letter-spacing: -0.04em;
}

.minimal-section-title a {
  color: #141619;
  font-weight: 900;
  border-bottom: 2px solid #141619;
}

.minimal-product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(20, 22, 25, .16);
  border-left: 1px solid rgba(20, 22, 25, .16);
}

.minimal-product {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  border-right: 1px solid rgba(20, 22, 25, .16);
  border-bottom: 1px solid rgba(20, 22, 25, .16);
  color: #141619;
  background: #f7f4ee;
  transition: background .28s ease, color .28s ease;
}

.minimal-product span {
  display: block;
  color: #a07137;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.minimal-product h3 {
  margin: 22px 0 0;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.minimal-product p {
  max-width: 280px;
  margin: 18px 0 0;
  color: #66707a;
  line-height: 1.65;
}

.minimal-product img {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  width: calc(100% - 56px);
  height: 210px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform .38s ease;
}

.minimal-product:hover {
  color: #f9f6ef;
  background: #11171a;
}

.minimal-product:hover p {
  color: rgba(249, 246, 239, .64);
}

.minimal-product:hover img {
  transform: scale(1.04);
}

.minimal-factory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 42px;
  background: #f9f6ef;
}

.minimal-factory-image {
  overflow: hidden;
  min-height: 640px;
  border-radius: 6px;
}

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

.minimal-factory-copy {
  align-self: center;
  max-width: 620px;
  padding: 40px;
}

.minimal-factory-copy p {
  margin: 26px 0 0;
  color: #66707a;
  font-size: 18px;
  line-height: 1.75;
}

.minimal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 22, 25, .14);
}

.minimal-stats strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.minimal-stats small {
  display: block;
  margin-top: 6px;
  color: #66707a;
  font-weight: 800;
}

.minimal-quality {
  background: #e8e0d3;
}

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

.minimal-steps div {
  min-height: 260px;
  padding: 28px;
  border-radius: 6px;
  background: #f7f4ee;
}

.minimal-steps b {
  display: block;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.minimal-steps p {
  margin: 80px 0 0;
  color: #66707a;
  line-height: 1.65;
}

.minimal-contact {
  margin: 42px;
  padding: 84px;
  border-radius: 6px;
  color: #f9f6ef;
  background: #11171a;
}

.minimal-contact p {
  margin: 0 0 18px;
  color: #c7a56a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.minimal-contact h2 {
  max-width: 980px;
}

.minimal-contact div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.minimal-footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 42px 42px;
  color: #66707a;
  font-size: 14px;
}

.minimal-footer a {
  color: #141619;
  font-weight: 900;
}

@keyframes minimalZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1) translate3d(-18px, 8px, 0); }
}

@media (max-width: 1180px) {
  .minimal-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }

  .minimal-nav {
    display: none;
  }

  .minimal-hero,
  .minimal-factory {
    grid-template-columns: 1fr;
  }

  .minimal-product-list,
  .minimal-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .minimal-header {
    height: 68px;
    padding: 0 18px;
  }

  .minimal-quote {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .minimal-hero {
    display: block;
    min-height: auto;
    padding: 104px 18px 18px;
  }

  .minimal-hero h1 {
    font-size: 48px;
  }

  .minimal-hero-visual {
    min-height: 380px;
    margin-top: 36px;
  }

  .minimal-card {
    width: 150px;
    padding: 16px;
  }

  .minimal-products,
  .minimal-quality,
  .minimal-factory {
    padding: 64px 18px;
  }

  .minimal-section-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .minimal-product-list,
  .minimal-steps,
  .minimal-stats {
    grid-template-columns: 1fr;
  }

  .minimal-product {
    min-height: 470px;
  }

  .minimal-factory-image {
    min-height: 320px;
  }

  .minimal-factory-copy {
    padding: 0;
  }

  .minimal-contact {
    margin: 18px;
    padding: 42px 24px;
  }

  .minimal-contact a {
    width: 100%;
  }

  .minimal-footer {
    display: grid;
    gap: 14px;
    padding: 24px 18px 34px;
  }
}

/* Style A - light catalog concept */
.style-a {
  margin: 0;
  color: #17201f;
  background: #fbfaf8;
}

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

.a-topbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 8%;
  color: rgba(255, 255, 255, .66);
  background: #10251f;
  font-size: 12px;
}

.a-header {
  display: grid;
  grid-template-columns: 160px minmax(240px, 360px) 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 8%;
  background: #fbfaf8;
}

.a-logo img {
  width: 120px;
}

.a-search {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #e9ebe8;
  border-radius: 999px;
  color: #9aa19d;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 32, 31, .04);
  font-size: 13px;
}

.a-header nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  color: #394440;
  font-size: 14px;
  font-weight: 700;
}

.a-icon-link {
  display: inline-flex;
  height: 40px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #173d39;
  font-weight: 800;
  font-size: 13px;
}

.a-category {
  display: flex;
  gap: 38px;
  padding: 18px 8% 26px;
  border-top: 1px solid #eff0ee;
  color: #44504c;
  font-size: 14px;
  font-weight: 700;
}

.a-hero {
  display: grid;
  grid-template-columns: 1.25fr .74fr .74fr;
  gap: 28px;
  width: min(1500px, 90%);
  margin: 36px auto 110px;
  padding: 48px;
  border-radius: 26px;
  background: #edf5f3;
}

.a-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.a-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.a-hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #56625f;
  line-height: 1.75;
}

.a-expert {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0;
  margin-top: 30px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
}

.a-expert span {
  width: 26px;
  height: 26px;
  margin-right: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7a56a, #173d39);
}

.a-expert small {
  margin-left: 14px;
  color: #32413d;
  font-weight: 700;
}

.a-button {
  display: inline-flex;
  width: fit-content;
  min-height: 56px;
  align-items: center;
  margin-top: 44px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background: #173d39;
  font-weight: 900;
}

.a-feature {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  border-radius: 18px;
  background: #d9eeea;
}

.a-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.a-feature:hover img {
  transform: scale(1.06);
}

.a-feature b {
  position: absolute;
  left: 24px;
  top: 24px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(23, 32, 31, .1);
}

.a-feature a {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
}

.a-tall {
  min-height: 520px;
}

.a-feature-stack {
  display: grid;
  gap: 28px;
}

.a-sale {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: #214f4a;
  text-align: center;
}

.a-sale strong {
  font-size: 24px;
}

.a-sale p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, .72);
}

.a-sale a {
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  font-weight: 800;
}

.a-section {
  width: min(1500px, 90%);
  margin: 0 auto 100px;
}

.a-section-head {
  margin-bottom: 46px;
  text-align: center;
}

.a-section-head h2 {
  margin: 0;
  font-size: 28px;
}

.a-section-head p {
  color: #6c7672;
}

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

.a-product {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 32, 31, .06);
}

.a-product img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 28px;
  background: #fbfbfa;
}

.a-product h3 {
  margin: 24px 24px 8px;
  text-align: center;
  font-size: 18px;
}

.a-product > p {
  margin: 0 24px 22px;
  color: #6c7672;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.a-product div {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  border-top: 1px solid #edf0ed;
  color: #56625f;
  font-size: 13px;
}

.a-product a {
  color: #173d39;
  font-weight: 900;
}

.a-rooms {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  width: min(1400px, 86%);
  margin: 0 auto 80px;
  padding: 46px;
  border-radius: 24px;
  color: #fff;
  background: #10251f;
}

.a-rooms h2 {
  margin: 0 0 16px;
  font-size: 36px;
}

.a-rooms p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.a-rooms article {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.a-rooms img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.a-rooms span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 12px;
  color: #173d39;
  background: #fff;
  font-weight: 800;
}

.a-footer {
  display: flex;
  justify-content: space-between;
  padding: 32px 8%;
  color: #6c7672;
}

.a-footer a {
  color: #173d39;
  font-weight: 900;
}

/* Style B - B2B industrial concept */
.style-b {
  color: #16202c;
  background: #eef4fb;
}

.style-b a {
  color: inherit;
  text-decoration: none;
}

.b-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8%;
  color: #fff;
}

.b-header img {
  width: 118px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.9);
}

.b-header nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.b-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}

.b-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 24, 36, .82), rgba(9, 24, 36, .24));
}

.b-hero-copy {
  position: relative;
  z-index: 1;
  width: min(640px, 42%);
  margin-left: auto;
  padding: 160px 8% 0 0;
}

.b-hero-copy span,
.b-title span,
.b-video span {
  color: #1c64b7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.b-hero-copy h1 {
  margin: 18px 0 0;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.b-hero-copy p {
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}

.b-hero-copy a {
  display: inline-flex;
  margin-top: 26px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-weight: 800;
}

.b-slider {
  position: absolute;
  left: 8%;
  bottom: 0;
  z-index: 2;
  width: 190px;
  padding: 24px;
  background: #1453b5;
  text-align: center;
  font-weight: 900;
}

.b-solutions,
.b-systems,
.b-video {
  width: min(1400px, 84%);
  margin: 0 auto;
  padding: 86px 0;
  background: #fff;
}

.b-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 0 7%;
  margin-bottom: 34px;
}

.b-title h2 {
  grid-column: 1;
  margin: 8px 0 0;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.b-title a {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #1c64b7;
  font-weight: 900;
}

.b-solution-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 32px;
  padding: 0 7%;
}

.b-solution-grid article {
  display: grid;
  gap: 20px;
}

.b-solution-grid article:nth-child(2) {
  grid-template-columns: .6fr 1fr;
  align-items: end;
}

.b-solution-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.b-solution-grid p {
  color: #66768a;
  line-height: 1.65;
}

.b-solution-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.b-systems {
  background: #f7fbff;
}

.b-system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 7%;
}

.b-system-grid a {
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  min-height: 190px;
  padding: 26px;
  background: #eaf2fb;
  transition: transform .25s ease, box-shadow .25s ease;
}

.b-system-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(22, 32, 44, .12);
}

.b-system-grid span {
  color: #738196;
  font-size: 12px;
  font-weight: 900;
}

.b-system-grid h3 {
  max-width: 280px;
  margin: 10px 0 0;
  font-size: 22px;
}

.b-system-grid img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.b-video {
  background: #fff;
}

.b-video div {
  padding: 0 7% 30px;
}

.b-video h2 {
  max-width: 720px;
  margin: 10px 0 0;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.b-video img {
  width: 86%;
  height: 440px;
  margin: 0 auto;
  object-fit: cover;
}

.b-blue {
  width: min(1400px, 84%);
  margin: 0 auto;
  padding: 58px 7%;
  color: #fff;
  background: #1453b5;
}

.b-blue p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.72);
}

.b-blue h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 30px;
}

.b-blue a {
  display: inline-flex;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-weight: 900;
}

.b-footer {
  display: flex;
  justify-content: space-between;
  width: min(1400px, 84%);
  margin: 0 auto 60px;
  padding: 38px 7%;
  color: rgba(255,255,255,.78);
  background: #063477;
}

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

  .a-search {
    display: none;
  }

  .a-hero,
  .a-grid,
  .a-rooms,
  .b-solution-grid,
  .b-system-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b-hero-copy {
    width: min(760px, 78%);
  }
}

@media (max-width: 760px) {
  .a-topbar,
  .a-category,
  .a-header nav,
  .b-header nav {
    display: none;
  }

  .a-header,
  .b-header {
    padding: 20px;
  }

  .a-hero,
  .a-grid,
  .a-rooms,
  .b-solution-grid,
  .b-system-grid {
    grid-template-columns: 1fr;
  }

  .a-hero {
    width: calc(100% - 28px);
    padding: 24px;
    margin-top: 20px;
  }

  .a-hero h1,
  .b-hero-copy h1 {
    font-size: 40px;
  }

  .a-hero-copy,
  .a-tall {
    min-height: auto;
  }

  .a-feature {
    min-height: 320px;
  }

  .a-section,
  .a-rooms,
  .b-solutions,
  .b-systems,
  .b-video,
  .b-blue,
  .b-footer {
    width: calc(100% - 28px);
  }

  .b-hero {
    min-height: 620px;
  }

  .b-hero-copy {
    width: auto;
    padding: 130px 22px 0;
  }

  .b-title,
  .b-system-grid a,
  .b-footer {
    display: block;
  }

  .b-system-grid img {
    margin-top: 20px;
  }
}

/* Style C - premium editorial industrial concept */
.style-c {
  margin: 0;
  color: #111820;
  background: #f4f1ea;
}

.style-c a {
  color: inherit;
  text-decoration: none;
}

.c-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 46px;
  color: #f8f3e8;
  mix-blend-mode: difference;
}

.c-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-brand img {
  width: 112px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #fff;
}

.c-brand span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.c-header nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.c-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 100vh;
  background: #111820;
  color: #f8f3e8;
}

.c-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 136px 56px 58px;
}

.c-hero-copy > p,
.c-section-title p,
.c-proof-copy > p,
.c-contact p {
  margin: 0 0 22px;
  color: #b89156;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.c-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(62px, 7.2vw, 122px);
  line-height: .88;
  letter-spacing: -0.06em;
}

.c-hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(248, 243, 232, .18);
}

.c-hero-bottom span {
  max-width: 560px;
  color: rgba(248, 243, 232, .7);
  font-size: 17px;
  line-height: 1.72;
}

.c-hero-bottom a,
.c-contact a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  color: #111820;
  background: #f8f3e8;
  font-weight: 950;
}

.c-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.c-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06);
  transform: scale(1.04);
  animation: cImageDrift 20s ease-in-out infinite alternate;
}

.c-marquee {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(17, 24, 32, .14);
  background: #f8f3e8;
}

.c-marquee span {
  padding: 24px 20px;
  border-right: 1px solid rgba(17, 24, 32, .14);
  color: #39434c;
  text-align: center;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.c-products,
.c-process {
  padding: 112px 46px;
}

.c-section-title {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 44px;
}

.c-section-title h2,
.c-proof-copy h2,
.c-contact h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 78px);
  line-height: .96;
  letter-spacing: -0.055em;
}

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

.c-product {
  position: relative;
  display: grid;
  grid-template-rows: auto 360px auto;
  gap: 24px;
  min-height: 620px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 32, .16);
  border-radius: 4px;
  background: #f8f3e8;
  transition: transform .28s ease, background .28s ease, color .28s ease;
}

.c-product:hover {
  transform: translateY(-8px);
  color: #f8f3e8;
  background: #111820;
}

.c-product em {
  font-style: normal;
  color: #b89156;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
}

.c-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.c-product h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.c-product p {
  margin: 16px 0 0;
  color: #66707a;
  line-height: 1.65;
}

.c-product:hover p {
  color: rgba(248, 243, 232, .68);
}

.c-proof {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  background: #e2d8c9;
}

.c-proof-image {
  min-height: 680px;
  overflow: hidden;
}

.c-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-proof-copy {
  align-self: center;
  padding: 70px;
}

.c-proof-copy ul {
  display: grid;
  gap: 18px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.c-proof-copy li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 32, .16);
}

.c-proof-copy strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.c-proof-copy span {
  color: #5f6971;
  line-height: 1.55;
}

.c-process {
  background: #f4f1ea;
}

.c-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 24, 32, .16);
  border-left: 1px solid rgba(17, 24, 32, .16);
}

.c-process-grid div {
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid rgba(17, 24, 32, .16);
  border-bottom: 1px solid rgba(17, 24, 32, .16);
}

.c-process-grid span {
  color: #b89156;
  font-size: 12px;
  font-weight: 950;
}

.c-process-grid h3 {
  margin: 96px 0 14px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.c-process-grid p {
  margin: 0;
  color: #66707a;
  line-height: 1.65;
}

.c-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin: 0 46px 46px;
  padding: 64px;
  border-radius: 4px;
  color: #f8f3e8;
  background: #1453b5;
}

.c-contact div:last-child {
  display: flex;
  gap: 12px;
}

.c-contact a:nth-child(2) {
  color: #f8f3e8;
  background: transparent;
  border: 1px solid rgba(248, 243, 232, .42);
}

.c-footer {
  display: flex;
  justify-content: space-between;
  padding: 0 46px 40px;
  color: #66707a;
  font-size: 14px;
}

.c-footer a {
  font-weight: 950;
}

@keyframes cImageDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-20px, 12px, 0); }
}

@media (max-width: 1180px) {
  .c-header nav {
    display: none;
  }

  .c-hero,
  .c-section-title,
  .c-proof,
  .c-contact {
    grid-template-columns: 1fr;
  }

  .c-hero-image {
    min-height: 520px;
  }

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

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

@media (max-width: 760px) {
  .c-header {
    padding: 18px;
  }

  .c-brand span {
    display: none;
  }

  .c-hero-copy {
    padding: 110px 22px 36px;
  }

  .c-hero-bottom,
  .c-product-row,
  .c-process-grid,
  .c-proof-copy li {
    grid-template-columns: 1fr;
  }

  .c-products,
  .c-process {
    padding: 70px 22px;
  }

  .c-product {
    min-height: auto;
    grid-template-rows: auto 280px auto;
  }

  .c-proof-image {
    min-height: 320px;
  }

  .c-proof-copy {
    padding: 46px 22px;
  }

  .c-contact {
    margin: 0 22px 30px;
    padding: 36px 22px;
  }

  .c-contact div:last-child {
    flex-direction: column;
    align-items: stretch;
  }

  .c-footer {
    display: grid;
    gap: 12px;
    padding: 0 22px 32px;
  }
}

/* Helper class for LTR direction override in RTL layout */
.direction-ltr {
  direction: ltr !important;
  unicode-bidi: isolate;
}

/* RTL Specific UI Layout Overrides for details, about, and catalog pages */
html[dir="rtl"] .detail-summary,
html[dir="rtl"] .detail-description,
html[dir="rtl"] .detail-section-title,
html[dir="rtl"] .detail-applications li,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .about-quality-panel,
html[dir="rtl"] .about-market-panel,
html[dir="rtl"] .support-hero-copy,
html[dir="rtl"] .support-match-detail,
html[dir="rtl"] .market-copy,
html[dir="rtl"] .market-region-detail {
  text-align: right;
}

@media (max-width: 991px) {
  .support-evidence-grid,
  .support-evidence-grid.reverse,
  .support-lab-panel,
  .support-execution-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .support-proof-media img,
  .support-image-placeholder {
    min-height: 220px;
    height: 220px;
  }

  .support-evidence-points {
    grid-template-columns: 1fr;
  }

  .support-process-track {
    grid-template-columns: 1fr;
  }

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

  .qc-lab-gallery img {
    height: 220px;
  }
}

/* About Us Hierarchy Layout */
.about-hierarchy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}

.about-hierarchy-top {
  width: 100%;
  max-width: 760px;
}

.about-hierarchy-top .about-structure-export {
  padding: 30px 24px;
  text-align: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-hierarchy-top .about-structure-export p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.about-hierarchy-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-hierarchy-connector .about-connector-arrow {
  font-size: 24px;
  line-height: 1;
}

.about-hierarchy-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

@media (max-width: 760px) {
  .about-hierarchy-bottom {
    grid-template-columns: 1fr;
  }
}
