:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5f6f7b;
  --soft: #eef4f7;
  --line: rgba(23, 33, 43, 0.12);
  --white: #ffffff;
  --blue: #0d5f8f;
  --cyan: #19a5c8;
  --red: #d51f2a;
  --green: #6f9a45;
  --dark: #071821;
  --steel: #dfe8ec;
  --shadow: 0 24px 70px rgba(22, 41, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fafb;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 34, 45, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 324px;
  font-weight: 900;
  font-size: 22px;
}

.brand img {
  width: 176px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.brand span {
  padding-left: 16px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.site-header.is-scrolled .brand span,
.site-header.is-open .brand span {
  border-color: var(--line);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(9px, 1.2vw, 20px);
  font-size: 13px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 28px 0;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.nav-link:hover::after,
.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
  width: 100%;
}

.has-mega > .nav-link::before {
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.mega-menu {
  position: fixed;
  top: 76px;
  left: 50%;
  z-index: 29;
  width: min(1040px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 28px 60px rgba(8, 30, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.about-menu,
.news-menu {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  width: min(760px, calc(100vw - 48px));
}

.news-menu {
  width: min(560px, calc(100vw - 48px));
}

.mega-intro {
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 95, 143, 0.92), rgba(7, 24, 33, 0.96)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/base-01-enhanced.jpg?v=20260707-1618") center / cover;
  color: #fff;
}

.mega-intro span {
  display: block;
  margin-bottom: 12px;
  color: #94e6ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-intro strong {
  display: block;
  font-size: 25px;
  line-height: 1.25;
}

.mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.news-list {
  grid-template-columns: 1fr;
}

.mega-list a,
.mega-product-grid a {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  transition: color 160ms ease, transform 160ms ease;
}

.mega-list a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbfc;
  color: var(--ink);
  font-weight: 900;
}

.mega-list a:hover,
.mega-product-grid a:hover {
  color: var(--red);
  transform: translateX(3px);
}

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

.mega-product-grid section {
  min-width: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(13, 95, 143, 0.22);
}

.mega-product-grid h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.35;
}

.mega-product-grid .mega-category-link {
  display: inline-flex;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 900;
}

.mega-product-grid .mega-category-link:hover {
  color: var(--red);
  transform: none;
}

.mega-product-grid a {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 1361px) {
  .mega-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
  }

  .mega-product-grid > section:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .mega-product-grid > section:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .mega-product-grid > section:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .mega-product-grid > section:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .mega-product-grid > section:nth-child(5) {
    grid-column: 3;
    grid-row: 1;
  }

  .mega-product-grid > section:nth-child(6) {
    grid-column: 4;
    grid-row: 1 / span 2;
  }
}

.language-picker {
  position: relative;
  justify-self: end;
}

.language-picker summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.language-flag {
  width: 20px;
  flex: 0 0 20px;
  line-height: 1;
  text-align: center;
}

.language-picker summary::after {
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 24, 33, 0.94);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.language-menu span {
  width: 20px;
  flex: 0 0 20px;
  line-height: 1;
}

.language-menu a:hover {
  background: rgba(25, 165, 200, 0.16);
}

.site-header.is-scrolled .language-picker summary,
.site-header.is-open .language-picker summary {
  border-color: var(--line);
  color: var(--blue);
}

.site-header.is-scrolled .language-menu,
.site-header.is-open .language-menu {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.site-header.is-scrolled .language-menu a,
.site-header.is-open .language-menu a {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 148px clamp(18px, 6vw, 92px) 86px;
  color: #fff;
  background: var(--dark);
}

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

.hero-media img,
.hero-media video,
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  transition: opacity 760ms ease, transform 6200ms ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 17, 23, 0.84) 0%, rgba(4, 17, 23, 0.52) 45%, rgba(4, 17, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 17, 23, 0.78) 0%, rgba(4, 17, 23, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #94e6ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.02;
  font-weight: 900;
}

.hero-content > p:not(.eyebrow) {
  width: min(640px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.7;
  font-weight: 600;
}

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

.hero-controls {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
}

.hero-controls button {
  width: 10px;
  height: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: height 220ms ease, background 220ms ease, opacity 220ms ease;
}

.hero-controls button:hover,
.hero-controls button.is-active {
  height: 34px;
  background: #fff;
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
}

.btn.primary {
  background: var(--red);
  color: #fff;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

section {
  scroll-margin-top: 92px;
}

.intro-band,
.products,
.quality,
.news,
.partner,
.contact {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 92px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: #fff;
}

.section-copy,
.section-heading {
  width: min(720px, 100%);
}

.section-copy h2,
.section-heading h2,
.ocean-copy h2,
.network-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 1.12;
}

.section-copy p:not(.eyebrow),
.section-heading .section-lead,
.ocean-copy p,
.network-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.proof-grid span,
.quality-grid span,
.news-card span,
.contact-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.proof-grid h3,
.quality-grid h3,
.news-card h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.proof-grid p,
.quality-grid p,
.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.products {
  background: linear-gradient(180deg, #f4f8fa 0%, #ffffff 100%);
}

.product-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.product-tabs {
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 10px;
  min-height: 560px;
  align-self: stretch;
}

.product-tab {
  min-height: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 10px 18px 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-tab img {
  width: 60px;
  height: 60px;
  padding: 7px;
  border-radius: 6px;
  background: #eef5f8;
  object-fit: contain;
  transition: background 180ms ease, transform 180ms ease;
}

.product-tab span {
  min-width: 0;
}

.product-tab:hover,
.product-tab.is-active {
  border-color: transparent;
  background: var(--blue);
  color: #fff;
  transform: translateX(4px);
}

.product-tab:hover img,
.product-tab.is-active img {
  background: rgba(255, 255, 255, 0.94);
  transform: scale(1.04);
}

.product-display {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.product-display img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(160deg, #0e2a36 0%, #071821 64%);
}

.product-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.product-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag-row span,
.tag-row a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tag-row a:hover {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

.product-detail-link {
  align-self: flex-start;
  margin-top: 28px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(199, 32, 43, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-detail-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(199, 32, 43, 0.28);
}

.ocean-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  min-height: 620px;
  padding: clamp(76px, 11vw, 140px) clamp(18px, 6vw, 92px);
  background: #061923;
  color: #fff;
}

.ocean-feature > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.ocean-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 29, 0.86), rgba(4, 20, 29, 0.36), rgba(4, 20, 29, 0.08));
  content: "";
}

.ocean-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 740px;
  padding: 0;
}

.ocean-link {
  cursor: pointer;
}

.ocean-link h2 {
  transition: color 180ms ease;
}

.ocean-link:hover h2,
.ocean-link:focus-visible h2 {
  color: #8feaff;
}

.ocean-feature .eyebrow {
  margin: 0 0 16px;
  color: #8feaff;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.ocean-copy h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.ocean-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.quality {
  background: #fff;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.quality-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quality-grid img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.quality-grid div {
  padding: 24px;
}

.network {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(7, 24, 33, 0.9), rgba(7, 24, 33, 0.74)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/base-02-enhanced.jpg?v=20260707-1618") center / cover;
  color: #fff;
}

.network-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.network-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.network-numbers div {
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.network-numbers div:last-child {
  border-right: 0;
}

.network-numbers strong {
  display: block;
  margin-bottom: 10px;
  color: #94e6ff;
  font-size: clamp(34px, 5vw, 58px);
}

.network-numbers span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.partner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #fff;
}

.partner-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.partner-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.partner-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.partner-copy h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.12;
}

.partner-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.partner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.partner-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfc;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.news {
  background: #f7fafb;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.news-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.follow-section {
  background: #f7fafb;
}

.social-follow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.social-follow-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.social-follow-card img {
  width: 168px;
  aspect-ratio: 1;
  object-fit: contain;
}

.social-follow-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.social-follow-card h3 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.social-follow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.home-follow-grid {
  width: min(1180px, 100%);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-follow-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 18px;
  align-items: center;
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.98)),
    radial-gradient(circle at 92% 12%, rgba(25, 165, 200, 0.1), transparent 28%);
  box-shadow: 0 16px 38px rgba(22, 41, 58, 0.07);
}

.home-follow-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.home-follow-copy .platform-icon {
  width: 40px;
  height: 40px;
}

.home-follow-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.home-follow-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-follow-card img {
  width: 108px;
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: end;
}

.official-qr-grid {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.official-qr-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  align-items: start;
  justify-items: center;
  min-height: 360px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
  text-align: center;
}

.official-qr-card img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: contain;
}

.platform-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}

.platform-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff !important;
  font-size: 19px !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0 !important;
  box-shadow: 0 12px 26px rgba(22, 41, 58, 0.14);
}

.icon-wechat {
  background: #07c160 url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/icon-wechat-brand.svg?v=20260709-0015") center / 25px 25px no-repeat;
  color: transparent !important;
  font-size: 0 !important;
}

.icon-douyin,
.icon-tiktok {
  background: linear-gradient(135deg, #111 0%, #111 45%, #00f2ea 46%, #ff0050 100%);
}

.icon-douyin {
  background: #111 url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/icon-douyin-brand.svg?v=20260709-0015") center / 26px 29px no-repeat;
  color: transparent !important;
  font-size: 0 !important;
}

.icon-facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 26px !important;
}

.icon-linkedin {
  background: #0a66c2;
  font-family: Arial, sans-serif;
  font-size: 16px !important;
}

.icon-youtube {
  background: #ff0000;
  font-size: 16px !important;
}

.icon-pinterest {
  background: #bd081c;
  font-family: Georgia, serif;
  font-size: 24px !important;
}

.icon-instagram {
  background: radial-gradient(circle at 28% 105%, #feda75 0%, #fa7e1e 28%, #d62976 52%, #962fbf 72%, #4f5bd5 100%);
  font-size: 27px !important;
}

.icon-x {
  background: #111;
  font-size: 21px !important;
}

.icon-whatsapp {
  background: #25d366;
  font-size: 22px !important;
}

.official-qr-card h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.official-qr-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.social-platform-grid,
.platform-note-grid {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  display: grid;
  gap: 18px;
}

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

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

.social-platform-card,
.platform-note-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.platform-note-grid article {
  display: grid;
  align-content: start;
}

.social-platform-card {
  display: grid;
  align-content: start;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(22, 41, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-platform-card:hover {
  border-color: rgba(199, 32, 43, 0.24);
  box-shadow: 0 24px 58px rgba(22, 41, 58, 0.12);
  transform: translateY(-3px);
}

.social-platform-card strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
  margin: 4px 0 16px;
}

.platform-note-grid h3 {
  margin: 4px 0 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
}

.social-platform-card p,
.platform-note-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.image-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: #fff;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 24, 33, 0.88), rgba(7, 24, 33, 0.08));
  content: "";
}

.image-card div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.image-card h3 {
  color: #fff;
}

.contact {
  display: grid;
  gap: 46px;
  background: #fff;
}

.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-copy {
  min-width: 0;
  width: min(760px, 100%);
}

.contact-grid,
.follow-grid {
  display: grid;
  gap: 12px;
}

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

.follow-grid {
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  justify-self: end;
  width: 100%;
  gap: 28px;
}

.contact-grid a,
.contact-grid p {
  min-height: 172px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-grid a:hover {
  border-color: rgba(13, 95, 143, 0.28);
  box-shadow: 0 18px 42px rgba(22, 41, 58, 0.1);
  transform: translateY(-2px);
}

.contact-grid strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.45;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 154px;
  padding: 0;
  text-align: center;
}

.qr-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.qr-card img {
  width: 138px;
  height: 138px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 92px);
  background: #071821;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.page-main {
  background: #f7fafb;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  height: 500px;
  min-height: 500px;
  padding: 150px clamp(18px, 6vw, 92px) 76px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 33, 0.88), rgba(7, 24, 33, 0.56), rgba(7, 24, 33, 0.22)),
    var(--page-image, url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/base-02-enhanced.jpg?v=20260707-1618")) center / cover;
  content: "";
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.page-hero--video {
  height: clamp(600px, 64vh, 680px);
  min-height: 600px;
  isolation: isolate;
  background: var(--page-image) center / cover;
}

.page-hero--video::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 24, 33, 0.88), rgba(7, 24, 33, 0.56), rgba(7, 24, 33, 0.22));
}

.page-hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.page-hero--video .page-hero-copy {
  z-index: 2;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.08;
}

/* Keep translated pages visually proportional when titles and descriptions expand. */
html[lang]:not([lang="zh-CN"]) .hero h1 {
  font-size: 64px;
  line-height: 1.08;
}

html[lang]:not([lang="zh-CN"]) .hero-content > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.72;
}

html[lang]:not([lang="zh-CN"]) .page-hero h1 {
  font-size: 50px;
  line-height: 1.12;
}

html[lang]:not([lang="zh-CN"]) .page-hero p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.72;
}

html[lang]:not([lang="zh-CN"]) .section-copy h2,
html[lang]:not([lang="zh-CN"]) .section-heading h2,
html[lang]:not([lang="zh-CN"]) .ocean-copy h2,
html[lang]:not([lang="zh-CN"]) .network-copy h2,
html[lang]:not([lang="zh-CN"]) .contact h2,
html[lang]:not([lang="zh-CN"]) .case-overview h2,
html[lang]:not([lang="zh-CN"]) .sustainability-intro h2 {
  font-size: 46px;
  line-height: 1.16;
}

html[lang]:not([lang="zh-CN"]) .section-copy p:not(.eyebrow),
html[lang]:not([lang="zh-CN"]) .section-heading .section-lead,
html[lang]:not([lang="zh-CN"]) .ocean-copy p,
html[lang]:not([lang="zh-CN"]) .network-copy p,
html[lang]:not([lang="zh-CN"]) .page-lead,
html[lang]:not([lang="zh-CN"]) .page-card p,
html[lang]:not([lang="zh-CN"]) .info-list p {
  font-size: 15px;
  line-height: 1.75;
}

html[lang]:not([lang="zh-CN"]) .product-copy h3 {
  font-size: 44px;
  line-height: 1.14;
}

html[lang]:not([lang="zh-CN"]) .page-card h3 {
  font-size: 21px;
  line-height: 1.35;
}

html[lang="en"] .follow-hero h1 {
  font-size: 42px;
  line-height: 1.12;
}

@media (max-width: 1100px) {
  html[lang]:not([lang="zh-CN"]) .hero h1 {
    font-size: 54px;
  }

  html[lang]:not([lang="zh-CN"]) .page-hero h1 {
    font-size: 42px;
  }

  html[lang]:not([lang="zh-CN"]) .section-copy h2,
  html[lang]:not([lang="zh-CN"]) .section-heading h2,
  html[lang]:not([lang="zh-CN"]) .ocean-copy h2,
  html[lang]:not([lang="zh-CN"]) .network-copy h2,
  html[lang]:not([lang="zh-CN"]) .contact h2,
  html[lang]:not([lang="zh-CN"]) .case-overview h2,
  html[lang]:not([lang="zh-CN"]) .sustainability-intro h2 {
    font-size: 38px;
  }
}

@media (max-width: 680px) {
  html[lang]:not([lang="zh-CN"]) .hero h1 {
    font-size: 40px;
  }

  html[lang]:not([lang="zh-CN"]) .hero-content > p:not(.eyebrow),
  html[lang]:not([lang="zh-CN"]) .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  html[lang]:not([lang="zh-CN"]) .page-hero h1,
  html[lang="en"] .follow-hero h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  html[lang]:not([lang="zh-CN"]) .section-copy h2,
  html[lang]:not([lang="zh-CN"]) .section-heading h2,
  html[lang]:not([lang="zh-CN"]) .ocean-copy h2,
  html[lang]:not([lang="zh-CN"]) .network-copy h2,
  html[lang]:not([lang="zh-CN"]) .contact h2,
  html[lang]:not([lang="zh-CN"]) .case-overview h2,
  html[lang]:not([lang="zh-CN"]) .sustainability-intro h2,
  html[lang]:not([lang="zh-CN"]) .product-copy h3 {
    font-size: 30px;
  }
}

.page-hero p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.8;
}

.page-section {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 6vw, 92px);
}

.page-section.is-white {
  background: #fff;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.page-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-card img {
  width: 100%;
  aspect-ratio: 1.34;
  margin: -28px -28px 24px;
  max-width: calc(100% + 56px);
  object-fit: cover;
}

.page-card span,
.info-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.page-card h3 {
  margin: 12px 0 10px;
  font-size: 23px;
  line-height: 1.3;
}

.page-card p,
.info-list p,
.page-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.page-lead {
  margin-top: 20px;
  width: min(820px, 100%);
}

