.gcb-page {
  --gcb-ink: var(--product-ink);
  --gcb-muted: var(--product-muted);
  --gcb-line: var(--product-line);
  --gcb-surface: var(--product-surface);
  --gcb-accent: var(--product-accent);
  --gcb-deep: var(--product-deep);
  background: #fff;
  color: var(--gcb-ink);
}
.gcb-page * {
  box-sizing: border-box;
}
.gcb-hero {
  position: relative;
  min-height: 660px;
  padding: 128px 0 66px;
  background: #101820;
  overflow: hidden;
}
.gcb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 16, 22, .82) 0%, rgba(9, 16, 22, .58) 42%, rgba(9, 16, 22, .12) 100%),
    linear-gradient(180deg, rgba(9, 16, 22, .12) 0%, rgba(9, 16, 22, .68) 100%);
  pointer-events: none;
}
.gcb-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 466px;
  display: flex;
  align-items: center;
}
.gcb-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--product-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gcb-hero h1,
.gcb-section h2 {
  margin: 0;
  color: var(--gcb-ink);
  font-weight: 800;
  letter-spacing: 0;
}
.gcb-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
}
.gcb-hero-copy {
  max-width: 760px;
}
.gcb-hero-copy p,
.gcb-spec-layout p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.75;
}
.gcb-hero-copy p,
.gcb-hero-points li {
  color: rgba(255, 255, 255, .88);
}
.gcb-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: inherit;
  font-size: 13px;
}
.gcb-breadcrumb a {
  color: var(--gcb-muted);
  text-decoration: none;
}
.gcb-breadcrumb a + a::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, .52);
}
.gcb-breadcrumb a:hover {
  color: #fff;
}
.gcb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.gcb-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--gcb-deep);
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.gcb-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.gcb-btn.primary {
  background: var(--gcb-deep);
  color: #fff;
}
.gcb-btn.secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .64);
  color: #fff;
}
.gcb-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
}
.gcb-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.gcb-hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--gcb-line);
  border-bottom: 1px solid var(--gcb-line);
  background: rgba(255, 255, 255, .66);
}
.gcb-hero-stats div {
  padding: 20px 24px;
  border-right: 1px solid var(--gcb-line);
}
.gcb-hero-stats div:last-child {
  border-right: 0;
}
.gcb-hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gcb-deep);
  font-size: 24px;
  line-height: 1.1;
}
.gcb-hero-stats span {
  color: var(--gcb-muted);
  font-size: 13px;
  line-height: 1.5;
}
.gcb-section {
  padding: 76px 0;
}
.gcb-section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}
.gcb-section-head span {
  color: var(--gcb-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gcb-section h2 {
  max-width: 860px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}
.gcb-series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gcb-series-card {
  border: 1px solid var(--gcb-line);
  background: #fff;
  overflow: hidden;
}
.gcb-series-link {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.gcb-series-media {
  aspect-ratio: 1.32 / 1;
  background: var(--gcb-surface);
  overflow: hidden;
}
.gcb-series-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.gcb-series-card:hover .gcb-series-media img {
  transform: scale(1.04);
}
.gcb-series-body {
  padding: 22px;
}
.gcb-series-body h3 {
  margin: 0 0 12px;
  color: var(--gcb-ink);
  font-size: 22px;
  line-height: 1.2;
}
.gcb-series-body p {
  min-height: 72px;
  margin: 0 0 18px;
  color: var(--gcb-muted);
  font-size: 14px;
  line-height: 1.7;
}
.gcb-series-body span {
  color: var(--gcb-accent);
  font-size: 13px;
  font-weight: 800;
}
.gcb-why-section {
  background: #fff;
}
.gcb-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gcb-why-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--gcb-line);
  background: linear-gradient(180deg, #fff 0%, var(--product-surface) 100%);
}
.gcb-why-grid strong {
  display: block;
  color: var(--gcb-ink);
  font-size: 18px;
  line-height: 1.22;
}
.gcb-why-grid p {
  margin: 12px 0 0;
  color: var(--gcb-muted);
  font-size: 14px;
  line-height: 1.7;
}
.gcb-range-section,
.gcb-options-section {
  background: var(--gcb-surface);
}
.gcb-range-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gcb-line);
  background: #fff;
}
.gcb-range-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.gcb-range-table th,
.gcb-range-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--gcb-line);
  border-bottom: 1px solid var(--gcb-line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
}
.gcb-range-table th:last-child,
.gcb-range-table td:last-child {
  min-width: 144px;
  width: 144px;
  text-align: center;
}
.gcb-range-table th:last-child,
.gcb-range-table td:last-child {
  border-right: 0;
}
.gcb-range-table tbody tr:last-child td {
  border-bottom: 0;
}
.gcb-range-table th {
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(159, 177, 83, 0.08);
}
.gcb-range-table td {
  color: var(--gcb-muted);
}
.gcb-range-table td:first-child {
  color: var(--gcb-ink);
  font-weight: 800;
}
.gcb-range-table .gcb-series-link {
  display: inline-flex;
  min-height: 38px;
  min-width: 104px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--product-accent);
  border: 1px solid var(--product-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.gcb-range-table .gcb-series-link:hover,
.gcb-range-table .gcb-series-link:focus-visible {
  background: #007fc7;
  border-color: #007fc7;
  color: #fff;
  transform: translateY(-1px);
}
.gcb-options-layout {
  display: block;
  max-width: 1180px;
}
.gcb-options-layout h2 {
  margin: 0;
  max-width: 680px;
  color: var(--gcb-ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
}
.gcb-options-copy {
  max-width: 860px;
  display: block;
  margin: 0 auto 34px;
  text-align: center;
}
.gcb-options-copy > div:first-child > p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--gcb-muted);
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}
.gcb-options-copy .gcb-kicker {
  justify-content: center;
}
.gcb-detail-icon-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  margin-top: 24px;
  padding: 8px 0 4px;
  background: transparent;
  border: 0;
}
.gcb-detail-icon-list article {
  min-width: 0;
  padding: 0;
  text-align: center;
  transition: transform .2s ease;
}
.gcb-detail-icon-list article:hover {
  transform: translateY(-3px);
}
.gcb-detail-icon-list img {
  width: 96px;
  height: 96px;
  max-width: none;
  flex: 0 0 auto;
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
}
.gcb-detail-icon-list span {
  display: block;
  color: var(--gcb-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
}
.gcb-options-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.12fr) repeat(2, minmax(0, .84fr));
  grid-auto-rows: minmax(230px, auto);
  gap: 16px;
  align-items: stretch;
}
.gcb-detail-feature,
.gcb-detail-card {
  position: relative;
  margin: 0;
  border: 1px solid var(--gcb-line);
  background: #fff;
  overflow: hidden;
}
.gcb-detail-feature {
  grid-row: span 3;
  min-height: 100%;
}
.gcb-detail-feature img,
.gcb-detail-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.gcb-detail-feature img {
  height: 100%;
  min-height: 706px;
}
.gcb-detail-card img {
  min-height: 168px;
  aspect-ratio: 1.45 / 1;
}
.gcb-detail-feature:hover img,
.gcb-detail-card:hover img {
  transform: scale(1.035);
}
.gcb-detail-feature figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 430px;
  padding: 16px 18px;
  background: rgba(18, 24, 32, .86);
  color: #fff;
}
.gcb-detail-feature strong,
.gcb-detail-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
}
.gcb-detail-feature span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.55;
}
.gcb-detail-card div {
  padding: 17px 18px 19px;
}
.gcb-detail-card p {
  margin: 8px 0 0;
  color: var(--gcb-muted);
  font-size: 14px;
  line-height: 1.62;
}
.gcb-spec-band,
.gcb-proof-band {
  background: var(--gcb-surface);
}
.gcb-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: start;
}
.gcb-spec-table {
  display: grid;
  border: 1px solid var(--gcb-line);
  background: #fff;
}
.gcb-spec-table div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gcb-line);
}
.gcb-spec-table div:last-child {
  border-bottom: 0;
}
.gcb-spec-table strong {
  color: var(--gcb-deep);
  font-size: 15px;
}
.gcb-spec-table span {
  color: var(--gcb-muted);
  font-size: 14px;
  line-height: 1.6;
}
.gcb-patent-band {
  background: var(--gcb-surface);
}
.gcb-patent-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.gcb-patent-head h2 {
  margin: 0;
  color: var(--gcb-home-blue);
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.08;
}
.gcb-patent-head p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--gcb-muted);
  font-size: 17px;
  line-height: 1.75;
}
.gcb-patent-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.gcb-patent-grid article {
  display: block;
  text-align: center;
  background: transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gcb-patent-grid article:hover {
  transform: translateY(-4px);
}
.gcb-patent-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(159, 177, 83, 0.08);
  box-shadow: 0 10px 24px rgba(18, 24, 32, .06);
  transform-origin: center;
  transition: box-shadow .25s ease, transform .25s ease;
  will-change: transform;
}
.gcb-patent-grid article:hover img,
.gcb-patent-grid article:focus-within img,
.gcb-patent-grid img:hover {
  animation: gcbPatentSpin 1.8s linear infinite;
  box-shadow: 0 16px 32px rgba(0, 159, 227, .18);
}
@keyframes gcbPatentSpin {
  from {
    transform: rotate(0deg) scale(1.02);
  }
  to {
    transform: rotate(360deg) scale(1.02);
  }
}
.gcb-patent-grid div {
  padding: 14px 4px 0;
}
.gcb-patent-grid strong {
  display: block;
  color: var(--gcb-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.gcb-patent-grid p {
  display: none;
  margin: 10px 0 0;
  color: var(--gcb-muted);
  font-size: 14px;
  line-height: 1.65;
}
.gcb-manufacture {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, .82fr);
  gap: 42px;
  align-items: center;
}
.gcb-process-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.gcb-process-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--gcb-accent);
  background: var(--gcb-surface);
  color: var(--gcb-muted);
  font-size: 15px;
  line-height: 1.6;
}
.gcb-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gcb-proof-grid article {
  background: #fff;
  border: 1px solid var(--gcb-line);
}
.gcb-proof-grid img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  display: block;
}
.gcb-proof-grid h3 {
  margin: 20px 20px 8px;
  color: var(--gcb-ink);
  font-size: 21px;
}
.gcb-proof-grid p {
  margin: 0 20px 24px;
  color: var(--gcb-muted);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .gcb-hero-inner,
  .gcb-spec-layout,
  .gcb-manufacture {
    grid-template-columns: 1fr;
  }
  .gcb-series-grid,
  .gcb-why-grid,
  .gcb-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gcb-patent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gcb-options-copy,
  .gcb-options-grid {
    grid-template-columns: 1fr;
  }
  .gcb-detail-icon-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gcb-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .gcb-manufacture .gcb-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gcb-detail-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }
  .gcb-detail-feature img {
    min-height: 420px;
  }
  .gcb-detail-card img {
    min-height: 190px;
  }
}
@media (max-width: 640px) {
  .gcb-hero {
    padding: 46px 0 28px;
  }
  .gcb-hero h1 {
    font-size: 40px;
  }
  .gcb-hero-copy p,
  .gcb-spec-layout p {
    font-size: 16px;
  }
  .gcb-hero-media,
  .gcb-hero-media img {
    min-height: 280px;
  }
  .gcb-hero-stats,
  .gcb-series-grid,
  .gcb-why-grid,
  .gcb-options-grid,
  .gcb-options-copy,
  .gcb-proof-grid,
  .gcb-section-head {
    grid-template-columns: 1fr;
  }
  .gcb-patent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gcb-detail-icon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
    padding: 8px 0 2px;
  }
  .gcb-detail-icon-list img {
    width: 86px;
    height: 86px;
  }
  .gcb-detail-feature,
  .gcb-detail-card {
    grid-column: 1 / -1;
  }
  .gcb-detail-feature,
  .gcb-detail-feature img {
    min-height: 300px;
  }
  .gcb-detail-card img {
    min-height: 240px;
  }
  .gcb-options-copy {
    margin-bottom: 24px;
  }
  .gcb-options-copy > div:first-child > p {
    font-size: 16px;
    line-height: 1.68;
  }
  .gcb-manufacture .gcb-process-list {
    grid-template-columns: 1fr;
  }
  .gcb-hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--gcb-line);
  }
  .gcb-hero-stats div:last-child {
    border-bottom: 0;
  }
  .gcb-section {
    padding: 48px 0;
  }
  .gcb-section-head {
    gap: 10px;
  }
  .gcb-spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gcb-patent-grid article:hover img,
  .gcb-patent-grid article:focus-within img,
  .gcb-patent-grid img:hover {
    animation: none;
    transform: rotate(8deg) scale(1.02);
  }
}

