:root {
  --ink: #232a2a;
  --muted: #687273;
  --line: #e0e5e2;
  --paper: #ffffff;
  --mist: #f4f7f3;
  --sage: #dfe9de;
  --deep: #173f3a;
  --green: #3c7d62;
  --blue: #2e6684;
  --clay: #c97d55;
  --shadow: 0 18px 45px rgba(23, 63, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Microsoft YaHei", "Open Sans", Arial, sans-serif;
  line-height: 1.58;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px 42px;
  color: #fff;
  background: rgba(23, 63, 58, 0.18);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 28px rgba(23, 63, 58, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 188px;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: 188px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light,
.site-footer .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark,
.site-footer .brand-logo-dark {
  display: block;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav a {
  padding: 12px 0;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #dff0e0;
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a:focus-visible,
.site-header.is-open .desktop-nav a:hover,
.site-header.is-open .desktop-nav a:focus-visible {
  color: var(--green);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-button svg,
.menu-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-toggle,
.header-cta {
  min-height: 42px;
  padding: 0 16px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
}

.menu-button {
  display: none;
}

.mobile-nav {
  grid-column: 1 / -1;
  display: none;
  padding-top: 12px;
  border-top: 1px solid rgba(104, 114, 115, 0.2);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 28, 27, 0.64), rgba(9, 28, 27, 0.22) 46%, rgba(9, 28, 27, 0.08));
}

.hero-copy {
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  color: #fff;
}

.hero-copy > * {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.image-banner .eyebrow {
  color: #dff0e0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.1rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.2rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  line-height: 1.24;
}

.hero-copy p:not(.eyebrow) {
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: normal;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.dark {
  color: #fff;
  background: var(--deep);
}

.button.light {
  color: var(--deep);
  background: #fff;
}

.button.outline {
  color: var(--deep);
  background: transparent;
  border-color: var(--deep);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip article {
  min-height: 170px;
  padding: 32px 22px;
  text-align: center;
  background: #fff;
}

.service-strip svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 15px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-strip h2 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.service-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.intro-section,
.catalog,
.scenarios,
.faq-section,
.partner-section,
.contact-section {
  padding: 86px 42px;
}

.intro-section,
.scenarios,
.contact-section {
  background: var(--mist);
}

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

.section-copy.centered {
  max-width: 800px;
  text-align: center;
}

.section-copy p:not(.eyebrow),
.split-copy p,
.scenario-grid p,
.faq-list p {
  color: var(--muted);
}

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

.catalog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(360px, 100%);
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.catalog-search svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
}

.product-sections {
  display: grid;
  gap: 46px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-range {
  display: grid;
  gap: 18px;
}

.range-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.range-header h3 {
  margin: 0;
  font-size: 1.55rem;
}

.range-header p {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--muted);
}

.rail-controls {
  display: flex;
  gap: 8px;
}

.rail-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.rail-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding: 4px 0 14px;
}

.product-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef3ef;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(23, 63, 58, 0.84);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-body {
  padding: 16px;
}

.product-body h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.product-body p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.product-meta span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  background: var(--mist);
  font-size: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px 16px;
}

.product-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-note strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--deep);
  border: 1px solid var(--deep);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.empty-state {
  display: none;
  width: min(1180px, 100%);
  margin: 30px auto 0;
  padding: 28px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 3fr);
  gap: clamp(36px, 3.5vw, 48px);
  align-items: center;
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding: 64px 0;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  aspect-ratio: 3840 / 2160;
}

.split-media img,
.split-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

.split-media-video {
  display: none !important;
  background: #e9efec;
  object-fit: contain;
}

.split-media.is-video-active .split-media-poster,
.split-media.is-video-active .split-media-visual,
.split-media.is-video-active .split-media-play {
  display: none;
}

.split-media.is-video-active .split-media-video {
  display: block !important;
}

.split-media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 20px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 63, 58, .9);
  box-shadow: 0 14px 30px rgba(23, 63, 58, .22);
  font: inherit;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.split-media-play:hover {
  background: rgba(23, 63, 58, .98);
  box-shadow: 0 18px 34px rgba(23, 63, 58, .3);
  transform: translate(-50%, -50%) scale(1.04);
}

.split-media-play-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: #fff;
}

.split-media-play-icon svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
  fill: currentColor;
}

