:root {
  --bg: #F8FAFB;
  --surface: #ffffff;
  --surface-soft: #F7F9FA;
  --surface-strong: #F8FAFB;
  --ink: #2b3540;
  --ink-soft: #354751;
  --muted: #64737b;
  --line: #d8e1e5;
  --teal: #1f3f4b;
  --teal-dark: #12313b;
  --blue: #1f3f4b;
  --green: #1f3f4b;
  --aqua: #e8f0f2;
  --lime: #d8a84e;
  --coral: #e87522;
  --shadow: 0 14px 34px rgba(18, 49, 59, 0.1);
  --max: 1180px;

  color: var(--ink);
  background: var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  line-height: 1.65;
}

/* Homepage V2 UI hierarchy */
.home-process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.home-process-line::before {
  background: linear-gradient(90deg, rgba(214, 224, 230, .9), rgba(216, 168, 78, .82), rgba(214, 224, 230, .9));
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 17px;
}

.home-process-line article {
  padding: 52px 24px 0 0;
  position: relative;
}

.home-process-line article::before {
  background: #fff;
  border: 2px solid rgba(216, 168, 78, .78);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(216, 168, 78, .08);
  content: "";
  height: 19px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 19px;
  z-index: 1;
}

.home-process-line h3 {
  color: var(--teal-dark);
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.home-process-line p {
  color: #5b6872;
  line-height: 1.68;
  margin: 0;
}

@media (max-width: 960px) {
  .home-process-line {
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process-line::before {
    display: none;
  }

  .home-process-line article {
    border-top: 1px solid #e2e8ee;
    padding-top: 34px;
  }
}

@media (max-width: 680px) {
  .home-process-line {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.keep-together {
  white-space: nowrap;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  background: var(--lime);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  left: 16px;
  padding: 8px 12px;
  position: absolute;
  top: -48px;
  z-index: 40;
}

.skip-link:focus {
  top: 16px;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.container {
  margin: 0 auto;
  width: min(var(--max), calc(100% - 32px));
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e8ecf0;
  box-shadow: none;
  backdrop-filter: saturate(120%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner,
.nav-shell {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 345px;
  object-fit: contain;
  object-position: left center;
  width: 345px;
}

@media (min-width: 761px) {
  .site-header .container {
    width: min(var(--max), calc(100% - 96px));
  }

  .site-nav {
    margin-left: auto;
  }

  .site-nav a {
    background: transparent;
    border-radius: 0;
    color: #243244;
    font-size: 16px;
    font-weight: 600;
    min-height: 76px;
    padding: 0;
    position: relative;
    transition: color 0.18s ease;
  }

  .site-nav a::after {
    background: #c99a3d;
    bottom: 18px;
    content: "";
    height: 2px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity 0.18s ease, width 0.18s ease;
    width: 0;
  }

  .site-nav a:hover {
    background: transparent;
    color: #18304a;
  }

  .site-nav a:hover::after {
    opacity: 0.45;
    width: 16px;
  }

  .site-nav a[aria-current="page"] {
    background: transparent;
    color: #18304a;
  }

  .site-nav a.active {
    color: #18304a;
  }

  .site-nav a[aria-current="page"]::after,
  .site-nav a.active::after {
    opacity: 1;
    width: 24px;
  }

  .site-header .header-cta {
    align-items: center;
    background: #18304a;
    border-radius: 5px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 650;
    height: 42px;
    justify-content: center;
    letter-spacing: 0;
    margin-left: 4px;
    padding: 0 22px;
    transition: background-color 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
  }

  .site-header .header-cta:hover {
    background: #10263d;
    transform: translateY(-1px);
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .site-header .container {
    width: min(var(--max), calc(100% - 48px));
  }

  .header-inner,
  .nav-shell {
    gap: 22px;
  }

  .brand-logo {
    height: 48px;
    max-width: 260px;
  }

  .site-nav {
    gap: 28px;
  }

  .site-nav a {
    font-size: 15px;
  }

  .site-header .header-cta {
    height: 40px;
    padding: 0 18px;
  }
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--teal-dark);
  font-size: 1.08rem;
  line-height: 1.25;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  margin-top: 2px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
}

.site-nav a {
  align-items: center;
  border-radius: 10px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 650;
  justify-content: center;
  line-height: 1;
  min-height: 32px;
  padding: 8px 13px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: transparent;
  color: #18304a;
}

.site-nav a[aria-current="page"] {
  background: transparent;
  color: #18304a;
}

.header-cta {
  display: none;
  text-decoration: none;
}

@media (min-width: 761px) {
  .site-header .container {
    width: min(1280px, calc(100% - 96px));
  }

  .header-inner,
  .nav-shell {
    flex-wrap: nowrap;
    gap: 20px;
  }

  .site-nav {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 24px;
    min-width: max-content;
  }

  .site-nav a {
    border-radius: 999px;
    flex: 0 0 auto;
    max-width: none;
    min-height: 36px;
    min-width: max-content;
    overflow-wrap: normal;
    padding: 0 13px;
    white-space: nowrap;
    width: auto;
    word-break: keep-all;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    background: rgba(24, 48, 74, 0.06);
    color: #18304a;
  }

  .site-nav a[aria-current="page"],
  .site-nav a.active {
    background: rgba(216, 168, 78, 0.16);
    color: #18304a;
  }

  .site-header .header-cta {
    flex: 0 0 auto;
    max-width: none;
    min-width: max-content;
    overflow-wrap: normal;
    white-space: nowrap;
    width: auto;
    word-break: keep-all;
  }
}

.nav-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  display: none;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
}

.nav-toggle-lines {
  display: grid;
  gap: 4px;
}

.nav-toggle-lines span {
  background: #ffffff;
  display: block;
  height: 2px;
  width: 18px;
}

.hero {
  align-items: center;
  background-image:
    linear-gradient(105deg, rgba(68, 45, 30, 0.78) 0%, rgba(118, 72, 38, 0.52) 52%, rgba(232, 117, 34, 0.2) 100%),
    var(--hero-image);
  background-color: #F8FAFB;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  display: flex;
  min-height: min(680px, 78svh);
  padding: 88px 0;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(248, 250, 251, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(248, 250, 251, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-compact {
  min-height: min(430px, 56svh);
}

.hero-content {
  max-width: 900px;
}

body:has(.home-applications) .hero-content {
  position: relative;
  top: 20px;
  transform: translateX(-30px);
}

.eyebrow {
  color: var(--lime);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
  margin: 0 0 12px;
}

.section .eyebrow {
  color: var(--lime);
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: #d8a84e;
}

.hero .eyebrow span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  margin-left: 10px;
}

.hero h1,
.page-title h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin: 0;
}

body:has(.home-applications) .hero h1 {
  font-size: calc(2.7rem + 5px);
}

.hero h1 {
  max-width: 830px;
  text-shadow: 0 2px 12px rgba(18, 49, 59, 0.34);
}

.hero p,
.page-title p {
  font-size: 1.08rem;
  margin: 18px 0 0;
  max-width: 560px;
}

.hero p {
  line-height: 1.8;
}

body:has(.home-applications) .hero p {
  max-width: 620px;
}

body:has(.home-applications) .hero-actions .button {
  min-height: 44px;
}

body:has(.home-applications) .hero-actions .button-primary {
  box-shadow: 0 10px 24px rgba(232, 117, 34, 0.24);
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(118, 72, 38, 0.16);
  transform: translateY(-2px);
}

.button-primary {
  background: #e87522;
  color: #ffffff;
}

.button-dark {
  background: var(--blue);
  color: #ffffff;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
  color: #ffffff;
}

.button-outline {
  background: transparent;
  border-color: rgba(8, 125, 134, 0.45);
  color: var(--teal-dark);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background: #12313b;
  color: #ffffff;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 760px;
}

.section-heading h2 {
  font-size: 2.08rem;
  line-height: 1.18;
  margin: 0;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.section-dark .section-heading p,
.section-dark .muted {
  color: #dbe5e8;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.impact-strip {
  background: #F7F9FA;
  color: #ffffff;
  padding: 14px 0;
}

body:has(.home-applications) .impact-strip {
  padding: 8px 0 10px;
  position: relative;
  transform: translateY(-10px);
  z-index: 2;
}

.impact-grid {
  background: rgba(96, 58, 32, 0.76);
  border-radius: 12px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.impact-item {
  background: rgba(255, 255, 255, 0.08);
  min-height: 120px;
  padding: 24px;
}

body:has(.home-applications) .impact-item {
  min-height: 108px;
  padding: 20px 24px;
}

.impact-item strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.impact-item span {
  color: #e2ecee;
  display: block;
  margin-top: 10px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 0;
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover,
.promise-card:hover,
.scenario-card:hover,
.product-group:hover,
.product-detail-card:hover,
.brand-tile:hover {
  border-color: rgba(31, 63, 75, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card-link {
  color: var(--teal-dark);
  display: inline-block;
  font-weight: 800;
  margin-top: 18px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.card-link:hover {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.v2-showcase .home-cases .case-card {
  cursor: pointer;
  position: relative;
}

.v2-showcase .home-cases .case-card .card-link::after {
  content: "";
  inset: 0;
  position: absolute;
}

.v2-showcase .home-cases .case-card .card-link:focus-visible {
  outline: none;
}

.v2-showcase .home-cases .case-card:has(.card-link:focus-visible) {
  border-color: #c99a3d;
  box-shadow: 0 0 0 3px rgba(201, 154, 61, 0.2), 0 8px 24px rgba(18, 49, 59, 0.08);
}

.statement {
  background: var(--surface);
  border-left: 6px solid var(--teal);
  box-shadow: var(--shadow);
  padding: 30px;
}

.statement h2 {
  font-size: 2.15rem;
  line-height: 1.18;
  margin: 0;
}

.statement p {
  color: var(--muted);
  margin: 16px 0 0;
}

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

.promise-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 16px;
  min-height: 300px;
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.promise-card h3 {
  font-size: 1.2rem;
  line-height: 1.28;
  margin: 0;
}

.promise-card p {
  color: var(--muted);
  margin: 0;
}

.promise-number {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--lime);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 54px;
}

.promise-card:nth-child(2) .promise-number {
  color: #ffffff;
  background: var(--teal);
}

.promise-card:nth-child(3) .promise-number {
  color: #ffffff;
  background: var(--coral);
}

.promise-card:nth-child(4) .promise-number {
  color: var(--ink);
  background: var(--lime);
}

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

.signal-card {
  border-top: 5px solid var(--teal);
}

.signal-card:nth-child(2) {
  border-top-color: var(--coral);
}

.signal-card:nth-child(3) {
  border-top-color: var(--lime);
}

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

.scenario-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 26px;
}

.scenario-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}

.scenario-card p {
  color: var(--muted);
  margin: 0;
}

.scenario-kicker {
  color: var(--teal-dark);
  font-weight: 900;
}

.scenario-pain {
  background: var(--surface-soft);
  border-left: 4px solid var(--coral);
  padding: 12px;
}

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

.family-nav {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.family-nav a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  display: grid;
  gap: 6px;
  font-weight: 900;
  min-height: 92px;
  padding: 18px;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.family-nav a::before {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 34px;
}

.family-nav a:hover,
.family-nav a[aria-current="page"] {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-color: transparent;
  box-shadow: var(--shadow);
  color: #ffffff;
  transform: translateY(-2px);
}

.family-nav span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.family-nav a:hover span,
.family-nav a[aria-current="page"] span {
  color: #edf4f5;
}

.family-nav-detail {
  margin-bottom: 0;
}

.product-family-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.product-family-heading h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin: 0;
}

.product-family-heading p {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 720px;
}

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

.product-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-group h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.product-group p {
  color: var(--muted);
  margin: 0 0 16px;
}

.product-list {
  display: grid;
  gap: 8px;
}

.product-list span {
  background: var(--surface-soft);
  border-radius: 8px;
  color: var(--ink-soft);
  display: block;
  overflow-wrap: anywhere;
  padding: 9px 10px;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-cloud span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  padding: 10px 12px;
}

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

.product-detail-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-detail-card img {
  aspect-ratio: 16 / 10;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.product-detail-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-detail-body h3 {
  font-size: 1.24rem;
  line-height: 1.28;
  margin: 0;
}

.product-detail-body p {
  color: var(--muted);
  margin: 0;
}

.product-source {
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-meta {
  display: grid;
  gap: 8px 12px;
  grid-template-columns: 74px 1fr;
  margin: 0;
}

.product-meta dt {
  color: var(--muted);
  font-weight: 800;
}

.product-meta dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.service-system {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.05fr 0.95fr;
}

.line-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.line-panel strong {
  color: var(--teal-dark);
}

.line-panel p {
  color: var(--muted);
  margin: 10px 0 0;
}

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

.timeline-item {
  border-left: 4px solid var(--teal);
  padding-left: 16px;
}

.timeline-item:nth-child(2) {
  border-left-color: var(--coral);
}

.timeline-item:nth-child(3) {
  border-left-color: var(--lime);
}

.timeline-item strong {
  display: block;
}

.timeline-item span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

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

.metric {
  border-left: 4px solid var(--teal);
  padding-left: 18px;
}

.metric strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

.image-feature {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 0.95fr 1.05fr;
}

.image-feature img,
.media-strip img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.image-feature img {
  aspect-ratio: 4 / 3;
}

.impact-strip + .section {
  padding-bottom: 72px;
  padding-top: 72px;
}

.impact-strip + .section .image-feature {
  gap: 48px;
  grid-template-columns: 460px minmax(0, 1fr);
  max-width: 1100px;
}

.impact-strip + .section .statement {
  border-left-color: var(--teal-dark);
  border-radius: 12px;
  min-height: 300px;
  padding: 36px 34px;
}

.impact-strip + .section .metric-row {
  align-items: end;
  gap: 20px;
}

.impact-strip + .section .metric {
  min-height: 76px;
}

.impact-strip + .section .image-feature > img {
  justify-self: end;
  width: 86%;
}

.impact-strip + .section + .section-soft {
  padding-bottom: 72px;
  padding-top: 72px;
}

.impact-strip + .section + .section-soft .section-heading {
  margin-bottom: 40px;
  max-width: 760px;
}

.impact-strip + .section + .section-soft .promise-card {
  border-color: #e2e8ee;
  border-radius: 12px;
  gap: 12px;
  grid-template-rows: auto auto 1fr auto;
  height: 250px;
  min-height: 250px;
  padding: 22px;
}

.impact-strip + .section + .section-soft .promise-card:hover {
  border-color: #ccd9df;
  box-shadow: 0 20px 42px rgba(18, 49, 59, 0.16);
  transform: translateY(-4px);
}

.impact-strip + .section + .section-soft .promise-card h3 {
  font-size: 20px;
}

.impact-strip + .section + .section-soft .promise-card p {
  line-height: 1.75;
}

.impact-strip + .section + .section-soft .promise-card .card-link {
  margin-top: 0;
  width: fit-content;
}

.impact-strip + .section + .section-soft .promise-card .card-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.impact-strip + .section + .section-soft .promise-number {
  background: var(--teal-dark);
  color: #ffffff;
}

.impact-strip + .section + .section-soft .promise-card:nth-child(2) .promise-number {
  background: var(--teal);
}

.impact-strip + .section + .section-soft .promise-card:nth-child(3) .promise-number {
  background: var(--coral);
}

.impact-strip + .section + .section-soft .promise-card:nth-child(4) .promise-number {
  background: var(--lime);
  color: var(--teal-dark);
}

.media-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
}

.media-strip img {
  aspect-ratio: 4 / 3;
}

.media-strip img:first-child {
  aspect-ratio: 16 / 10;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 20px 1fr;
}

.check-list li::before {
  background: var(--green);
  border-radius: 3px;
  content: "";
  display: block;
  height: 10px;
  margin-top: 9px;
  width: 10px;
}

.step-list {
  counter-reset: steps;
}

.step {
  position: relative;
}

.step::before {
  background: var(--teal);
  border-radius: 8px;
  color: #ffffff;
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  display: inline-flex;
  font-weight: 800;
  margin-bottom: 18px;
  padding: 4px 9px;
}

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

.brand-tile {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  min-height: 86px;
  padding: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-tile strong {
  display: block;
}

.brand-tile span {
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  margin-top: 4px;
}

.home-section-heading {
  margin-bottom: 32px;
}

.home-applications {
  background: var(--surface);
}

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

.application-card {
  background: var(--surface);
  border: 1px solid #e2e8ee;
  border-radius: 12px;
  display: grid;
  gap: 12px;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 246px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.application-card::before {
  background: var(--teal-dark);
  border-radius: 12px 12px 0 0;
  content: "";
  height: 4px;
  inset: -1px -1px auto;
  position: absolute;
}

.application-card:nth-child(3)::before {
  background: var(--coral);
}

.application-card:nth-child(4)::before {
  background: var(--lime);
}

.application-card:hover {
  border-color: #ccd9df;
  box-shadow: 0 18px 38px rgba(18, 49, 59, 0.13);
  transform: translateY(-4px);
}

.application-card h3 {
  color: var(--teal-dark);
  font-size: 1.28rem;
  line-height: 1.3;
  margin: 0;
}

.application-image {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: block;
  margin: -8px -8px 4px;
  object-fit: cover;
  width: calc(100% + 16px);
}

/* Homepage structure: proof, service flow, then service cases */
.home-advantages {
  background: #F8FAFB;
}

.advantage-grid,
.case-grid {
  display: grid;
  gap: 18px;
}

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

.advantage-card,
.case-card {
  background: #ffffff;
  border: 1px solid #e2e8ee;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(18, 49, 59, 0.06);
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.advantage-card {
  border-top: 4px solid var(--teal-dark);
  min-height: 250px;
}

.advantage-card:nth-child(3) {
  border-top-color: var(--coral);
}

.advantage-card:nth-child(4) {
  border-top-color: var(--lime);
}

.advantage-card:hover,
.case-card:hover {
  border-color: #ccd9df;
  box-shadow: 0 16px 34px rgba(18, 49, 59, 0.12);
  transform: translateY(-4px);
}

.advantage-number {
  color: var(--coral);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.advantage-card:nth-child(even) .advantage-number {
  color: #977b00;
}

.advantage-card strong {
  color: var(--teal-dark);
  display: block;
  font-size: 32px;
  line-height: 1.1;
}

.advantage-card h3 {
  color: var(--teal-dark);
  font-size: 20px;
  margin: 8px 0 12px;
}

.advantage-card p {
  color: #5b6872;
  line-height: 1.75;
  margin: 0;
}

.home-service-flow .promise-grid {
  position: relative;
}

.home-service-flow .promise-card {
  position: relative;
}

.home-service-flow .promise-stage {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.home-cases {
  background: #F8FAFB;
}

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

.case-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 310px;
}

.case-type {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.case-card h3 {
  color: var(--teal-dark);
  font-size: 21px;
  line-height: 1.35;
  margin: 14px 0 24px;
}

.case-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.case-card dl div {
  border-top: 1px solid #e2e8ee;
  padding-top: 12px;
}

.case-card dt {
  color: #7a8790;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
}

.case-card dd {
  color: #2b3540;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 961px) {
  body:has(.home-applications) .home-service-flow .promise-card {
    grid-template-rows: 42px auto auto 1fr auto;
    min-height: 310px;
  }

  .home-service-flow .promise-card:not(:last-child)::after {
    background: var(--lime);
    border-radius: 50%;
    color: var(--teal-dark);
    content: "→";
    display: grid;
    font-size: 15px;
    font-weight: 900;
    height: 28px;
    place-items: center;
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    z-index: 2;
  }
}

@media (max-width: 960px) {
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .brand-logo {
    height: 46px;
    max-width: min(72vw, 360px);
  }

  .advantage-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .advantage-card,
  .case-card {
    min-height: 0;
    padding: 20px;
  }

  .advantage-number {
    margin-bottom: 12px;
  }

  .home-service-flow .promise-card {
    grid-template-rows: auto auto auto 1fr auto;
    min-height: 0;
  }
}

/* Solutions page */
.solutions-hero {
  min-height: 400px;
  padding: 72px 0;
}

.solutions-hero .page-title {
  max-width: 760px;
}

.solutions-hero .page-title h1 {
  font-size: 44px;
  line-height: 1.2;
}

.solutions-hero .page-title p {
  line-height: 1.8;
  max-width: 700px;
}

.solutions-categories {
  background: #F7F9FA;
}

/* Inner page hero visual alignment with the homepage hero.
   Keep the homepage hero untouched; these rules only target the four main inner pages. */
.solutions-hero,
.products-page .product-hero,
.service-page .service-hero,
.about-hero {
  align-items: center !important;
  background-color: #2b221a !important;
  background-image: none !important;
  color: #ffffff !important;
  display: flex !important;
  isolation: isolate;
  min-height: 420px !important;
  overflow: hidden;
  padding: 88px 0 78px !important;
  position: relative;
}

.solutions-hero::before,
.products-page .product-hero::before,
.service-page .service-hero::before,
.about-hero::before {
  background: var(--hero-image) var(--inner-hero-position, center center) / cover no-repeat !important;
  background-position: var(--inner-hero-position, center center) !important;
  background-size: cover !important;
  content: "" !important;
  filter: saturate(0.82) contrast(0.92) brightness(0.92);
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scale(1.01);
  z-index: 0;
}

.solutions-hero::after,
.products-page .product-hero::after,
.service-page .service-hero::after,
.about-hero::after {
  background:
    linear-gradient(90deg, rgba(43, 34, 26, 0.52) 0%, rgba(82, 65, 48, 0.38) 42%, rgba(180, 132, 68, 0.18) 100%),
    linear-gradient(0deg, rgba(125, 89, 48, 0.18), rgba(125, 89, 48, 0.18));
  content: "" !important;
  inset: 0;
  opacity: 1 !important;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.solutions-hero > .container,
.products-page .product-hero > .container,
.service-page .service-hero > .container,
.about-hero > .container {
  position: relative;
  z-index: 2;
}

.solutions-hero .hero-content,
.products-page .product-hero .hero-content,
.service-page .service-hero .hero-content,
.about-hero .hero-content {
  align-items: flex-start !important;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  left: 23%;
  margin-left: 0;
  margin-right: 0;
  max-width: 760px !important;
  min-height: 300px !important;
  padding-top: 0 !important;
  position: absolute;
  text-align: left !important;
  top: 43%;
  transform: translateY(-50%);
  width: min(58vw, 760px);
}

.solutions-hero .eyebrow,
.products-page .product-hero .eyebrow,
.service-page .service-hero .eyebrow,
.about-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.solutions-hero h1,
.products-page .product-hero h1,
.service-page .service-hero h1,
.about-hero h1 {
  color: #ffffff !important;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
  max-width: 760px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22) !important;
}

.solutions-hero p,
.products-page .product-hero p,
.service-page .service-hero p,
.about-hero p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 18px;
  line-height: 1.8;
  margin-left: 0;
  margin-right: 0;
  max-width: 720px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.products-page .product-hero {
  --inner-hero-position: center 45%;
}

@media (max-width: 768px) {
  .solutions-hero .hero-content,
  .products-page .product-hero .hero-content,
  .service-page .service-hero .hero-content,
  .about-hero .hero-content {
    left: 24px;
    max-width: calc(100% - 48px) !important;
    top: 45%;
    width: calc(100% - 48px);
  }
}

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

.solution-card {
  background: #ffffff;
  border: 1px solid #e2e8ee;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 49, 59, 0.06);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 270px;
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.solution-card:hover {
  border-color: #ccd9df;
  box-shadow: 0 16px 34px rgba(18, 49, 59, 0.12);
  transform: translateY(-4px);
}

.solution-card-mark {
  align-items: center;
  background: rgba(245, 196, 0, 0.24);
  border-radius: 8px;
  color: #12313b;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 48px;
}

.solution-card:nth-child(3) .solution-card-mark {
  background: rgba(217, 0, 27, 0.1);
  color: #d9001b;
}

.solution-card h3 {
  color: #12313b;
  font-size: 23px;
  margin: 22px 0 12px;
}

.solution-card p {
  color: #5b6872;
  line-height: 1.8;
  margin: 0;
}

.solutions-process {
  background: #F8FAFB;
}

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

.solution-process-grid article {
  border-top: 3px solid #12313b;
  padding: 24px 20px 0;
  position: relative;
}

.solution-process-grid article:nth-child(2) {
  border-top-color: #f5c400;
}

.solution-process-grid article:nth-child(3) {
  border-top-color: #d9001b;
}

.solution-process-grid article:nth-child(4) {
  border-top-color: #1f3f4b;
}

.solution-process-grid span {
  color: #d9001b;
  font-size: 13px;
  font-weight: 900;
}

.solution-process-grid h3 {
  color: #12313b;
  font-size: 20px;
  margin: 12px 0 10px;
}

.solution-process-grid p {
  color: #5b6872;
  line-height: 1.7;
  margin: 0;
}

.solution-capabilities {
  background: #F7F9FA;
}

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

.capability-grid div {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8ee;
  border-radius: 12px;
  color: #12313b;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  min-height: 82px;
  padding: 20px 24px;
}

.capability-grid div::before {
  background: #f5c400;
  border-radius: 3px;
  content: "";
  height: 10px;
  margin-right: 14px;
  width: 10px;
}

.capability-grid div:nth-child(3n)::before {
  background: #d9001b;
}

.solution-contact {
  background: #F8FAFB;
}

.solution-contact-inner {
  align-items: center;
  background: #12313b;
  border-radius: 16px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 44px 48px;
}

.solution-contact-inner h2 {
  color: #ffffff;
  font-size: 30px;
  margin: 0;
}

.solution-contact-inner p {
  color: #dbe5e8;
  line-height: 1.8;
  margin: 12px 0 0;
  max-width: 720px;
}

.solution-contact-inner .button {
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .solution-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .solutions-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .solutions-hero .page-title h1 {
    font-size: 32px;
  }

  .solution-card-grid,
  .solution-process-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;
    padding: 24px;
  }

  .solution-contact-inner {
    padding: 30px 24px;
  }

  .solution-contact-inner h2 {
    font-size: 25px;
  }
}

.application-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
}

.application-index {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.application-card:nth-child(3) .application-index {
  color: var(--coral);
}

.application-card:nth-child(4) .application-index {
  color: #977b00;
}

.home-brands {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

.brand-wordmark {
  align-items: center;
  background: var(--surface);
  border: 1px solid #e2e8ee;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  height: 64px;
  min-height: 64px;
  padding: 0 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-wordmark:hover {
  border-color: #ccd9df;
  box-shadow: 0 14px 30px rgba(18, 49, 59, 0.1);
  transform: translateY(-3px);
}

.brand-wordmark strong {
  color: var(--teal-dark);
  font-size: 1.12rem;
}

.brand-wordmark span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
  max-width: 145px;
  text-align: right;
}

.brand-wordmark span::after {
  color: var(--coral);
  content: " →";
}

.home-contact-cta {
  background: var(--teal-dark);
  color: #ffffff;
  padding: 28px 0;
}

.contact-cta-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.contact-cta-inner h2 {
  font-size: 1.9rem;
  line-height: 1.18;
  margin: 0;
}

.contact-cta-inner p {
  color: #dbe5e8;
  line-height: 1.6;
  margin: 6px 0 0;
  max-width: 720px;
}

.contact-cta-inner .eyebrow {
  color: var(--lime);
  margin: 0 0 6px;
}

.contact-cta-inner .button {
  flex: 0 0 auto;
  min-height: 44px;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 150px 1fr auto;
  padding: 18px;
}

.news-date {
  color: var(--teal-dark);
  font-weight: 800;
}

.tag {
  background: var(--aqua);
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 8px;
}

.cta-band {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.cta-band h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin: 0;
}

.cta-band p {
  color: #dbe5e8;
  margin: 10px 0 0;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  background: var(--surface);
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
  color: var(--teal-dark);
}

tr:last-child td {
  border-bottom: 0;
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-panel h2 {
  margin-top: 0;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label,
.consent {
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  background: #ffffff;
  border: 1px solid #bfcfc9;
  border-radius: 8px;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

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

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--coral);
}

.field-error {
  color: #a63224;
  font-size: 0.88rem;
  margin: 0;
  min-height: 1.2em;
}

.consent {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.consent input {
  margin-top: 5px;
}

.form-status {
  border-radius: 8px;
  margin: 0;
  min-height: 1.6em;
  padding: 0;
}

.form-status.success {
  background: #e8f7ed;
  color: #23623a;
  padding: 10px 12px;
}

.form-status.error {
  background: #F8FAFB;
  color: #9a2c1f;
  padding: 10px 12px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1.15fr;
}

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

.contact-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.contact-item span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
}

.contact-item strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 4px;
}

.contact-proof {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  margin-top: 18px;
  padding: 18px;
}

.contact-proof strong {
  display: block;
  margin-bottom: 6px;
}

.placeholder-map {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 119, 109, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(8, 119, 109, 0.1) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 28px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  min-height: 220px;
  padding: 24px;
}

.site-footer {
  background: #12313b;
  color: #ffffff;
  padding: 26px 0 6px;
}

.footer-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.site-footer h2,
.site-footer h3 {
  line-height: 1.28;
  margin: 0 0 4px;
}

.site-footer h2 {
  font-size: 17px;
}

.site-footer h3 {
  font-size: 14px;
}

.site-footer p,
.site-footer a {
  color: #dbe5e8;
  font-size: 13px;
}

.site-footer p {
  line-height: 1.5;
  margin: 0;
  max-width: 24em;
}

.site-footer a {
  display: block;
  line-height: 1.4;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #bdcbd0;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 8px;
  padding-top: 6px;
}

.muted {
  color: var(--muted);
}

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

@media (min-width: 961px) {
  body:has(.home-applications) .hero {
    min-height: 680px;
    padding-bottom: 170px;
    padding-top: 88px;
  }

  body:has(.home-applications) .hero > .impact-strip {
    background: transparent;
    bottom: 30px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    transform: none;
    width: 100%;
  }

  body:has(.home-applications) .impact-grid {
    backdrop-filter: blur(8px);
    background: rgba(96, 58, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(118, 72, 38, 0.16);
    max-width: 1080px;
  }

  body:has(.home-applications) .impact-item {
    align-content: center;
    background: transparent;
    min-height: 92px;
    padding: 16px 24px;
  }

  body:has(.home-applications) .impact-item + .impact-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  body:has(.home-applications) .impact-item strong {
    color: #ffffff;
    font-size: 34px;
  }

  body:has(.home-applications) .impact-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    margin-top: 7px;
  }

  body:has(.home-applications) .hero + .home-advantages {
    padding-top: 72px;
  }

  body:has(.home-applications) main .section {
    padding-bottom: 88px;
    padding-top: 88px;
  }

  body:has(.home-applications) main .section-heading {
    gap: 14px;
    margin-bottom: 40px;
    max-width: 760px;
  }

  body:has(.home-applications) main .section-heading .eyebrow {
    color: var(--lime);
    font-size: 16px;
    font-weight: 900;
  }

  body:has(.home-applications) main .section-heading h2 {
    color: var(--teal-dark);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
  }

  body:has(.home-applications) main .section-heading > p:last-child {
    color: #5b6872;
    font-size: 16px;
    line-height: 1.8;
  }

  body:has(.home-applications) .card,
  body:has(.home-applications) .promise-card,
  body:has(.home-applications) .application-card,
  body:has(.home-applications) .brand-tile,
  body:has(.home-applications) .brand-wordmark {
    border-color: #e2e8ee;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(18, 49, 59, 0.06);
  }

  body:has(.home-applications) .card,
  body:has(.home-applications) .promise-card,
  body:has(.home-applications) .application-card {
    padding: 30px;
  }

  body:has(.home-applications) .card:hover,
  body:has(.home-applications) .promise-card:hover,
  body:has(.home-applications) .application-card:hover,
  body:has(.home-applications) .brand-tile:hover {
    border-color: #cdd9df;
    box-shadow: 0 16px 34px rgba(18, 49, 59, 0.12);
    transform: translateY(-4px);
  }

  body:has(.home-applications) .impact-strip + .section,
  body:has(.home-applications) .impact-strip + .section + .section-soft {
    padding-bottom: 88px;
    padding-top: 88px;
  }

  body:has(.home-applications) .impact-strip + .section + .section-soft .promise-grid {
    align-items: stretch;
  }

  body:has(.home-applications) .impact-strip + .section + .section-soft .promise-card {
    gap: 14px;
    grid-template-rows: 42px auto 1fr auto;
    height: 280px;
    min-height: 280px;
    padding: 30px;
  }

  body:has(.home-applications) .promise-number {
    height: 42px;
    width: 54px;
  }

  body:has(.home-applications) .promise-card h3 {
    font-size: 20px;
  }

  body:has(.home-applications) .promise-card p {
    color: #5b6872;
    font-size: 15px;
    line-height: 1.75;
  }

  body:has(.home-applications) .promise-card .card-link {
    align-self: end;
  }

  body:has(.home-applications) .application-grid {
    align-items: stretch;
  }

  body:has(.home-applications) .application-card {
    grid-template-rows: auto 28px auto 1fr auto;
    min-height: 390px;
  }

  body:has(.home-applications) .application-card::before {
    height: 6px;
  }

  body:has(.home-applications) .application-index {
    align-items: center;
    background: var(--surface-soft);
    border-radius: 8px;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    width: 44px;
  }

  body:has(.home-applications) .application-card p {
    color: #5b6872;
    font-size: 15px;
    line-height: 1.75;
  }

  body:has(.home-applications) .application-card .card-link {
    align-self: end;
  }

  body:has(.home-applications) .brand-wall {
    gap: 16px;
  }

  body:has(.home-applications) .brand-wordmark {
    height: 72px;
    min-height: 72px;
    padding: 0 24px;
  }

  body:has(.home-applications) .brand-wordmark:hover {
    border-color: #cdd9df;
    box-shadow: 0 14px 30px rgba(18, 49, 59, 0.11);
    transform: translateY(-3px);
  }

  body:has(.home-applications) .home-contact-cta {
    background: var(--bg);
    padding: 28px 0;
  }

  body:has(.home-applications) .contact-cta-inner {
    background: linear-gradient(110deg, #12313b 0%, #1f3f4b 100%);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(18, 49, 59, 0.18);
    color: #ffffff;
    padding: 20px 30px;
  }

  body:has(.home-applications) .contact-cta-inner h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
  }

  body:has(.home-applications) .contact-cta-inner p {
    color: #dbe5e8;
    font-size: 15px;
    line-height: 1.6;
  }

  body:has(.home-applications) .contact-cta-inner .button-primary {
    background: #f5c400;
    color: #12313b;
  }

  body:has(.home-applications) + .site-footer .footer-grid,
  body:has(.home-applications) .site-footer .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  body:has(.home-applications) .site-footer h2,
  body:has(.home-applications) .site-footer h3 {
    margin-bottom: 4px;
  }

  body:has(.home-applications) .site-footer a {
    margin-top: 2px;
  }
}

@media (max-width: 960px) {
  .grid-3,
  .grid-4,
  .promise-grid,
  .impact-grid,
  .signal-grid,
  .scenario-grid,
  .family-nav,
  .metric-row,
  .application-grid,
  .brand-wall,
  .brand-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2,
  .image-feature,
  .media-strip,
  .product-detail-grid,
  .product-group-grid,
  .service-system,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-family-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

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

  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .impact-strip + .section .image-feature {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .impact-strip + .section .image-feature > img {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 118px);
  }

  .brand strong {
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(20, 32, 51, 0.12);
    display: none;
    left: 0;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    padding: 12px 16px 18px;
    position: absolute;
    right: 0;
    top: 66px;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  body:has(.home-applications) .hero-content {
    top: 0;
    transform: none;
  }

  .hero h1,
  .page-title h1 {
    font-size: 2.05rem;
  }

  .hero p,
  .page-title p {
    font-size: 1rem;
  }

  .hero .eyebrow span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .cta-band h2 {
    font-size: 1.6rem;
  }

  .grid-3,
  .grid-4,
  .promise-grid,
  .impact-grid,
  .signal-grid,
  .scenario-grid,
  .family-nav,
  .metric-row,
  .application-grid,
  .brand-wall,
  .brand-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 24px 0 6px;
  }

  .footer-grid {
    gap: 10px;
  }

  .footer-bottom {
    margin-top: 8px;
    padding-top: 6px;
  }

  .form-panel {
    padding: 20px;
  }

  .card,
  .promise-card,
  .scenario-card,
  .product-group,
  .line-panel,
  .form-panel {
    padding: 20px;
  }

  .impact-item {
    min-height: auto;
    padding: 22px 20px;
  }

  .family-nav a {
    min-height: 74px;
  }

  .impact-strip + .section {
    padding-bottom: 52px;
    padding-top: 54px;
  }

  .impact-strip + .section .statement {
    min-height: 0;
    padding: 26px 24px;
  }

  .impact-strip + .section .metric-row {
    align-items: stretch;
    gap: 16px;
  }

  .impact-strip + .section .metric {
    min-height: 0;
  }

  .impact-strip + .section + .section-soft {
    padding-bottom: 54px;
    padding-top: 52px;
  }

  .impact-strip + .section + .section-soft .section-heading {
    margin-bottom: 32px;
  }

  .impact-strip + .section + .section-soft .promise-card {
    height: auto;
    min-height: 250px;
  }

  .application-card {
    min-height: 220px;
  }

  .brand-wordmark {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .brand-wordmark span {
    max-width: 120px;
    text-align: right;
  }

  .home-contact-cta {
    padding: 26px 0;
  }

  .contact-cta-inner h2 {
    font-size: 1.55rem;
  }

  .contact-cta-inner .button {
    width: 100%;
  }

  .product-detail-body {
    padding: 20px;
  }

  .table-wrap {
    margin-inline: -12px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  /* Homepage mobile-first refinements */
  body:has(.home-applications) .container {
    width: min(var(--max), calc(100% - 32px));
  }

  body:has(.home-applications) .hero {
    align-items: center;
    flex-direction: column;
    min-height: 78svh;
    padding: 48px 0 42px;
    text-align: center;
  }

  body:has(.home-applications) .hero > .impact-strip {
    background: transparent;
    margin-top: 28px;
    padding: 0;
    transform: none;
    width: 100%;
  }

  body:has(.home-applications) .hero > .impact-strip .impact-grid {
    backdrop-filter: blur(8px);
    background: rgba(96, 58, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    overflow: hidden;
  }

  body:has(.home-applications) .hero > .impact-strip .impact-item {
    background: transparent;
  }

  body:has(.home-applications) .hero-content {
    margin-inline: auto;
    width: 100%;
  }

  body:has(.home-applications) .hero h1 {
    display: -webkit-box;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.25;
    margin-inline: auto;
    max-width: 340px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body:has(.home-applications) .hero p {
    line-height: 1.7;
    margin-inline: auto;
    max-width: 90%;
  }

  body:has(.home-applications) .hero-actions {
    align-items: center;
    gap: 12px;
  }

  body:has(.home-applications) .hero-actions .button {
    height: 44px;
    max-width: 280px;
    min-height: 44px;
    width: 100%;
  }

  body:has(.home-applications) .impact-strip {
    padding: 6px 0 8px;
  }

  body:has(.home-applications) .impact-grid {
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.home-applications) .impact-item {
    align-content: center;
    min-height: 96px;
    padding: 16px;
    text-align: center;
  }

  body:has(.home-applications) .impact-item strong {
    font-size: 1.7rem;
  }

  body:has(.home-applications) .impact-item span {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-top: 7px;
  }

  body:has(.home-applications) .section {
    padding-block: 58px;
  }

  body:has(.home-applications) .impact-strip + .section,
  body:has(.home-applications) .impact-strip + .section + .section-soft {
    padding-block: 58px;
  }

  body:has(.home-applications) .impact-strip + .section .image-feature {
    gap: 24px;
  }

  body:has(.home-applications) .impact-strip + .section .statement {
    padding: 24px 20px;
  }

  body:has(.home-applications) .impact-strip + .section .statement h2 {
    font-size: 1.55rem;
    line-height: 1.35;
  }

  body:has(.home-applications) .impact-strip + .section .metric-row {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 16px !important;
  }

  body:has(.home-applications) .impact-strip + .section .metric {
    background: var(--surface);
    border: 1px solid #e2e8ee;
    border-left: 4px solid var(--teal);
    border-radius: 12px;
    min-height: 78px;
    padding: 14px 16px;
  }

  body:has(.home-applications) .impact-strip + .section .image-feature > img {
    margin-top: 4px;
  }

  body:has(.home-applications) .impact-strip + .section + .section-soft .promise-grid {
    gap: 12px;
  }

  body:has(.home-applications) .impact-strip + .section + .section-soft .promise-card {
    gap: 9px;
    height: auto;
    min-height: 200px;
    padding: 18px;
  }

  body:has(.home-applications) .impact-strip + .section + .section-soft .promise-card h3 {
    font-size: 19px;
  }

  body:has(.home-applications) .impact-strip + .section + .section-soft .promise-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  body:has(.home-applications) .home-applications .container {
    overflow: visible;
  }

  body:has(.home-applications) .application-grid {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    overflow-x: auto;
    padding: 4px 16px 18px;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body:has(.home-applications) .application-grid::-webkit-scrollbar {
    display: none;
  }

  body:has(.home-applications) .application-card {
    flex: 0 0 85%;
    min-height: 350px;
    scroll-snap-align: start;
    box-shadow: 0 8px 22px rgba(18, 49, 59, 0.08);
  }

  body:has(.home-applications) .brand-wall {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.home-applications) .brand-wordmark {
    align-items: center;
    height: 72px;
    justify-content: center;
    padding: 10px;
    text-align: center;
  }

  body:has(.home-applications) .brand-wordmark strong {
    font-size: 0.98rem;
    text-align: center;
  }

  body:has(.home-applications) .brand-wordmark span {
    display: none;
  }

  body:has(.home-applications) .home-contact-cta {
    padding-block: 26px;
    text-align: center;
  }

  body:has(.home-applications) .contact-cta-inner {
    align-items: center;
    gap: 14px;
  }

  body:has(.home-applications) .contact-cta-inner p {
    margin-inline: auto;
  }

  body:has(.home-applications) .contact-cta-inner .button {
    height: 48px;
    max-width: 280px;
    min-height: 48px;
  }
}

/* Final inner-page hero override: keep homepage untouched and restore the approved p1 style. */
.solutions-hero,
.products-page .product-hero,
.service-page .service-hero,
.about-hero {
  align-items: center !important;
  background-color: #2a2018 !important;
  background-image: none !important;
  color: #ffffff !important;
  display: flex !important;
  isolation: isolate !important;
  min-height: 420px !important;
  overflow: hidden !important;
  padding: 88px 0 78px !important;
  position: relative !important;
}

.solutions-hero::before,
.products-page .product-hero::before,
.service-page .service-hero::before,
.about-hero::before {
  background: var(--hero-image) var(--inner-hero-position, center center) / cover no-repeat !important;
  content: "" !important;
  filter: saturate(0.82) contrast(0.92) brightness(0.88) !important;
  inset: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  transform: scale(1.01) !important;
  z-index: 0 !important;
}

.solutions-hero::after,
.products-page .product-hero::after,
.service-page .service-hero::after,
.about-hero::after {
  background:
    linear-gradient(90deg, rgba(42, 32, 24, 0.56) 0%, rgba(72, 55, 40, 0.42) 45%, rgba(160, 115, 62, 0.20) 100%),
    linear-gradient(0deg, rgba(90, 60, 36, 0.18), rgba(90, 60, 36, 0.18)) !important;
  content: "" !important;
  inset: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: 1 !important;
}

.solutions-hero > .container,
.products-page .product-hero > .container,
.service-page .service-hero > .container,
.about-hero > .container {
  position: relative !important;
  z-index: 2 !important;
}

.solutions-hero .hero-content,
.products-page .product-hero .hero-content,
.service-page .service-hero .hero-content,
.about-hero .hero-content {
  align-items: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  left: 23% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 760px !important;
  min-height: 300px !important;
  padding-top: 0 !important;
  position: absolute !important;
  text-align: left !important;
  top: 43% !important;
  transform: translateY(-50%) !important;
  width: min(58vw, 760px) !important;
}

.solutions-hero h1,
.products-page .product-hero h1,
.service-page .service-hero h1,
.about-hero h1 {
  color: #ffffff !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.18 !important;
  max-width: 760px !important;
  text-align: left !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24) !important;
}

.solutions-hero p,
.products-page .product-hero p,
.service-page .service-hero p,
.about-hero p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 720px !important;
  text-align: left !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24) !important;
}

.solutions-hero .eyebrow,
.products-page .product-hero .eyebrow,
.service-page .service-hero .eyebrow,
.about-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9) !important;
  text-align: left !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24) !important;
}

@media (max-width: 768px) {
  .solutions-hero .hero-content,
  .products-page .product-hero .hero-content,
  .service-page .service-hero .hero-content,
  .about-hero .hero-content {
    left: 24px !important;
    max-width: calc(100% - 48px) !important;
    top: 45% !important;
    width: calc(100% - 48px) !important;
  }
}

/* Unified inner-page title area: no large image hero on column pages. */
body .hero.solutions-hero,
body.products-page .hero.product-hero,
body.service-page .hero.service-hero,
body.about-v3 .hero.about-hero,
body.case-detail-page .hero.case-hero {
  background: #f6f8f9 !important;
  background-color: #f6f8f9 !important;
  background-image: none !important;
  color: #183746 !important;
  display: flex !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 88px 0 80px !important;
  position: relative !important;
}

body .hero.solutions-hero::before,
body.products-page .hero.product-hero::before,
body.service-page .hero.service-hero::before,
body.about-v3 .hero.about-hero::before,
body.case-detail-page .hero.case-hero::before {
  content: none !important;
  display: none !important;
}

body .hero.solutions-hero::after,
body.products-page .hero.product-hero::after,
body.service-page .hero.service-hero::after,
body.about-v3 .hero.about-hero::after,
body.case-detail-page .hero.case-hero::after {
  content: none !important;
  display: none !important;
}

body .hero.solutions-hero > .container.hero-content.page-title,
body.products-page .hero.product-hero > .container.hero-content.page-title,
body.service-page .hero.service-hero > .container.hero-content.page-title,
body.about-v3 .hero.about-hero > .container.hero-content.page-title,
body.case-detail-page .hero.case-hero > .container.hero-content.page-title {
  align-items: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  left: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--max) !important;
  min-height: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  position: relative !important;
  text-align: left !important;
  top: auto !important;
  transform: none !important;
  width: min(var(--max), calc(100% - 32px)) !important;
  z-index: 1 !important;
}

body .hero.solutions-hero > .container.hero-content.page-title h1,
body.products-page .hero.product-hero > .container.hero-content.page-title h1,
body.service-page .hero.service-hero > .container.hero-content.page-title h1,
body.about-v3 .hero.about-hero > .container.hero-content.page-title h1,
body.case-detail-page .hero.case-hero > .container.hero-content.page-title h1 {
  color: #183746 !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.18 !important;
  margin: 0 !important;
  text-align: left !important;
  text-shadow: none !important;
}

body .hero.solutions-hero > .container.hero-content.page-title p,
body.products-page .hero.product-hero > .container.hero-content.page-title p,
body.service-page .hero.service-hero > .container.hero-content.page-title p,
body.about-v3 .hero.about-hero > .container.hero-content.page-title p,
body.case-detail-page .hero.case-hero > .container.hero-content.page-title p {
  color: #65717d !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 14px !important;
  max-width: 900px !important;
  text-align: left !important;
  text-shadow: none !important;
}

body.case-detail-page .hero.case-hero .eyebrow {
  color: #d8a84e !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  margin: 0 0 14px !important;
}

body.contact-v3 .contact-title {
  background: #f6f8f9 !important;
  padding: 88px 0 80px !important;
}

body.contact-v3 .contact-title h1 {
  color: #183746 !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.18 !important;
}

body.contact-v3 .contact-title p {
  color: #65717d !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
  margin-top: 14px !important;
}

@media (max-width: 768px) {
  body .hero.solutions-hero,
  body.products-page .hero.product-hero,
  body.service-page .hero.service-hero,
  body.about-v3 .hero.about-hero,
  body.case-detail-page .hero.case-hero {
    padding: 56px 0 !important;
  }

  body .hero.solutions-hero > .container.hero-content.page-title,
  body.products-page .hero.product-hero > .container.hero-content.page-title,
  body.service-page .hero.service-hero > .container.hero-content.page-title,
  body.about-v3 .hero.about-hero > .container.hero-content.page-title,
  body.case-detail-page .hero.case-hero > .container.hero-content.page-title {
    left: auto !important;
    max-width: calc(100% - 48px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    top: auto !important;
    width: calc(100% - 48px) !important;
  }

  body .hero.solutions-hero > .container.hero-content.page-title h1,
  body.products-page .hero.product-hero > .container.hero-content.page-title h1,
  body.service-page .hero.service-hero > .container.hero-content.page-title h1,
  body.about-v3 .hero.about-hero > .container.hero-content.page-title h1,
  body.case-detail-page .hero.case-hero > .container.hero-content.page-title h1 {
    font-size: clamp(30px, 8.4vw, 38px) !important;
    line-height: 1.2 !important;
  }

  body .hero.solutions-hero > .container.hero-content.page-title p,
  body.products-page .hero.product-hero > .container.hero-content.page-title p,
  body.service-page .hero.service-hero > .container.hero-content.page-title p,
  body.about-v3 .hero.about-hero > .container.hero-content.page-title p,
  body.case-detail-page .hero.case-hero > .container.hero-content.page-title p,
  body.contact-v3 .contact-title p {
    font-size: 16px !important;
    line-height: 1.72 !important;
  }

  body.contact-v3 .contact-title {
    padding: 56px 0 !important;
  }
}

/* Homepage service capabilities */
.service-capabilities {
  background: #f7f8f9;
  padding: 94px 0 56px;
}

.service-capabilities__inner {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 40px;
  width: 100%;
}

.service-capabilities__header {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.service-capabilities__title {
  color: #203249;
  font-size: 48px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
  white-space: nowrap;
}

.service-capabilities__description {
  color: #66717f;
  font-size: 16px;
  line-height: 1.9;
  margin: 24px auto 0;
  max-width: 900px;
  text-align: center;
}

.service-capabilities__description span {
  display: block;
}

.service-capabilities__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
}

.v2-showcase main :where(.section-heading p, .service-capabilities__description, .service-capabilities__item-text, .case-card p, .case-card dd, .contact-cta-inner p),
.solutions-categories :where(.section-heading p, .solution-card > p:not(.scene-meta)),
.solutions-process :where(.section-heading p, .solution-process-grid p),
.solution-configs :where(.section-heading p, .config-summary, .case-meta-group p),
body.products-page main :where(.catalog-heading p, .direction-card p, .catalog-product-name, .catalog-product-note, .catalog-product-meta, .catalog-cta p),
body.service-page main :where(.section-heading p, .promise-card p, .service-range-card p, .mobile-contact-standard p),
body.about-v3 main :where(.about-heading p, .about-lead p, .position-card p, .proof-card p, .honor-card span),
body.contact-v3 main :where(.contact-title p, .contact-heading p, .contact-panel p, .contact-info p, .contact-method strong, .contact-method a, .qr-card p) {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
}

.service-capabilities__item {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e3e8ec;
  border-radius: 0;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 298px;
  padding: 34px 30px 30px;
  text-align: left;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-capabilities__item:hover,
.service-capabilities__item:focus-visible {
  border-color: #d4dbe1;
  box-shadow: 0 14px 30px rgba(28, 45, 66, 0.05);
  transform: translateY(-2px);
}

.service-capabilities__icon {
  align-items: center;
  display: inline-flex;
  height: 68px;
  justify-content: flex-start;
  width: 68px;
}

.service-capabilities__icon svg {
  display: block;
  height: 62px;
  overflow: visible;
  width: 62px;
}

.service-capabilities__stroke,
.service-capabilities__stroke-gold,
.service-capabilities__fill-soft,
.service-capabilities__fill-slate {
  stroke: #203249;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-capabilities__stroke {
  fill: none;
}

.service-capabilities__stroke-gold {
  fill: none;
  stroke: #aa8542;
}

.service-capabilities__fill-slate {
  fill: #edf1f4;
}

.service-capabilities__fill-soft {
  fill: #efe5d2;
}

.service-capabilities__fill-gold {
  fill: #aa8542;
  stroke: none;
}

.service-capabilities__fill-navy {
  fill: #203249;
  stroke: none;
}

.service-capabilities__item-title {
  color: #203249;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.32;
  margin: 22px 0 13px;
}

.service-capabilities__item-text {
  color: #66717f;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

.service-capabilities__item-text span {
  display: block;
}

.service-capabilities__accent {
  background: #aa8542;
  display: block;
  height: 1px;
  margin-top: auto;
  opacity: .55;
  width: 30px;
}

/* Final no-image inner title override. Keep homepage hero carousel untouched. */
html body .hero.solutions-hero,
html body.products-page .hero.product-hero,
html body.service-page .hero.service-hero,
html body.about-v3 .hero.about-hero,
html body.case-detail-page .hero.case-hero {
  align-items: center !important;
  background: #f6f8f9 !important;
  background-color: #f6f8f9 !important;
  background-image: none !important;
  color: #12263a !important;
  display: flex !important;
  isolation: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 72px 0 64px !important;
  position: relative !important;
}

html body .hero.solutions-hero::before,
html body.products-page .hero.product-hero::before,
html body.service-page .hero.service-hero::before,
html body.about-v3 .hero.about-hero::before,
html body.case-detail-page .hero.case-hero::before,
html body .hero.solutions-hero::after,
html body.products-page .hero.product-hero::after,
html body.service-page .hero.service-hero::after,
html body.about-v3 .hero.about-hero::after,
html body.case-detail-page .hero.case-hero::after {
  background: none !important;
  content: none !important;
  display: none !important;
}

html body .hero.solutions-hero > .container.hero-content.page-title,
html body.products-page .hero.product-hero > .container.hero-content.page-title,
html body.service-page .hero.service-hero > .container.hero-content.page-title,
html body.about-v3 .hero.about-hero > .container.hero-content.page-title,
html body.case-detail-page .hero.case-hero > .container.hero-content.page-title {
  align-items: flex-start !important;
  color: #12263a !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  left: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--max) !important;
  min-height: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  position: relative !important;
  text-align: left !important;
  top: auto !important;
  transform: none !important;
  width: min(var(--max), calc(100% - 32px)) !important;
  z-index: 1 !important;
}

html body .hero.solutions-hero > .container.hero-content.page-title h1,
html body.products-page .hero.product-hero > .container.hero-content.page-title h1,
html body.service-page .hero.service-hero > .container.hero-content.page-title h1,
html body.about-v3 .hero.about-hero > .container.hero-content.page-title h1,
html body.case-detail-page .hero.case-hero > .container.hero-content.page-title h1 {
  color: #12263a !important;
  font-size: clamp(32px, 3.5vw, 44px) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  text-align: left !important;
  text-shadow: none !important;
}

html body .hero.solutions-hero > .container.hero-content.page-title p,
html body.products-page .hero.product-hero > .container.hero-content.page-title p,
html body.service-page .hero.service-hero > .container.hero-content.page-title p,
html body.about-v3 .hero.about-hero > .container.hero-content.page-title p,
html body.case-detail-page .hero.case-hero > .container.hero-content.page-title p {
  color: #5f6f7c !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
  margin: 14px 0 0 !important;
  max-width: 900px !important;
  text-align: left !important;
  text-shadow: none !important;
}

html body.case-detail-page .hero.case-hero .eyebrow {
  color: #d8b24a !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  margin: 0 0 12px !important;
  text-shadow: none !important;
}

html body.contact-v3 .contact-title {
  background: #f6f8f9 !important;
  color: #12263a !important;
  padding: 72px 0 64px !important;
}

html body.contact-v3 .contact-title h1 {
  color: #12263a !important;
  font-size: clamp(32px, 3.5vw, 44px) !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
}

html body.contact-v3 .contact-title p {
  color: #5f6f7c !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
  margin-top: 14px !important;
  text-shadow: none !important;
}

@media (max-width: 768px) {
  html body .hero.solutions-hero,
  html body.products-page .hero.product-hero,
  html body.service-page .hero.service-hero,
  html body.about-v3 .hero.about-hero,
  html body.case-detail-page .hero.case-hero,
  html body.contact-v3 .contact-title {
    padding: 48px 0 44px !important;
  }

  html body .hero.solutions-hero > .container.hero-content.page-title,
  html body.products-page .hero.product-hero > .container.hero-content.page-title,
  html body.service-page .hero.service-hero > .container.hero-content.page-title,
  html body.about-v3 .hero.about-hero > .container.hero-content.page-title,
  html body.case-detail-page .hero.case-hero > .container.hero-content.page-title {
    max-width: calc(100% - 48px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: calc(100% - 48px) !important;
  }

  html body .hero.solutions-hero > .container.hero-content.page-title h1,
  html body.products-page .hero.product-hero > .container.hero-content.page-title h1,
  html body.service-page .hero.service-hero > .container.hero-content.page-title h1,
  html body.about-v3 .hero.about-hero > .container.hero-content.page-title h1,
  html body.case-detail-page .hero.case-hero > .container.hero-content.page-title h1,
  html body.contact-v3 .contact-title h1 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  html body .hero.solutions-hero > .container.hero-content.page-title p,
  html body.products-page .hero.product-hero > .container.hero-content.page-title p,
  html body.service-page .hero.service-hero > .container.hero-content.page-title p,
  html body.about-v3 .hero.about-hero > .container.hero-content.page-title p,
  html body.case-detail-page .hero.case-hero > .container.hero-content.page-title p,
  html body.contact-v3 .contact-title p {
    font-size: 16px !important;
    line-height: 1.68 !important;
  }
}

/* Mobile final polish: compact navigation, single-column reading flow, and no unfinished placeholders. */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body:not(.nav-open) {
    overflow-y: auto !important;
  }

  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  section,
  [id],
  .category-block,
  .direction-outline-block {
    scroll-margin-top: 80px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner,
  .nav-shell {
    display: grid;
    gap: 0 !important;
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 0 !important;
    padding-top: 0;
  }

  .brand {
    align-self: center;
    flex: 0 0 auto;
    grid-column: 1;
    grid-row: 1;
    height: 30px;
    max-width: none !important;
    min-width: 0 !important;
    overflow: hidden;
    width: 82px;
  }

  .brand-logo {
    height: 24px !important;
    max-width: none !important;
    object-fit: contain;
    object-position: left center;
    width: 189px !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-toggle-lines {
    gap: 5px;
  }

  .nav-toggle-lines span {
    background: #183746;
    border-radius: 999px;
    height: 2px;
    width: 20px;
  }

  .site-nav {
    background: #fff;
    border: 0;
    box-shadow: none;
    display: grid !important;
    gap: 0 !important;
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    left: auto;
    margin: 0 !important;
    max-height: none;
    overflow: hidden;
    padding: 0 !important;
    pointer-events: auto;
    position: static;
    right: auto;
    top: auto !important;
    width: 100%;
  }

  body.nav-open .site-nav {
    display: grid !important;
    pointer-events: auto;
  }

  .site-nav a {
    align-items: center;
    border-radius: 7px;
    color: #344657;
    display: flex;
    font-size: 9px !important;
    font-weight: 650;
    justify-content: center;
    min-height: 30px !important;
    min-width: 0;
    overflow: hidden;
    padding: 0 1px !important;
    text-align: center;
    white-space: nowrap;
    width: 100%;
  }

  .site-nav a[aria-current="page"],
  .site-nav a.active {
    background: rgba(216, 168, 78, .16);
    color: #183746;
  }

  /* Keep Chinese product and service terms intact on narrow screens. */
  body :where(h1, h2, h3, h4, p, li, dt, dd, figcaption),
  main .impact-item span,
  main .service-capabilities__description span,
  main .service-capabilities__item-text span,
  main .contact-method strong,
  main .contact-method a,
  main .honor-card span {
    line-break: strict;
    overflow-wrap: break-word;
    word-break: normal;
  }

  body :where(h1, h2, h3, h4) {
    text-wrap: balance;
  }

  body :where(p, li, dt, dd, figcaption),
  main .impact-item span,
  main .service-capabilities__description span,
  main .service-capabilities__item-text span,
  main .contact-method strong,
  main .contact-method a,
  main .honor-card span {
    text-wrap: pretty;
  }

  .keep-phrase {
    display: inline-block;
    white-space: nowrap;
  }

  .mobile-contact-standard {
    padding-block: 26px !important;
    color: #fff;
  }

  .mobile-contact-standard .mobile-contact-standard-inner {
    width: min(var(--max), calc(100% - 32px));
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    margin-inline: auto;
    padding: 20px 30px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: linear-gradient(110deg, #12313b 0%, #1f3f4b 100%) !important;
    box-shadow: 0 18px 40px rgba(18, 49, 59, .18) !important;
    text-align: center;
  }

  .mobile-contact-standard .mobile-contact-standard-copy,
  .mobile-contact-standard .mobile-contact-standard-actions {
    width: 100%;
    margin: 0 !important;
    text-align: center;
  }

  .mobile-contact-standard .solution-phone-icon {
    display: none;
  }

  .mobile-contact-standard h2 {
    margin: 0 !important;
    font-size: 1.55rem !important;
    line-height: 1.35 !important;
    text-wrap: balance;
  }

  .mobile-contact-standard p {
    max-width: 30rem;
    margin: 8px auto 0 !important;
    font-size: .95rem !important;
    line-height: 1.7 !important;
    text-wrap: pretty;
  }

  .mobile-contact-standard .cta-tags {
    justify-content: center;
    margin-top: 12px;
  }

  .mobile-contact-standard .mobile-contact-standard-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .mobile-contact-standard .button {
    width: 100% !important;
    max-width: 280px;
    min-height: 48px;
    margin: 0 auto !important;
    justify-content: center;
  }

  html body.products-page .outline-product-card h3,
  html body.products-page .catalog-product-body h3,
  html body.products-page .catalog-product-note,
  html body.products-page .catalog-product-meta,
  html body.products-page .product-modal-card h2,
  html body.contact-v3 .contact-method strong,
  html body.contact-v3 .contact-method a {
    line-break: strict;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero h1,
  .page-title h1,
  html body .hero.solutions-hero > .container.hero-content.page-title h1,
  html body.products-page .hero.product-hero > .container.hero-content.page-title h1,
  html body.service-page .hero.service-hero > .container.hero-content.page-title h1,
  html body.about-v3 .hero.about-hero > .container.hero-content.page-title h1,
  html body.case-detail-page .hero.case-hero > .container.hero-content.page-title h1,
  html body.contact-v3 .contact-title h1 {
    font-size: clamp(28px, 8vw, 32px) !important;
    line-height: 1.18 !important;
    text-wrap: balance;
  }

  .section-heading h2,
  .catalog-heading h2,
  .about-heading h2,
  .contact-heading h2,
  .case-copy h2,
  .solution-contact h2,
  .case-cta h2 {
    font-size: clamp(24px, 7vw, 28px) !important;
    line-height: 1.24 !important;
    text-wrap: balance;
  }

  .section,
  .catalog-section,
  .contact-section,
  .case-section,
  .about-section,
  .direction-browse-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  html body .hero.solutions-hero,
  html body.products-page .hero.product-hero,
  html body.service-page .hero.service-hero,
  html body.about-v3 .hero.about-hero,
  html body.case-detail-page .hero.case-hero,
  html body.contact-v3 .contact-title {
    min-height: 0 !important;
    padding: 42px 0 38px !important;
  }

  .advantage-grid,
  .case-grid,
  .solution-card-grid,
  .solution-process-grid,
  .config-grid,
  .direction-card-grid,
  .brand-logo-grid,
  .product-catalog-grid,
  .promise-grid,
  .service-range-grid,
  .position-grid,
  .process-line,
  .proof-grid,
  .qr-grid,
  .case-insight-grid,
  .case-process-grid,
  .service-capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-main,
  .case-detail-layout,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .solution-card-placeholder,
  .product-image-placeholder,
  .product-placeholder,
  .catalog-product-placeholder,
  .placeholder {
    display: none !important;
  }

  .brand-logo-grid {
    gap: 12px !important;
  }

  .brand-logo-card {
    min-height: 78px !important;
  }

  .brand-logo-card img {
    max-height: 46px !important;
    max-width: 82% !important;
    object-fit: contain;
  }

  .product-card img,
  .case-image img,
  .solution-detail-media img,
  .company-scene-card img,
  .qr-box img {
    max-width: 100%;
  }

  .qr-box {
    max-width: 220px;
    margin-inline: auto;
  }

  .floating-nav,
  .floating-buttons,
  .floating-toolbar,
  .side-toolbar,
  .scroll-buttons,
  .back-to-top,
  [class*="back-to-top"],
  [class*="floating"],
  [class*="scroll-button"] {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .service-capabilities__title {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.24;
    white-space: normal;
  }

  .advantage-grid,
  .case-grid,
  .solution-card-grid,
  .solution-process-grid,
  .config-grid,
  .direction-card-grid,
  .brand-logo-grid,
  .product-catalog-grid,
  .promise-grid,
  .service-range-grid,
  .position-grid,
  .process-line,
  .proof-grid,
  .qr-grid,
  .case-insight-grid,
  .case-process-grid,
  .service-capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--max), calc(100% - 36px));
  }

  .brand {
    width: 82px;
  }

  .brand-logo {
    height: 24px !important;
    width: 189px !important;
  }

  .section,
  .catalog-section,
  .contact-section,
  .case-section,
  .about-section,
  .direction-browse-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .site-nav a {
    min-height: 30px !important;
  }
}

/* Inner page title card polish final override: after all legacy hero rules. */
html body .hero.solutions-hero,
html body.products-page .hero.product-hero,
html body.service-page .hero.service-hero,
html body.about-v3 .hero.about-hero,
html body.contact-v3 .contact-title {
  background: #f6f8fb !important;
  border-bottom: 1px solid #e6edf3 !important;
  box-shadow: 0 14px 30px rgba(16, 36, 56, .045) !important;
  min-height: 276px !important;
  padding: 60px 0 52px !important;
}

html body .hero.solutions-hero > .container.hero-content.page-title,
html body.products-page .hero.product-hero > .container.hero-content.page-title,
html body.service-page .hero.service-hero > .container.hero-content.page-title,
html body.about-v3 .hero.about-hero > .container.hero-content.page-title,
html body.contact-v3 .contact-title > .container {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--max) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
  width: min(var(--max), calc(100% - 32px)) !important;
}

html body .hero.solutions-hero > .container.hero-content.page-title h1,
html body.products-page .hero.product-hero > .container.hero-content.page-title h1,
html body.service-page .hero.service-hero > .container.hero-content.page-title h1,
html body.about-v3 .hero.about-hero > .container.hero-content.page-title h1,
html body.contact-v3 .contact-title h1 {
  color: #12263a !important;
  font-size: clamp(38px, 4vw, 48px) !important;
  line-height: 1.18 !important;
  margin: 0 !important;
  text-align: left !important;
}

html body .hero.solutions-hero > .container.hero-content.page-title p,
html body.products-page .hero.product-hero > .container.hero-content.page-title p,
html body.service-page .hero.service-hero > .container.hero-content.page-title p,
html body.about-v3 .hero.about-hero > .container.hero-content.page-title p,
html body.contact-v3 .contact-title p {
  color: #5f6f7c !important;
  font-size: 18px !important;
  line-height: 1.66 !important;
  margin: 12px 0 0 !important;
  max-width: 900px !important;
  text-align: left !important;
}

html body .solutions-categories .section-heading h2,
html body.products-page .direction-browse-section .catalog-heading h2,
html body.service-page main > .section:first-of-type .section-heading h2,
html body.about-v3 #company-intro .about-heading h2,
html body.contact-v3 #inquiry .contact-info h2 {
  font-size: clamp(32px, 3vw, 38px) !important;
  line-height: 1.24 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  html body .hero.solutions-hero,
  html body.products-page .hero.product-hero,
  html body.service-page .hero.service-hero,
  html body.about-v3 .hero.about-hero,
  html body.contact-v3 .contact-title {
    min-height: 220px !important;
    padding: 42px 0 36px !important;
  }

  html body .hero.solutions-hero > .container.hero-content.page-title,
  html body.products-page .hero.product-hero > .container.hero-content.page-title,
  html body.service-page .hero.service-hero > .container.hero-content.page-title,
  html body.about-v3 .hero.about-hero > .container.hero-content.page-title,
  html body.contact-v3 .contact-title > .container {
    width: calc(100% - 48px) !important;
  }

  html body .hero.solutions-hero > .container.hero-content.page-title h1,
  html body.products-page .hero.product-hero > .container.hero-content.page-title h1,
  html body.service-page .hero.service-hero > .container.hero-content.page-title h1,
  html body.about-v3 .hero.about-hero > .container.hero-content.page-title h1,
  html body.contact-v3 .contact-title h1 {
    font-size: clamp(30px, 8vw, 36px) !important;
  }

  html body .solutions-categories .section-heading h2,
  html body.products-page .direction-browse-section .catalog-heading h2,
  html body.service-page main > .section:first-of-type .section-heading h2,
  html body.about-v3 #company-intro .about-heading h2,
  html body.contact-v3 #inquiry .contact-info h2 {
    font-size: clamp(26px, 7vw, 32px) !important;
  }
}

@media (max-width: 680px) {
  html body .mobile-contact-standard .mobile-contact-standard-inner {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  html body .mobile-contact-standard .mobile-contact-standard-copy,
  html body .mobile-contact-standard .mobile-contact-standard-actions,
  html body .mobile-contact-standard h2,
  html body .mobile-contact-standard p {
    text-align: left !important;
  }

  html body .mobile-contact-standard p {
    margin: 8px 0 0 !important;
  }

  html body .mobile-contact-standard .cta-tags {
    justify-content: flex-start !important;
  }

  html body .mobile-contact-standard .mobile-contact-standard-actions {
    align-items: stretch !important;
  }

  html body .mobile-contact-standard .button {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    justify-content: center !important;
  }

  html body.v2-showcase .site-footer .footer-grid,
  html body .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(5, max-content) !important;
    justify-content: start !important;
    column-gap: 9px !important;
    row-gap: 8px !important;
  }

  html body.v2-showcase .site-footer .footer-grid > div:first-child,
  html body .site-footer .footer-grid > div:first-child {
    grid-column: 1 / -1 !important;
  }

  html body.v2-showcase .site-footer .footer-grid > div:nth-child(2),
  html body.v2-showcase .site-footer .footer-grid > div:nth-child(3),
  html body .site-footer .footer-grid > div:nth-child(2),
  html body .site-footer .footer-grid > div:nth-child(3) {
    display: contents !important;
  }

  html body.v2-showcase .site-footer .footer-grid > div:nth-child(2) h3,
  html body .site-footer .footer-grid > div:nth-child(2) h3 {
    grid-column: 1 / -1 !important;
    margin-bottom: 0 !important;
  }

  html body.v2-showcase .site-footer .footer-grid > div:nth-child(3) h3,
  html body .site-footer .footer-grid > div:nth-child(3) h3 {
    display: none !important;
  }

  html body.v2-showcase .site-footer .footer-grid > div:nth-child(n + 2) a,
  html body .site-footer .footer-grid > div:nth-child(n + 2) a {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
}