.gcb-page {
  --gcb-home-blue: var(--product-accent);
  --gcb-home-teal: var(--product-deep);
  --gcb-text: #222;
  --gcb-soft: var(--product-surface);
}
.gcb-hero {
  padding: 26px 0 38px;
  background: #fff;
}
.gcb-hero-inner {
  display: block;
  max-width: 960px;
}
.gcb-hero-media {
  width: 100%;
  min-height: 0;
  border: 0;
  background: #f2f2f2;
}
.gcb-hero-media img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 2.45 / 1;
  object-fit: cover;
}
.gcb-hero-copy {
  padding: 26px 0 0;
}
.gcb-kicker {
  color: var(--gcb-home-blue);
}
.gcb-hero h1 {
  max-width: 760px;
  color: var(--gcb-home-blue);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  text-transform: uppercase;
}
.gcb-hero-copy p {
  max-width: 760px;
  margin-top: 14px;
  color: #333;
  font-size: 17px;
  line-height: 1.65;
}
.gcb-hero-points {
  margin: 16px 0 0 20px;
  padding: 0;
  color: #1d1d1d;
  font-size: 15px;
  line-height: 1.55;
}
.gcb-hero-points li {
  margin-bottom: 5px;
}
.gcb-btn {
  min-width: 180px;
  border-color: var(--gcb-home-blue);
  border-radius: 4px;
}
.gcb-btn.primary {
  background: var(--gcb-home-blue);
  border-color: var(--gcb-home-blue);
}
.gcb-btn.secondary {
  color: var(--gcb-home-teal);
  border-color: var(--gcb-home-blue);
}
.gcb-breadcrumb {
  margin-top: 14px;
}
.gcb-video-section {
  padding: 18px 0 22px;
  background: #fff;
}
.gcb-video-section .container {
  max-width: 760px;
}
.gcb-video-card {
  display: block;
  position: relative;
  overflow: hidden;
  border: 8px solid #f3f3f3;
  background: #111;
  text-decoration: none;
}
.gcb-video-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8.3;
  object-fit: cover;
}
.gcb-play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: var(--product-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}
.gcb-play-mark::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 12px;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.gcb-section {
  padding: 46px 0;
}
.gcb-section-head {
  display: block;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}