.split-media-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.split-media-flow {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-track,
.flow-line {
  fill: none;
  stroke-linecap: round;
}

.flow-track {
  stroke: rgba(255, 255, 255, .26);
  stroke-width: .55;
}

.flow-line {
  stroke-width: 1.2;
  stroke-dasharray: 2.5 3.5;
  opacity: 0;
}

.flow-ring {
  fill: none;
  stroke-width: 1.2;
  stroke-dasharray: 13 5 3 7;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.flow-ring-warm {
  stroke: rgba(242, 173, 105, .9);
}

.flow-ring-cool {
  stroke: rgba(109, 208, 234, .88);
  stroke-dasharray: 6 5 14 4;
}

.flow-core {
  fill: rgba(255, 255, 255, .9);
  filter: drop-shadow(0 0 5px rgba(109, 208, 234, .9));
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.flow-chip {
  position: absolute;
  top: 18%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 63, 58, .82);
  box-shadow: 0 8px 18px rgba(23, 63, 58, .12);
  backdrop-filter: blur(6px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.flow-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 9px currentColor;
}

.flow-chip-warm {
  left: 7%;
  color: #f2c18d;
}

.flow-chip-cool {
  right: 7%;
  color: #a4e4f2;
  transition-delay: 90ms;
}

.split-media.is-active .flow-line {
  animation: flow-dash 1.9s linear infinite;
  opacity: .92;
}

.split-media.is-active .flow-line-delay {
  animation-delay: .55s;
}

.split-media.is-active .flow-ring-warm {
  animation: rotor-ring 5.2s linear infinite;
  opacity: .9;
}

.split-media.is-active .flow-ring-cool {
  animation: rotor-ring-reverse 4.6s linear infinite;
  opacity: .86;
}

.split-media.is-active .flow-core {
  animation: rotor-core 1.8s ease-in-out infinite;
}

.split-media.is-active .flow-chip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes flow-dash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -24; }
}

@keyframes rotor-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotor-ring-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes rotor-core {
  0%,
  100% { opacity: .35; transform: scale(.72); }
  50% { opacity: .95; transform: scale(1.2); }
}

.split-copy {
  max-width: 540px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

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

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

.scenario-grid img {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  object-fit: cover;
}

.scenario-grid h3,
.scenario-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.scenario-grid h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.scenario-grid p {
  margin-bottom: 22px;
  font-size: 0.94rem;
}

.image-banner {
  position: relative;
  display: grid;
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 28, 27, 0.36);
}

.image-banner > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-copy {
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.image-banner.right .banner-copy {
  justify-items: end;
  text-align: right;
}

.banner-copy > * {
  max-width: 620px;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(920px, 100%);
  margin: 34px auto 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::marker {
  content: "";
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 22px;
}

.partner-section {
  scroll-margin-top: 76px;
  color: #fff;
  background: var(--deep);
}

.partner-heading,
.partner-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.partner-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.partner-heading-copy {
  max-width: 760px;
}

.partner-heading .eyebrow,
.partner-form .eyebrow {
  color: #a9d4bd;
}

.partner-heading h2 {
  max-width: 720px;
  margin-bottom: 18px;
}

.partner-heading-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.partner-phone {
  display: grid;
  flex: 0 0 auto;
  gap: 4px;
  min-width: 224px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  transition: border-color 160ms ease, background 160ms ease;
}

.partner-phone:hover,
.partner-phone:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.partner-phone span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.partner-phone strong {
  font-size: 1.3rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.partner-models {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.partner-models article {
  display: grid;
  grid-template-columns: 44px minmax(0, 180px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.partner-models article > span {
  color: #a9d4bd;
  font-size: 0.8rem;
  font-weight: 900;
}

.partner-models h3,
.partner-models p {
  margin: 0;
}

.partner-models h3 {
  font-size: 1.05rem;
}

.partner-models p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

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

.partner-points p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.partner-points p > span:first-child {
  color: #a9d4bd;
  font-weight: 900;
}

.partner-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 32px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(4, 24, 22, 0.24);
}

.partner-form-heading h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.partner-form-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.partner-form > label,
.partner-form-grid label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 800;
}

.partner-form input[type="text"],
.partner-form input[type="tel"],
.partner-form textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8d3;
  border-radius: 5px;
  outline: none;
  resize: vertical;
}

.partner-form input[type="text"]:focus,
.partner-form input[type="tel"]:focus,
.partner-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60, 125, 98, 0.13);
}

.partner-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.partner-form legend {
  margin-bottom: 9px;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.partner-channel-grid label,
.partner-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.partner-channel-grid input,
.partner-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.partner-honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.partner-submit {
  width: 100%;
  border-radius: 5px;
}

.partner-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.partner-form-status {
  min-height: 22px;
  margin: -6px 0 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.partner-form-status.is-success {
  color: var(--green);
}

.partner-form-status.is-error {
  color: #b3433d;
}

.contact-section {
  background: linear-gradient(180deg, var(--mist), #fff);
}

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

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 54px 42px 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.icp-link {
  display: block;
  width: max-content;
  margin-top: 8px;
}

.icp-link:hover,
.icp-link:focus-visible {
  color: var(--deep);
}

:focus-visible {
  outline: 3px solid rgba(60, 125, 98, 0.35);
  outline-offset: 3px;
}

@media (min-width: 1180px) {
  .product-rail {
    grid-auto-columns: calc((100% - 54px) / 4);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 22px;
  }

  .desktop-nav,
  .header-cta,
  .icon-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

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

  .catalog-heading,
  .range-header {
    align-items: start;
    flex-direction: column;
  }

  .split-section {
    grid-template-columns: 1fr;
    width: min(100% - 44px, 760px);
  }

  .split-copy {
    max-width: none;
  }

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

@media (max-width: 700px) {
  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 154px;
  }

  .hero,
  .hero-copy {
    min-height: 600px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(9, 28, 27, 0.16), rgba(9, 28, 27, 0.72));
  }

  .hero-copy {
    align-content: end;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .intro-section,
  .catalog,
  .scenarios,
  .faq-section,
  .partner-section,
  .contact-section {
    padding: 62px 22px;
  }

  .service-strip,
  .scenario-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-strip article {
    min-height: 144px;
  }

  .product-rail {
    grid-auto-columns: minmax(236px, 78vw);
  }

  .product-footer {
    align-items: start;
    flex-direction: column;
  }

  .split-section {
    width: calc(100% - 44px);
    padding: 62px 0;
  }

  .split-media img,
  .split-media video {
    min-height: 0;
  }

  .image-banner {
    min-height: 460px;
  }

  .image-banner.right .banner-copy {
    justify-items: start;
    text-align: left;
  }

  .partner-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-phone {
    min-width: 0;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .partner-models article {
    grid-template-columns: 36px 1fr;
  }

  .partner-models article p {
    grid-column: 2;
  }

  .partner-form {
    padding: 26px 22px;
  }

  .hero-actions,
  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 70px;
  }

  .brand-logo {
    width: 132px;
  }

  .language-toggle,
  .menu-button {
    min-height: 38px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .button {
    width: 100%;
  }
}

/* ============================================ */
/* 智能客服组件                                   */
/* ============================================ */

:root {
  --chat-clay: #c97d55;
  --chat-bubble-bot: #f4f7f3;
  --chat-bubble-user: #3c7d62;
  --chat-radius: 16px;
}

.chat-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--green));
  border: none;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(23, 63, 58, 0.35);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: chat-fab-pulse 2.6s ease-in-out infinite;
}

.chat-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 38px rgba(23, 63, 58, 0.45);
}

.chat-fab:focus-visible {
  outline: 3px solid rgba(60, 125, 98, 0.5);
  outline-offset: 3px;
}

@keyframes chat-fab-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(23, 63, 58, 0.35), 0 0 0 0 rgba(60, 125, 98, 0.4); }
  50%      { box-shadow: 0 12px 30px rgba(23, 63, 58, 0.35), 0 0 0 12px rgba(60, 125, 98, 0); }
}

