
/* =========================================================
   01. FOUNDATION
   ========================================================= */
#yb-cs-page {
  --yb-cs-blue: #0739ac;
  --yb-cs-blue-dark: #062f91;
  --yb-cs-navy: #07152f;
  --yb-cs-text: #53627a;
  --yb-cs-pale: #f5f9fd;
  --yb-cs-faq: #f6f8fb;
  --yb-cs-line: #d8e4f0;
  --yb-cs-wrap: 1380px;
  --yb-cs-header-offset: 0px;
  --yb-cs-nav-height: 60px;
  --yb-cs-viewport-width: 100vw;
  --yb-cs-breakout-left: 0px;

  position: relative;
  left: auto;
  width: var(--yb-cs-viewport-width);
  max-width: none;
  margin: 0 0 0 var(--yb-cs-breakout-left);
  overflow: visible;
  background: transparent;
  color: var(--yb-cs-navy);
  font-family: Poppins, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

#yb-cs-page,
#yb-cs-page * {
  box-sizing: border-box;
  font-family: Poppins, Arial, sans-serif;
}

body.yb-cs-page-active {
  overflow-x: clip !important;
}

@supports not (overflow: clip) {
  body.yb-cs-page-active {
    overflow-x: hidden !important;
  }
}

/* Release clipping only on the UEESHOP ancestor branch that
   contains this custom page. Width, spacing and colors are untouched. */
.yb-cs-bleed-host {
  overflow: visible !important;
  overflow-x: visible !important;
  clip-path: none !important;
}

#yb-cs-page img {
  display: block;
  max-width: 100%;
}

#yb-cs-page a {
  color: inherit;
  text-decoration: none;
}

#yb-cs-page button,
#yb-cs-page input,
#yb-cs-page textarea,
#yb-cs-page select {
  font: inherit;
}

#yb-cs-page .yb-cs-band {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

#yb-cs-page .yb-cs-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--yb-cs-wrap);
  margin-right: auto;
  margin-left: auto;
  padding-right: 38px;
  padding-left: 38px;
}

#yb-cs-page .yb-cs-section {
  padding: 82px 0;
}

/* =========================================================
   02. SHARED TYPOGRAPHY AND CONTROLS
   ========================================================= */
#yb-cs-page h1,
#yb-cs-page h2,
#yb-cs-page h3,
#yb-cs-page p {
  margin-top: 0;
}

#yb-cs-page h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -2.5px;
}

#yb-cs-page h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.6px;
}

#yb-cs-page h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.5px;
}

#yb-cs-page p {
  color: var(--yb-cs-text);
  font-size: 16px;
  line-height: 1.72;
}

#yb-cs-page .yb-cs-kicker {
  margin: 0 0 10px;
  color: var(--yb-cs-blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

#yb-cs-page .yb-cs-section-head {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

#yb-cs-page .yb-cs-section-head p {
  max-width: 820px;
  margin: 0 auto;
}

#yb-cs-page .yb-cs-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 24px;
  border: 1px solid var(--yb-cs-blue);
  background: var(--yb-cs-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

#yb-cs-page .yb-cs-btn:hover {
  background: transparent;
  color: var(--yb-cs-blue);
  transform: translateY(-2px);
}

#yb-cs-page .yb-cs-arrow {
  display: inline-block;
  transition: transform .25s ease;
}

#yb-cs-page .yb-cs-btn:hover .yb-cs-arrow {
  transform: translateX(5px);
}

#yb-cs-page a:focus-visible,
#yb-cs-page summary:focus-visible {
  outline: 2px solid #5b83f7;
  outline-offset: 3px;
}

/* Prevent technical text and grid children from forcing overflow. */
#yb-cs-page .yb-cs-hero-copy,
#yb-cs-page .yb-cs-hero-visual,
#yb-cs-page .yb-cs-why-intro,
#yb-cs-page .yb-cs-reasons,
#yb-cs-page .yb-cs-types-visual,
#yb-cs-page .yb-cs-types-copy,
#yb-cs-page .yb-cs-spec-main,
#yb-cs-page .yb-cs-spec-aside,
#yb-cs-page .yb-cs-process-media,
#yb-cs-page .yb-cs-process-copy,
#yb-cs-page .yb-cs-app,
#yb-cs-page .yb-cs-product-card-v14,
#yb-cs-page .yb-cs-faq details {
  min-width: 0;
}

