/* ======================================================
   二区健康官网 V0.6.0
   一站式功能医学供应链
   ====================================================== */

:root {
  --primary: #1677ff;
  --primary-dark: #0958d9;
  --primary-soft: #eaf3ff;
  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --line: #dbe5f1;
  --bg: #ffffff;
  --bg-soft: #f7fbff;
  --bg-band: #eef6ff;
  --green: #13a879;
  --orange: #f59e0b;
  --violet: #6d5dfc;
  --cyan: #06b6d4;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --container: 1180px;
  --nav-h: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 68px 0;
}

.band {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 229, 241, 0.92);
  backdrop-filter: blur(18px);
}

.navbar.scrolled {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.navbar-inner {
  width: 100%;
  max-width: calc(var(--container) + 40px);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.navbar-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.navbar-links a {
  position: relative;
  padding: 8px 0;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary);
}

.navbar-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: var(--radius);
  color: #fff !important;
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.22);
}

.navbar-cta.active::after {
  display: none;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background:
    linear-gradient(to right, rgba(22, 119, 255, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 119, 255, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #f0f7ff 0%, #ffffff 44%, #f8fdff 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -250px;
  right: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.16), transparent 70%);
}

.lab-strip {
  border-top: 1px solid rgba(203, 213, 225, 0.55);
  border-bottom: 1px solid rgba(203, 213, 225, 0.55);
  background: rgba(255, 255, 255, 0.94);
}

.lab-strip-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100%, var(--container));
  min-height: 86px;
  margin: 0 auto;
  padding: 0 20px;
}

.lab-strip-inner > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.lab-marquee {
  position: relative;
  overflow: hidden;
}

.lab-marquee::before,
.lab-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 70px;
  content: "";
  pointer-events: none;
}

.lab-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.lab-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.lab-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  --lab-scroll-offset: -50%;
  --lab-scroll-duration: 32s;
  animation: labScroll var(--lab-scroll-duration) linear infinite;
  will-change: transform;
}

.lab-logo {
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  min-width: 184px;
  min-height: 58px;
  padding: 9px 14px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.lab-logo img {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
}

.lab-logo strong {
  color: #334155;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}

.lab-logo span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes labScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--lab-scroll-offset), 0, 0);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h) - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 50px;
  padding: 28px 20px 42px;
}

.hero-inner > *,
.page-hero-inner > *,
.split > *,
.grid > * {
  min-width: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 54px;
  padding: 76px 20px 70px;
}

.growth-hero .page-hero-inner {
  align-items: stretch;
  padding-top: 86px;
}

.growth-hero .page-hero-inner > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 20px 0;
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(19, 168, 121, 0.12);
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.page-hero h1 {
  font-size: clamp(38px, 4.4vw, 58px);
}

.highlight {
  color: var(--primary);
}

.lead {
  max-width: 760px;
  color: var(--text);
  font-size: 18px;
  overflow-wrap: anywhere;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(22, 119, 255, 0.24);
}