.chat-fab svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chat-fab-icon-close {
  display: none;
}

.chat-fab.is-open .chat-fab-icon-open {
  display: none;
}

.chat-fab.is-open .chat-fab-icon-close {
  display: block;
}

/* 客服面板 */
.chat-panel {
  position: fixed;
  right: 28px;
  bottom: 100px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: 372px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 132px);
  overflow: visible; /* 让扒框人物能探出顶栏 */
  background: #fff;
  border-radius: var(--chat-radius);
  box-shadow: 0 24px 60px rgba(23, 63, 58, 0.28);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ===== 扒框人物（从顶栏后探出，扒拉着边沿） ===== */

/* 精灵：放在顶栏之后（DOM 顺序），用负 margin 把它顶到顶栏上方；
   顶栏不透明会自然盖住精灵的下半身，形成"从框后扒拉"的效果 */
.chat-mascot {
  position: relative;
  z-index: 2; /* 低于顶栏，让顶栏盖住精灵下半身 */
  width: 92px;
  height: 92px;
  margin: -58px 0 -34px auto; /* 上探出 58px，下沉 34px 被顶栏遮住 */
  margin-right: 16px;
  pointer-events: none;
  animation: mascot-sway 4.5s ease-in-out infinite;
  transform-origin: bottom center;
}

.chat-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center; /* 脚对齐底部，上半身探出 */
  filter: drop-shadow(0 4px 6px rgba(23, 63, 58, 0.35));
}

@keyframes mascot-sway {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-7px); }
}

.chat-panel .chat-mascot {
  position: absolute;
  top: -120px;
  right: -2px;
  z-index: 4;
  width: 230px;
  height: auto;
  margin: 0;
  pointer-events: none;
  animation: mascot-sway-pet 4.8s ease-in-out infinite;
  transform-origin: 50% 88%;
  will-change: transform;
}

.chat-panel .chat-mascot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 18px rgba(23, 63, 58, 0.24));
}

@keyframes mascot-sway-pet {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .chat-panel .chat-mascot,
  .chat-panel:hover .chat-mascot {
    animation: none;
    transform: none;
  }
}

/* 快捷问题 chips（常驻消息区下方，单行 + 左右箭头翻动） */
.chat-chips {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.chat-chips.is-hidden {
  display: none;
}

/* 左右箭头 */
.chat-chips .chip-arrow {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 160ms ease, color 160ms ease, border-color 160ms ease;
}
.chat-chips .chip-arrow svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chat-chips .chip-arrow:hover {
  color: var(--green);
  border-color: var(--green);
  opacity: 1;
}
.chat-chips .chip-arrow[disabled],
.chat-chips .chip-arrow[aria-disabled="true"] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* 滚动容器 */
.chat-chips .chip-scroll {
  flex: 1 1 auto;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;          /* Firefox 隐藏滚动条 */
  padding: 2px 2px;
}
.chat-chips .chip-scroll::-webkit-scrollbar {
  display: none;                  /* Chrome/Safari 隐藏滚动条 */
}

.chat-chips .chip-scroll button {
  flex: 0 0 auto;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 160ms ease;
}

.chat-chips .chip-scroll button:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* 顶栏 */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 78px;
  padding: 16px 126px 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--green));
  border-radius: var(--chat-radius) var(--chat-radius) 0 0;
  position: relative;
  z-index: 3;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  flex: 0 0 auto;
}