#yb-cs-page h1,
#yb-cs-page h2,
#yb-cs-page h3,
#yb-cs-page p,
#yb-cs-page summary,
#yb-cs-page th,
#yb-cs-page td {
  overflow-wrap: break-word;
}

/* =========================================================
   03. HERO
   ========================================================= */
#yb-cs-page .yb-cs-hero {
  padding: 88px 0 72px;
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      #fff 52%,
      #f3f8fd 100%
    );
}

#yb-cs-page .yb-cs-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(420px, .9fr);
  gap: 74px;
  align-items: center;
}

#yb-cs-page .yb-cs-hero-copy {
  max-width: 760px;
}

#yb-cs-page .yb-cs-hero-copy > p {
  max-width: 720px;
  margin-bottom: 16px;
}

#yb-cs-page .yb-cs-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 24px;
}

#yb-cs-page .yb-cs-stat {
  display: flex;
  min-height: 106px;
  flex-direction: column;
  padding: 18px 16px;
  border-left: 3px solid var(--yb-cs-blue);
  background: var(--yb-cs-pale);
}

#yb-cs-page .yb-cs-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--yb-cs-navy);
  font-size: 17px;
  line-height: 1.2;
}

#yb-cs-page .yb-cs-stat span {
  display: block;
  color: #728099;
  font-size: 11px;
  line-height: 1.45;
}

#yb-cs-page .yb-cs-note {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 2px solid #9eb9dc;
  color: #738197;
  font-size: 12px;
  line-height: 1.55;
}

#yb-cs-page .yb-cs-hero-visual {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
}

#yb-cs-page .yb-cs-hero-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 390px;
  overflow: visible;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 35% 18%,
      rgba(71, 164, 255, .75),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #0781d1 0%,
      #0739ac 58%,
      #062b7c 100%
    );
  box-shadow: 0 30px 56px rgba(7, 57, 172, .24);
}

#yb-cs-page .yb-cs-hero-card img {
  position: absolute;
  bottom: 72px;
  left: 50%;
  width: 82%;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, .24));
  transform: translateX(-50%);
}

#yb-cs-page .yb-cs-hero-label {
  position: absolute;
  right: 34px;
  bottom: 26px;
  left: 34px;
  color: #fff;
}

#yb-cs-page .yb-cs-hero-label strong {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
  line-height: 1.25;
}

#yb-cs-page .yb-cs-hero-label span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* =========================================================
   04. DETAIL-PAGE NAVIGATION
   Uses the original page navigation node. No cloning, appending
   or modification of the UEESHOP site navigation.
   ========================================================= */
#yb-cs-page .yb-cs-anchor-slot {
  position: sticky;
  top: var(--yb-cs-header-offset);
  z-index: 99990;
  width: 100%;
  min-height: var(--yb-cs-nav-height);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 21, 47, .07);
}

#yb-cs-page .yb-cs-anchor-band {
  width: 100%;
  min-height: var(--yb-cs-nav-height);
  background: rgba(255, 255, 255, .985);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

#yb-cs-page .yb-cs-anchor-nav {
  display: flex;
  min-height: var(--yb-cs-nav-height);
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

#yb-cs-page .yb-cs-anchor-nav::-webkit-scrollbar {
  display: none;
}

#yb-cs-page .yb-cs-anchor-nav a:not(
  .yb-cs-anchor-inquiry
) {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 20px;
  border-radius: 4px;
  background: transparent;
  color: var(--yb-cs-text);
  font-size: 13px;
  font-weight: 700;
  transition:
    color .2s ease,
    background-color .2s ease;
}

#yb-cs-page .yb-cs-anchor-nav a:not(
  .yb-cs-anchor-inquiry
)::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  background: var(--yb-cs-blue);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity .2s ease,
    transform .2s ease;
}

/* Hover state: light-blue background, no selected underline. */
#yb-cs-page .yb-cs-anchor-nav a:not(
  .yb-cs-anchor-inquiry
):hover {
  background: #f3f7fd;
  color: var(--yb-cs-blue);
}