.case-overview,
.sustainability-intro {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.case-overview h2,
.sustainability-intro h2 {
  margin: 10px 0 18px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
}

.case-overview p:not(.eyebrow),
.sustainability-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.case-metrics {
  display: grid;
  gap: 12px;
}

.case-metrics div {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(13, 95, 143, 0.14);
  border-radius: 8px;
  background: #f8fbfc;
}

.case-metrics strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.case-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.case-grid {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef4f6;
}

.case-card div {
  display: grid;
  align-content: start;
  padding: 26px;
}

.case-card span,
.resource-hub span,
.video-resource span,
.sustainability-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.case-card h3,
.resource-hub h2,
.video-resource h3,
.sustainability-grid h3,
.eco-value-grid h3,
.faq-grid h3,
.project-process h3 {
  margin: 12px 0 10px;
  color: var(--ink);
  line-height: 1.3;
}

.case-card h3 {
  font-size: clamp(22px, 2.4vw, 31px);
}

.case-card p,
.resource-hub p,
.video-resource p,
.sustainability-grid p,
.eco-value-grid p,
.faq-grid p,
.project-process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.project-process,
.eco-value-grid,
.faq-grid {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-process article,
.eco-value-grid article,
.faq-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.project-process span,
.eco-value-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(13, 95, 143, 0.1);
  color: var(--blue);
  font-weight: 900;
}

.resource-hub {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-hub article {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.resource-hub img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f4f7f9;
}

.resource-hub article div {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.resource-hub .btn,
.video-resource .btn {
  width: max-content;
  margin-top: 8px;
}

.resource-download-list {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(13, 95, 143, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 251, 252, 0.98), rgba(255, 255, 255, 0.96));
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.download-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--red);
  content: "";
}

.download-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.download-card strong {
  display: block;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.16;
}

.download-card p {
  width: min(520px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.download-card em {
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.download-card:hover {
  border-color: rgba(199, 32, 43, 0.24);
  box-shadow: 0 24px 58px rgba(22, 41, 58, 0.12);
  transform: translateY(-3px);
}

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

.faq-grid article {
  min-height: 210px;
  background: #fff;
}

.video-resource {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(22, 41, 58, 0.08);
}

.video-resource video {
  width: 100%;
  min-height: 360px;
  border-radius: 6px;
  background: #071821;
  object-fit: cover;
}

.video-resource div {
  display: grid;
  align-content: center;
  padding: clamp(18px, 3vw, 36px);
}

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

.sustainability-points span {
  display: grid;
  align-content: center;
  min-height: 106px;
  padding: 22px;
  border: 1px solid rgba(37, 116, 83, 0.16);
  border-radius: 8px;
  background: #f4fbf7;
  color: #257453;
  font-size: 20px;
  font-weight: 900;
}

.sustainability-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sustainability-grid article {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(37, 116, 83, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(20, 82, 62, 0.08);
}

.sustainability-grid img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  background: #eef6f2;
}

.sustainability-grid div {
  padding: 28px;
}

.sustainability-grid span {
  color: #257453;
}

.sustainability-page .page-section:not(.is-white) {
  background: #f3faf6;
}

.sustainability-value-heading {
  width: min(960px, 100%);
}

.sustainability-value-heading h2 {
  white-space: nowrap;
  font-size: clamp(30px, 4vw, 54px);
}

.franchise-form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(38px, 6vw, 72px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.franchise-form-heading h2,
.franchise-form-heading p {
  margin: 0;
}

.franchise-form-heading h2 {
  margin-top: 10px;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
}

.franchise-form-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.franchise-form {
  display: grid;
  gap: 22px;
}

.franchise-form fieldset {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.franchise-form legend {
  padding: 0 10px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.form-field em {
  color: var(--red);
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dbe5ea;
  border-radius: 8px;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.7;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 76, 112, 0.1);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-button,
.ghost-button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary-button {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}

.ghost-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-status {
  min-height: 20px;
  color: var(--blue);
  font-weight: 800;
}

.franchise-support {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(68px, 9vw, 112px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(135deg, rgba(244, 248, 250, 0.98), rgba(232, 241, 245, 0.96)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/franchise-hero.jpg") center / cover;
}

.franchise-support-copy {
  max-width: 620px;
}

.franchise-support-copy h2 {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.08;
}

.franchise-support-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #4d6572;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.9;
}

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

.franchise-support-list article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(11, 76, 112, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.franchise-support-list article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  border: 24px solid rgba(204, 38, 32, 0.08);
  border-radius: 50%;
}

.franchise-support-list span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.franchise-support-list h3 {
  margin: 28px 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
}

.franchise-support-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #506775;
  line-height: 1.9;
}

.marketing-hero {
  min-height: 500px;
}

.marketing-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 17, 28, 0.94), rgba(3, 24, 40, 0.68), rgba(3, 24, 40, 0.14)),
    var(--page-image) center / cover;
}

.marketing-hero .page-hero-copy {
  width: min(860px, 100%);
}

.marketing-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.marketing-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(135deg, #f8fbfc, #edf5f8);
}

.marketing-overview-copy h2,
.marketing-service-copy h2,
.marketing-market-panel h2 {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.12;
}

.marketing-overview-copy p:not(.eyebrow),
.marketing-service-copy p {
  margin: 22px 0 0;
  color: #536b78;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.9;
}

.marketing-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 95, 143, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 62px rgba(22, 41, 58, 0.1);
}

.marketing-metrics div {
  min-height: 176px;
  padding: clamp(24px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
}

.marketing-metrics div:last-child {
  border-right: 0;
}

.marketing-metrics strong {
  display: block;
  color: var(--red);
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1;
  white-space: nowrap;
}

.marketing-metrics span {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 900;
}

.marketing-service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.marketing-service-copy {
  position: sticky;
  top: 110px;
}

.marketing-service-copy h2 {
  font-size: clamp(32px, 3.8vw, 52px);
}

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

.marketing-service-grid article {
  min-height: 248px;
  padding: clamp(26px, 3.6vw, 38px);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 41, 58, 0.06);
}

.marketing-service-grid article:nth-child(2),
.marketing-service-grid article:nth-child(3) {
  background: #f8fbfc;
}

.marketing-service-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 95, 143, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.marketing-service-grid h3 {
  margin: 24px 0 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
}

.marketing-service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.marketing-market-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(36px, 6vw, 72px);
  padding: clamp(28px, 4.2vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(7, 24, 33, 0.98), rgba(12, 70, 103, 0.94)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/marketing-network-hero.jpg") center / cover;
  color: #fff;
}

.marketing-market-panel h2 {
  color: #fff;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.market-tags span {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.marketing-market-content {
  display: grid;
  gap: 22px;
}

.international-sales {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(0, auto));
  gap: 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.international-sales div {
  display: grid;
  gap: 6px;
}

.international-sales span {
  color: #94e6ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.international-sales strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.international-sales a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split-panel img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.info-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.info-list h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(68px, 9vw, 112px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(7, 24, 33, 0.92), rgba(7, 24, 33, 0.76)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/base-01-enhanced.jpg?v=20260707-1618") center / cover;
  color: #fff;
}

.dark-band p {
  color: rgba(255, 255, 255, 0.76);
}

.dark-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.dark-stats div {
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.dark-stats div:last-child {
  border-right: 0;
}

.dark-stats strong {
  display: block;
  margin-bottom: 10px;
  color: #94e6ff;
  font-size: clamp(32px, 5vw, 56px);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a,
.contact-panel p {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
}

.qr-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qr-panel .qr-card {
  justify-self: center;
}

.qr-panel img {
  width: min(180px, 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(460px, 0.96fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
}

.contact-left {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
}

.contact-map-column {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-items: stretch;
  height: 100%;
}

.contact-intro {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: auto;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 250, 251, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 92% 20%, rgba(25, 165, 200, 0.14), transparent 32%);
  box-shadow: 0 18px 48px rgba(22, 41, 58, 0.07);
}

.contact-intro h2,
.contact-intro p,
.contact-company {
  margin: 0;
}

.contact-intro h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
}

.contact-company {
  color: var(--blue);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.4;
}

.contact-intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
}

.primary-contact {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 154px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(13, 95, 143, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 252, 253, 0.98), rgba(238, 247, 250, 0.98)),
    radial-gradient(circle at 88% 18%, rgba(25, 165, 200, 0.14), transparent 30%);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.07);
}

.primary-contact span,
.contact-method span,
.project-methods span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.primary-contact span {
  color: var(--blue);
}

.primary-contact strong {
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.primary-contact small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

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

.contact-method {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 150px;
  margin: 0;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfc);
  box-shadow: 0 14px 34px rgba(22, 41, 58, 0.045);
}

.contact-method strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.project-contact-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.58fr) minmax(340px, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(112deg, rgba(7, 24, 33, 0.98), rgba(12, 76, 112, 0.94)),
    radial-gradient(circle at 88% 20%, rgba(148, 230, 255, 0.22), transparent 30%);
  color: #fff;
  box-shadow: 0 20px 52px rgba(7, 24, 33, 0.16);
}

.project-contact-card h3,
.follow-panel h3 {
  margin: 0;
  font-size: clamp(25px, 2.3vw, 32px);
  line-height: 1.16;
}

.project-contact-card .eyebrow {
  max-width: 100%;
  letter-spacing: 0.06em;
  overflow-wrap: normal;
}

.project-contact-card p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.project-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-self: stretch;
}

.project-methods a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.project-methods span {
  color: #94e6ff;
}

.project-methods strong {
  display: block;
  margin-top: 0;
  color: #fff;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.primary-contact strong,
.contact-method[href^="tel"] strong,
.project-methods a[href^="tel"] strong {
  white-space: nowrap;
  overflow-wrap: normal;
}

.follow-panel {
  display: grid;
  gap: 20px;
  align-content: center;
  justify-items: stretch;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f7fbfc);
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.07);
  text-align: left;
}

.follow-panel > div:first-child {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.follow-codes {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: clamp(16px, 2vw, 22px);
  width: 100%;
  justify-items: center;
  align-items: stretch;
}

.follow-codes .qr-card {
  justify-items: center;
  align-content: start;
  gap: 14px;
  width: 100%;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.follow-codes img {
  width: min(188px, 100%);
  margin-inline: auto;
}

.follow-codes .qr-card img {
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
}

.project-contact {
  margin-top: 34px;
}

.project-contact .contact-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.map-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.map-preview {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 520px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(236, 247, 250, 0.92), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 72% 32%, rgba(25, 165, 200, 0.22), transparent 26%),
    radial-gradient(circle at 24% 74%, rgba(199, 32, 43, 0.1), transparent 24%);
}

.map-preview::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(30deg, transparent 0 48%, rgba(13, 95, 143, 0.12) 49% 51%, transparent 52% 100%),
    linear-gradient(116deg, transparent 0 46%, rgba(13, 95, 143, 0.1) 47% 50%, transparent 51% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(255, 255, 255, 0.72) 49% 51%, transparent 52% 100%);
  background-size: 180px 180px, 240px 240px, 110px 110px;
}

.map-roads span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(13, 95, 143, 0.08);
}

.map-roads span:nth-child(1) {
  width: 72%;
  height: 16px;
  left: -6%;
  top: 31%;
  transform: rotate(-9deg);
}

.map-roads span:nth-child(2) {
  width: 86%;
  height: 18px;
  right: -18%;
  top: 55%;
  transform: rotate(16deg);
}

.map-roads span:nth-child(3) {
  width: 18px;
  height: 82%;
  left: 36%;
  top: -12%;
  transform: rotate(18deg);
}

.map-roads span:nth-child(4) {
  width: 16px;
  height: 66%;
  right: 23%;
  top: 18%;
  transform: rotate(-22deg);
}

.map-pin {
  position: absolute;
  left: 56%;
  top: 42%;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 18px 36px rgba(199, 32, 43, 0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: #fff;
}

.map-location {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  right: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(22, 41, 58, 0.12);
}

.map-location span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.map-location strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.map-location p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.map-location em {
  display: inline-flex;
  margin-top: 16px;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.map-actions button,
.map-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
}

.map-actions button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.map-actions a {
  margin-left: auto;
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.trace-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.trace-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.trace-table caption {
  padding: 22px 24px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
  text-align: left;
}

.trace-table th,
.trace-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}

.trace-table th {
  background: #f2f7f9;
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.trace-table td:first-child {
  color: var(--red);
  font-weight: 900;
}

.service-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.support-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 22px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

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

.support-card li {
  color: var(--muted);
  line-height: 1.75;
}

.support-card.is-wide {
  grid-column: 1 / -1;
  background: #f8fbfc;
}

.service-module {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-overview-module {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.service-overview-module figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: 0 22px 52px rgba(22, 41, 58, 0.12);
}

.service-overview-module img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.8;
  object-fit: cover;
}

.service-overview-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
  text-wrap: balance;
}

.service-overview-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  text-wrap: pretty;
}

.service-section-head {
  display: block;
  max-width: 1180px;
  margin-bottom: 34px;
}

.service-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
  text-wrap: balance;
}

.service-section-head > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  text-wrap: pretty;
}

.service-body-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.service-body-row.is-image-right {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
}

.service-body-row figure {
  align-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: 0 22px 52px rgba(22, 41, 58, 0.12);
}

.service-body-row img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.8;
  object-fit: cover;
}

.service-body-row > .service-detail-list,
.service-body-row > .service-process-list,
.service-body-row > .service-commitment-list {
  align-self: center;
  margin-top: 0;
}

.service-clean-block {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-clean-block figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: 0 22px 52px rgba(22, 41, 58, 0.12);
}

.service-clean-block img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.8;
  object-fit: cover;
}

.service-clean-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
}

.service-clean-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.service-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.service-point-grid span {
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: #f5f9fb;
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

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

.service-detail-list article {
  padding: 18px;
  border: 1px solid rgba(19, 90, 160, 0.12);
  border-radius: 8px;
  background: #fff;
}

.service-detail-list strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  white-space: nowrap;
}

.service-detail-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-wrap: pretty;
}

.service-process-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(19, 90, 160, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.service-process-list span {
  color: var(--red);
  font-size: 13px;
}

.service-commitment-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-commitment-list article {
  padding: 20px;
  border: 1px solid rgba(19, 90, 160, 0.12);
  border-radius: 8px;
  background: #fff;
}

.service-commitment-list h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 19px;
  white-space: nowrap;
}

.service-commitment-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  text-wrap: pretty;
}

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

  .service-overview-module,
  .service-body-row,
  .service-body-row.is-image-right {
    grid-template-columns: 1fr;
  }

  .service-body-row.is-image-right figure {
    order: -1;
  }

  .service-clean-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-clean-block figure {
    width: 100%;
  }

  .service-clean-block img {
    aspect-ratio: 16 / 9;
  }
}

.service-page .section-heading,
.service-overview-panel,
.service-feature-row {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.service-page .section-heading .page-lead {
  max-width: 780px;
}

.service-overview-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.service-overview-panel .service-support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.service-page .service-support,
.service-page .technical-support-grid,
.service-page .service-flow {
  margin-top: 0;
}

.service-image-panel,
.service-side-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 90, 160, 0.12);
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: 0 20px 48px rgba(22, 41, 58, 0.08);
}

.service-image-panel img,
.service-side-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image-panel img {
  min-height: 100%;
}

.service-feature-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.service-feature-row.is-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.service-feature-row.is-reverse .service-side-image {
  order: 2;
}

.service-feature-row.is-reverse .service-flow {
  order: 1;
}

.service-side-image {
  min-height: 100%;
  aspect-ratio: 16 / 12;
}

.service-feature-row .technical-support-grid,
.service-feature-row .service-flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-commitment-row .service-support {
  grid-template-columns: 1fr;
}

.service-commitment-row .support-card.is-wide {
  grid-column: auto;
}

.technical-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.technical-support-grid article {
  padding: 28px;
  border: 1px solid rgba(19, 90, 160, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 41, 58, 0.06);
}

.technical-support-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.technical-support-grid h3 {
  margin: 12px 0 10px;
  color: var(--blue);
  font-size: 21px;
}

.technical-support-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-flow article {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(19, 90, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 90, 160, 0.08), rgba(255, 255, 255, 0) 58%),
    #fff;
  box-shadow: 0 18px 42px rgba(22, 41, 58, 0.06);
}

.service-flow span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.service-flow h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.service-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.profile-copy h2,
.innovation-layout h2,
.partners-split h2 {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.1;
}

.profile-copy p:not(.eyebrow),
.partners-split p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.95;
}

.profile-images {
  display: grid;
  gap: 16px;
}

.profile-images img {
  width: 100%;
  min-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(22, 41, 58, 0.12);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.profile-stats article,
.partner-logo-grid article,
.honor-grid article,
.innovation-projects article,
.platform-grid article {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfc);
  box-shadow: 0 16px 42px rgba(22, 41, 58, 0.05);
}

.profile-stats strong {
  display: block;
  color: var(--blue);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
}

.profile-stats span {
  display: block;
  margin-top: 14px;
  color: #4f6471;
  font-weight: 900;
}

.innovation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.platform-grid,
.innovation-projects,
.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.innovation-projects,
.honor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.platform-grid span,
.innovation-projects span,
.honor-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.platform-grid h3,
.innovation-projects h3,
.honor-grid h3 {
  margin: 18px 0 10px;
  color: var(--blue);
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.28;
}

.platform-grid p,
.innovation-projects p,
.honor-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.certificate-grid article {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 41, 58, 0.06);
}

.certificate-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  border: 1px solid rgba(19, 90, 160, 0.1);
  border-radius: 6px;
  background: #f4f7f9;
  object-fit: contain;
}

.certificate-grid h3 {
  margin: 0;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

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

.partner-logo-grid article {
  display: grid;
  place-items: center;
  justify-items: center;
  min-height: 168px;
  text-align: center;
}

.logo-mark {
  align-self: center;
  width: min(250px, 100%);
  height: 116px;
  object-fit: contain;
}

.partner-logo-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.35;
  font-weight: 800;
}

.partner-logo-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.partners-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.partners-split .partner-logo-grid {
  margin-top: 0;
}