.chat-avatar svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-header h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.chat-status {
  margin: 2px 0 0;
  font-size: 0.76rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b6e2c6;
  box-shadow: 0 0 0 0 rgba(182, 226, 198, 0.7);
  animation: chat-online 2s ease-in-out infinite;
}

@keyframes chat-online {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 226, 198, 0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(182, 226, 198, 0); }
}

.chat-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.chat-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.chat-header .chat-close {
  display: none;
}

.chat-header {
  padding-right: 86px;
}

/* 消息区 */
.chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 16px;
  overflow-y: auto;
  background: var(--mist);
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.chat-msg {
  display: flex;
  gap: 8px;
  max-width: 88%;
  animation: chat-msg-in 280ms ease;
}

@keyframes chat-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-msg.user {
  flex-direction: row-reverse;
  align-self: flex-end;
  margin-left: auto;
}

.chat-bubble {
  padding: 11px 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
  white-space: pre-wrap;
}

.chat-msg.bot .chat-bubble {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-top-left-radius: 4px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.chat-msg.user .chat-bubble {
  color: #fff;
  background: var(--chat-bubble-user);
  border-top-left-radius: 14px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 14px;
}

.chat-msg-avatar {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--deep);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 800;
}

.chat-msg.user .chat-msg-avatar {
  display: none;
}

/* 正在输入 */
.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 14px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-top-left-radius: 4px;
  width: fit-content;
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: chat-typing-bounce 1.3s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes chat-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

/* 输入栏 */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--chat-radius) var(--chat-radius);
}

.chat-input-bar input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  outline: 0;
  transition: border-color 160ms ease;
}

.chat-input-bar input:focus {
  border-color: var(--green);
  background: #fff;
}