/* Current section: light-blue background + blue underline. */
#yb-cs-page .yb-cs-anchor-nav a:not(
  .yb-cs-anchor-inquiry
).is-active,
#yb-cs-page .yb-cs-anchor-nav a:not(
  .yb-cs-anchor-inquiry
)[aria-current="location"] {
  background: #edf4fc;
  color: var(--yb-cs-blue);
}

#yb-cs-page .yb-cs-anchor-nav a:not(
  .yb-cs-anchor-inquiry
).is-active::after,
#yb-cs-page .yb-cs-anchor-nav a:not(
  .yb-cs-anchor-inquiry
)[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

#yb-cs-page .yb-cs-anchor-nav .yb-cs-anchor-inquiry {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  margin-left: auto;
  padding: 0 24px;
  border: 1px solid var(--yb-cs-blue);
  border-radius: 4px;
  background: var(--yb-cs-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition:
    color .2s ease,
    background-color .2s ease,
    transform .2s ease;
}

#yb-cs-page .yb-cs-anchor-nav .yb-cs-anchor-inquiry:hover {
  background: #fff;
  color: var(--yb-cs-blue);
  transform: translateY(-1px);
}

#yb-cs-page #custom-shaft-overview,
#yb-cs-page #custom-shaft-capabilities,
#yb-cs-page #custom-shaft-process,
#yb-cs-page #custom-shaft-applications,
#yb-cs-page #custom-shaft-faq,
#yb-cs-page #custom-shaft-native-inquiry-anchor {
  scroll-margin-top:
    calc(
      var(--yb-cs-header-offset)
      + var(--yb-cs-nav-height)
      + 16px
    );
}

/* =========================================================
   05. WHY CUSTOM SHAFTS
   ========================================================= */
#yb-cs-page .yb-cs-why {
  background: var(--yb-cs-pale);
}

#yb-cs-page .yb-cs-why-grid {
  display: grid;
  grid-template-columns:
    minmax(320px, .82fr)
    minmax(0, 1.18fr);
  gap: 86px;
  align-items: start;
}

#yb-cs-page .yb-cs-why-intro h2 {
  max-width: 520px;
}

#yb-cs-page .yb-cs-why-intro p {
  max-width: 560px;
}

#yb-cs-page .yb-cs-reasons {
  display: grid;
}

#yb-cs-page .yb-cs-reason {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--yb-cs-line);
}

#yb-cs-page .yb-cs-reason:first-child {
  padding-top: 0;
}

#yb-cs-page .yb-cs-reason-num {
  color: var(--yb-cs-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

#yb-cs-page .yb-cs-reason p {
  margin-bottom: 0;
  font-size: 15px;
}

/* =========================================================
   06. SHAFT STRUCTURES
   ========================================================= */
#yb-cs-page .yb-cs-types {
  background: #fff;
}

#yb-cs-page .yb-cs-types-grid {
  display: grid;
  grid-template-columns:
    minmax(420px, .9fr)
    minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

#yb-cs-page .yb-cs-types-visual {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px 34px 112px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(71, 164, 255, .72),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #0a80cf 0%,
      #0739ac 62%,
      #062b7c 100%
    );
}

#yb-cs-page .yb-cs-types-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

#yb-cs-page .yb-cs-types-caption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#yb-cs-page .yb-cs-type-list {
  display: grid;
}

#yb-cs-page .yb-cs-type-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--yb-cs-line);
}

#yb-cs-page .yb-cs-type-row:last-child {
  border-bottom: 0;
}

#yb-cs-page .yb-cs-type-no {
  color: var(--yb-cs-blue);
  font-size: 12px;
  font-weight: 700;
}

#yb-cs-page .yb-cs-type-row p {
  margin-bottom: 0;
  font-size: 15px;
}

/* =========================================================
   07. TECHNICAL CAPABILITIES
   ========================================================= */
#yb-cs-page .yb-cs-specs {
  background: #fff;
}

#yb-cs-page .yb-cs-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

#yb-cs-page .yb-cs-spec-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 22px;
}

#yb-cs-page .yb-cs-table-scroll,
#yb-cs-page .yb-cs-tech-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