.gas-page .page-section {
  overflow: hidden;
}

.gas-hero {
  height: 100svh;
  min-height: 720px;
  background-position: center;
}

.gas-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 14, 22, 0.86) 0%, rgba(5, 14, 22, 0.5) 42%, rgba(5, 14, 22, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 14, 22, 0.05), rgba(5, 14, 22, 0.34)),
    var(--page-image) center / cover;
}

.gas-hero .page-hero-copy {
  max-width: 780px;
}

.gas-overview {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
}

.gas-overview h2,
.gas-detail-copy h3,
.gas-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
}

.gas-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(13, 95, 143, 0.18);
  border: 1px solid rgba(13, 95, 143, 0.18);
}

.gas-metrics a {
  color: inherit;
  min-height: 150px;
  padding: 26px 22px;
  background: #f7fbfc;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gas-metrics a:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.gas-metrics strong {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  white-space: nowrap;
}

.gas-metrics span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gas-products,
.gas-series-section:nth-of-type(3),
.gas-series-section:nth-of-type(5) {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 251, 236, 0.98) 0%, rgba(255, 244, 210, 0.96) 100%);
  color: var(--ink);
}

.gas-products::before,
.gas-series-section:nth-of-type(3)::before,
.gas-series-section:nth-of-type(5)::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #f6c72f;
  content: "";
}

.gas-products .section-heading h2,
.gas-products .section-heading .page-lead,
.gas-series-section:nth-of-type(3) .section-heading h2,
.gas-series-section:nth-of-type(3) .section-heading .page-lead,
.gas-series-section:nth-of-type(5) .section-heading h2,
.gas-series-section:nth-of-type(5) .section-heading .page-lead {
  color: inherit;
}

.gas-products .section-heading .page-lead,
.gas-series-section:nth-of-type(3) .section-heading .page-lead,
.gas-series-section:nth-of-type(5) .section-heading .page-lead {
  color: #6f6242;
}

.gas-series-section .section-heading {
  margin-bottom: clamp(34px, 4.8vw, 64px);
}

.gas-product-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.gas-product-grid article {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(13, 95, 143, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(22, 41, 58, 0.08);
}

.gas-series-section:nth-of-type(3) .gas-product-grid article,
.gas-series-section:nth-of-type(5) .gas-product-grid article {
  border-color: rgba(211, 160, 17, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(157, 111, 18, 0.12);
}

.gas-product-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f4f7f9;
}

.gas-product-grid article > div {
  padding: 20px;
}

.gas-product-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.gas-series-section:nth-of-type(3) .gas-product-grid span,
.gas-series-section:nth-of-type(5) .gas-product-grid span {
  color: #b47d08;
}

.gas-product-grid h3 {
  margin: 10px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.gas-product-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.gas-series-section:nth-of-type(3) .gas-product-grid p,
.gas-series-section:nth-of-type(5) .gas-product-grid p {
  color: var(--muted);
}

.gas-product-tabs {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gas-product-tab {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(220, 245, 255, 0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gas-product-tab:hover,
.gas-product-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(114, 216, 255, 0.55);
  background: linear-gradient(180deg, rgba(114, 216, 255, 0.14), rgba(255, 255, 255, 0.045));
}

.gas-product-tab img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(220, 245, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.gas-product-tab span {
  color: #f7fbff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}

.gas-detail-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.gas-detail-image {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.gas-detail-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
}

.gas-detail-copy {
  color: #f7fbff;
}

.gas-detail-copy > .eyebrow {
  color: #72d8ff;
}

.gas-detail-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(246, 251, 255, 0.74);
  font-size: 17px;
  line-height: 1.85;
}

.gas-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.gas-feature-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(220, 245, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(246, 251, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.gas-list-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gas-list-grid article {
  min-width: 0;
  border: 1px solid rgba(13, 95, 143, 0.12);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.gas-list-grid img,
.gas-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f4f7f9;
}

.gas-list-grid h3 {
  margin: 18px 18px 0;
  font-size: 19px;
  color: var(--ink);
}

.gas-list-grid p {
  margin: 10px 18px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.gas-category-list {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.gas-category-list article {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(13, 95, 143, 0.12);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(22, 41, 58, 0.06);
}

.gas-category-list img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  background: #f4f7f9;
}

.gas-category-list article > div {
  padding: clamp(26px, 4vw, 44px);
}

.gas-category-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gas-category-list h3 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.18;
}

.gas-category-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.gas-category-list ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.gas-category-list li {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(13, 95, 143, 0.12);
  border-radius: 4px;
  background: #f7fbfc;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.gas-gallery-section {
  background: #f5fbfd;
}

.gas-gallery {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gas-gallery figure {
  margin: 0;
  border: 1px solid rgba(13, 95, 143, 0.12);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.gas-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.gas-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(13, 95, 143, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.gas-cta p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.gas-cta-button {
  min-width: 132px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(199, 32, 43, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gas-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(199, 32, 43, 0.28);
}

.product-category-page .page-section {
  overflow: hidden;
}

.category-hero {
  height: 100svh;
  min-height: 720px;
}

.category-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 14, 22, 0.86) 0%, rgba(5, 14, 22, 0.5) 42%, rgba(5, 14, 22, 0.1) 100%),
    linear-gradient(180deg, rgba(5, 14, 22, 0.05), rgba(5, 14, 22, 0.36)),
    var(--page-image) center / cover;
}

.category-hero .page-hero-copy {
  max-width: 800px;
}

.category-overview {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
}

.category-overview h2,
.category-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
}

.category-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(13, 95, 143, 0.18);
  border: 1px solid rgba(13, 95, 143, 0.18);
}

.category-link-grid a {
  min-height: 150px;
  padding: 24px 22px;
  background: #f7fbfc;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.category-link-grid a:hover {
  background: #fff;
  transform: translateY(-2px);
}

.category-link-grid strong {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
}

.category-link-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.oem-page .oem-stripe-section {
  position: relative;
  background: #fff;
  color: var(--ink);
}

.oem-page .oem-stripe-section.is-blue-soft::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #7d4cc2;
  content: "";
}

.oem-page .oem-stripe-section.is-blue-soft {
  background:
    linear-gradient(180deg, rgba(248, 244, 252, 0.98) 0%, rgba(241, 232, 249, 0.96) 100%);
}

.oem-page .oem-stripe-section .eyebrow,
.oem-page .oem-stripe-section .category-product-grid span {
  color: #7d4cc2;
}

.oem-page .oem-stripe-section .section-heading h2 {
  color: #2d213d;
}

.oem-page .oem-stripe-section .section-heading .page-lead {
  color: #685a76;
}

.oem-page .oem-stripe-section .category-product-grid article {
  border-color: rgba(125, 76, 194, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(104, 72, 148, 0.11);
}

.municipal-page .municipal-green-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(245, 250, 241, 0.98) 0%, rgba(235, 246, 230, 0.96) 100%);
  color: var(--ink);
}

.municipal-page .municipal-green-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #6f9a45;
  content: "";
}

.municipal-page .municipal-green-section .eyebrow,
.municipal-page .municipal-green-section .category-product-grid span {
  color: #5f8b38;
}

.municipal-page .municipal-green-section .section-heading h2 {
  color: #24361f;
}

.municipal-page .municipal-green-section .section-heading .page-lead {
  color: #5d7055;
}

.municipal-page .municipal-green-section .category-product-grid article {
  border-color: rgba(111, 154, 69, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(89, 125, 56, 0.12);
}

.municipal-page .repair-product-grid img {
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
  background: #fff;
}

.municipal-feature-product {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 4vw, 52px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(111, 154, 69, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 56px rgba(89, 125, 56, 0.12);
}

.municipal-feature-product.is-white {
  background: #fff;
}

.municipal-feature-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  background: #f6faf3;
}

.municipal-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.municipal-feature-image.is-product-photo {
  background: #fff;
}

.municipal-feature-image.is-product-photo img {
  object-fit: contain;
}

.municipal-page .max-diameter-feature {
  margin-top: clamp(28px, 4vw, 52px);
}

.municipal-page .max-diameter-image {
  min-height: 500px;
}

.municipal-page .max-diameter-image img {
  min-height: 500px;
  box-sizing: border-box;
  object-fit: contain;
  padding: 0 clamp(48px, 6vw, 96px);
}

.municipal-feature-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px);
  border-left: 1px solid rgba(111, 154, 69, 0.16);
}

.municipal-feature-copy span {
  color: #5f8b38;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.municipal-feature-copy h3 {
  margin: 14px 0 16px;
  color: #24361f;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.municipal-feature-copy p {
  margin: 0;
  color: #5d7055;
  font-size: 16px;
  line-height: 1.85;
}

.municipal-feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.municipal-feature-copy li {
  position: relative;
  padding-left: 18px;
  color: #435b3a;
  font-size: 14px;
  line-height: 1.7;
}

.municipal-feature-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #6f9a45;
  content: "";
}

.product-category-page .water-blue-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(241, 248, 252, 0.98) 0%, rgba(229, 242, 249, 0.96) 100%);
  color: var(--ink);
}

.product-category-page .water-blue-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #0d5f8f;
  content: "";
}

.product-category-page .water-blue-section .eyebrow,
.product-category-page .water-blue-section .category-product-grid span {
  color: #0d5f8f;
}

.product-category-page .water-blue-section .section-heading h2 {
  color: #102b3d;
}

.product-category-page .water-blue-section .section-heading .page-lead {
  color: #587080;
}

.product-category-page .water-blue-section .category-product-grid article {
  border-color: rgba(13, 95, 143, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(13, 95, 143, 0.11);
}

.water-feature-product {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 4vw, 52px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(13, 95, 143, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 56px rgba(13, 95, 143, 0.12);
}

.water-feature-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.water-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
}

.water-feature-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px);
  border-left: 1px solid rgba(13, 95, 143, 0.14);
}

.water-feature-copy span {
  color: #0d5f8f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.water-feature-copy h3 {
  margin: 14px 0 16px;
  color: #102b3d;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
}

.water-feature-copy p {
  margin: 0;
  color: #587080;
  font-size: 16px;
  line-height: 1.85;
}

.water-feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.water-feature-copy li {
  position: relative;
  padding-left: 18px;
  color: #415e70;
  font-size: 14px;
  line-height: 1.7;
}

.water-feature-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0d5f8f;
  content: "";
}

.product-category-page .fittings-red-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 245, 246, 0.98) 0%, rgba(253, 235, 237, 0.96) 100%);
  color: var(--ink);
}

.product-category-page .fittings-red-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #d51f2a;
  content: "";
}

.product-category-page .fittings-red-section .eyebrow,
.product-category-page .fittings-red-section .category-product-grid span {
  color: #c7202b;
}

.product-category-page .fittings-red-section .section-heading h2 {
  color: #35171a;
}

.product-category-page .fittings-red-section .section-heading .page-lead {
  color: #7a5b60;
}

.product-category-page .fittings-red-section .category-product-grid article {
  border-color: rgba(213, 31, 42, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(153, 31, 39, 0.11);
}

.product-category-page .fittings-soft-section {
  position: relative;
  background: #fff8f8;
  color: var(--ink);
}

.product-category-page .fittings-soft-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #f2a0a7;
  content: "";
}

.product-category-page .fittings-soft-section .eyebrow,
.product-category-page .fittings-soft-section .category-product-grid span {
  color: #b91f2a;
}

.product-category-page .fittings-soft-section .section-heading h2 {
  color: #32181c;
}

.product-category-page .fittings-soft-section .section-heading .page-lead {
  color: #76545a;
}

.product-category-page .fittings-soft-section .category-product-grid article {
  border-color: rgba(213, 31, 42, 0.12);
  background: #fff;
  box-shadow: 0 16px 42px rgba(153, 31, 39, 0.08);
}

.product-series-section.is-dark {
  background: #061016;
  color: #f7fbff;
}

.power-page .power-accent-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.98) 0%, rgba(255, 238, 216, 0.96) 100%);
  color: var(--ink);
}

.power-page .power-accent-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #f59b28 0%, #e46f1b 46%, #c84b19 100%);
  content: "";
}

.power-page .power-accent-section .eyebrow {
  color: #c84b19;
}

.power-page .power-accent-section .section-heading h2 {
  color: #2b1d13;
}

.power-page .power-accent-section .section-heading .page-lead {
  color: #6d5848;
}

.power-page .power-accent-section .category-product-grid article {
  border-color: rgba(200, 75, 25, 0.18);
  background: #fff;
  box-shadow: 0 22px 56px rgba(143, 73, 20, 0.14);
}

.power-page .power-accent-section .category-product-grid span {
  color: #c84b19;
}

.power-feature-product {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 4vw, 52px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(200, 75, 25, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 56px rgba(143, 73, 20, 0.12);
}

.power-feature-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.power-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.power-feature-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px);
  border-left: 1px solid rgba(200, 75, 25, 0.14);
}

.power-feature-copy span {
  color: #c84b19;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.power-feature-copy h3 {
  margin: 14px 0 16px;
  color: #2b1d13;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.06;
}

.power-feature-copy p {
  margin: 0;
  color: #5f4939;
  font-size: 16px;
  line-height: 1.85;
}

.power-feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.power-feature-copy li {
  position: relative;
  padding-left: 18px;
  color: #49382c;
  font-size: 14px;
  line-height: 1.7;
}

.power-feature-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e46f1b;
  content: "";
}

.product-series-section.is-dark .section-heading h2,
.product-series-section.is-dark .section-heading .page-lead {
  color: inherit;
}

.product-series-section.is-dark .section-heading .page-lead {
  color: rgba(246, 251, 255, 0.72);
}

.product-series-section .section-heading {
  margin-bottom: clamp(34px, 4.8vw, 64px);
}

.product-subheading {
  margin-top: clamp(48px, 7vw, 84px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(213, 31, 42, 0.16);
}

.category-product-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-series-section .section-heading + .category-product-grid {
  margin-top: clamp(28px, 4vw, 52px);
}

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

.category-product-grid article {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(13, 95, 143, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(22, 41, 58, 0.08);
}

.product-series-section.is-dark .category-product-grid article {
  border-color: rgba(220, 245, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  color: #f7fbff;
  box-shadow: none;
}

.category-product-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #f4f7f9;
}

.water-page .category-product-grid img {
  object-fit: contain;
  padding: 0;
  background: #fff;
}

.fittings-page #pe-premium-fitting .category-product-grid img {
  object-fit: contain;
  padding: 0;
  background: #fff;
}

.fittings-page #electrofusion .category-product-grid img {
  object-fit: contain;
  padding: 16px 18px 18px;
  background: #fff;
  box-sizing: border-box;
}

.fittings-page .pe-premium-extra-grid img {
  object-fit: contain;
  padding: 16px 18px 18px;
  background: #fff;
  box-sizing: border-box;
}

.fittings-feature-product {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 4vw, 52px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(213, 31, 42, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(153, 31, 39, 0.1);
}

.fittings-feature-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.fittings-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
}

.fittings-feature-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px);
  border-left: 1px solid rgba(213, 31, 42, 0.14);
}

.fittings-feature-copy span {
  color: #c7202b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.fittings-feature-copy h3 {
  margin: 14px 0 16px;
  color: #35171a;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
}

.fittings-feature-copy p {
  margin: 0;
  color: #7a5b60;
  font-size: 16px;
  line-height: 1.85;
}

.fittings-feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.fittings-feature-copy li {
  position: relative;
  padding-left: 18px;
  color: #66474c;
  font-size: 14px;
  line-height: 1.7;
}

.fittings-feature-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d51f2a;
  content: "";
}

.category-product-grid article > div {
  padding: 20px;
}

.category-product-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-series-section.is-dark .category-product-grid span {
  color: #72d8ff;
}

.category-product-grid h3 {
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.25;
}

.category-product-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-series-section.is-dark .category-product-grid p {
  color: rgba(246, 251, 255, 0.7);
}

.category-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(13, 95, 143, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 41, 58, 0.08);
}