.btn-secondary {
  color: var(--primary-dark);
  border-color: rgba(22, 119, 255, 0.2);
  background: #fff;
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

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

.proof-item {
  padding: 14px 15px;
  border: 1px solid rgba(219, 229, 241, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #475569;
  font-size: 14px;
  font-weight: 650;
}

.supply-orbit {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  width: min(88%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 119, 255, 0.14), transparent 34%),
    conic-gradient(from 90deg, rgba(22, 119, 255, 0.12), rgba(19, 168, 121, 0.14), rgba(109, 93, 252, 0.12), rgba(22, 119, 255, 0.12));
  box-shadow: 0 30px 70px rgba(22, 119, 255, 0.16);
  animation: orbitPulse 4.5s ease-in-out infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(22, 119, 255, 0.24);
  border-radius: 50%;
}

.orbit-ring::after {
  inset: 25%;
  border-style: solid;
  border-color: rgba(19, 168, 121, 0.18);
}

.orbit-core {
  position: relative;
  z-index: 2;
  width: 220px;
  padding: 28px 24px;
  border: 1px solid rgba(219, 229, 241, 0.95);
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.orbit-core span {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.orbit-core strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.orbit-core small {
  color: var(--muted);
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(219, 229, 241, 0.92);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  font-weight: 800;
  animation: nodeFloat 4s ease-in-out infinite;
}

.node-lab {
  top: 15%;
  left: 15%;
}

.node-ai {
  top: 18%;
  right: 10%;
  animation-delay: 0.4s;
}

.node-nutrition {
  right: 8%;
  bottom: 18%;
  animation-delay: 0.8s;
}

.node-follow {
  left: 12%;
  bottom: 20%;
  animation-delay: 1.2s;
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.025); opacity: 1; }
}

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.visual-card,
.media-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(219, 229, 241, 0.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-card {
  padding: 20px;
}

.dashboard {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #00a3ff);
}

.dashboard-title {
  font-weight: 800;
}

.dashboard-status {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 750;
}

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

.metric {
  padding: 15px 12px;
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.metric b {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

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

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: -56px 0 82px;
  padding: 32px 38px;
  color: #fff;
  background: linear-gradient(135deg, #1677ff, #1d5fe8);
  box-shadow: 0 24px 70px rgba(22, 119, 255, 0.22);
}

.impact-stats div {
  text-align: center;
}

.impact-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.impact-stats span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 700;
}

.flow-list {
  display: grid;
  gap: 10px;
}

.flow-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.flow-index {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 800;
}

.flow-row strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.flow-row small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.flow-tag {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 830;
}

.section-title-nowrap {
  white-space: nowrap;
}

.section-desc {
  color: var(--muted);
  font-size: 17px;
}

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

.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));
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card.pad {
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

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

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 18px;
  font-weight: 850;
}

.icon.green {
  color: #047857;
  background: #e8f8f1;
}

.icon.orange {
  color: #b45309;
  background: #fff4df;
}

.icon.violet {
  color: #5745d8;
  background: #f0efff;
}

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

.capability-card {
  min-height: 250px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.capability-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 21px;
  font-weight: 850;
}

.capability-icon.green {
  color: #047857;
  background: #e8f8f1;
}

.capability-icon.orange {
  color: #b45309;
  background: #fff4df;
}

.capability-icon.violet {
  color: #5745d8;
  background: #f0efff;
}

.capability-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.capability-card p {
  color: var(--muted);
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 48px;
}

.image-cover {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.caption-strip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(12px);
}

.caption-strip strong {
  font-size: 15px;
}

.caption-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 11px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(234, 243, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.negative-list li::before {
  background: #ef4444;
}

.negative-list li::after {
  left: 4px;
  top: 14px;
  width: 9px;
  height: 2px;
  border: 0;
  background: #fff;
  transform: none;
}

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

.process-step {
  position: relative;
  min-height: 148px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.process-step strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.process-step small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  gap: 1px;
  background: var(--line);
}

.table-row > div {
  padding: 15px;
  background: #fff;
}

.table-row.head > div {
  color: var(--ink);
  background: #f3f8ff;
  font-weight: 800;
}

.price-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.formula-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.formula-box b {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.formula-box span {
  color: var(--muted);
  font-size: 13px;
}

.formula-op {
  color: var(--primary);
  font-size: 24px;
  font-weight: 850;
}

.formula-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.quote-card {
  padding: 24px;
}

.quote-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}

.quote-card cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.testimonial-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
}

.testimonial-copy {
  display: grid;
  align-content: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(22, 119, 255, 0.12), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.testimonial-kicker {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-copy h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.08;
}

.testimonial-copy p {
  color: var(--muted);
}

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

.testimonial-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.testimonial-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.testimonial-card cite {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

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

.partner-quote-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  color: rgba(22, 119, 255, 0.22);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.partner-quote-card p {
  margin-top: 18px;
  color: #475569;
  font-size: 15px;
  line-height: 1.85;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  margin-top: auto;
  padding-top: 26px;
}

.quote-person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eef5ff;
}

.quote-person strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.quote-person span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.trust-quote {
  min-height: 430px;
  padding: 54px;
  border: 1px solid rgba(220, 226, 234, 0.9);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff8f3 0%, #fff 58%, #f2f8ff 100%);
  box-shadow: var(--shadow-soft);
}

.trust-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.trust-avatar-row img,
.trust-card img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.trust-avatar-row strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.trust-avatar-row span {
  color: var(--muted);
  font-size: 14px;
}

.trust-quote blockquote {
  max-width: 880px;
  margin: 0;
  color: #475569;
  font-size: clamp(25px, 2.8vw, 42px);
  line-height: 1.55;
  font-weight: 650;
}

.trust-grid {
  display: grid;
  gap: 16px;
}

.trust-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 850;
}

.trust-card p {
  color: var(--text);
  font-size: 16px;
}

.feature-tile {
  text-align: center;
}

.feature-tile .icon {
  margin: 0 auto 28px;
}

.feature-tile h3 {
  font-size: 24px;
}

.feature-tile p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.9;
}