#yb-cs-page table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

#yb-cs-page .yb-cs-capability-table {
  min-width: 830px;
  table-layout: fixed;
}

#yb-cs-page .yb-cs-capability-table th:nth-child(1) {
  width: 20%;
}

#yb-cs-page .yb-cs-capability-table th:nth-child(2) {
  width: 34%;
}

#yb-cs-page .yb-cs-capability-table th:nth-child(3) {
  width: 46%;
}

#yb-cs-page .yb-cs-capability-table th,
#yb-cs-page .yb-cs-tech-table th {
  padding: 13px 14px;
  border: 1px solid var(--yb-cs-line);
  background: var(--yb-cs-blue);
  color: #fff;
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
}

#yb-cs-page .yb-cs-capability-table td,
#yb-cs-page .yb-cs-tech-table td {
  padding: 12px 14px;
  border: 1px solid var(--yb-cs-line);
  background: #fff;
  color: var(--yb-cs-text);
  vertical-align: top;
  font-size: 12px;
  line-height: 1.5;
}

#yb-cs-page .yb-cs-capability-table
tbody tr:nth-child(even) td,
#yb-cs-page .yb-cs-tech-table
tbody tr:nth-child(even) td {
  background: #f8fbfe;
}

#yb-cs-page .yb-cs-capability-table td:first-child,
#yb-cs-page .yb-cs-tech-table td:first-child {
  color: var(--yb-cs-navy);
  font-weight: 700;
}

#yb-cs-page .yb-cs-capability-table td:nth-child(2) {
  color: var(--yb-cs-blue);
  font-weight: 700;
}

#yb-cs-page .yb-cs-spec-aside {
  padding: 28px 24px;
  border-left: 4px solid var(--yb-cs-blue);
  background: #f3f7fc;
}

#yb-cs-page .yb-cs-spec-aside h3 {
  font-size: 28px;
}

#yb-cs-page .yb-cs-rfq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin: 20px 0 24px;
}

#yb-cs-page .yb-cs-rfq-item {
  position: relative;
  padding-left: 16px;
  color: var(--yb-cs-text);
  font-size: 13px;
  line-height: 1.5;
}

#yb-cs-page .yb-cs-rfq-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--yb-cs-blue);
}

#yb-cs-page .yb-cs-rfq-note {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

#yb-cs-page .yb-cs-additional-tech > .yb-cs-kicker {
  margin-bottom: 5px;
}

#yb-cs-page .yb-cs-additional-tech > p {
  margin-bottom: 13px;
  font-size: 12px;
}

#yb-cs-page .yb-cs-tech-details {
  display: grid;
  gap: 8px;
}

#yb-cs-page .yb-cs-tech-details details {
  overflow: hidden;
  border: 1px solid var(--yb-cs-line);
  border-radius: 4px;
  background: #fff;
}

#yb-cs-page .yb-cs-tech-details summary {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 50px 0 18px;
  list-style: none;
  cursor: pointer;
  background: var(--yb-cs-pale);
  color: #132546;
  font-size: 13px;
  font-weight: 700;
}

#yb-cs-page .yb-cs-tech-details
summary::-webkit-details-marker {
  display: none;
}

#yb-cs-page .yb-cs-tech-details summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  color: var(--yb-cs-blue);
  font-size: 20px;
  font-weight: 700;
}

#yb-cs-page .yb-cs-tech-details
details[open] summary {
  background: #eef4fb;
  color: var(--yb-cs-blue);
}

#yb-cs-page .yb-cs-tech-details
details[open] summary::after {
  content: "−";
}

#yb-cs-page .yb-cs-tech-table {
  min-width: 840px;
  table-layout: fixed;
}

#yb-cs-page .yb-cs-tech-table th:nth-child(1) {
  width: 24%;
}

#yb-cs-page .yb-cs-tech-table th:nth-child(2) {
  width: 31%;
}

#yb-cs-page .yb-cs-tech-table th:nth-child(3) {
  width: 45%;
}

#yb-cs-page .yb-cs-spec-warning {
  margin: 12px 14px 14px;
  padding: 12px 14px;
  border-left: 3px solid #9eb9dc;
  background: var(--yb-cs-pale);
  color: var(--yb-cs-text);
  font-size: 11.5px;
  line-height: 1.55;
}