.category-cta p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.category-cta-button {
  min-width: 132px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(199, 32, 43, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.category-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(199, 32, 43, 0.28);
}

@media (max-width: 980px) {
  .page-grid,
  .profile-layout,
  .profile-stats,
  .innovation-layout,
  .platform-grid,
  .innovation-projects,
  .honor-grid,
  .certificate-grid,
  .partner-logo-grid,
  .partner-logo-grid.is-compact,
  .partners-split,
  .split-panel,
  .dark-band,
	  .contact-page-grid,
	  .contact-layout,
	  .service-support,
  .service-clean-block,
  .service-overview-panel,
  .service-feature-row,
  .technical-support-grid,
  .service-flow,
  .marketing-overview,
  .marketing-metrics,
  .marketing-service-layout,
  .marketing-service-grid,
  .marketing-market-panel,
  .project-contact .contact-panel,
  .contact-intro,
  .contact-card-grid,
  .project-contact-card,
  .project-methods,
  .franchise-form-section,
  .franchise-support,
	  .franchise-support-list,
  .follow-codes,
	  .gas-overview,
	  .category-overview,
	  .water-feature-product,
	  .power-feature-product,
	  .municipal-feature-product,
	  .fittings-feature-product,
	  .gas-detail-panel,
	  .gas-cta,
  .category-cta,
  .gas-category-list article {
    grid-template-columns: 1fr;
  }

  .service-feature-row.is-reverse .service-side-image,
  .service-feature-row.is-reverse .service-flow {
    order: initial;
  }

  .service-side-image,
  .service-image-panel {
    min-height: 320px;
  }

  .service-detail-list,
  .service-point-grid {
    grid-template-columns: 1fr;
  }

  .gas-product-grid,
  .gas-product-grid.is-short,
  .category-product-grid,
  .category-product-grid.is-short,
  .gas-list-grid,
  .gas-gallery {
    grid-template-columns: 1fr;
  }

  .gas-category-list ul {
    grid-template-columns: 1fr;
  }

  .gas-detail-image {
    min-height: 360px;
  }

  .gas-detail-image img {
    min-height: 340px;
  }

  .water-feature-copy {
    min-height: 0;
    border-top: 1px solid rgba(13, 95, 143, 0.14);
    border-left: 0;
  }

  .power-feature-copy {
    min-height: 0;
    border-top: 1px solid rgba(200, 75, 25, 0.14);
    border-left: 0;
  }

  .municipal-feature-copy {
    min-height: 0;
    border-top: 1px solid rgba(111, 154, 69, 0.16);
    border-left: 0;
  }

  .fittings-feature-copy {
    min-height: 0;
    border-top: 1px solid rgba(213, 31, 42, 0.14);
    border-left: 0;
  }

  .marketing-service-copy {
    position: static;
  }

  .marketing-metrics div {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .marketing-metrics div:last-child {
    border-bottom: 0;
  }

  .market-tags {
    justify-content: flex-start;
  }

  .international-sales {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .dark-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .dark-stats div:last-child {
    border-bottom: 0;
  }

  .map-panel {
    position: static;
  }

  .map-panel iframe {
    height: 520px;
    min-height: 520px;
  }
}

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

  .site-header.is-open {
    height: 100dvh;
    align-items: start;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    height: calc(100dvh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 18px 26px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: 0 22px 38px rgba(15, 34, 45, 0.1);
    backdrop-filter: blur(16px);
  }

  @supports not (height: 100dvh) {
    .site-header.is-open {
      height: 100vh;
    }

    .main-nav {
      height: calc(100vh - 76px);
      max-height: calc(100vh - 76px);
    }
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

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

  .nav-link {
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
  }

  .nav-link::after {
    bottom: 8px;
  }

  .has-mega > .nav-link::before {
    margin-left: auto;
  }

  .mega-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    padding: 0 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu,
  .product-menu,
  .news-menu {
    left: auto;
    right: auto;
    transform: none;
  }

  .about-menu,
  .product-menu,
  .news-menu {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .mega-intro {
    min-height: 0;
    padding: 16px;
  }

  .mega-intro strong {
    font-size: 20px;
  }

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

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

  .mega-list a {
    padding: 11px 12px;
    font-size: 13px;
  }

  .mega-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .mega-product-grid section {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfc;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 45;
  }

  .product-layout,
  .intro-band,
  .ocean-feature,
  .network,
  .partner,
  .contact {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
  }

  .product-tab {
    min-height: 72px;
  }

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

  .product-display img {
    min-height: 360px;
  }

  .ocean-feature {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    gap: 10px;
  }

  .site-header.is-open {
    height: 100dvh;
  }

  .brand {
    min-width: 0;
    gap: 12px;
    font-size: 18px;
  }

  .brand img {
    width: 148px;
  }

  .brand span {
    display: none;
  }

  .main-nav {
    top: 68px;
    height: calc(100dvh - 68px);
    max-height: calc(100dvh - 68px);
    grid-template-columns: 1fr;
  }

  @supports not (height: 100dvh) {
    .main-nav {
      height: calc(100vh - 68px);
      max-height: calc(100vh - 68px);
    }
  }

  .contact {
    gap: 34px;
  }

  .franchise-form-section {
    padding: 22px;
  }

  .franchise-form fieldset {
    padding: 20px;
  }

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

  .form-actions {
    align-items: stretch;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .contact-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .follow-grid {
    justify-self: center;
    width: 100%;
    justify-content: center;
    justify-items: center;
  }

  .qr-card {
    justify-self: center;
  }

  .mega-intro {
    display: none;
  }

  .mega-list,
  .news-list,
  .mega-product-grid {
    grid-template-columns: 1fr;
  }

  .mega-product-grid section {
    padding: 12px 14px;
  }

  .language-picker summary {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .language-menu {
    right: -52px;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 18px 34px;
  }

  .hero-controls {
    right: 18px;
  }

  .hero-controls button {
    width: 8px;
    height: 8px;
  }

  .hero-controls button:hover,
  .hero-controls button.is-active {
    height: 28px;
  }

  .network-numbers,
  .news-grid,
  .social-follow-grid,
  .official-qr-grid,
  .quality-grid,
  .contact-grid,
  .follow-grid {
    grid-template-columns: 1fr;
  }

  .social-platform-grid,
  .platform-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-follow-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .official-qr-card {
    min-height: auto;
  }

  .social-follow-card img {
    width: 140px;
  }

  .official-qr-card img {
    width: 150px;
  }

  .network-numbers div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .network-numbers div:last-child {
    border-bottom: 0;
  }

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

  .product-tab {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 66px;
    gap: 10px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .product-tab img {
    width: 42px;
    height: 42px;
    padding: 5px;
  }

  .product-display {
    min-height: 0;
  }

  .product-display img {
    min-height: 280px;
  }

  .gas-product-tabs,
  .gas-product-grid,
  .category-product-grid,
  .gas-list-grid,
  .gas-gallery,
  .gas-metrics,
  .category-link-grid,
  .gas-feature-list,
  .gas-category-list ul {
    grid-template-columns: 1fr;
  }

  .gas-product-tab {
    min-height: 0;
  }

  .gas-detail-panel,
  .gas-overview,
	  .gas-product-tabs,
	  .gas-product-grid,
	  .category-overview,
	  .water-feature-product,
	  .power-feature-product,
	  .municipal-feature-product,
	  .fittings-feature-product,
	  .category-product-grid,
  .gas-list-grid,
  .gas-gallery,
  .gas-category-list,
  .gas-cta,
  .category-cta {
    width: min(100%, calc(100% - 28px));
  }

  .gas-detail-image {
    min-height: 300px;
  }

  .gas-detail-image img {
    min-height: 280px;
  }

  .water-feature-product {
    padding: 10px;
  }

  .water-feature-image,
  .water-feature-image img {
    min-height: 280px;
  }

  .water-feature-copy {
    padding: 22px 16px 24px;
  }

  .power-feature-product {
    padding: 10px;
  }

  .power-feature-image,
  .power-feature-image img {
    min-height: 280px;
  }

  .power-feature-copy {
    padding: 22px 16px 24px;
  }

  .municipal-feature-product {
    padding: 10px;
  }

  .municipal-feature-image,
  .municipal-feature-image img {
    min-height: 280px;
  }

  .municipal-feature-copy {
    padding: 22px 16px 24px;
  }

  .fittings-feature-product {
    padding: 10px;
  }

  .fittings-feature-image,
  .fittings-feature-image img {
    min-height: 280px;
  }

  .fittings-feature-copy {
    padding: 22px 16px 24px;
  }

  .ocean-feature {
    min-height: 520px;
    padding: 76px 18px;
  }

  .page-hero {
    height: auto;
    min-height: 460px;
    padding: 116px 18px 56px;
  }

  .partner-visual,
  .partner-visual img,
  .partner-visual video {
    min-height: 280px;
  }

  .partner-copy {
    order: -1;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .case-overview,
  .sustainability-intro,
  .video-resource,
  .sustainability-grid,
  .sustainability-grid article {
    grid-template-columns: 1fr;
  }

  .case-grid,
  .resource-download-list,
  .resource-hub,
  .faq-grid,
  .project-process,
  .eco-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .case-overview,
  .sustainability-intro,
  .case-grid,
  .resource-download-list,
  .resource-hub,
  .faq-grid,
  .project-process,
  .eco-value-grid,
  .video-resource,
  .sustainability-grid {
    width: min(100%, calc(100% - 28px));
  }

  .social-follow-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .official-qr-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .social-platform-grid,
  .platform-note-grid {
    grid-template-columns: 1fr;
  }

  .case-grid,
  .resource-download-list,
  .resource-hub,
  .faq-grid,
  .project-process,
  .eco-value-grid,
  .sustainability-points {
    grid-template-columns: 1fr;
  }

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

  .certificate-grid article {
    gap: 10px;
    padding: 10px;
  }

  .certificate-grid h3 {
    font-size: 13px;
  }

  .case-card img,
  .sustainability-grid img,
  .video-resource video {
    min-height: 260px;
  }

  .sustainability-value-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .home-follow-grid {
    width: min(720px, calc(100% - 36px));
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-follow-card {
    min-height: 136px;
    padding: 18px 20px;
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .home-follow-card img {
    width: 96px;
  }
}

@media (max-width: 560px) {
  .home-follow-grid {
    width: min(100%, calc(100% - 28px));
    margin-top: 24px;
    gap: 12px;
  }

  .home-follow-card {
    min-height: 124px;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 12px;
    padding: 16px;
  }

  .home-follow-copy {
    gap: 10px;
  }

  .home-follow-copy .platform-icon {
    width: 36px;
    height: 36px;
  }

  .home-follow-card h3 {
    font-size: 17px;
  }

  .home-follow-card p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .home-follow-card img {
    width: 84px;
  }
}

/* Homepage visual direction */
.home-v2 {
  --v2-navy: #071c2b;
  --v2-navy-deep: #04131e;
  --v2-navy-soft: #0d2b40;
  --v2-red: #d8292f;
  --v2-cyan: #72d7ed;
  --v2-ink: #101b24;
  --v2-muted: #60717d;
  --v2-line: rgba(16, 27, 36, 0.12);
  --v2-paper: #f5f7f8;
  background: #fff;
  color: var(--v2-ink);
}

.home-v2 .site-header {
  height: 76px;
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(18px, 2vw, 32px);
  padding-inline: clamp(18px, 4vw, 64px);
}

.home-v2 .brand {
  min-width: 300px;
}

.home-v2 .brand img {
  width: 176px;
}

.home-v2 .main-nav {
  gap: clamp(12px, 1.45vw, 24px);
}

.home-v2 .nav-link {
  padding-block: 28px;
}

.home-v2 .nav-link::after {
  bottom: 21px;
  height: 2px;
}

.home-v2 .nav-link[aria-current="page"]::after {
  width: 100%;
}

.home-v2 .mega-menu {
  top: 76px;
}

.home-v2 .language-picker summary {
  border-radius: 4px;
}

.home-v2 .hero {
  min-height: max(720px, 100svh);
  align-items: end;
  padding: 154px clamp(24px, 7vw, 112px) clamp(70px, 9vh, 108px);
}

.home-v2 .hero-slide {
  transform: scale(1.035);
  transition: opacity 720ms ease, transform 7200ms ease;
}

.home-v2 .hero-slide.is-active {
  transform: scale(1);
}

.home-v2 .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 16, 25, 0.88) 0%, rgba(3, 16, 25, 0.62) 44%, rgba(3, 16, 25, 0.12) 80%),
    linear-gradient(0deg, rgba(3, 16, 25, 0.78) 0%, rgba(3, 16, 25, 0.02) 48%);
}

.home-v2 .hero-content {
  width: min(680px, calc(100% - 90px));
}

.home-v2 .hero .eyebrow {
  margin-bottom: 18px;
  color: var(--v2-cyan);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.home-v2 .hero h1 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6.6vw, 98px);
  line-height: 1.01;
  letter-spacing: 0;
}

.home-v2 .hero-content > p:not(.eyebrow) {
  width: min(600px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.8;
  font-weight: 500;
}

.home-v2 .hero-actions {
  margin-top: 38px;
  gap: 14px;
}

.home-v2 .btn {
  min-height: 52px;
  padding-inline: 26px;
  border-radius: 4px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-v2 .btn:hover {
  transform: translateY(-2px);
}

.home-v2 .btn.primary {
  background: var(--v2-red);
}

.home-v2 .btn.primary:hover {
  background: #bd1f26;
}

.home-v2 .btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(4, 19, 30, 0.16);
}

.home-v2 .hero-controls {
  right: clamp(26px, 4.5vw, 72px);
  top: 52%;
  width: 94px;
  gap: 2px;
}

.home-v2 .hero-controls button {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 36px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font: inherit;
  text-align: left;
  transition: color 180ms ease, transform 180ms ease;
}

.home-v2 .hero-controls button::before {
  position: absolute;
  left: -10px;
  width: 2px;
  height: 0;
  background: var(--v2-red);
  content: "";
  transition: height 180ms ease;
}

.home-v2 .hero-controls button span {
  font-size: 13px;
  font-weight: 900;
}

.home-v2 .hero-controls button em {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-v2 .hero-controls button:hover,
.home-v2 .hero-controls button.is-active {
  height: 36px;
  background: transparent;
  color: #fff;
  transform: translateX(-4px);
}

.home-v2 .hero-controls button.is-active::before {
  height: 22px;
}

.home-v2 .hero-controls button.is-active span {
  color: var(--v2-red);
}

.home-v2 .hero-controls button.is-active em {
  opacity: 1;
  transform: translateX(0);
}

.home-v2 .hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
  transition: color 180ms ease;
}

.home-v2 .hero-scroll:hover {
  color: #fff;
}

.home-v2 .intro-band,
.home-v2 .products,
.home-v2 .quality,
.home-v2 .partner,
.home-v2 .news,
.home-v2 .contact {
  padding: clamp(82px, 9vw, 132px) clamp(24px, 6.8vw, 108px);
}

.home-v2 .intro-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(56px, 8vw, 126px);
  align-items: center;
  background: #fff;
}

.home-v2 .section-copy {
  width: min(600px, 100%);
}

.home-v2 .section-copy h2,
.home-v2 .section-heading h2,
.home-v2 .ocean-copy h2,
.home-v2 .network-copy h2,
.home-v2 .contact h2 {
  font-size: clamp(38px, 4.35vw, 66px);
  line-height: 1.1;
  letter-spacing: 0;
}

.home-v2 .section-copy p:not(.eyebrow),
.home-v2 .section-heading .section-lead,
.home-v2 .ocean-copy p,
.home-v2 .network-copy p {
  font-size: 16px;
  line-height: 1.92;
}

.home-v2 .eyebrow {
  margin-bottom: 16px;
  color: #15799a;
  letter-spacing: 0.1em;
}

.home-v2 .text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  margin-top: 30px;
  padding: 0 18px;
  border: 1px solid rgba(16, 27, 36, 0.32);
  border-radius: 3px;
  color: var(--v2-ink);
  font-size: 13px;
  font-weight: 900;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-v2 .text-link span {
  font-size: 18px;
  line-height: 1;
}

.home-v2 .text-link:hover {
  border-color: var(--v2-red);
  color: var(--v2-red);
  transform: translateY(-2px);
}

.home-v2 .proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--v2-line);
  border-left: 1px solid var(--v2-line);
}

.home-v2 .proof-grid article {
  min-height: 220px;
  padding: clamp(26px, 3.5vw, 44px);
  border: 0;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  border-radius: 0;
  background: #fff;
}

.home-v2 .proof-grid .proof-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
}

.home-v2 .proof-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.65vw, 27px);
}

.home-v2 .products {
  position: relative;
  overflow: hidden;
  background: #eaf0f3;
  color: var(--v2-ink);
}

.home-v2 .products::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 6.8vw, 108px);
  width: 68px;
  height: 4px;
  background: var(--v2-red);
  content: "";
}

.home-v2 .products .section-heading {
  width: min(1040px, 100%);
}

.home-v2 .products .section-heading h2 {
  width: min(1040px, 100%);
  font-size: clamp(38px, 4vw, 60px);
}

.home-v2 .products .section-lead {
  width: min(920px, 100%);
  color: #60717d;
}

.home-v2 .products .eyebrow {
  color: #15799a;
}

.home-v2 .product-layout {
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 52px;
}

.home-v2 .product-tabs {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 0;
  min-height: 0;
  border-bottom: 1px solid rgba(16, 27, 36, 0.15);
}

.home-v2 .product-tab {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  min-height: 148px;
  padding: 14px 10px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #526875;
  text-align: center;
  transform: none;
}

.home-v2 .product-tab::after {
  position: absolute;
  right: 18%;
  bottom: -1px;
  left: 18%;
  height: 3px;
  background: var(--v2-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-v2 .product-tab img {
  width: 76px;
  height: 76px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  object-fit: contain;
  filter: saturate(0.9);
}

.home-v2 .product-tab span {
  font-size: 13px;
  line-height: 1.45;
}

.home-v2 .product-tab:hover,
.home-v2 .product-tab.is-active {
  background: rgba(255, 255, 255, 0.72);
  color: var(--v2-ink);
  transform: none;
}

.home-v2 .product-tab:hover::after,
.home-v2 .product-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-v2 .product-tab:hover img,
.home-v2 .product-tab.is-active img {
  background: #fff;
  transform: translateY(-3px);
}

.home-v2 .product-display {
  min-height: 500px;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--v2-ink);
  box-shadow: none;
}

.home-v2 .product-display > img {
  grid-column: 2;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.home-v2 .product-copy {
  grid-column: 1;
  grid-row: 1;
  align-content: center;
  padding: clamp(18px, 4vw, 58px) clamp(34px, 5vw, 72px) clamp(18px, 4vw, 58px) 0;
  background: transparent;
}

.home-v2 .product-copy .eyebrow {
  color: #15799a;
}

.home-v2 .product-copy h3 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.08;
}

.home-v2 .product-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: #60717d;
  font-size: 16px;
  line-height: 1.85;
}