.gcb-section-head h2,
.gcb-spec-layout h2,
.gcb-manufacture h2,
.gcb-catalog-inner h2 {
  color: var(--gcb-home-blue);
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.08;
}
.gcb-series-grid {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.gcb-series-card {
  border: 0;
  background: transparent;
}
.gcb-series-link {
  display: block;
}
.gcb-series-media {
  aspect-ratio: 1.18 / 1;
}
.gcb-series-body {
  min-height: 128px;
  padding: 18px;
  background: var(--gcb-home-blue);
  color: #fff;
}
.gcb-series-body h3 {
  color: #fff;
  font-size: 20px;
}
.gcb-series-body p {
  min-height: 0;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}
.gcb-series-cta {
  width: 150px;
  min-height: 38px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gcb-home-blue);
  color: var(--gcb-home-teal);
  font-size: 13px;
  font-weight: 700;
}
.gcb-spec-band,
.gcb-proof-band,
.gcb-faq-section {
  background: #fff;
}
.gcb-spec-layout {
  max-width: 980px;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}
.gcb-spec-layout p {
  margin-left: auto;
  margin-right: auto;
}
.gcb-spec-table {
  margin-top: 8px;
  border-color: var(--product-line);
}
.gcb-spec-table div {
  grid-template-columns: 180px minmax(0, 1fr);
  text-align: left;
  border-bottom-color: var(--product-line);
}
.gcb-spec-table strong {
  color: var(--gcb-home-teal);
}
.gcb-manufacture {
  max-width: 960px;
  display: block;
  text-align: center;
}
.gcb-manufacture-copy {
  max-width: 860px;
  margin: 0 auto;
}
.gcb-manufacture-copy h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.gcb-manufacture .gcb-process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gcb-process-list li {
  background: #fff;
  border: 1px solid var(--product-line);
  border-top: 3px solid var(--gcb-home-blue);
  text-align: left;
}
.gcb-proof-grid {
  max-width: 960px;
  margin: 0 auto;
}
.gcb-proof-grid article {
  border-color: var(--product-line);
}
.gcb-proof-grid h3 {
  color: var(--gcb-home-teal);
}
.gcb-faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--product-line);
}
.gcb-faq-list details {
  border-bottom: 1px solid var(--product-line);
}
.gcb-faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--gcb-home-teal);
  font-weight: 700;
}
.gcb-faq-list p {
  margin: 0 0 18px;
  color: #4b4b4b;
  line-height: 1.7;
}
.gcb-catalog-band {
  padding: 44px 0;
  background: var(--product-surface);
}
.gcb-catalog-inner {
  position: relative;
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(260px, .52fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  animation: gcbCatalogLift .72s ease both;
}
.gcb-catalog-inner::before,
.gcb-catalog-inner::after {
  display: none;
}
.gcb-catalog-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eef3f6;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  transform: translateZ(0);
}
.gcb-catalog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .28) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.gcb-catalog-media img {
  width: 100%;
  min-height: 190px;
  aspect-ratio: 1.45 / 1;
  display: block;
  object-fit: cover;
  opacity: 1;
}
.gcb-catalog-inner:hover .gcb-catalog-media::after {
  transform: translateX(120%);
}
.gcb-catalog-inner:hover .gcb-catalog-media {
  background-size: 106%;
}
.gcb-catalog-inner h2 {
  color: var(--gcb-deep) !important;
}
.gcb-catalog-inner p {
  margin: 12px 0 0;
  color: #4b4b4b;
  line-height: 1.7;
}
.gcb-catalog-inner .gcb-btn {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.gcb-catalog-inner .gcb-btn:hover,
.gcb-catalog-inner .gcb-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 159, 227, .24);
}
@keyframes gcbCatalogLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 760px) {
  .gcb-hero {
    padding-top: 18px;
  }
  .gcb-hero h1 {
    font-size: 34px;
  }
  .gcb-series-grid,
  .gcb-proof-grid,
  .gcb-manufacture,
  .gcb-catalog-inner {
    grid-template-columns: 1fr;
  }
  .gcb-spec-table div {
    grid-template-columns: 1fr;
  }
  .gcb-catalog-inner .gcb-btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gcb-catalog-inner {
    animation: none;
  }
  .gcb-catalog-media::after,
  .gcb-catalog-inner .gcb-btn {
    transition: none;
  }
}