/* =========================================================
   08. MANUFACTURING AND INSPECTION
   ========================================================= */
#yb-cs-page .yb-cs-process {
  background: #f4f8fc;
}

#yb-cs-page .yb-cs-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 56px;
  align-items: center;
}

#yb-cs-page .yb-cs-process-media {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
}

#yb-cs-page .yb-cs-process-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

#yb-cs-page .yb-cs-process-copy {
  padding: 18px 0;
}

#yb-cs-page .yb-cs-process-copy p {
  max-width: 590px;
}

#yb-cs-page .yb-cs-process-tags {
  color: var(--yb-cs-blue);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: .35px;
  text-transform: uppercase;
}

/* =========================================================
   09. APPLICATIONS
   ========================================================= */
#yb-cs-page .yb-cs-applications {
  background: #fff;
}

#yb-cs-page .yb-cs-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#yb-cs-page .yb-cs-app {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #dfe8f3;
}

#yb-cs-page .yb-cs-app img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#yb-cs-page .yb-cs-app::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 21, 47, 0) 20%,
      rgba(7, 21, 47, .22) 52%,
      rgba(7, 21, 47, .94) 100%
    );
}

#yb-cs-page .yb-cs-app-copy {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: #fff;
}

#yb-cs-page .yb-cs-app-copy span {
  display: block;
  margin-bottom: 8px;
  color: #8dc0ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

#yb-cs-page .yb-cs-app-copy h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 20px;
}

#yb-cs-page .yb-cs-app-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.55;
}

/* =========================================================
   10. RELATED PRODUCTS
   ========================================================= */
#yb-cs-page .yb-cs-related {
  padding-top: 68px;
  padding-bottom: 68px;
  background:
    radial-gradient(
      circle at 15% 6%,
      rgba(86, 145, 255, .28),
      transparent 31%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(26, 100, 228, .24),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #061943 0%,
      #0739ac 68%,
      #0b4fd0 100%
    );
  color: #fff;
}

#yb-cs-page .yb-cs-related .yb-cs-kicker,
#yb-cs-page .yb-cs-related h2 {
  color: #fff;
}

#yb-cs-page .yb-cs-related
.yb-cs-section-head {
  max-width: 940px;
  margin-bottom: 40px;
}

#yb-cs-page .yb-cs-related
.yb-cs-section-head p {
  color: rgba(255, 255, 255, .76);
}

#yb-cs-page .yb-cs-related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

#yb-cs-page .yb-cs-product-card-v14 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#yb-cs-page .yb-cs-product-media-v14 {
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  background: #f5f7fa;
  transition:
    background-color .32s ease,
    box-shadow .32s ease,
    transform .32s cubic-bezier(.2, .75, .2, 1);
}

#yb-cs-page .yb-cs-product-media-v14 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transition:
    filter .38s ease,
    transform .38s cubic-bezier(.2, .75, .2, 1);
}

#yb-cs-page .yb-cs-product-title-v14 {
  width: 100%;
  margin: 18px 0 7px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

#yb-cs-page .yb-cs-product-title-v14 a {
  color: #fff;
}

#yb-cs-page .yb-cs-product-cta-v14 {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto;
  padding: 4px 2px 8px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  transition:
    color .22s ease,
    transform .22s ease;
}

#yb-cs-page .yb-cs-product-cta-arrow-v14 {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  transition:
    transform .25s cubic-bezier(.2, .75, .2, 1);
}

#yb-cs-page .yb-cs-product-cta-line-v14 {
  position: absolute;
  right: 2px;
  bottom: 2px;
  left: 2px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  opacity: .95;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform .28s cubic-bezier(.2, .75, .2, 1);
}

#yb-cs-page .yb-cs-product-card-v14:hover
.yb-cs-product-media-v14,
#yb-cs-page .yb-cs-product-media-v14:focus-visible {
  background: #fff;
  box-shadow: 0 18px 36px rgba(2, 15, 51, .25);
  transform: translateY(-7px);
}

#yb-cs-page .yb-cs-product-card-v14:hover
.yb-cs-product-media-v14 img,
#yb-cs-page .yb-cs-product-media-v14:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.055);
}