.home-v2 .tag-row {
  margin-top: 28px;
  gap: 8px;
}

.home-v2 .tag-row a,
.home-v2 .tag-row span {
  min-height: 36px;
  border-color: rgba(13, 95, 143, 0.24);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.58);
  color: #174d69;
}

.home-v2 .tag-row a:hover {
  border-color: var(--v2-red);
  background: #fff;
  color: var(--v2-red);
}

.home-v2 .product-detail-link {
  margin-top: 32px;
  box-shadow: none;
}

.home-v2 .ocean-feature {
  min-height: clamp(590px, 72vw, 780px);
  padding: clamp(88px, 11vw, 148px) clamp(24px, 7vw, 112px);
}

.home-v2 .ocean-feature > video {
  opacity: 0.82;
}

.home-v2 .ocean-feature::after {
  background: linear-gradient(90deg, rgba(2, 17, 28, 0.9) 0%, rgba(2, 17, 28, 0.48) 50%, rgba(2, 17, 28, 0.08) 82%);
}

.home-v2 .ocean-copy {
  max-width: 800px;
}

.home-v2 .ocean-feature .eyebrow {
  color: var(--v2-cyan);
}

.home-v2 .ocean-copy h2 {
  font-size: clamp(42px, 5.4vw, 76px);
}

.home-v2 .quality {
  background: #fff;
}

.home-v2 .quality > .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: 100%;
}

.home-v2 .quality .section-heading .eyebrow,
.home-v2 .quality .section-heading h2 {
  grid-column: 1;
}

.home-v2 .quality .section-heading .text-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
}

.home-v2 .quality-grid {
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--v2-line);
}

.home-v2 .quality-grid article {
  overflow: visible;
  padding: 30px 30px 0;
  border: 0;
  border-right: 1px solid var(--v2-line);
  border-radius: 0;
}

.home-v2 .quality-grid article:first-child {
  padding-left: 0;
}

.home-v2 .quality-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-v2 .quality-grid img {
  aspect-ratio: 1.38;
  border-radius: 2px;
}

.home-v2 .quality-grid div {
  padding: 26px 0 0;
}

.home-v2 .quality-grid h3 {
  margin-top: 10px;
  font-size: clamp(21px, 1.8vw, 28px);
}

.home-v2 .network {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 8vw, 126px);
  padding: clamp(92px, 10vw, 142px) clamp(24px, 6.8vw, 108px);
  background:
    linear-gradient(90deg, rgba(4, 19, 30, 0.94), rgba(4, 19, 30, 0.78)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/base-02-enhanced.jpg?v=20260707-1618") center / cover;
}

.home-v2 .network-copy .eyebrow {
  color: var(--v2-cyan);
}

.home-v2 .text-link.is-light {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.home-v2 .text-link.is-light:hover {
  border-color: var(--v2-cyan);
  color: var(--v2-cyan);
}

.home-v2 .network-numbers {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(4, 19, 30, 0.44);
  backdrop-filter: blur(8px);
}

.home-v2 .network-numbers strong {
  color: #fff;
  font-size: clamp(38px, 4.6vw, 64px);
}

.home-v2 .network-numbers span {
  color: var(--v2-cyan);
}

.home-v2 .partner {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(50px, 7vw, 110px);
  background: var(--v2-paper);
}

.home-v2 .partner-visual {
  min-height: 540px;
  border-radius: 2px;
  box-shadow: none;
}

.home-v2 .partner-visual img,
.home-v2 .partner-visual video {
  min-height: 540px;
}

.home-v2 .partner-copy h2 {
  font-size: clamp(38px, 4.4vw, 62px);
}

.home-v2 .partner-points {
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--v2-line);
}

.home-v2 .partner-points span {
  flex: 1 1 180px;
  padding: 16px 10px 16px 0;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  border-radius: 0;
  background: transparent;
  color: var(--v2-ink);
}

.home-v2 .partner-copy > .btn {
  margin-top: 32px;
}

.home-v2 .follow-section {
  background: #fff;
}

.home-v2 .follow-section > .section-heading {
  width: min(860px, 100%);
}

.home-v2 .follow-section .section-lead {
  width: min(760px, 100%);
}

.home-v2 .home-follow-grid {
  width: 100%;
  margin-top: 54px;
  gap: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.home-v2 .home-follow-card {
  min-height: 190px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--v2-line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.home-v2 .home-follow-card:last-child {
  border-right: 0;
}

.home-v2 .home-follow-card img {
  width: 112px;
}

.home-v2 .home-follow-copy .platform-icon {
  border-radius: 6px;
  box-shadow: none;
}

.home-v2 .contact {
  gap: 56px;
  background: var(--v2-navy-deep);
  color: #fff;
}

.home-v2 .contact .eyebrow {
  color: var(--v2-cyan);
}

.home-v2 .contact-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.home-v2 .contact-grid a,
.home-v2 .contact-grid p {
  min-height: 178px;
  padding: 28px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.home-v2 .contact-grid > :last-child {
  border-right: 0;
}

.home-v2 .contact-grid a:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  transform: none;
}

.home-v2 .contact-grid span {
  color: var(--v2-cyan);
}

.home-v2 .contact-grid strong {
  color: #fff;
  font-size: clamp(18px, 1.5vw, 24px);
}

.home-v2 .site-footer {
  padding: 28px clamp(24px, 6.8vw, 108px);
  background: #020c13;
}

.home-v2 [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.home-v2 [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1360px) {
  .home-v2 .site-header {
    height: 76px;
  }

  .home-v2 .brand {
    min-width: 0;
  }

  .home-v2 .main-nav {
    top: 76px;
  }

  .home-v2 .mega-menu {
    top: auto;
  }

  .home-v2 .intro-band,
  .home-v2 .network,
  .home-v2 .partner {
    grid-template-columns: 1fr;
  }

  .home-v2 .intro-band {
    gap: 58px;
  }

  .home-v2 .section-copy {
    width: min(760px, 100%);
  }

  .home-v2 .proof-grid {
    width: 100%;
  }

  .home-v2 .product-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 27, 36, 0.14);
  }

  .home-v2 .product-tab {
    min-height: 134px;
    border-right: 1px solid rgba(16, 27, 36, 0.12);
    border-bottom: 1px solid rgba(16, 27, 36, 0.12);
  }

  .home-v2 .product-display {
    grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1.25fr);
  }

  .home-v2 .network-numbers {
    width: 100%;
  }

  .home-v2 .partner-visual,
  .home-v2 .partner-visual img,
  .home-v2 .partner-visual video {
    min-height: 500px;
  }

  .home-v2 .partner-copy {
    order: -1;
    width: min(760px, 100%);
  }

  .home-v2 .home-follow-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-v2 .home-follow-card {
    grid-template-columns: minmax(0, 1fr) 96px;
  }
}