.gcb-page .gcb-hero {
  position: relative;
  min-height: 660px;
  padding: 128px 0 66px;
  background: #101820;
  overflow: hidden;
}
.gcb-page .gcb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 16, 22, .82) 0%, rgba(9, 16, 22, .58) 42%, rgba(9, 16, 22, .12) 100%),
    linear-gradient(180deg, rgba(9, 16, 22, .12) 0%, rgba(9, 16, 22, .68) 100%);
  pointer-events: none;
}
.gcb-page .gcb-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 466px;
  display: flex;
  align-items: center;
  max-width: 1200px;
}
.gcb-page .gcb-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  min-height: 100%;
  border: 0;
  background: #101820;
  overflow: hidden;
}
.gcb-page .gcb-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  aspect-ratio: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.gcb-page .gcb-hero-copy {
  max-width: 760px;
  padding: 0;
}
.gcb-page .gcb-kicker {
  color: var(--product-accent);
}
.gcb-page .gcb-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  text-transform: none;
}
.gcb-page .gcb-hero-copy p {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.75;
}
.gcb-page .gcb-hero-points {
  color: rgba(255, 255, 255, .88);
}
.gcb-page .gcb-hero-points li {
  color: rgba(255, 255, 255, .88);
}
.gcb-page .gcb-breadcrumb {
  color: rgba(255, 255, 255, .74);
}
.gcb-page .gcb-breadcrumb a {
  color: inherit;
}
.gcb-page .gcb-breadcrumb a + a::before {
  color: rgba(255, 255, 255, .52);
}
.gcb-page .gcb-breadcrumb a:hover {
  color: #fff;
}
.gcb-page .gcb-btn.secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .64);
  color: #fff;
}
@media (max-width: 760px) {
  .gcb-page .gcb-hero {
    min-height: 620px;
    padding: 104px 0 44px;
  }
  .gcb-page .gcb-hero-inner {
    min-height: 472px;
  }
  .gcb-page .gcb-hero-media img {
    min-height: 620px;
  }
  .gcb-page .gcb-hero h1 {
    font-size: 40px;
  }
  .gcb-page .gcb-hero-copy p {
    font-size: 16px;
  }
}