#yb-cs-page .yb-cs-product-card-v14:hover
.yb-cs-product-cta-v14,
#yb-cs-page .yb-cs-product-cta-v14:hover,
#yb-cs-page .yb-cs-product-cta-v14:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

#yb-cs-page .yb-cs-product-card-v14:hover
.yb-cs-product-cta-arrow-v14,
#yb-cs-page .yb-cs-product-cta-v14:hover
.yb-cs-product-cta-arrow-v14,
#yb-cs-page .yb-cs-product-cta-v14:focus-visible
.yb-cs-product-cta-arrow-v14 {
  transform: translateX(8px);
}

#yb-cs-page .yb-cs-product-card-v14:hover
.yb-cs-product-cta-line-v14,
#yb-cs-page .yb-cs-product-cta-v14:hover
.yb-cs-product-cta-line-v14,
#yb-cs-page .yb-cs-product-cta-v14:focus-visible
.yb-cs-product-cta-line-v14 {
  transform: scaleX(1);
}

/* =========================================================
   11. FAQ / NATIVE RFQ ISOLATION
   ========================================================= */
#yb-cs-page .yb-cs-faq {
  margin: 0;
  padding: 64px 0 90px;
  overflow: visible;
  background: var(--yb-cs-faq);
  box-shadow: none;
}

#yb-cs-page .yb-cs-faq .yb-cs-wrap,
#yb-cs-page .yb-cs-faq-grid {
  margin-bottom: 0;
  background: var(--yb-cs-faq);
}

#yb-cs-page .yb-cs-faq
.yb-cs-section-head {
  max-width: 980px;
  margin-bottom: 30px;
}

#yb-cs-page .yb-cs-faq
.yb-cs-section-head h2 {
  margin-bottom: 0;
}

#yb-cs-page .yb-cs-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

#yb-cs-page .yb-cs-faq details {
  overflow: hidden;
  border: 1px solid #d8e2ef;
  border-radius: 7px;
  background: #fff;
}

#yb-cs-page .yb-cs-faq summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 15px 52px 15px 20px;
  list-style: none;
  cursor: pointer;
  color: var(--yb-cs-navy);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 700;
}

#yb-cs-page .yb-cs-faq
summary::-webkit-details-marker {
  display: none;
}

#yb-cs-page .yb-cs-faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: var(--yb-cs-blue);
  font-size: 20px;
}

#yb-cs-page .yb-cs-faq
details[open] summary::after {
  content: "−";
}

#yb-cs-page .yb-cs-faq-answer {
  padding: 0 20px 18px;
  color: var(--yb-cs-text);
  font-size: 13px;
  line-height: 1.65;
}

#yb-cs-page .yb-cs-native-anchor {
  display: block;
  width: 100%;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  font-size: 0;
  line-height: 0;
}

/* Only the page-containing UEESHOP branch receives the measured
   negative margin. The native RFQ receives no selector or style. */
.yb-cs-faq-gap-collapse-host {
  margin-bottom:
    calc(
      var(--yb-cs-host-original-margin-bottom, 0px)
      - var(--yb-cs-external-gap, 0px)
    ) !important;
}

/* =========================================================
   12. RESPONSIVE BEHAVIOR
   ========================================================= */
@media (max-width: 1180px) {
  #yb-cs-page .yb-cs-wrap {
    padding-right: 28px;
    padding-left: 28px;
  }

  #yb-cs-page .yb-cs-hero-grid,
  #yb-cs-page .yb-cs-types-grid {
    gap: 46px;
  }

  #yb-cs-page .yb-cs-spec-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 22px;
  }

  #yb-cs-page .yb-cs-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #yb-cs-page .yb-cs-section {
    padding: 68px 0;
  }

  #yb-cs-page .yb-cs-hero-grid,
  #yb-cs-page .yb-cs-why-grid,
  #yb-cs-page .yb-cs-types-grid,
  #yb-cs-page .yb-cs-spec-layout,
  #yb-cs-page .yb-cs-process-grid {
    grid-template-columns: 1fr;
  }

  #yb-cs-page .yb-cs-hero-copy {
    max-width: none;
  }

  #yb-cs-page .yb-cs-hero-visual {
    min-height: 430px;
  }

  #yb-cs-page .yb-cs-hero-card {
    max-width: 620px;
  }

  #yb-cs-page .yb-cs-why-grid {
    gap: 44px;
  }

  #yb-cs-page .yb-cs-types-visual {
    min-height: 500px;
  }

  #yb-cs-page .yb-cs-spec-aside {
    width: 100%;
  }

  #yb-cs-page .yb-cs-app-grid {
    grid-template-columns: 1fr 1fr;
  }

  #yb-cs-page .yb-cs-process-grid
  .yb-cs-process-media:nth-of-type(2) {
    order: 3;
  }

  #yb-cs-page .yb-cs-process-grid
  .yb-cs-process-copy:nth-of-type(2) {
    order: 4;
  }
}