@media (max-width: 980px) {
  .home-v2 .hero-content {
    width: min(620px, calc(100% - 76px));
  }

  .home-v2 .hero h1 {
    font-size: clamp(54px, 9vw, 82px);
  }

  .home-v2 .product-display {
    grid-template-columns: 1fr;
  }

  .home-v2 .product-display > img {
    grid-column: 1;
    grid-row: 1;
    min-height: 420px;
  }

  .home-v2 .product-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 38px 0 0;
  }

  .home-v2 .quality > .section-heading {
    grid-template-columns: 1fr;
  }

  .home-v2 .quality .section-heading .text-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
  }

  .home-v2 .quality-grid {
    grid-template-columns: 1fr;
  }

  .home-v2 .quality-grid article,
  .home-v2 .quality-grid article:first-child,
  .home-v2 .quality-grid article:last-child {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--v2-line);
  }

  .home-v2 .quality-grid article:last-child {
    border-bottom: 0;
  }

  .home-v2 .quality-grid div {
    padding: 0;
  }

  .home-v2 .home-follow-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .home-v2 .home-follow-card {
    border-right: 0;
    border-bottom: 1px solid var(--v2-line);
  }

  .home-v2 .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2 .contact-grid > :nth-child(2) {
    border-right: 0;
  }

  .home-v2 .contact-grid > :nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 760px) {
  .home-v2 .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .home-v2 .brand img {
    width: 148px;
  }

  .home-v2 .main-nav {
    top: 68px;
  }

  .home-v2 .hero {
    min-height: max(650px, 100svh);
    padding: 108px 18px 62px;
  }

  .home-v2 .hero-content {
    width: calc(100% - 54px);
    min-width: 0;
  }

  .home-v2 .hero h1 {
    max-width: 360px;
    margin-bottom: 20px;
    font-size: clamp(46px, 14.5vw, 64px);
    line-height: 1.04;
  }

  .home-v2 .hero-content > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.72;
    overflow-wrap: anywhere;
  }

  .home-v2 .hero-actions {
    margin-top: 28px;
  }

  .home-v2 .btn {
    min-height: 48px;
    padding-inline: 20px;
  }

  .home-v2 .hero-controls {
    right: 14px;
    top: 50%;
    width: 24px;
    gap: 7px;
  }

  html[lang="ar"] .home-v2 .site-header {
    direction: ltr;
  }

  html[lang="ar"] .home-v2 .main-nav,
  html[lang="ar"] .home-v2 .language-picker {
    direction: rtl;
  }

  html[lang="ar"] .home-v2 .hero {
    direction: rtl;
  }

  html[lang="ar"] .home-v2 .hero-content {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }

  html[lang="ar"] .home-v2 .hero-controls {
    right: auto;
    left: 14px;
  }

  .home-v2 .hero-controls button {
    display: block;
    width: 22px;
    height: 22px;
    text-align: center;
  }

  .home-v2 .hero-controls button::before,
  .home-v2 .hero-controls button em {
    display: none;
  }

  .home-v2 .hero-controls button span {
    display: inline-grid;
    width: 7px;
    height: 7px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    color: transparent;
  }

  .home-v2 .hero-controls button:hover,
  .home-v2 .hero-controls button.is-active {
    width: 22px;
    height: 22px;
    transform: none;
  }

  .home-v2 .hero-controls button.is-active span {
    background: var(--v2-red);
    transform: scale(1.35);
  }

  .home-v2 .hero-scroll {
    display: none;
  }

  .home-v2 .intro-band,
  .home-v2 .products,
  .home-v2 .quality,
  .home-v2 .partner,
  .home-v2 .news,
  .home-v2 .contact {
    padding: 74px 18px;
  }

  .home-v2 .section-copy h2,
  .home-v2 .section-heading h2,
  .home-v2 .ocean-copy h2,
  .home-v2 .network-copy h2,
  .home-v2 .contact h2 {
    font-size: clamp(32px, 10vw, 45px);
  }

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

  .home-v2 .proof-grid article,
  .home-v2 .proof-grid article:nth-child(3) {
    grid-column: auto;
    min-height: 0;
    padding: 28px;
  }

  .home-v2 .proof-grid span {
    margin-bottom: 16px;
  }

  .home-v2 .product-layout {
    gap: 34px;
    margin-top: 38px;
  }

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

  .home-v2 .product-tab {
    min-height: 126px;
    padding: 14px 8px 20px;
  }

  .home-v2 .product-tab:last-child {
    grid-column: 1 / -1;
  }

  .home-v2 .product-tab img {
    width: 66px;
    height: 66px;
  }

  .home-v2 .product-display > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .home-v2 .product-copy {
    padding-top: 28px;
  }

  .home-v2 .product-copy h3 {
    font-size: 40px;
  }

  .home-v2 .ocean-feature {
    min-height: 560px;
    padding: 76px 18px;
  }

  .home-v2 .ocean-copy h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .home-v2 .quality-grid article,
  .home-v2 .quality-grid article:first-child,
  .home-v2 .quality-grid article:last-child {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 28px;
  }

  .home-v2 .quality-grid img {
    aspect-ratio: 1.45;
  }

  .home-v2 .quality-grid div {
    padding-top: 22px;
  }

  .home-v2 .network {
    gap: 48px;
    padding: 76px 18px;
  }

  .home-v2 .network-numbers {
    grid-template-columns: 1fr;
  }

  .home-v2 .partner-visual,
  .home-v2 .partner-visual img,
  .home-v2 .partner-visual video {
    min-height: 300px;
  }

  .home-v2 .home-follow-card {
    min-height: 142px;
    padding: 18px;
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .home-v2 .home-follow-card img {
    width: 88px;
  }

  .home-v2 .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-v2 .contact-grid a,
  .home-v2 .contact-grid p,
  .home-v2 .contact-grid > :nth-child(2) {
    min-height: 130px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-v2 .contact-grid > :last-child {
    border-bottom: 0;
  }

  .home-v2 .contact-grid strong {
    margin-top: 12px;
    font-size: 18px;
  }
}

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

  .home-v2 [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Keep the proven product-center layout from the original homepage. */
.home-v2 .products {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 92px);
  background: linear-gradient(180deg, #f4f8fa 0%, #ffffff 100%);
  color: var(--v2-ink);
}

.home-v2 .products::before {
  display: none;
}

.home-v2 .products .section-heading {
  width: min(1720px, 100%);
}

.home-v2 .products .section-heading h2 {
  width: 100%;
  font-size: clamp(31px, 4.4vw, 58px);
}

.home-v2 .products .section-lead {
  width: min(1500px, 100%);
  color: var(--v2-muted);
}

html[lang]:not([lang="zh-CN"]) .home-v2 .products .section-heading h2 {
  font-size: clamp(35px, 3.4vw, 52px);
  line-height: 1.12;
}

.home-v2 .products .eyebrow {
  color: var(--cyan);
}

.home-v2 .product-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  width: min(1720px, 100%);
  margin: 34px auto 0;
  align-items: stretch;
}

.home-v2 .product-tabs {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 10px;
  min-height: 560px;
  border: 0;
}

.home-v2 .product-tab {
  position: static;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  justify-items: stretch;
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 10px 18px 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  transform: none;
}

.home-v2 .product-tab::after {
  display: none;
}

.home-v2 .product-tab img {
  width: 60px;
  height: 60px;
  padding: 7px;
  border-radius: 6px;
  background: #eef5f8;
  filter: none;
}

.home-v2 .product-tab span {
  font-size: inherit;
  line-height: normal;
}

.home-v2 .product-tab:hover,
.home-v2 .product-tab.is-active {
  border-color: transparent;
  background: var(--blue);
  color: #fff;
  transform: translateX(4px);
}

.home-v2 .product-tab:hover img,
.home-v2 .product-tab.is-active img {
  background: rgba(255, 255, 255, 0.94);
  transform: scale(1.04);
}

/* Foreign-language mastheads use the international wordmark only. */
html[lang]:not([lang="zh-CN"]) .brand {
  min-width: 0;
}

html[lang]:not([lang="zh-CN"]) .brand img,
html[lang]:not([lang="zh-CN"]) .brand span {
  display: none;
}

html[lang]:not([lang="zh-CN"]) .brand::before {
  color: #d8292f;
  content: "GENTAIN";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

@media (max-width: 900px) {
  html[lang]:not([lang="zh-CN"]) .brand::before {
    font-size: 23px;
  }
}

.home-v2 .product-display {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.home-v2 .product-display > img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: 0;
  object-fit: cover;
}

.home-v2 .product-copy {
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-end;
  align-content: initial;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(160deg, #0e2a36 0%, #071821 64%);
}

.home-v2 .product-copy .eyebrow {
  color: var(--cyan);
}

.home-v2 .product-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 54px);
}

.home-v2 .product-copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.home-v2 .tag-row {
  margin-top: 26px;
}

.home-v2 .tag-row a,
.home-v2 .tag-row span {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.home-v2 .tag-row a:hover {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

.home-v2 .product-detail-link {
  margin-top: 28px;
  box-shadow: 0 14px 28px rgba(199, 32, 43, 0.22);
}

@media (min-width: 1361px) {
  .home-v2 .product-tabs,
  .home-v2 .product-display {
    height: clamp(560px, 33vw, 680px);
    min-height: 0;
  }

  .home-v2 .product-display {
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.36fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .home-v2 .product-display > img,
  .home-v2 .product-copy {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 1360px) {
  .home-v2 .product-layout {
    grid-template-columns: 1fr;
  }

  .home-v2 .product-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
    border: 0;
  }

  .home-v2 .product-tab {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 72px;
    border: 1px solid var(--line);
  }

  .home-v2 .product-display {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .home-v2 .product-display > img {
    grid-column: 1;
    grid-row: 1;
    min-height: 360px;
  }

  .home-v2 .product-copy {
    grid-column: 1;
    grid-row: 2;
    padding: clamp(28px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .home-v2 .products {
    padding: 74px 18px;
  }

  .home-v2 .product-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .home-v2 .product-tab,
  .home-v2 .product-tab:last-child {
    grid-column: auto;
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 66px;
    gap: 10px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .home-v2 .product-tab img {
    width: 42px;
    height: 42px;
    padding: 5px;
  }

  .home-v2 .product-display {
    min-height: 0;
  }

  .home-v2 .product-display > img {
    min-height: 280px;
    aspect-ratio: auto;
  }

  .home-v2 .product-copy {
    padding: 28px;
  }

  .home-v2 .product-copy h3 {
    font-size: clamp(32px, 4vw, 54px);
  }
}

/* Offshore cage page, scoped to prevent cross-page style leakage */
.offshore-cage-page {
  color-scheme: dark;
  --ink: #f6fbff;
  --muted: rgba(230, 245, 255, 0.72);
  --soft: rgba(230, 245, 255, 0.12);
  --line: rgba(220, 245, 255, 0.18);
  --deep: #061016;
  --navy: #0b1d28;
  --cyan: #72d8ff;
  --red: #ee413c;
  --sand: #d7f0f7;
}

.offshore-cage-page, .offshore-cage-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.offshore-cage-page {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

.offshore-cage-page img,
.offshore-cage-page video {
  display: block;
  max-width: 100%;
}

.offshore-cage-page .hero {
  height: 520vh;
  position: relative;
}

.offshore-cage-page .video-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #08151d;
}

.offshore-cage-page .hero-video,
.offshore-cage-page .shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offshore-cage-page .hero-video {
  object-fit: cover;
}

.offshore-cage-page .shade {
  background:
    linear-gradient(90deg, rgba(2, 11, 16, 0.62), rgba(2, 11, 16, 0.14) 48%, rgba(2, 11, 16, 0.34)),
    linear-gradient(0deg, rgba(2, 11, 16, 0.88), rgba(2, 11, 16, 0.02) 42%, rgba(2, 11, 16, 0.34));
  pointer-events: none;
}

.offshore-cage-page .scene-copy {
  position: absolute;
  left: clamp(22px, 7vw, 104px);
  bottom: clamp(78px, 15vh, 150px);
  width: min(680px, calc(100vw - 44px));
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.offshore-cage-page .scene-copy.is-changing {
  opacity: 0;
  transform: translateY(18px);
}

.offshore-cage-page .scene-kicker,
.offshore-cage-page .eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offshore-cage-page .scene-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 94px);
  line-height: 1.02;
  font-weight: 800;
}

.offshore-cage-page .scene-text {
  margin: 0;
  width: min(600px, 100%);
  color: rgba(246, 251, 255, 0.9);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
  font-weight: 500;
}

.offshore-cage-page .scene-en {
  margin: 18px 0 0;
  color: rgba(246, 251, 255, 0.58);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.5;
  max-width: 540px;
}

.offshore-cage-page .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 1px;
  height: 72px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.offshore-cage-page .scroll-cue span {
  display: block;
  width: 100%;
  height: 28px;
  background: var(--cyan);
  animation: cue 1.8s ease-in-out infinite;
}

.offshore-cage-page .hero-skip {
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  bottom: 30px;
  z-index: 3;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(220, 245, 255, 0.26);
  border-radius: 6px;
  background: rgba(6, 16, 22, 0.58);
  color: var(--ink);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.offshore-cage-page .hero-skip:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 216, 255, 0.5);
  background: rgba(114, 216, 255, 0.14);
}

@keyframes cue {
  0% {
    transform: translateY(-32px);
  }
  100% {
    transform: translateY(78px);
  }
}

.offshore-cage-page .intro,
.offshore-cage-page .product-band,
.offshore-cage-page .product-range,
.offshore-cage-page .spec-section,
.offshore-cage-page .system-section,
.offshore-cage-page .manual-section {
  padding: clamp(72px, 10vw, 128px) clamp(22px, 6vw, 88px);
}

.offshore-cage-page .intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  background: linear-gradient(180deg, #061016, #0c2532);
}

.offshore-cage-page .intro-copy h2,
.offshore-cage-page .product-detail h2,
.offshore-cage-page .section-heading h2,
.offshore-cage-page .manual-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4.3vw, 58px);
  line-height: 1.12;
  font-weight: 780;
}

.offshore-cage-page .intro-copy p:not(.eyebrow),
.offshore-cage-page .product-detail > p,
.offshore-cage-page .manual-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.offshore-cage-page .intro-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.offshore-cage-page .intro-stats div {
  min-height: 158px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.055);
}

.offshore-cage-page .intro-stats strong {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: var(--cyan);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  overflow-wrap: normal;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.offshore-cage-page .range-value {
  font-size: clamp(28px, 2.7vw, 38px);
}

.offshore-cage-page .intro-stats span {
  display: block;
  margin-top: 18px;
  color: rgba(246, 251, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.offshore-cage-page .product-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  background: #f5fbfd;
  color: #09202b;
}

.offshore-cage-page .product-visual {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.offshore-cage-page .product-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 32px 70px rgba(6, 16, 22, 0.22);
}

.offshore-cage-page .product-detail > .eyebrow,
.offshore-cage-page .manual-copy > .eyebrow {
  color: #0078a8;
}

.offshore-cage-page .product-detail > p {
  color: rgba(9, 32, 43, 0.72);
}

.offshore-cage-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.offshore-cage-page .feature-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(9, 32, 43, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.offshore-cage-page .feature-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.offshore-cage-page .feature-grid h3,
.offshore-cage-page .system-grid h3 {
  margin: 16px 0 10px;
  font-size: 20px;
}

.offshore-cage-page .feature-grid p,
.offshore-cage-page .system-grid p,
.offshore-cage-page .range-card p {
  margin: 0;
  color: rgba(9, 32, 43, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.offshore-cage-page .product-range {
  background: #061016;
}

.offshore-cage-page .range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offshore-cage-page .range-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offshore-cage-page .range-card:hover,
.offshore-cage-page .range-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(114, 216, 255, 0.55);
  background: linear-gradient(180deg, rgba(114, 216, 255, 0.14), rgba(255, 255, 255, 0.045));
}

.offshore-cage-page .range-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(220, 245, 255, 0.14);
}

.offshore-cage-page .range-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.offshore-cage-page .range-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
}

.offshore-cage-page .range-card p {
  color: var(--muted);
}

.offshore-cage-page .spec-section {
  background: #0c2532;
}

.offshore-cage-page .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.offshore-cage-page .spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.offshore-cage-page table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.offshore-cage-page th,
.offshore-cage-page td {
  padding: 20px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(220, 245, 255, 0.12);
}

.offshore-cage-page th {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.offshore-cage-page td {
  color: rgba(246, 251, 255, 0.82);
  font-size: 15px;
}

.offshore-cage-page tbody tr:hover td {
  background: rgba(114, 216, 255, 0.06);
}

.offshore-cage-page .system-section {
  background: #061016;
}

.offshore-cage-page .system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offshore-cage-page .system-grid article {
  min-height: 250px;
  padding: 28px;
  border-top: 3px solid var(--cyan);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.offshore-cage-page .system-grid h3 {
  color: var(--ink);
  font-size: 24px;
}

.offshore-cage-page .system-grid p {
  color: var(--muted);
}

.offshore-cage-page .manual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.48fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  background: #f5fbfd;
  color: #09202b;
}

.offshore-cage-page .manual-card {
  color: #09202b;
  text-decoration: none;
}

.offshore-cage-page .manual-link-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(9, 32, 43, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(0, 120, 168, 0.88), rgba(9, 32, 43, 0.98)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/enhanced-cage-visual.png") center / cover;
  box-shadow: 0 28px 60px rgba(6, 16, 22, 0.18);
  color: white;
}

.offshore-cage-page .manual-link-panel strong {
  font-size: 28px;
  line-height: 1.1;
}

.offshore-cage-page .manual-link-panel span {
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  background: #c7202b;
  color: #fff;
  font-weight: 900;
}

.offshore-cage-page .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(70px, 9vw, 118px) clamp(22px, 6vw, 88px);
  background: #061016;
  color: var(--ink);
}

.offshore-cage-page .contact-section h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.08;
}

.offshore-cage-page .contact-grid {
  display: grid;
  gap: 12px;
}

.offshore-cage-page .contact-grid a {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  min-height: 88px;
  padding: 22px 24px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.offshore-cage-page .contact-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 216, 255, 0.48);
  background: rgba(114, 216, 255, 0.1);
}

.offshore-cage-page .contact-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offshore-cage-page .contact-grid strong {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  text-align: right;
}

/* Keep the ocean hero, then follow the same light color rhythm as product category pages. */
.offshore-cage-page .intro {
  background: #fff;
  color: #17333d;
}

.offshore-cage-page .intro-copy h2,
.offshore-cage-page .product-range .section-heading h2,
.offshore-cage-page .system-section .section-heading h2,
.offshore-cage-page .manual-copy h2 {
  color: #17333d;
}

.offshore-cage-page .intro-copy p:not(.eyebrow),
.offshore-cage-page .manual-copy p:not(.eyebrow) {
  color: #58717a;
}

.offshore-cage-page .intro-stats {
  border-color: rgba(20, 103, 129, 0.18);
  background: rgba(20, 103, 129, 0.18);
}

.offshore-cage-page .intro-stats div {
  background: #f7fbfc;
}

.offshore-cage-page .intro-stats strong {
  color: #117a96;
}

.offshore-cage-page .intro-stats span {
  color: #5b7279;
}

.offshore-cage-page .product-range {
  background: #eaf7fa;
}

.offshore-cage-page .product-range .eyebrow,
.offshore-cage-page .system-section .eyebrow,
.offshore-cage-page .manual-copy .eyebrow {
  color: #117a96;
}

.offshore-cage-page .range-card {
  border-color: rgba(20, 103, 129, 0.16);
  background: #fff;
  color: #17333d;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(21, 74, 91, 0.08);
}

.offshore-cage-page .range-card:hover,
.offshore-cage-page .range-card.is-active {
  border-color: rgba(17, 122, 150, 0.5);
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 74, 91, 0.14);
}

.offshore-cage-page .range-card img {
  border-color: rgba(20, 103, 129, 0.12);
}

.offshore-cage-page .range-card span {
  color: #c7202b;
}

.offshore-cage-page .range-card h3 {
  color: #17333d;
}

.offshore-cage-page .range-card p {
  color: #5b7279;
}

.offshore-cage-page .system-section {
  background: #fff;
}

.offshore-cage-page .system-grid article {
  min-height: 230px;
  border: 1px solid rgba(20, 103, 129, 0.14);
  border-top: 3px solid #117a96;
  background: #f7fbfc;
}

.offshore-cage-page .system-grid h3 {
  color: #17333d;
}

.offshore-cage-page .system-grid p {
  color: #5b7279;
}

.offshore-cage-page .manual-section {
  background: #eaf7fa;
}

.offshore-cage-page .intro,
.offshore-cage-page .product-range,
.offshore-cage-page .system-section,
.offshore-cage-page .manual-section {
  position: relative;
}

.offshore-cage-page .product-range::before,
.offshore-cage-page .manual-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: #0d5b78;
  content: "";
}

.offshore-cage-page [dir="rtl"] .hero-skip {
  right: auto;
  left: clamp(22px, 4vw, 56px);
}

.offshore-cage-page [dir="rtl"] .scene-copy {
  left: auto;
  right: clamp(22px, 7vw, 104px);
}

.offshore-cage-page [dir="rtl"] .range-card {
  text-align: right;
}

.offshore-cage-page [dir="rtl"] th,
.offshore-cage-page [dir="rtl"] td {
  text-align: right;
}

.offshore-cage-page [dir="rtl"] .contact-grid strong {
  text-align: left;
  direction: ltr;
}

@media (max-width: 920px) {
  .offshore-cage-page .video-stage {
    min-height: 600px;
  }

  .offshore-cage-page .intro,
  .offshore-cage-page .product-band,
  .offshore-cage-page .manual-section,
  .offshore-cage-page .contact-section {
    grid-template-columns: 1fr;
  }

  .offshore-cage-page .intro-stats,
  .offshore-cage-page .feature-grid,
  .offshore-cage-page .range-grid,
  .offshore-cage-page .system-grid {
    grid-template-columns: 1fr;
  }

  .offshore-cage-page .product-visual {
    min-height: 0;
  }

  .offshore-cage-page .product-visual img {
    min-height: 280px;
  }

  .offshore-cage-page .section-heading {
    display: block;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .offshore-cage-page .intro {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .offshore-cage-page .intro,
  .offshore-cage-page .product-band,
  .offshore-cage-page .spec-section,
  .offshore-cage-page .system-section,
  .offshore-cage-page .manual-section,
  .offshore-cage-page .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offshore-cage-page .hero-skip {
    right: 20px;
    bottom: 24px;
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .offshore-cage-page [dir="rtl"] .hero-skip {
    right: auto;
    left: 20px;
  }

  .offshore-cage-page .scene-copy {
    bottom: 88px;
  }

  .offshore-cage-page .scene-copy h1 {
    font-size: 42px;
  }

  .offshore-cage-page .scene-text {
    font-size: 17px;
  }

  .offshore-cage-page .intro-stats div,
  .offshore-cage-page .feature-grid article,
  .offshore-cage-page .range-card,
  .offshore-cage-page .system-grid article {
    min-height: auto;
  }

  .offshore-cage-page .manual-link-panel {
    min-height: 240px;
  }

  .offshore-cage-page .contact-section {
    gap: 28px;
  }

  .offshore-cage-page .contact-section h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .offshore-cage-page .contact-grid {
    gap: 10px;
  }

  .offshore-cage-page .contact-grid a {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding: 18px;
  }

  .offshore-cage-page .contact-grid strong {
    display: block;
    margin-top: 0;
    font-size: 20px;
    line-height: 1.25;
    text-align: left;
    overflow-wrap: anywhere;
  }
}

.offshore-cage-page a {
  color: inherit;
  text-decoration: none;
}

.offshore-cage-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.offshore-cage-page .site-header.is-scrolled,
.offshore-cage-page .site-header.is-open {
  color: #17212b;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 34, 45, 0.08);
  backdrop-filter: blur(16px);
}

.offshore-cage-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 324px;
  font-weight: 900;
  font-size: 22px;
}

.offshore-cage-page .brand img {
  width: 176px;
  height: auto;
  filter: brightness(0) invert(1);
}

.offshore-cage-page .site-header.is-scrolled .brand img,
.offshore-cage-page .site-header.is-open .brand img {
  filter: none;
}

.offshore-cage-page .brand span {
  padding-left: 16px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.offshore-cage-page .site-header.is-scrolled .brand span,
.offshore-cage-page .site-header.is-open .brand span {
  border-color: rgba(23, 33, 43, 0.12);
}

.offshore-cage-page .main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(9px, 1.2vw, 20px);
  font-size: 13px;
  font-weight: 700;
}

.offshore-cage-page .nav-item {
  position: relative;
}

.offshore-cage-page .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 28px 0;
  white-space: nowrap;
}

.offshore-cage-page .nav-link::after {
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 0;
  height: 2px;
  background: #d51f2a;
  content: "";
  transition: width 180ms ease;
}

.offshore-cage-page .nav-link:hover::after,
.offshore-cage-page .nav-item:hover > .nav-link::after,
.offshore-cage-page .nav-item:focus-within > .nav-link::after {
  width: 100%;
}

.offshore-cage-page .has-mega > .nav-link::before {
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.offshore-cage-page .mega-menu {
  position: fixed;
  top: 76px;
  left: 50%;
  z-index: 79;
  width: min(1040px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.97);
  color: #17212b;
  box-shadow: 0 28px 60px rgba(8, 30, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.offshore-cage-page .about-menu,
.offshore-cage-page .news-menu {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  width: min(760px, calc(100vw - 48px));
}

.offshore-cage-page .news-menu {
  width: min(560px, calc(100vw - 48px));
}

.offshore-cage-page .mega-intro {
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 95, 143, 0.92), rgba(7, 24, 33, 0.96)),
    url("https://one-whale-1252578075.cos.ap-shanghai.myqcloud.com/jiangte/base-01-enhanced.jpg?v=20260707-1618") center / cover;
  color: #fff;
}

.offshore-cage-page .mega-intro span {
  display: block;
  margin-bottom: 12px;
  color: #94e6ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offshore-cage-page .mega-intro strong {
  display: block;
  font-size: 25px;
  line-height: 1.25;
}

.offshore-cage-page .mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.offshore-cage-page .news-list {
  grid-template-columns: 1fr;
}

.offshore-cage-page .mega-list a,
.offshore-cage-page .mega-product-grid a {
  display: block;
  color: #5f6f7b;
  line-height: 1.45;
  transition: color 160ms ease, transform 160ms ease;
}

.offshore-cage-page .mega-list a {
  padding: 14px 16px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 6px;
  background: #f8fbfc;
  color: #17212b;
  font-weight: 900;
}

.offshore-cage-page .mega-list a:hover,
.offshore-cage-page .mega-product-grid a:hover,
.offshore-cage-page .mega-product-grid a[aria-current="page"] {
  color: #d51f2a;
  transform: translateX(3px);
}

.offshore-cage-page .mega-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
}

.offshore-cage-page .mega-product-grid section {
  min-width: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(13, 95, 143, 0.22);
}

.offshore-cage-page .mega-product-grid h3 {
  margin: 0 0 12px;
  color: #0d5f8f;
  font-size: 16px;
  line-height: 1.35;
}

.offshore-cage-page .mega-product-grid .mega-category-link {
  display: inline-flex;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 900;
}

.offshore-cage-page .mega-product-grid .mega-category-link:hover,
.offshore-cage-page .mega-product-grid .mega-category-link[aria-current="page"] {
  color: #ef4123;
  transform: none;
}

.offshore-cage-page .mega-product-grid a {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.offshore-cage-page .language-picker {
  position: relative;
  justify-self: end;
}

.offshore-cage-page .language-picker summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.offshore-cage-page .language-picker summary::-webkit-details-marker {
  display: none;
}

.offshore-cage-page .language-flag,
.offshore-cage-page .language-menu span {
  width: 20px;
  flex: 0 0 20px;
  line-height: 1;
  text-align: center;
}

.offshore-cage-page .language-picker summary::after {
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.offshore-cage-page .language-picker .language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 24, 33, 0.94);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.offshore-cage-page .language-picker .language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.offshore-cage-page .language-picker .language-menu a:hover {
  background: rgba(25, 165, 200, 0.16);
}

.offshore-cage-page .site-header.is-scrolled .language-picker summary,
.offshore-cage-page .site-header.is-open .language-picker summary {
  border-color: rgba(23, 33, 43, 0.12);
  color: #0d5f8f;
}

.offshore-cage-page .site-header.is-scrolled .language-picker .language-menu,
.offshore-cage-page .site-header.is-open .language-picker .language-menu {
  border-color: rgba(23, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.offshore-cage-page .site-header.is-scrolled .language-picker .language-menu a,
.offshore-cage-page .site-header.is-open .language-picker .language-menu a {
  color: #17212b;
}

.offshore-cage-page .menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.offshore-cage-page .menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.offshore-cage-page .site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.offshore-cage-page .site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 1360px) {
  .offshore-cage-page .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .offshore-cage-page .site-header.is-open {
    height: 100dvh;
    align-items: start;
  }

  .offshore-cage-page .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 90;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    height: calc(100dvh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 18px 26px;
    background: rgba(255, 255, 255, 0.97);
    color: #17212b;
    box-shadow: 0 22px 38px rgba(15, 34, 45, 0.1);
    backdrop-filter: blur(16px);
  }

  @supports not (height: 100dvh) {
    .offshore-cage-page .site-header.is-open {
      height: 100vh;
    }

    .offshore-cage-page .main-nav {
      height: calc(100vh - 76px);
      max-height: calc(100vh - 76px);
    }
  }

  .offshore-cage-page .site-header.is-open .main-nav {
    display: grid;
  }

  .offshore-cage-page .nav-item {
    border-bottom: 1px solid rgba(23, 33, 43, 0.12);
  }

  .offshore-cage-page .nav-link {
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
  }

  .offshore-cage-page .nav-link::after {
    bottom: 8px;
  }

  .offshore-cage-page .has-mega > .nav-link::before {
    margin-left: auto;
  }

  .offshore-cage-page .mega-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    padding: 0 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .offshore-cage-page .has-mega:hover .mega-menu,
  .offshore-cage-page .has-mega:focus-within .mega-menu,
  .offshore-cage-page .product-menu,
  .offshore-cage-page .news-menu {
    left: auto;
    right: auto;
    transform: none;
  }

  .offshore-cage-page .about-menu,
  .offshore-cage-page .product-menu,
  .offshore-cage-page .news-menu {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .offshore-cage-page .mega-intro {
    min-height: 0;
    padding: 16px;
  }

  .offshore-cage-page .mega-intro strong {
    font-size: 20px;
  }

  .offshore-cage-page .mega-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offshore-cage-page .news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offshore-cage-page .mega-list a {
    padding: 11px 12px;
    font-size: 13px;
  }

  .offshore-cage-page .mega-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .offshore-cage-page .mega-product-grid section {
    padding: 12px;
    border: 1px solid rgba(23, 33, 43, 0.12);
    border-radius: 8px;
    background: #f8fbfc;
  }

  .offshore-cage-page .menu-toggle {
    display: block;
    position: relative;
    z-index: 95;
  }
}

@media (max-width: 760px) {
  .offshore-cage-page .site-header {
    height: 68px;
    gap: 10px;
  }

  .offshore-cage-page .site-header.is-open {
    height: 100dvh;
  }

  .offshore-cage-page .brand {
    min-width: 0;
    gap: 12px;
    font-size: 18px;
  }

  .offshore-cage-page .brand img {
    width: 148px;
  }

  .offshore-cage-page .brand span {
    display: none;
  }

  .offshore-cage-page .main-nav {
    top: 68px;
    height: calc(100dvh - 68px);
    max-height: calc(100dvh - 68px);
    grid-template-columns: 1fr;
  }

  @supports not (height: 100dvh) {
    .offshore-cage-page .main-nav {
      height: calc(100vh - 68px);
      max-height: calc(100vh - 68px);
    }
  }

  .offshore-cage-page .mega-intro {
    display: none;
  }

  .offshore-cage-page .mega-list,
  .offshore-cage-page .news-list,
  .offshore-cage-page .mega-product-grid {
    grid-template-columns: 1fr;
  }

  .offshore-cage-page .mega-product-grid section {
    padding: 12px 14px;
  }

  .offshore-cage-page .language-picker summary {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .offshore-cage-page .language-picker .language-menu {
    right: -52px;
  }

}

/* Neutralize shared homepage component defaults on the standalone cage page. */
.offshore-cage-page .hero {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  color: inherit;
}

.offshore-cage-page .contact-grid {
  grid-template-columns: 1fr;
}

.offshore-cage-page .section-heading {
  width: auto;
}

.mega-product-column {
  display: contents;
}

@media (min-width: 721px) and (max-width: 1360px) {
  .mega-product-grid,
  .offshore-cage-page .mega-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .mega-product-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mega-product-grid > .mega-product-column:nth-child(1),
  .offshore-cage-page .mega-product-grid > .mega-product-column:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .mega-product-grid > .mega-product-column:nth-child(2),
  .offshore-cage-page .mega-product-grid > .mega-product-column:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .mega-product-grid > section:nth-child(3),
  .offshore-cage-page .mega-product-grid > section:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Three-column product menu after the OEM category was removed. */
@media (min-width: 1361px) {
  .mega-menu.product-menu,
  .offshore-cage-page .mega-menu.product-menu {
    width: min(1040px, calc(100vw - 48px));
  }

  .mega-product-grid,
  .offshore-cage-page .mega-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .mega-product-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .mega-product-grid > .mega-product-column:nth-child(1),
  .offshore-cage-page .mega-product-grid > .mega-product-column:nth-child(1) {
    grid-column: 1;
  }

  .mega-product-grid > .mega-product-column:nth-child(2),
  .offshore-cage-page .mega-product-grid > .mega-product-column:nth-child(2) {
    grid-column: 2;
  }

  .mega-product-grid > section:nth-child(3),
  .offshore-cage-page .mega-product-grid > section:nth-child(3) {
    grid-column: 3;
  }
}

/* Keep the shorter product columns balanced with the taller cage-platform column. */
@media (min-width: 721px) {
  .mega-product-grid,
  .offshore-cage-page .mega-product-grid {
    align-items: stretch;
  }

  .mega-product-column {
    align-self: stretch;
    justify-content: space-between;
  }
}

/* Municipal product-detail page */
.municipal-detail-page {
  color: #23332a;
  background: #fff;
}

.municipal-detail-hero {
  position: relative;
  min-height: min(760px, 100vh);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  align-items: end;
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(148px, 16vw, 210px) max(6vw, calc((100vw - 1320px) / 2)) clamp(64px, 8vw, 112px);
  overflow: hidden;
  background: #172b24;
  color: #fff;
}

.municipal-detail-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 31, 25, 0.96) 0%, rgba(18, 46, 37, 0.86) 54%, rgba(16, 42, 33, 0.7) 100%);
  content: "";
}

.municipal-detail-hero::after {
  position: absolute;
  inset: 0;
  background: var(--detail-image) center / cover;
  opacity: 0.24;
  mix-blend-mode: screen;
  content: "";
}

.municipal-detail-hero-copy,
.municipal-detail-hero-visual {
  position: relative;
  z-index: 1;
}

.municipal-detail-hero-copy {
  max-width: 760px;
}

.municipal-detail-hero .eyebrow {
  color: #a8d783;
}

.municipal-detail-hero h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.08;
}

.municipal-detail-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.9;
}

.municipal-detail-hero-visual {
  min-height: 350px;
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.municipal-detail-hero-visual img,
.municipal-detail-hero-visual video {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.municipal-detail-hero.repair-video-hero .municipal-detail-hero-visual,
.municipal-detail-hero.product-video-hero .municipal-detail-hero-visual {
  width: min(100%, 250px);
  min-height: 0;
  aspect-ratio: 3 / 4;
  justify-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.municipal-detail-hero.repair-video-hero .municipal-detail-hero-visual video,
.municipal-detail-hero.product-video-hero .municipal-detail-hero-visual video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.municipal-detail-hero.square-video-hero .municipal-detail-hero-visual {
  width: min(100%, 420px);
  min-height: 0;
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.municipal-detail-hero.square-video-hero .municipal-detail-hero-visual video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.municipal-detail-hero.product-video-wide-hero .municipal-detail-hero-visual {
  width: min(100%, 560px);
  min-height: 0;
  aspect-ratio: 23 / 18;
  align-self: center;
  justify-self: center;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.municipal-detail-hero.product-video-wide-hero .municipal-detail-hero-visual video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.municipal-detail-hero.landscape-video-hero .municipal-detail-hero-visual {
  display: block;
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 9;
  align-self: center;
  justify-self: stretch;
}

.municipal-detail-hero.landscape-video-hero .municipal-detail-hero-visual video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

@media (min-width: 901px) {
  .municipal-detail-hero.landscape-video-hero {
    min-height: 620px;
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
    align-items: center;
    gap: clamp(42px, 6vw, 94px);
    padding-top: clamp(132px, 13vw, 176px);
    padding-bottom: clamp(72px, 7vw, 108px);
  }

  .municipal-detail-hero.landscape-video-hero .municipal-detail-hero-copy {
    max-width: 560px;
  }
}

/* Full-width video hero for cage products that have a finished showcase video. */
.municipal-detail-hero.full-video-hero {
  display: block;
  height: 100svh;
  min-height: 0;
  padding-top: clamp(160px, 16vw, 220px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.municipal-detail-hero.full-video-hero::after {
  display: none;
}

.municipal-detail-hero.full-video-hero::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 20, 27, 0.78) 0%, rgba(5, 20, 27, 0.46) 43%, rgba(5, 20, 27, 0.14) 76%, rgba(5, 20, 27, 0.2) 100%);
}

.municipal-detail-hero.full-video-hero .municipal-detail-hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #071a22;
  box-shadow: none;
  overflow: hidden;
}

.municipal-detail-hero.full-video-hero .municipal-detail-hero-visual video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.municipal-detail-hero.full-video-hero .municipal-detail-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Shared time-coded video hero for cage products with finished product footage. */
.cage-detail-video-hero {
  position: relative;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  color: #f6fbff;
  background: #071a22;
}

.cage-detail-video-hero .video-stage,
.cage-detail-video-hero .hero-video,
.cage-detail-video-hero .shade {
  position: absolute;
  inset: 0;
}

.cage-detail-video-hero .video-stage {
  overflow: hidden;
}

.cage-detail-video-hero .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cage-detail-video-hero .shade {
  background:
    linear-gradient(90deg, rgba(2, 13, 18, 0.36) 0%, rgba(2, 13, 18, 0.13) 48%, rgba(2, 13, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 13, 18, 0.42) 0%, rgba(2, 13, 18, 0.01) 48%, rgba(2, 13, 18, 0.12) 100%);
  pointer-events: none;
}

.cage-detail-video-hero .scene-copy {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 7vw, 104px);
  bottom: clamp(88px, 15vh, 150px);
  width: min(680px, calc(100vw - 44px));
  opacity: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.44);
  transition: opacity 320ms ease, transform 320ms ease;
}

.cage-detail-video-hero .scene-copy.is-changing {
  opacity: 0;
  transform: translateY(14px);
}

.cage-detail-video-hero .scene-kicker {
  margin: 0 0 14px;
  color: #9be5ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.cage-detail-video-hero .scene-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.04;
  color: #fff;
}

.cage-detail-video-hero .scene-text {
  width: min(610px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.62;
}

.cage-detail-video-hero .scene-en {
  margin: 16px 0 0;
  color: rgba(231, 248, 255, 0.78);
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.5;
}

.cage-detail-video-hero .hero-skip {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 56px);
  bottom: 30px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(223, 247, 255, 0.48);
  border-radius: 4px;
  background: rgba(4, 28, 38, 0.3);
  color: #fff;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cage-detail-video-hero .hero-skip:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 229, 255, 0.88);
  background: rgba(4, 28, 38, 0.56);
}

.cage-detail-video-hero .scroll-cue {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.45);
}

/* Image-led equivalent of the cage video hero for products without showcase footage. */
.cage-detail-image-hero {
  position: relative;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  color: #f6fbff;
  background: #071a22;
}

.cage-detail-image-hero .image-stage,
.cage-detail-image-hero .image-stage > img,
.cage-detail-image-hero .shade {
  position: absolute;
  inset: 0;
}

.cage-detail-image-hero .image-stage {
  overflow: hidden;
}

.cage-detail-image-hero .image-stage > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.cage-detail-image-hero .shade {
  background:
    linear-gradient(90deg, rgba(2, 13, 18, 0.42) 0%, rgba(2, 13, 18, 0.16) 48%, rgba(2, 13, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(2, 13, 18, 0.46) 0%, rgba(2, 13, 18, 0.02) 48%, rgba(2, 13, 18, 0.12) 100%);
  pointer-events: none;
}

.cage-detail-image-hero .scene-copy {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 7vw, 104px);
  bottom: clamp(88px, 15vh, 150px);
  width: min(680px, calc(100vw - 44px));
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.cage-detail-image-hero .scene-kicker {
  margin: 0 0 14px;
  color: #9be5ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.cage-detail-image-hero .scene-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.04;
}

.cage-detail-image-hero .scene-text {
  width: min(610px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.62;
}

.cage-detail-image-hero .scene-en {
  margin: 16px 0 0;
  color: rgba(231, 248, 255, 0.78);
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.5;
}

.cage-detail-image-hero .scroll-cue {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 600px) {
  .cage-detail-video-hero .scene-copy {
    left: 20px;
    bottom: 92px;
    width: calc(100vw - 40px);
  }

  .cage-detail-video-hero .scene-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .cage-detail-video-hero .scene-text {
    font-size: 17px;
  }

  .cage-detail-video-hero .hero-skip {
    right: 20px;
    bottom: 24px;
  }

  .cage-detail-image-hero .scene-copy {
    left: 20px;
    bottom: 88px;
    width: calc(100vw - 40px);
  }

  .cage-detail-image-hero .scene-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .cage-detail-image-hero .scene-text {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .municipal-detail-hero.full-video-hero {
    height: 100svh;
    min-height: 0;
    padding-top: 154px;
    padding-bottom: 56px;
  }
}

.municipal-detail-intro,
.municipal-detail-section,
.municipal-detail-cta {
  padding: clamp(72px, 9vw, 124px) max(6vw, calc((100vw - 1320px) / 2));
}

.municipal-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 7vw, 112px);
  background: #fff;
}

.municipal-detail-intro h2,
.municipal-detail-section h2,
.municipal-detail-cta h2 {
  margin: 12px 0 0;
  color: #24361f;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.16;
}

.municipal-detail-lead {
  margin: 0;
  color: #53695a;
  font-size: 17px;
  line-height: 1.95;
}

.municipal-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  border-top: 1px solid rgba(79, 114, 62, 0.2);
}

.municipal-detail-facts div {
  min-width: 0;
  padding: 22px 20px 8px 0;
  border-right: 1px solid rgba(79, 114, 62, 0.2);
}

.municipal-detail-facts div + div {
  padding-left: 20px;
}

.municipal-detail-facts div:last-child {
  border-right: 0;
}

.municipal-detail-facts strong {
  display: block;
  color: #507b36;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
}

.municipal-detail-facts span {
  display: block;
  margin-top: 8px;
  color: #6d7e70;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.municipal-detail-section {
  position: relative;
  background: #f3f8f0;
}

.municipal-detail-section.is-white {
  background: #fff;
}

.municipal-detail-section::before {
  position: absolute;
  top: 0;
  right: max(6vw, calc((100vw - 1320px) / 2));
  left: max(6vw, calc((100vw - 1320px) / 2));
  height: 7px;
  background: #6f9a45;
  content: "";
}

.municipal-detail-section-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.municipal-detail-section.is-reversed .municipal-detail-section-inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.municipal-detail-section.is-reversed .municipal-detail-media {
  order: 2;
}

.municipal-detail-media {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 52px);
  border: 1px solid rgba(79, 114, 62, 0.16);
  border-radius: 8px;
  background: #fff;
}

.municipal-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
}