.expert-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.expert-profile {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.expert-profile img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eaf3ff;
}

.expert-profile h3 {
  margin-bottom: 10px;
}

.expert-profile p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.pillar-image {
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: #f7fbff;
}

.pillar-image img {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.pillar-wheel {
  display: grid;
  place-items: center;
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 34%, rgba(22, 119, 255, 0.12) 35% 55%, rgba(20, 184, 166, 0.12) 56% 100%);
  border: 1px solid rgba(22, 119, 255, 0.18);
}

.pillar-wheel strong {
  color: var(--primary-dark);
  font-size: 22px;
}

.pillar-wheel span {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.pillar-wheel span:nth-child(1) {
  top: 18px;
}

.pillar-wheel span:nth-child(2) {
  right: 4px;
}

.pillar-wheel span:nth-child(4) {
  bottom: 18px;
}

.pillar-wheel span:nth-child(5) {
  left: 4px;
}

.supply-guard-head {
  margin-top: 78px;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.brand-cloud span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 14px;
  font-weight: 850;
}

.growth-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.growth-hero-tags span {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

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

.growth-hero-proof div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.growth-hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.growth-hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.growth-resource-board {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 241, 0.95);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(22, 119, 255, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff 0%, #f2f8ff 100%);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: var(--shadow);
}

.growth-resource-board::before {
  content: "";
  position: absolute;
  inset: auto -120px -170px auto;
  width: 360px;
  height: 360px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.12), rgba(19, 168, 121, 0.08));
  transform: rotate(14deg);
}

.board-top,
.board-path,
.board-bottom {
  position: relative;
  z-index: 2;
}

.board-top {
  display: grid;
  gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(219, 229, 241, 0.9);
}

.board-top span {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.board-top strong {
  color: var(--ink);
  font-size: 24px;
}

.board-path {
  display: grid;
  gap: 10px;
}

.path-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 15px;
  border: 1px solid rgba(219, 229, 241, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.path-card span {
  grid-row: 1 / 3;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 900;
}

.path-card strong {
  color: var(--ink);
  font-size: 17px;
}

.path-card small {
  color: var(--muted);
}

.path-card.primary {
  border-color: rgba(22, 119, 255, 0.25);
  background: linear-gradient(135deg, rgba(234, 243, 255, 0.98), #fff);
}

.path-card.accent span {
  color: #047857;
  background: #e8f8f1;
}

.path-line {
  width: 2px;
  height: 16px;
  margin-left: 36px;
  background: linear-gradient(var(--line), rgba(22, 119, 255, 0.4));
}

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

.board-bottom div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.board-bottom strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.board-bottom span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.growth-match-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.match-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.match-row:first-child {
  border-top: 0;
}

.match-row > div {
  min-width: 0;
  padding: 18px 22px;
}

.match-row > div + div {
  border-left: 1px solid var(--line);
  background: #fbfdff;
}

.match-row.head > div {
  color: var(--ink);
  background: #f3f8ff;
  font-weight: 900;
}

.match-row strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.match-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.resource-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, rgba(22, 119, 255, 0.9), rgba(19, 168, 121, 0.7));
}

.resource-card::after {
  content: attr(data-index);
  position: absolute;
  right: 22px;
  top: 16px;
  color: rgba(22, 119, 255, 0.08);
  font-size: 78px;
  line-height: 1;
  font-weight: 900;
}

.resource-card.featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 26px;
  align-items: center;
  min-height: 360px;
}