.chat-send {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  color: #fff;
  background: var(--chat-clay);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.chat-send:hover {
  background: #b86a42;
  transform: scale(1.06);
}

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.chat-send svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 响应式：手机端铺满 */
@media (max-width: 520px) {
  .partner-points,
  .partner-form-grid,
  .partner-channel-grid {
    grid-template-columns: 1fr;
  }

  .partner-models article {
    gap: 12px;
  }

  .chat-fab {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .chat-fab svg {
    width: 24px;
    height: 24px;
  }

  .chat-panel {
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: 85vh;
    max-height: 85vh;
    border-radius: 0;
    border-top-left-radius: var(--chat-radius);
    border-top-right-radius: var(--chat-radius);
    transform-origin: bottom center;
  }

  .chat-panel .chat-mascot {
    top: -70px;
    right: 40px;
    width: 170px;
  }

  .chat-header {
    min-height: 82px;
    padding-right: 72px;
  }

  .chat-panel.is-open {
    transform: translateY(0) scale(1);
  }
}

/* Final招商区覆盖：确保它排在旧版公共样式之后。 */
.partner-section .partner-heading { align-items: start; margin-bottom: clamp(42px, 5vw, 64px); }
.partner-section .partner-heading-copy { max-width: 700px; }
.partner-section .partner-heading h2 { max-width: 660px; font-size: clamp(2.5rem, 4.8vw, 4.2rem); line-height: 1.04; text-wrap: balance; }
.partner-section .partner-heading-copy > p:last-child { max-width: 58ch; font-size: 1rem; line-height: 1.75; }
.partner-section .partner-heading-actions { display: grid; width: min(250px, 100%); flex: 0 0 auto; gap: 10px; }
.partner-section .partner-response-note { margin: 0; color: rgba(255, 255, 255, .6); font-size: .78rem; text-align: right; }
.partner-section .partner-phone { min-width: 0; padding: 18px 20px; color: var(--deep); background: #a9d4bd; border-color: #a9d4bd; border-radius: 5px; }
.partner-section .partner-phone:hover, .partner-section .partner-phone:focus-visible { color: var(--deep); background: #cbe6d5; border-color: #cbe6d5; }
.partner-section .partner-phone span { color: rgba(23, 63, 58, .72); }
.partner-section .partner-phone strong { font-size: 1.4rem; letter-spacing: .02em; }
.partner-section .partner-grid { grid-template-columns: minmax(0, .95fr) minmax(420px, .78fr); gap: clamp(38px, 6vw, 78px); }
.partner-section .partner-overview-intro { display: grid; grid-template-columns: minmax(110px, .32fr) minmax(0, 1fr); gap: 22px; padding-bottom: 23px; border-bottom: 1px solid rgba(255, 255, 255, .22); }
.partner-section .partner-overview-kicker { margin: 0; color: #a9d4bd; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.partner-section .partner-overview-intro h3 { margin-bottom: 8px; font-size: clamp(1.55rem, 2.4vw, 2rem); line-height: 1.18; }
.partner-section .partner-overview-intro p:last-child { max-width: 42ch; margin-bottom: 0; color: rgba(255, 255, 255, .68); font-size: .92rem; line-height: 1.7; }
.partner-section .partner-models { border-top: 0; }
.partner-section .partner-models article { grid-template-columns: 38px minmax(150px, .55fr) minmax(0, 1fr); gap: 16px; padding: 22px 0; }
.partner-section .partner-models article > span { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border: 1px solid rgba(169, 212, 189, .6); border-radius: 50%; }
.partner-section .partner-models h3 { padding-top: 4px; font-size: 1rem; }
.partner-section .partner-models p { line-height: 1.7; }
.partner-section .partner-points { gap: 0 28px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .16); }
.partner-section .partner-points p { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.partner-section .partner-form { gap: 17px; padding: clamp(25px, 3vw, 36px); border-radius: 10px; box-shadow: 0 22px 52px rgba(4, 24, 22, .28); }
.partner-section .partner-form-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.partner-section .partner-form-topline .eyebrow { margin-bottom: 0; }
.partner-section .partner-form-topline > span { color: var(--muted); font-size: .75rem; font-weight: 700; }
.partner-section .partner-form-heading h3 { margin-bottom: 9px; font-size: clamp(1.55rem, 2.4vw, 2rem); line-height: 1.18; }
.partner-section .partner-form-heading > p:last-child { line-height: 1.6; }
.partner-section .partner-form-grid { gap: 12px; }
.partner-section .partner-form input[type="text"], .partner-section .partner-form input[type="tel"], .partner-section .partner-form textarea { background: #fbfdfb; }
.partner-section .partner-channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.partner-section .partner-channel-grid label { min-height: 42px; padding: 9px 10px; background: #fbfdfb; border: 1px solid #e0e7e2; border-radius: 4px; transition: border-color 160ms ease, background 160ms ease; }
.partner-section .partner-channel-grid label:hover { background: #f1f8f3; border-color: #a9d4bd; }
.partner-section .partner-consent { line-height: 1.5; }
.partner-section .partner-submit { min-height: 48px; }

@media (max-width: 980px) {
  .partner-section .partner-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 34px; }
}
@media (max-width: 700px) {
  .partner-section .partner-heading-actions { width: 100%; }
  .partner-section .partner-response-note { text-align: left; }
  .partner-section .partner-overview-intro { grid-template-columns: 1fr; gap: 10px; }
  .partner-section .partner-grid { grid-template-columns: 1fr; }
  .partner-section .partner-models article { grid-template-columns: 36px 1fr; }
  .partner-section .partner-models article p { grid-column: 2; }
  .partner-section .partner-channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .partner-section .partner-channel-grid { grid-template-columns: 1fr; }
  .partner-section .partner-form-topline { align-items: flex-start; flex-direction: column; gap: 6px; }
}

/* 右下角咨询入口：图标与文字同时表达动作，打开后切换为关闭。 */
.chat-fab {
  display: inline-flex;
  width: auto;
  min-width: 104px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 999px;
}

.chat-fab-label {
  color: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.chat-fab.is-open {
  width: 52px;
  min-width: 52px;
  padding: 0;
}

.chat-fab.is-open .chat-fab-label {
  display: none;
}

@media (max-width: 520px) {
  .chat-fab {
    right: 18px;
    bottom: 18px;
    min-width: 96px;
    height: 50px;
    padding: 0 15px;
  }
}

/* 服务亮点改为连续的信息带，作为 Hero 与正文之间的品牌过渡。 */
.service-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 10px max(22px, calc((100vw - 1180px) / 2));
  background: var(--deep);
  border-bottom: 0;
}

.service-strip article {
  min-height: 136px;
  padding: 22px clamp(16px, 2vw, 28px);
  text-align: left;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.service-strip article:last-child { border-right: 0; }

.service-strip svg {
  width: 25px;
  height: 25px;
  margin: 0 0 17px;
  stroke: #a9d4bd;
}

.service-strip h2 {
  margin-bottom: 7px;
  color: #fff;
  font-size: .98rem;
}

.service-strip p {
  max-width: 24ch;
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 4px 22px;
  }

  .service-strip article {
    min-height: 132px;
    padding: 20px 16px;
  }

  .service-strip article:nth-child(2n) { border-right: 0; }
  .service-strip article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .16); }
}

@media (max-width: 480px) {
  .service-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .service-strip article {
    min-height: 0;
    padding: 20px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .service-strip article:last-child { border-bottom: 0; }
}

/* 首页引导区改为左右叙事，减少空白并把标题与说明分出层级。 */
.intro-section {
  padding: clamp(54px, 6vw, 76px) 42px;
}

.intro-section .section-copy.centered {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "eyebrow paragraph"
    "heading paragraph";
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 16px;
  max-width: 1180px;
  text-align: left;
}

.intro-section .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 18px;
}

.intro-section h2 {
  grid-area: heading;
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.02;
  text-wrap: balance;
}

.intro-section .section-copy p:not(.eyebrow) {
  grid-area: paragraph;
  align-self: center;
  max-width: 50ch;
  margin: 0;
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .intro-section .section-copy.centered {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "heading"
      "paragraph";
    grid-template-rows: auto auto auto;
    gap: 16px;
  }

  .intro-section h2 { max-width: 12ch; }
}

/* 产品区改成更清晰的产品货架，避免卡片与页面底色融在一起。 */
.catalog {
  padding: clamp(68px, 7vw, 94px) 42px;
  background: #f7faf8;
}

.catalog-heading {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.catalog-heading h2 {
  max-width: 560px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.08;
  text-wrap: balance;
}

.catalog-heading h2 span {
  white-space: normal;
}

.catalog-search {
  flex: 0 1 360px;
  min-width: 260px;
  min-height: 52px;
  background: #fff;
  border-color: rgba(23, 63, 58, .12);
  border-radius: 6px;
}

.catalog-heading > div {
  min-width: 0;
  flex: 1 1 auto;
}

.product-sections { gap: 52px; }

.product-range { gap: 20px; }

.range-header {
  align-items: end;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 63, 58, .14);
}

.range-header h3 { font-size: 1.4rem; }

.rail-controls { gap: 6px; }

.rail-controls button {
  width: 44px;
  height: 44px;
  background: #fff;
  border-color: rgba(23, 63, 58, .12);
  border-radius: 6px;
}

.product-rail {
  gap: 16px;
  padding: 4px 0 18px;
  scrollbar-width: none;
}

.product-card {
  border: 1px solid rgba(23, 63, 58, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 63, 58, .06);
}

.product-card:hover {
  box-shadow: 0 18px 36px rgba(23, 63, 58, .12);
}

.product-image { aspect-ratio: 1.15 / 1; }

.product-body { padding: 18px 18px 12px; }

.product-body h4 { font-size: 1.1rem; }

.product-meta { margin-top: 14px; }

.product-meta span {
  border-color: transparent;
  background: #f2f8f4;
}

.product-footer { padding: 4px 18px 18px; }

.product-link {
  min-height: 36px;
  border-radius: 5px;
  background: #f2f8f4;
}

/* 固定卡片内部的内容轨道，让不同长度的文案仍保持同一条对齐线。 */
.product-body {
  display: grid;
  grid-template-rows: 30px 48px 54px;
  align-content: start;
}

.product-body h4 {
  display: flex;
  height: 30px;
  align-items: flex-start;
  margin: 0;
}

.product-body p {
  display: -webkit-box;
  height: 48px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta {
  height: 54px;
  align-content: start;
  margin-top: 0;
  overflow: hidden;
}

.product-footer {
  box-sizing: border-box;
  height: 86px;
  min-height: 70px;
  overflow: hidden;
}

.product-note {
  flex: 1 1 auto;
  height: 64px;
  min-width: 0;
  min-height: 64px;
  overflow: hidden;
}

.product-note strong {
  max-height: 2.75em;
  overflow: hidden;
}

.product-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .product-footer {
    height: 134px;
    min-height: 134px;
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .catalog { padding: 62px 22px; }
  .catalog-heading h2 { max-width: none; }
  .catalog-search { width: 100%; }
}

/* 口号与产品入口合并为同一段叙事，保留品牌口号但减少重复留白。 */
.catalog {
  padding: clamp(52px, 5vw, 72px) 42px;
}

.catalog-lede {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: end;
  column-gap: clamp(40px, 8vw, 132px);
  padding-bottom: clamp(38px, 5vw, 58px);
  border-bottom: 1px solid rgba(23, 63, 58, .14);
}

.catalog-lede .eyebrow { margin-bottom: 16px; }

.catalog-lede h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
  line-height: 1.03;
  text-wrap: balance;
}

.catalog-lede > p {
  max-width: 50ch;
  margin: 0;
  align-self: center;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.7;
}

.catalog-heading {
  padding-top: clamp(34px, 4vw, 52px);
}

@media (max-width: 700px) {
  .catalog {
    padding: 48px 22px 62px;
  }

  .catalog-lede {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding-bottom: 36px;
  }

  .catalog-lede h2 { max-width: 12ch; }
  .catalog-lede > p { align-self: start; }
  .catalog-heading { padding-top: 34px; }
}

/* 将品牌口号收成产品区上方的窄横幅，不再占用独立内容区。 */
.catalog {
  padding: clamp(36px, 4vw, 56px) 42px clamp(68px, 7vw, 94px);
}

.catalog-lede {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 28px;
  margin-bottom: clamp(26px, 3vw, 40px);
  padding: 14px 20px;
  border: 1px solid rgba(23, 63, 58, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 63, 58, .06);
}

.catalog-lede-copy {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 14px;
}

.catalog-lede .eyebrow {
  flex: 0 0 auto;
  margin: 0;
  font-size: .72rem;
}

.catalog-lede h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
  white-space: nowrap;
}

.catalog-lede > p {
  max-width: none;
  font-size: .86rem;
  line-height: 1.55;
}

.catalog-heading { padding-top: 0; }

@media (max-width: 700px) {
  .catalog {
    padding: 34px 22px 62px;
  }

  .catalog-lede {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 26px;
    padding: 14px 16px;
  }

  .catalog-lede-copy {
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .catalog-lede h2 {
    white-space: normal;
    font-size: 1.42rem;
  }

  .catalog-lede > p { font-size: .83rem; }
}

/* 宽屏时把口号收成整个页面左侧的固定竖向旗帜，不随页面滚动。 */
.catalog-lede-dock {
  display: contents;
}

.catalog-lede-handle {
  display: none;
}

@media (min-width: 1360px) {
  .catalog-lede {
    position: absolute;
    inset: 0 auto auto 0;
    display: flex;
    width: 76px;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
    padding: 26px 10px 20px;
    overflow: visible;
    border: 1px solid rgba(169, 212, 189, .22);
    border-left: 0;
    border-radius: 0 24px 20px 0;
    background: var(--deep);
    box-shadow: 0 18px 38px rgba(23, 63, 58, .22), 6px 0 0 rgba(231, 172, 118, .08);
    color: #fff;
    transition: transform 220ms ease;
  }

  .catalog-lede::before {
    position: absolute;
    top: 16px;
    left: 18px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #e7ac76;
    box-shadow: 0 0 12px rgba(231, 172, 118, .38);
    content: "";
  }

  .catalog-lede-dock {
    position: fixed;
    top: 50%;
    bottom: auto;
    left: 0;
    z-index: 10;
    display: block;
    width: 76px;
    height: 400px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .catalog-lede-dock > * {
    pointer-events: auto;
  }

  .catalog-lede-dock.is-hidden .catalog-lede {
    transform: translateX(-100%);
  }

  .catalog-lede-dock:hover .catalog-lede,
  .catalog-lede-dock:focus-within .catalog-lede {
    transform: translateX(0);
  }

  .catalog-lede-handle {
    position: absolute;
    top: 50%;
    right: -19px;
    left: auto;
    display: grid;
    width: 19px;
    height: 56px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 0 9px 9px 0;
    background: #e7ac76;
    box-shadow: 0 10px 22px rgba(178, 109, 57, .24);
    transform: translateY(-50%);
    transition: opacity 180ms ease;
  }

  .catalog-lede-handle span {
    display: grid;
    gap: 5px;
  }

  .catalog-lede-handle i {
    display: block;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--deep);
  }

  .catalog-lede::after {
    position: absolute;
    right: 16px;
    bottom: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e7ac76;
    box-shadow: 0 0 0 4px rgba(231, 172, 118, .12);
    content: "";
  }

  .catalog-lede-copy {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }

  .catalog-lede-brand {
    color: #e7ac76;
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: .2em;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 0 14px rgba(231, 172, 118, .22);
  }

  .catalog-lede .eyebrow {
    writing-mode: vertical-rl;
    margin: 0;
    color: #b9ddc4;
    font-size: .94rem;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.24;
    text-orientation: mixed;
  }

  .catalog-lede h2 {
    width: auto;
    height: 208px;
    max-width: none;
    color: #fff;
    font-size: 1.44rem;
    letter-spacing: .11em;
    line-height: 1.24;
    text-orientation: mixed;
    white-space: normal;
    writing-mode: vertical-rl;
  }

    .catalog-heading { padding-top: 0; }
  }

@media (prefers-reduced-motion: reduce) {
  .catalog-lede,
  .catalog-lede-handle,
  .split-media-visual,
  .flow-chip {
    transition: none;
  }

  .split-media.is-active .flow-line,
  .split-media.is-active .flow-ring-warm,
  .split-media.is-active .flow-ring-cool,
  .split-media.is-active .flow-core {
    animation: none;
  }

  .split-media.is-active .flow-line,
  .split-media.is-active .flow-ring-warm,
  .split-media.is-active .flow-ring-cool {
    opacity: .45;
  }

  .split-media.is-active .flow-core {
    opacity: .7;
  }

}

/* 居家场景改为影像画廊：让生活空间成为主角，减少模板卡片感。 */
.scenarios {
  background: #edf4ef;
}

.scenarios > .section-copy.centered {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "heading paragraph";
  align-items: end;
  column-gap: clamp(34px, 7vw, 110px);
  row-gap: 12px;
  max-width: 1180px;
  text-align: left;
}

.scenarios > .section-copy.centered .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
}

.scenarios > .section-copy.centered h2 {
  grid-area: heading;
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.1vw, 3.7rem);
  line-height: 1.08;
  text-wrap: balance;
}

.scenarios > .section-copy.centered > p:not(.eyebrow) {
  grid-area: paragraph;
  justify-self: end;
  max-width: 38ch;
  margin: 0 0 4px;
  font-size: 1.02rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.scenario-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: clamp(500px, 42vw, 590px);
  margin-top: clamp(34px, 4vw, 52px);
}

.scenario-grid article,
.scenario-grid article:first-child {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  overflow: hidden;
  padding: 28px 24px 24px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 18px 42px rgba(23, 63, 58, .14);
  isolation: isolate;
  transition: transform 360ms cubic-bezier(.22, 1, .36, 1), box-shadow 360ms ease;
}

.scenario-grid article:first-child {
  grid-row: 1 / -1;
}

.scenario-grid article::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 28, 27, .02) 22%, rgba(9, 28, 27, .82) 100%);
  content: "";
}