.municipal-detail-section-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #53695a;
  line-height: 1.9;
}

.municipal-detail-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.municipal-detail-list li {
  position: relative;
  padding-left: 19px;
  color: #425544;
  line-height: 1.7;
}

.municipal-detail-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6f9a45;
  content: "";
}

.municipal-detail-specs {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(79, 114, 62, 0.2);
}

.municipal-detail-specs dt,
.municipal-detail-specs dd {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(79, 114, 62, 0.16);
}

.municipal-detail-specs dt {
  color: #5f7d45;
  font-size: 13px;
  font-weight: 900;
}

.municipal-detail-specs dd {
  color: #3e5144;
  line-height: 1.65;
}

.municipal-detail-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  background: #162a22;
}

.municipal-detail-cta .eyebrow {
  color: #a8d783;
}

.municipal-detail-cta h2 {
  max-width: 720px;
  color: #fff;
}

.municipal-detail-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.municipal-detail-cta .btn {
  flex: 0 0 auto;
}

.municipal-detail-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: #477733;
  font-size: 13px;
  font-weight: 900;
}

/* Keep the way back to a product family as clear as the primary site actions. */
.municipal-detail-section.is-reversed .municipal-detail-card-link {
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(197, 30, 42, 0.16);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.municipal-detail-section.is-reversed .municipal-detail-card-link::before {
  margin-right: 9px;
  content: "←";
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.municipal-detail-section.is-reversed .municipal-detail-card-link:hover {
  transform: translateY(-2px);
  border-color: #a91824;
  background: #a91824;
  color: #fff;
  box-shadow: 0 14px 26px rgba(169, 24, 36, 0.22);
}

.municipal-detail-section.is-reversed .municipal-detail-card-link:focus-visible {
  outline: 3px solid rgba(197, 30, 42, 0.28);
  outline-offset: 3px;
}

.municipal-detail-media-link {
  display: block;
  color: inherit;
}

.municipal-detail-media-link img {
  display: block;
}

.municipal-feature-image .municipal-detail-media-link {
  height: 100%;
}

.product-detail-media-link {
  display: block;
  color: inherit;
}

.product-detail-media-link img {
  display: block;
}

.gas-product-grid h3 a,
.product-category-page .category-product-grid h3 a,
.water-feature-copy h3 a,
.power-feature-copy h3 a {
  color: inherit;
}

.gas-product-grid h3 a:hover,
.product-category-page .category-product-grid h3 a:hover,
.water-feature-copy h3 a:hover,
.power-feature-copy h3 a:hover {
  color: var(--red);
}

.product-detail-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.product-detail-card-link:hover {
  color: var(--red);
}

.municipal-page .category-product-grid h3 a,
.municipal-page .municipal-feature-copy h3 a {
  color: inherit;
}

.municipal-page .category-product-grid h3 a:hover,
.municipal-page .municipal-feature-copy h3 a:hover {
  color: #507b36;
}

.municipal-detail-card-link:hover {
  color: var(--red);
}

.municipal-detail-table-section {
  padding: clamp(64px, 8vw, 120px) max(24px, calc((100vw - 1280px) / 2));
  background: #f4f8f2;
}

.municipal-detail-table-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: 0 0 30px;
}

.municipal-detail-table-heading p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #53695a;
  line-height: 1.8;
}