.resource-card.featured::after {
  font-size: 104px;
}

.resource-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 23px;
}

.resource-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.community-preview {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 241, 0.92);
  border-radius: var(--radius);
  background: #f7fbff;
}

.community-preview img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.community-preview figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.resource-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.resource-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 15px;
}

.resource-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.project-matrix {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.project-matrix div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(219, 229, 241, 0.92);
  border-radius: var(--radius);
  background: #fbfdff;
}

.project-matrix strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.project-matrix span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.region-cloud {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.region-cloud span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #047857;
  background: #e8f8f1;
  font-size: 13px;
  font-weight: 800;
}

.event-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.event-photo {
  position: relative;
  min-width: 0;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.event-photo img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.event-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(12px);
}

.event-photo strong {
  color: #fff;
  font-size: 17px;
}

.event-photo span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

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

.event-category {
  min-width: 0;
  min-height: 158px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.event-category span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 900;
}

.event-category p {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.event-category p + p {
  margin-top: 8px;
}

.event-category p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.cta-band {
  padding: 64px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 88, 217, 0.98), rgba(22, 119, 255, 0.92)),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1600&q=80") center / cover;
}

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

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.2vw, 40px);
}

.cta-band p {
  max-width: 720px;
  opacity: 0.88;
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
}

.footer {
  padding: 58px 0 28px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.9fr 1.1fr;
  gap: 34px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 360px;
  color: #94a3b8;
  font-size: 14px;
}

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

.footer-contact a,
.footer-contact span {
  color: #94a3b8;
  font-size: 15px;
}

.footer-contact a:hover {
  color: #fff;
}

.footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.footer li + li {
  margin-top: 8px;
}

.footer a {
  color: #cbd5e1;
  font-size: 14px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #94a3b8;
  font-size: 13px;
}

.footer-records {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-records a {
  color: #94a3b8;
  font-size: 13px;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
}

.consult-modal.active {
  display: flex;
}

.consult-card {
  position: relative;
  width: min(100%, 420px);
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
  text-align: center;
}

.consult-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

.consult-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 800;
}

.consult-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

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

.consult-qr {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 24px auto 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(22, 119, 255, 0.1) 1px, transparent 1px),
    #f8fbff;
  background-size: 18px 18px;
  color: var(--ink);
  font-weight: 850;
  object-fit: contain;
}