.gcb-page .gcb-catalog-inner h2,
.pdb-page .gcb-why-section .gcb-section-head h2,
.pdb-page .gcb-section-head h2,
.pdb-page .gcb-catalog-inner h2,
.ltb-page .gcb-why-section .gcb-section-head h2,
.ltb-page .gcb-section-head h2,
.ltb-page .gcb-catalog-inner h2 {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--gcb-muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
}

.pdb-page .gcb-catalog-inner,
.ltb-page .gcb-catalog-inner {
  max-width: 980px;
  grid-template-columns: minmax(260px, .52fr) minmax(0, 1fr) auto;
  text-align: left;
}

.gcb-page .gcb-catalog-band {
  padding: 70px 0;
  background: #fff;
}

.gcb-page .gcb-catalog-inner {
  max-width: 1040px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 88px);
  text-align: left;
}

.gcb-page .gcb-catalog-media {
  width: 100%;
  min-height: 0;
  justify-self: center;
  overflow: visible;
  background: transparent;
}

.gcb-page .gcb-catalog-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: 0 16px 34px rgba(28, 34, 24, .16);
}

.gcb-page .gcb-catalog-copy {
  max-width: 620px;
}

.gcb-page .gcb-catalog-inner .gcb-catalog-copy h2 {
  margin: 0;
  color: var(--gcb-home-blue) !important;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  font-weight: 800;
}

.gcb-page .gcb-catalog-copy p {
  margin-top: 22px;
  color: var(--gcb-ink);
  font-size: 17px;
  line-height: 1.85;
}

.gcb-page .gcb-catalog-copy .gcb-btn {
  margin-top: 30px;
}

.gcb-page .gcb-catalog-inner h2,
.pdb-page .gcb-catalog-inner h2,
.ltb-page .gcb-catalog-inner h2 {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  color: var(--gcb-deep) !important;
}

@media (max-width: 760px) {
  .gcb-page .gcb-catalog-inner,
  .pdb-page .gcb-catalog-inner,
  .ltb-page .gcb-catalog-inner {
    grid-template-columns: 1fr;
  }
  .gcb-page .gcb-catalog-band {
    padding: 48px 0;
  }
  .gcb-page .gcb-catalog-media {
    width: min(72vw, 280px);
  }
}