.municipal-detail-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(79, 114, 62, 0.2);
  border-radius: 8px;
  background: #fff;
}

.municipal-detail-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #3e5144;
  font-size: 14px;
}

.municipal-detail-table th,
.municipal-detail-table td {
  padding: 15px 18px;
  border-right: 1px solid rgba(79, 114, 62, 0.14);
  border-bottom: 1px solid rgba(79, 114, 62, 0.14);
  text-align: center;
}

.municipal-detail-table th {
  background: #e6f0df;
  color: #426437;
  font-weight: 900;
}

.municipal-detail-table tr:last-child td {
  border-bottom: 0;
}

.municipal-detail-table th:last-child,
.municipal-detail-table td:last-child {
  border-right: 0;
}

@media (max-width: 900px) {
  .municipal-detail-hero,
  .municipal-detail-intro,
  .municipal-detail-section-inner,
  .municipal-detail-section.is-reversed .municipal-detail-section-inner {
    grid-template-columns: 1fr;
  }

  .municipal-detail-hero {
    min-height: 0;
  }

  .municipal-detail-hero-visual {
    min-height: 280px;
  }

  .municipal-detail-hero.square-video-hero .municipal-detail-hero-visual {
    width: min(100%, 360px);
  }

  .municipal-detail-section.is-reversed .municipal-detail-media {
    order: 0;
  }
}

@media (max-width: 600px) {
  .municipal-detail-hero,
  .municipal-detail-intro,
  .municipal-detail-section,
  .municipal-detail-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .municipal-detail-facts div,
  .municipal-detail-facts div + div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(79, 114, 62, 0.2);
  }

  .municipal-detail-section::before {
    right: 18px;
    left: 18px;
  }

  .municipal-detail-media {
    min-height: 280px;
  }

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

  .municipal-detail-specs dt {
    padding-bottom: 3px;
    border-bottom: 0;
  }

  .municipal-detail-specs dd {
    padding-top: 3px;
  }

  .municipal-detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .municipal-detail-table-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .municipal-detail-table-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }
}

/* Product-detail colour systems: each product family keeps the shared layout, but carries its own visual language. */
.municipal-detail-page {
  --detail-ink: #23332a;
  --detail-hero: #172b24;
  --detail-hero-overlay: linear-gradient(90deg, rgba(13, 31, 25, 0.96) 0%, rgba(18, 46, 37, 0.86) 54%, rgba(16, 42, 33, 0.7) 100%);
  --detail-cta: #162a22;
  --detail-accent: #6f9a45;
  --detail-accent-deep: #507b36;
  --detail-accent-soft: #a8d783;
  --detail-surface: #f3f8f0;
  --detail-table-surface: #f4f8f2;
  --detail-table-head: #e6f0df;
  --detail-heading: #24361f;
  --detail-copy: #53695a;
  --detail-strong: #3e5144;
  --detail-list: #425544;
  --detail-line: rgba(79, 114, 62, 0.2);
  --detail-line-soft: rgba(79, 114, 62, 0.16);
}

.municipal-detail-page.product-detail-theme--gas {
  --detail-ink: #273034;
  --detail-hero: #172430;
  --detail-hero-overlay: linear-gradient(90deg, rgba(10, 20, 28, 0.97) 0%, rgba(20, 40, 56, 0.88) 54%, rgba(29, 54, 74, 0.72) 100%);
  --detail-cta: #13202d;
  --detail-accent: #e2ad27;
  --detail-accent-deep: #a87513;
  --detail-accent-soft: #ffd76c;
  --detail-surface: #fff8e5;
  --detail-table-surface: #fff9ec;
  --detail-table-head: #ffefc6;
  --detail-heading: #302a1b;
  --detail-copy: #635b45;
  --detail-strong: #443f31;
  --detail-list: #514a38;
  --detail-line: rgba(190, 137, 22, 0.25);
  --detail-line-soft: rgba(190, 137, 22, 0.17);
}

.municipal-detail-page.product-detail-theme--water {
  --detail-ink: #16384c;
  --detail-hero: #083b63;
  --detail-hero-overlay: linear-gradient(90deg, rgba(4, 32, 55, 0.97) 0%, rgba(6, 61, 96, 0.88) 54%, rgba(11, 86, 125, 0.72) 100%);
  --detail-cta: #073a61;
  --detail-accent: #197dbd;
  --detail-accent-deep: #0b5d93;
  --detail-accent-soft: #8ad5f1;
  --detail-surface: #edf8fd;
  --detail-table-surface: #f0f9fd;
  --detail-table-head: #d8eff9;
  --detail-heading: #123d57;
  --detail-copy: #4b6e80;
  --detail-strong: #34566a;
  --detail-list: #365f73;
  --detail-line: rgba(25, 125, 189, 0.23);
  --detail-line-soft: rgba(25, 125, 189, 0.16);
}

.municipal-detail-page.product-detail-theme--power {
  --detail-ink: #3e3027;
  --detail-hero: #3b2617;
  --detail-hero-overlay: linear-gradient(90deg, rgba(43, 26, 15, 0.97) 0%, rgba(69, 40, 21, 0.89) 54%, rgba(101, 58, 29, 0.72) 100%);
  --detail-cta: #332216;
  --detail-accent: #df782b;
  --detail-accent-deep: #aa4e16;
  --detail-accent-soft: #ffbe7a;
  --detail-surface: #fff3e8;
  --detail-table-surface: #fff6ed;
  --detail-table-head: #fee3ca;
  --detail-heading: #55331f;
  --detail-copy: #765b49;
  --detail-strong: #5b4537;
  --detail-list: #674e3e;
  --detail-line: rgba(210, 101, 28, 0.23);
  --detail-line-soft: rgba(210, 101, 28, 0.16);
}

.municipal-detail-page.product-detail-theme--fittings {
  --detail-ink: #442e31;
  --detail-hero: #421f25;
  --detail-hero-overlay: linear-gradient(90deg, rgba(47, 20, 25, 0.97) 0%, rgba(72, 29, 37, 0.89) 54%, rgba(103, 43, 52, 0.72) 100%);
  --detail-cta: #351b20;
  --detail-accent: #c9404a;
  --detail-accent-deep: #9f2e36;
  --detail-accent-soft: #f5a8ad;
  --detail-surface: #fff0f1;
  --detail-table-surface: #fff4f4;
  --detail-table-head: #fbdde0;
  --detail-heading: #58272d;
  --detail-copy: #75575b;
  --detail-strong: #5f4549;
  --detail-list: #67494d;
  --detail-line: rgba(185, 52, 64, 0.23);
  --detail-line-soft: rgba(185, 52, 64, 0.16);
}

.municipal-detail-page.product-detail-theme--cage {
  --detail-ink: #183d4a;
  --detail-hero: #07334a;
  --detail-hero-overlay: linear-gradient(90deg, rgba(4, 31, 45, 0.97) 0%, rgba(5, 55, 77, 0.89) 54%, rgba(8, 83, 107, 0.72) 100%);
  --detail-cta: #062b3f;
  --detail-accent: #168ea8;
  --detail-accent-deep: #087088;
  --detail-accent-soft: #82d7e5;
  --detail-surface: #edf9fb;
  --detail-table-surface: #f0fafb;
  --detail-table-head: #d6eff3;
  --detail-heading: #144558;
  --detail-copy: #4d7180;
  --detail-strong: #365c68;
  --detail-list: #3d6875;
  --detail-line: rgba(15, 133, 157, 0.23);
  --detail-line-soft: rgba(15, 133, 157, 0.16);
}

.municipal-detail-page {
  color: var(--detail-ink);
}

.municipal-detail-page .municipal-detail-hero {
  background: var(--detail-hero);
}

.municipal-detail-page .municipal-detail-hero::before {
  background: var(--detail-hero-overlay);
}

.municipal-detail-page .municipal-detail-hero .eyebrow,
.municipal-detail-page .municipal-detail-cta .eyebrow {
  color: var(--detail-accent-soft);
}

.municipal-detail-page .municipal-detail-intro h2,
.municipal-detail-page .municipal-detail-section h2,
.municipal-detail-page .municipal-detail-cta h2 {
  color: var(--detail-heading);
}

.municipal-detail-page .municipal-detail-cta {
  background: var(--detail-cta);
}

.municipal-detail-page .municipal-detail-cta h2 {
  color: #fff;
}

.municipal-detail-page .municipal-detail-lead,
.municipal-detail-page .municipal-detail-section-copy > p:not(.eyebrow),
.municipal-detail-page .municipal-detail-table-heading p:not(.eyebrow) {
  color: var(--detail-copy);
}

.municipal-detail-page .municipal-detail-facts,
.municipal-detail-page .municipal-detail-specs,
.municipal-detail-page .municipal-detail-table-wrap {
  border-color: var(--detail-line);
}

.municipal-detail-page .municipal-detail-facts div,
.municipal-detail-page .municipal-detail-specs dt,
.municipal-detail-page .municipal-detail-specs dd,
.municipal-detail-page .municipal-detail-table th,
.municipal-detail-page .municipal-detail-table td {
  border-color: var(--detail-line-soft);
}

.municipal-detail-page .municipal-detail-facts strong,
.municipal-detail-page .municipal-detail-specs dt,
.municipal-detail-page .municipal-detail-card-link {
  color: var(--detail-accent-deep);
}

.municipal-detail-page .municipal-detail-facts span {
  color: var(--detail-copy);
}

.municipal-detail-page .municipal-detail-section {
  background: var(--detail-surface);
}

.municipal-detail-page .municipal-detail-section.is-white {
  background: #fff;
}

.municipal-detail-page .municipal-detail-section::before,
.municipal-detail-page .municipal-detail-list li::before {
  background: var(--detail-accent);
}

.municipal-detail-page .municipal-detail-section::before {
  right: 0;
  left: 0;
}

.municipal-detail-page .municipal-detail-section.is-white::before {
  display: none;
}

.municipal-detail-page .municipal-detail-media {
  border-color: var(--detail-line-soft);
}

.municipal-detail-page .municipal-detail-list li,
.municipal-detail-page .municipal-detail-specs dd,
.municipal-detail-page .municipal-detail-table {
  color: var(--detail-strong);
}

.municipal-detail-page .municipal-detail-table-section {
  background: var(--detail-table-surface);
}

.municipal-detail-page .municipal-detail-table th {
  background: var(--detail-table-head);
  color: var(--detail-accent-deep);
}

html[lang]:not([lang="zh-CN"]) .home-v2 .product-tab span {
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

html[lang]:not([lang="zh-CN"]) .home-v2 .product-tab:hover,
html[lang]:not([lang="zh-CN"]) .home-v2 .product-tab.is-active {
  transform: none;
}

html[lang="ar"] .home-v2 .product-tab {
  text-align: right;
}

html[lang]:not([lang="zh-CN"]) .home-v2 .product-copy {
  min-width: 0;
}

html[lang]:not([lang="zh-CN"]) .home-v2 .product-copy h3 {
  max-width: 100%;
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1.16;
  overflow-wrap: break-word;
}

html[lang]:not([lang="zh-CN"]) .home-v2 .product-copy > p:not(.eyebrow),
html[lang]:not([lang="zh-CN"]) .home-v2 .product-copy .product-detail-link {
  max-width: 100%;
  overflow-wrap: break-word;
}

html[lang]:not([lang="zh-CN"]) .home-v2 .product-detail-link {
  white-space: normal;
  text-align: center;
}

html[lang]:not([lang="zh-CN"]) .offshore-cage-page .intro-stats strong {
  font-size: clamp(24px, 2vw, 34px);
  white-space: normal;
  overflow-wrap: break-word;
}

html[lang]:not([lang="zh-CN"]) .dark-stats div {
  padding: clamp(22px, 2vw, 28px);
}

html[lang]:not([lang="zh-CN"]) .dark-stats strong {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.15;
  overflow-wrap: break-word;
}

html[lang]:not([lang="zh-CN"]) .sustainability-value-heading h2 {
  white-space: normal;
}

html[lang]:not([lang="zh-CN"]) .municipal-detail-facts strong {
  font-size: clamp(22px, 1.9vw, 28px);
  overflow-wrap: anywhere;
  hyphens: auto;
}

html[lang]:not([lang="zh-CN"]) .municipal-detail-facts span,
html[lang]:not([lang="zh-CN"]) .municipal-detail-specs dt,
html[lang]:not([lang="zh-CN"]) .municipal-detail-specs dd {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (min-width: 1361px) {
  html[lang]:not([lang="zh-CN"]) .home-v2 .product-display {
    grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.48fr);
  }
}

html[lang]:not([lang="zh-CN"]) .service-point-grid span,
html[lang]:not([lang="zh-CN"]) .service-detail-list strong,
html[lang]:not([lang="zh-CN"]) .service-process-list li,
html[lang]:not([lang="zh-CN"]) .service-commitment-list h3 {
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

html[lang]:not([lang="zh-CN"]) .service-point-grid span,
html[lang]:not([lang="zh-CN"]) .service-detail-list strong {
  line-height: 1.45;
}

@media (max-width: 1360px) {
  .home-v2 .product-tab:hover,
  .home-v2 .product-tab.is-active {
    transform: none;
  }
}

@media (max-width: 1100px) {
  html[lang]:not([lang="zh-CN"]) .municipal-detail-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gas-overview,
  .service-body-row,
  .service-body-row.is-image-right {
    grid-template-columns: minmax(0, 1fr);
  }

  .gas-overview > *,
  .service-body-row > * {
    min-width: 0;
  }

  .contact-left,
  .contact-map-column {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  html[lang]:not([lang="zh-CN"]) .service-detail-list,
  html[lang]:not([lang="zh-CN"]) .service-detail-list article {
    min-width: 0;
    width: 100%;
  }

  html[lang]:not([lang="zh-CN"]) .service-detail-list strong,
  html[lang]:not([lang="zh-CN"]) .service-commitment-list h3 {
    white-space: normal;
  }

  html[lang]:not([lang="zh-CN"]) .home-v2 .product-tab {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 84px;
    gap: 8px;
    padding: 8px;
  }

  html[lang]:not([lang="zh-CN"]) .home-v2 .product-tab img {
    width: 38px;
    height: 38px;
  }

  html[lang]:not([lang="zh-CN"]) .home-v2 .product-tab span {
    font-size: 12px;
    line-height: 1.25;
  }
}

@media (max-width: 600px) {
  .page-hero--video {
    height: 540px;
    min-height: 540px;
  }

  .municipal-detail-page .municipal-detail-facts div,
  .municipal-detail-page .municipal-detail-facts div + div {
    border-bottom-color: var(--detail-line);
  }
}