.consult-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .navbar-links {
    gap: 14px;
    font-size: 13px;
  }

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

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

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

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

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

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

  .testimonial-panel {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

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

  .event-showcase {
    grid-template-columns: 1fr;
  }

  .event-photo,
  .event-photo img {
    min-height: 420px;
  }

  .expert-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 66px;
  }

  .navbar-inner {
    padding: 0 14px;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100vh - var(--nav-h));
    padding: 14px;
    background: #fff;
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    overflow-y: auto;
  }

  .navbar-links.open {
    transform: translateX(0);
  }

  .navbar-links a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .navbar-links a.active::after {
    display: none;
  }

  .navbar-cta {
    margin-top: 12px;
    border-bottom: 0 !important;
  }

  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 14px;
  }

  .hero-inner,
  .page-hero-inner {
    width: calc(100% - 28px);
    padding: 54px 0 58px;
    gap: 34px;
  }

  .growth-hero .page-hero-inner {
    padding-top: 54px;
  }

  .growth-hero .page-hero-inner > div:first-child {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .growth-hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-inner > *,
  .page-hero-inner > *,
  .hero-actions,
  .hero-proof,
  .visual-card,
  .media-card {
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-proof,
  .metric-grid,
  .impact-stats,
  .grid-2,
  .grid-3,
  .grid-5,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    margin: -34px 0 58px;
    padding: 28px 20px;
    gap: 22px;
  }

  .lab-strip-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .lab-strip-inner > span {
    text-align: center;
  }

  .lab-track {
    gap: 18px;
  }

  .lab-logo {
    min-width: 168px;
    min-height: 54px;
    padding: 8px 12px;
  }

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

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

  .price-formula {
    grid-template-columns: 1fr;
  }

  .formula-op {
    text-align: center;
  }

  .table-card {
    overflow-x: auto;
  }

  .table-row {
    min-width: 760px;
  }

  .match-row {
    grid-template-columns: 1fr;
    margin: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .match-row.head {
    display: none;
  }

  .match-row > div {
    padding: 16px 18px;
  }

  .match-row > div:first-child {
    position: relative;
    padding-top: 42px;
    color: var(--ink);
    font-weight: 800;
    background: #fff;
  }

  .match-row > div:first-child::before {
    content: "常见卡点";
    position: absolute;
    top: 14px;
    left: 18px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
  }

  .match-row > div + div {
    position: relative;
    padding-top: 42px;
    border-top: 1px solid var(--line);
    border-left: 0;
    background: #f8fbff;
  }

  .match-row > div + div::before {
    content: "二区健康提供的资源";
    position: absolute;
    top: 14px;
    left: 18px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
  }

  .growth-resource-board {
    min-height: 390px;
  }

  .resource-grid,
  .event-category-grid {
    grid-template-columns: 1fr;
  }

  .resource-card.featured {
    grid-template-columns: 1fr;
  }

  .project-matrix {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 560px) {
  .navbar-brand span {
    font-size: 16px;
  }

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

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

  .btn {
    width: 100%;
  }

  .visual-card {
    padding: 14px;
  }

  .growth-resource-board {
    min-height: auto;
    padding: 20px;
  }

  .board-bottom {
    grid-template-columns: 1fr;
  }

  .path-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .path-card span {
    width: 38px;
    height: 38px;
  }

  .path-line {
    margin-left: 33px;
  }

  .match-row > div,
  .resource-card,
  .event-category {
    padding: 20px;
  }

  .resource-card {
    min-height: auto;
  }

  .event-photo,
  .event-photo img {
    min-height: 360px;
  }

  .section-title-nowrap {
    white-space: normal;
  }

  .flow-row {
    grid-template-columns: 32px 1fr;
  }

  .flow-tag {
    grid-column: 2;
  }

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

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

  .supply-orbit {
    min-height: 360px;
  }

  .orbit-core {
    width: 180px;
  }

  .orbit-core strong {
    font-size: 20px;
  }

  .orbit-node {
    min-width: 76px;
    font-size: 13px;
  }

  .capability-card {
    min-height: 190px;
  }

  .testimonial-copy,
  .testimonial-card {
    padding: 24px;
  }

  .trust-quote {
    min-height: auto;
    padding: 28px;
  }

  .partner-quote-card {
    min-height: auto;
    padding: 28px;
  }

  .partner-quotes {
    grid-template-columns: 1fr;
  }

  .trust-card {
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }

  .trust-avatar-row img,
  .trust-card img {
    width: 52px;
    height: 52px;
  }

  .expert-card {
    padding: 28px;
  }

  .expert-profile {
    align-items: flex-start;
    flex-direction: column;
  }

  .pillar-wheel {
    width: min(100%, 260px);
    margin: 0 auto;
  }

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

  .consult-card {
    padding: 28px 20px;
  }
}