@media (max-width: 680px) {
  #yb-cs-page {
    --yb-cs-nav-height: 56px;
  }

  #yb-cs-page .yb-cs-wrap {
    padding-right: 18px;
    padding-left: 18px;
  }

  #yb-cs-page .yb-cs-section {
    padding: 54px 0;
  }

  #yb-cs-page h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  #yb-cs-page h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  #yb-cs-page p {
    font-size: 14px;
  }

  #yb-cs-page .yb-cs-hero {
    padding: 62px 0 50px;
  }

  #yb-cs-page .yb-cs-hero-grid {
    gap: 34px;
  }

  #yb-cs-page .yb-cs-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  #yb-cs-page .yb-cs-hero-visual {
    min-height: 350px;
  }

  #yb-cs-page .yb-cs-hero-card {
    min-height: 310px;
    border-radius: 20px;
  }

  #yb-cs-page .yb-cs-hero-card img {
    bottom: 64px;
    height: 270px;
  }

  #yb-cs-page .yb-cs-anchor-nav {
    gap: 4px;
    padding: 5px 0;
  }

  #yb-cs-page .yb-cs-anchor-nav a:not(
    .yb-cs-anchor-inquiry
  ) {
    min-height: 40px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 12px;
  }

  #yb-cs-page .yb-cs-anchor-nav a:not(
    .yb-cs-anchor-inquiry
  )::after {
    right: 14px;
    left: 14px;
  }

  #yb-cs-page .yb-cs-anchor-nav
  .yb-cs-anchor-inquiry {
    min-height: 40px;
    margin-left: 0;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 12px;
  }

  #yb-cs-page .yb-cs-reason {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  #yb-cs-page .yb-cs-types-visual {
    min-height: 390px;
    padding: 26px 26px 96px;
  }

  #yb-cs-page .yb-cs-types-caption {
    right: 26px;
    bottom: 24px;
    left: 26px;
  }

  #yb-cs-page .yb-cs-type-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  #yb-cs-page .yb-cs-rfq-grid,
  #yb-cs-page .yb-cs-app-grid,
  #yb-cs-page .yb-cs-faq-grid {
    grid-template-columns: 1fr;
  }

  #yb-cs-page .yb-cs-related {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  #yb-cs-page .yb-cs-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  #yb-cs-page .yb-cs-product-title-v14 {
    font-size: 16px;
  }

  #yb-cs-page .yb-cs-faq {
    padding-top: 54px;
    padding-bottom: 82px;
  }

  #yb-cs-page .yb-cs-faq
  .yb-cs-section-head {
    margin-bottom: 26px;
  }

  #yb-cs-page .yb-cs-faq-grid {
    gap: 10px;
  }
}

@media (max-width: 520px) {
  #yb-cs-page .yb-cs-hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #yb-cs-page .yb-cs-stat {
    min-height: 88px;
  }
}

@media (max-width: 460px) {
  #yb-cs-page .yb-cs-related-grid {
    grid-template-columns: 1fr;
  }

  #yb-cs-page .yb-cs-product-card-v14 {
    width: 100%;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

  #yb-cs-page .yb-cs-faq summary {
    min-height: 60px;
    padding: 14px 48px 14px 16px;
    font-size: 13px;
  }

  #yb-cs-page .yb-cs-faq summary::after {
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #yb-cs-page *,
  #yb-cs-page *::before,
  #yb-cs-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