.scenario-grid img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 360ms ease;
}

.scenario-grid article h3,
.scenario-grid article p {
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-right: 0;
}

.scenario-grid article h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(1.18rem, 1.65vw, 1.65rem);
  line-height: 1.18;
  text-wrap: balance;
}

.scenario-grid article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .92rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.scenario-grid article h3,
.scenario-grid article p {
  transform: translateY(0);
}

.scenario-grid article p {
  max-width: 42ch;
}

.scenario-grid article:hover,
.scenario-grid article:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(23, 63, 58, .22);
}

.scenario-grid article:hover img,
.scenario-grid article:focus-within img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

@media (max-width: 700px) {
  .scenarios > .section-copy.centered {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "heading"
      "paragraph";
    gap: 12px;
    text-align: left;
  }

  .scenarios > .section-copy.centered h2 {
    max-width: 12ch;
  }

  .scenarios > .section-copy.centered > p:not(.eyebrow) {
    justify-self: start;
    max-width: 42ch;
    margin-top: 4px;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 12px;
  }

  .scenario-grid article,
  .scenario-grid article:first-child {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scenario-grid article,
  .scenario-grid img {
    transition: none;
  }

  .scenario-grid article:hover,
  .scenario-grid article:focus-within {
    transform: none;
  }
}

.partner-dialog {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background: rgba(9, 28, 27, .78);
  backdrop-filter: blur(12px);
}

.partner-dialog[hidden] {
  display: none;
}

.partner-dialog-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.partner-dialog-close {
  position: fixed;
  top: clamp(18px, 4vh, 32px);
  right: clamp(18px, 4vw, 56px);
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: rgba(23, 63, 58, .72);
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(4, 24, 22, .2);
}

.partner-dialog-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  grid-template-areas: "copy form";
  width: min(1120px, calc(100vw - 48px));
  height: min(760px, calc(100vh - 48px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(4, 24, 22, .34);
}

.partner-dialog-close:hover,
.partner-dialog-close:focus-visible {
  background: var(--green);
}

.partner-dialog-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.partner-dialog .partner-heading {
  position: relative;
  z-index: 1;
  width: auto;
}

.partner-dialog-copy {
  grid-area: copy;
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 36px 34px 30px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.partner-dialog .partner-heading {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.partner-dialog .partner-heading-copy {
  max-width: none;
}

.partner-dialog .partner-heading h2 {
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1.12;
  white-space: pre-line;
}

.partner-dialog .partner-heading-copy > p:last-child {
  white-space: pre-line;
}

.partner-dialog .partner-overview {
  display: flex;
  flex: 1;
  min-height: 0;
  padding: 34px 0 0;
  flex-direction: column;
}

.partner-dialog .partner-form {
  grid-area: form;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  align-self: stretch;
  min-width: 0;
  margin: 24px;
  gap: 12px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(4, 24, 22, .2);
}

.partner-dialog .partner-form-heading,
.partner-dialog .partner-region-field,
.partner-dialog .partner-form fieldset,
.partner-dialog .partner-note-field,
.partner-dialog .partner-consent,
.partner-dialog .partner-submit,
.partner-dialog .partner-form-status {
  grid-column: 1 / -1;
}

.partner-dialog .partner-form-grid {
  display: contents;
}

.partner-dialog .partner-overview-intro {
  padding-top: 0;
  padding-bottom: 16px;
}

.partner-dialog .partner-overview-intro h3 {
  font-size: 1.55rem;
}

.partner-dialog .partner-route-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.partner-dialog .partner-route {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.partner-dialog .partner-route strong {
  color: #fff;
  font-size: .92rem;
}

.partner-dialog .partner-route span {
  color: rgba(255, 255, 255, .62);
  font-size: .8rem;
  text-align: right;
}

.partner-dialog .partner-overview-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}

.partner-dialog .partner-overview-contact {
  margin-top: auto;
  padding-top: 24px;
}

.partner-dialog .partner-response-note {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
}

.partner-dialog .partner-phone {
  width: 100%;
  min-width: 0;
}

.partner-dialog .partner-models article {
  grid-template-columns: 32px minmax(120px, .7fr) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
}

.partner-dialog .partner-models article > span {
  width: 28px;
  height: 28px;
}

.partner-dialog .partner-models p {
  font-size: .82rem;
  line-height: 1.45;
}

.partner-dialog .partner-points {
  gap: 0 16px;
  margin-top: 12px;
}

.partner-dialog .partner-points p {
  padding: 7px 0;
  font-size: .8rem;
}

.partner-dialog .partner-form-heading h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.partner-dialog .partner-form-heading > p:last-child {
  line-height: 1.45;
}

/* 招商浮窗：让表单内容从顶部到底部均匀落位，避免右下角留下大块空白。 */
.partner-dialog .partner-form {
  align-content: space-between;
  padding: 16px 24px 24px;
}

.partner-dialog .partner-form-status {
  min-height: 0;
  margin: 0;
}

.partner-dialog .partner-form input[type="text"],
.partner-dialog .partner-form input[type="tel"],
.partner-dialog .partner-form textarea {
  padding: 9px 10px;
}

.partner-dialog .partner-channel-grid {
  gap: 6px;
}

.partner-dialog .partner-channel-grid label {
  min-height: 36px;
  padding: 7px 8px;
}

.partner-dialog .partner-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
  width: 100%;
  line-height: 1.35;
}

.partner-dialog .partner-submit {
  min-height: 42px;
}

body.has-partner-dialog {
  overflow: hidden;
}

@media (max-width: 700px) {
  .partner-dialog {
    padding: 14px 12px;
  }

  .partner-dialog-panel {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "form";
    width: calc(100vw - 24px);
    height: calc(100vh - 28px);
    max-height: calc(100vh - 28px);
  }

  .partner-dialog-copy {
    padding: 22px 20px 0;
    border-right: 0;
  }

  .partner-dialog .partner-heading {
    padding: 0;
  }

  .partner-dialog .partner-overview {
    padding-top: 18px;
  }

  .partner-dialog .partner-form {
    margin: 16px;
    padding: 18px;
  }

  .partner-dialog .partner-overview-contact {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-dialog {
    backdrop-filter: none;
  }
}
