
:root {
  --ink: #17231f;
  --ink-soft: #30443d;
  --muted: #697771;
  --line: #e4e1d8;
  --line-strong: #d6d0c2;
  --page: #f7f3ea;
  --surface: #fffdf8;
  --surface-soft: #fbf7ef;
  --green: #2f6b5b;
  --green-dark: #214f43;
  --mint: #6c927f;
  --blue: #b96d4e;
  --navy: #17352e;
  --gold: #c89b52;
  --coral: #b96d4e;
  --shadow-sm: 0 12px 30px rgba(38, 53, 46, 0.07);
  --shadow-md: 0 24px 64px rgba(38, 53, 46, 0.12);
  --shadow-lg: 0 32px 92px rgba(38, 53, 46, 0.18);
  --header-height: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 107, 91, 0.1), transparent 26%),
    radial-gradient(circle at 92% 0%, rgba(185, 109, 78, 0.08), transparent 26%),
    var(--page);
  font-size: 16px;
  line-height: 1.68;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  border-bottom: 1px solid rgba(223, 231, 228, 0.86);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
}

.site-header.scrolled {
  box-shadow: 0 16px 42px rgba(16, 25, 23, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 950;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 8px 16px rgba(22, 119, 255, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(16, 25, 23, 0.05);
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: var(--surface-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-back,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.nav-back {
  color: var(--green-dark);
  border: 1px solid var(--line);
  background: #fff;
}

.nav-cta {
  border: 0;
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 14px 28px rgba(46, 125, 50, 0.22);
}

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

.mobile-menu-btn span,
.mobile-menu-btn::before,
.mobile-menu-btn::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  content: "";
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 72% 16%, rgba(218, 200, 162, 0.28), transparent 30%),
    radial-gradient(circle at 94% 78%, rgba(185, 109, 78, 0.38), transparent 34%),
    linear-gradient(108deg, #142b26 0%, #1b3d34 45%, #2f6555 74%, #7f6043 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.65;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  min-height: 660px;
  padding: 76px 0;
}

.hero-content {
  flex: 0 1 550px;
  max-width: 590px;
}

.hero-visual {
  flex: 1 1 560px;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(0,0,0,.26);
}

.hero-kicker {
  margin: 0 0 14px;
  color: #ead8b7;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .1em;
}

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

h1 {
  margin: 0 0 20px;
  font-size: clamp(52px, 4.6vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 950;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 950;
}

h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
  font-weight: 950;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.82;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 18px 36px rgba(46,125,50,.28);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.full-button {
  width: 100%;
}

.hero-metrics {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics article {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  box-shadow: 0 12px 26px rgba(4,16,35,.12);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-metrics span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

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

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.1);
  font-size: 13px;
}

.hero-tags span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #a7f3b9;
  box-shadow: 0 0 0 4px rgba(167,243,185,.13);
}

/* Sticky anchor */
.anchor-band {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  padding: 12px 0;
  border-bottom: 1px solid rgba(223,231,228,.72);
  background: rgba(245,248,246,.76);
  backdrop-filter: blur(18px);
}

.anchor-scroll {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(16,25,23,.05);
}

.anchor-scroll::-webkit-scrollbar {
  display: none;
}

.anchor-scroll a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.anchor-scroll a:hover,
.anchor-scroll a.active {
  color: #fff;
  background: var(--green-dark);
}

/* Shared sections */
.section {
  padding: 34px 0;
  scroll-margin-top: 150px;
}

.section-soft {
  background: linear-gradient(180deg, transparent 0%, rgba(238,229,211,.58) 50%, transparent 100%);
}

.section-shell {
  padding: 40px;
  border: 1px solid rgba(223,231,228,.92);
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 44px rgba(16,25,23,.06);
  backdrop-filter: blur(8px);
}

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

.section-heading > div {
  flex: 1 1 auto;
}

.section-heading > p {
  flex: 0 1 440px;
  margin-bottom: 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
}

.eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: currentColor;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.overview-card,
.scenario-card,
.guarantee-card,
.operation-card,
.delivery-card,
.analytics-card,
.kpi-card,
.feature-row article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

.overview-card:hover,
.scenario-card:hover,
.guarantee-card:hover,
.operation-card:hover,
.delivery-card:hover,
.analytics-card:hover,
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.overview-card {
  flex: 1 1 calc(33.333% - 11px);
  min-width: 280px;
  padding: 26px;
}

.overview-card p,
.scenario-card p,
.guarantee-card p,
.operation-card p,
.delivery-card p,
.analytics-card p,
.feature-row p {
  color: var(--muted);
}

.title-line,
.kpi-title,
.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.title-line h3,
.title-line h4,
.kpi-title p {
  margin: 0;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 8px 20px rgba(46,125,50,.18);
  font-size: 13px;
  font-weight: 950;
}

.icon-badge svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.overview-card ul,
.module-copy ul,
.analytics-card ul,
.delivery-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.overview-card li,
.module-copy li,
.analytics-card li,
.delivery-card li {
  position: relative;
  padding-left: 18px;
}

.overview-card li::before,
.module-copy li::before,
.analytics-card li::before,
.delivery-card li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

/* Scenarios */
.scenario-layout {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.scenario-visual {
  flex: 1 1 66%;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.scenario-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scenario-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 1 34%;
}

.scenario-card {
  flex: 1 1 0;
  padding: 22px;
}

.chip-row,
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row {
  margin-top: 18px;
}

.chip-row span,
.contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(46,125,50,.12);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46,125,50,.08);
  font-size: 12px;
  font-weight: 900;
}

/* Module section */
.module-shell {
  padding: 42px;
}

.module-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16,25,23,.05);
}

.module-tab {
  flex: 0 0 auto;
  min-width: 150px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  font-weight: 950;
}

.module-tab:last-child {
  border-right: 0;
}

.module-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.module-panel {
  display: flex;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.module-panel[hidden] {
  display: none;
}

.module-copy {
  flex: 0 1 40%;
  padding: 36px;
}

.module-visual {
  flex: 1 1 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, #f0eadf, #fbf8f0);
}

.module-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(16,25,23,.08);
}

/* Flow */
.flow-list {
  display: flex;
  gap: 12px;
}

.flow-list article {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.flow-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border: 8px solid var(--page);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 36px rgba(46,125,50,.22);
  font-weight: 950;
}

.flow-list h3 {
  font-size: 17px;
}

.flow-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Pricing */
.pricing-heading {
  align-items: center;
}

.pricing-heading > div:first-child {
  flex: 1 1 auto;
}

.pricing-rules {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 1 360px;
}

.pricing-rules span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 164px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(46,125,50,.13);
  border-radius: 14px;
  color: var(--green-dark);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,248,244,.92));
  box-shadow: 0 8px 22px rgba(16,25,23,.04);
  font-size: 13px;
  font-weight: 900;
}

.pricing-rules b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  font-size: 12px;
}

.pricing-layout {
  display: flex;
  align-items: stretch;
  gap: 22px;
}

.pricing-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 67%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-copy > h3,
.pricing-copy > p {
  margin-bottom: 0;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.feature-row article {
  flex: 1 1 calc(50% - 7px);
  min-width: 260px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f6fbf7);
}

.pricing-result-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  margin-top: auto;
  padding: 22px;
  border: 1px solid rgba(46,125,50,.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(54,179,126,.14), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,249,244,.96));
}

.pricing-result-card > div:first-child {
  flex: 1 1 420px;
}

.result-kicker {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

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

.result-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 100%;
}

.result-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(46,125,50,.12);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46,125,50,.08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.result-steps i {
  flex: 1 1 auto;
  min-width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46,125,50,.32), rgba(46,125,50,.06));
}

.result-total {
  flex: 0 0 auto;
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 18px 34px rgba(46,125,50,.22);
}

.result-total span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 850;
}

.result-total strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.pricing-phone {
  flex: 0 1 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(83,193,135,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,249,244,.98));
  box-shadow: var(--shadow-sm);
}

.pricing-phone img {
  width: min(100%, 400px);
  border-radius: 28px;
  filter: drop-shadow(0 24px 40px rgba(15,25,23,.18));
}

/* Guarantee / Operation / Delivery */
.guarantee-card,
.operation-card {
  flex: 1 1 calc(33.333% - 11px);
  min-width: 280px;
  padding: 24px;
}

.delivery-card {
  flex: 1 1 calc(25% - 12px);
  min-width: 245px;
  padding: 24px;
}

/* Analytics */
.kpi-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 0;
  padding: 22px;
}

.kpi-card::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, rgba(47,159,88,.18), rgba(69,190,117,.5));
}

.kpi-title {
  margin-bottom: 12px;
}

.kpi-title p {
  font-size: 14px;
  font-weight: 900;
}

.kpi-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.1;
}

.kpi-card em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(46,125,50,.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.analytics-layout {
  display: flex;
  align-items: stretch;
  gap: 22px;
}

.analytics-visual {
  flex: 1 1 68%;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.analytics-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.analytics-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 1 32%;
}

.analytics-card {
  flex: 1 1 0;
  padding: 24px;
}

/* FAQ */
.faq-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.faq-intro {
  flex: 0 1 36%;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 64%;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: #fff;
  text-align: left;
  font-weight: 950;
}

.faq-question::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "+";
  color: var(--green-dark);
  background: rgba(46,125,50,.08);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA */
.contact-section {
  padding-bottom: 132px;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 38px;
  overflow: hidden;
  padding: 46px;
  border: 1px solid rgba(167,243,185,.18);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(54,179,126,.38), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(22,119,255,.2), transparent 30%),
    linear-gradient(135deg, #17352e 0%, #285044 48%, #7c5d43 100%);
  box-shadow: var(--shadow-lg);
}

.contact-card::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  background: rgba(255,255,255,.08);
}

.contact-copy,
.contact-panel {
  position: relative;
  z-index: 1;
}

.contact-copy {
  flex: 1 1 60%;
}

.contact-copy .eyebrow {
  color: #ead8b7;
}

.contact-copy p {
  max-width: 650px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.contact-tags {
  margin: 20px 0 26px;
}

.contact-tags span {
  color: #eafff0;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
}

.contact-panel {
  flex: 0 1 40%;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
  backdrop-filter: blur(18px);
}

.panel-title {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.panel-title strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.panel-title p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.contact-panel ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.contact-panel li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.contact-panel li:last-child {
  border-bottom: 0;
}

.contact-panel li span {
  color: rgba(255,255,255,.68);
}

.contact-panel li strong {
  color: #fff;
  text-align: right;
}

/* Floating tools */
.floating-bar {
  position: fixed;
  right: 24px;
  bottom: calc(24px + var(--safe-bottom));
  left: 24px;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(223,231,228,.85);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.floating-bar.show {
  display: flex;
}

.floating-bar strong {
  display: block;
}

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

.back-top {
  position: fixed;
  right: 24px;
  bottom: calc(100px + var(--safe-bottom));
  z-index: 54;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 950;
}

.back-top.show {
  display: block;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6,19,41,.5);
  backdrop-filter: blur(10px);
}

.modal-backdrop.open {
  display: flex;
}

.modal-card {
  width: min(720px, 100%);
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  font-size: 32px;
}

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

.modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  font-size: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.field-row {
  display: flex;
  gap: 14px;
}

.field-row label {
  flex: 1 1 0;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

.lead-form textarea {
  min-height: 108px;
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(30px + var(--safe-bottom));
  z-index: 110;
  transform: translateX(-50%) translateY(30px);
  opacity: 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
  transition: .2s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 18px;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-back {
    display: none;
  }

  .hero-inner,
  .scenario-layout,
  .module-panel,
  .pricing-layout,
  .analytics-layout,
  .faq-layout,
  .contact-card {
    flex-direction: column;
  }

  .hero-content,
  .hero-visual,
  .scenario-visual,
  .scenario-list,
  .module-copy,
  .module-visual,
  .pricing-copy,
  .pricing-phone,
  .analytics-visual,
  .analytics-list,
  .faq-intro,
  .faq-list,
  .contact-copy,
  .contact-panel {
    flex-basis: auto;
    width: 100%;
    max-width: none;
  }

  .module-visual {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .flow-list {
    flex-wrap: wrap;
  }

  .flow-list article {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 220px;
  }

  .kpi-row {
    flex-wrap: wrap;
  }

  .kpi-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 260px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 28px, 1240px);
  }

  .brand span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    min-height: 0;
    padding: 56px 0;
  }

  h1 {
    font-size: 46px;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .section-shell,
  .module-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .section-heading,
  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading > p,
  .pricing-rules {
    flex-basis: auto;
    width: 100%;
  }

  .pricing-rules {
    justify-content: flex-start;
  }

  .pricing-rules span {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
  }

  .flow-list article,
  .overview-card,
  .guarantee-card,
  .operation-card,
  .delivery-card,
  .feature-row article,
  .kpi-card {
    flex-basis: 100%;
    min-width: 0;
  }

  .module-panel {
    min-height: 0;
  }

  .field-row {
    flex-direction: column;
  }

  .contact-panel li {
    flex-direction: column;
  }

  .contact-panel li strong {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero-actions .button,
  .cta-row .button {
    width: 100%;
  }

  .pricing-rules span {
    flex-basis: 100%;
  }

  .result-steps {
    flex-wrap: wrap;
  }

  .result-steps i {
    display: none;
  }

  .floating-bar {
    right: 12px;
    left: 12px;
    width: auto;
  }
}


/* 2026-07-10 Campus task flow redraw */
.flow-redraw-section {
  padding: 38px 0;
  background:
    radial-gradient(circle at 12% 40%, rgba(46, 125, 50, .055), transparent 32%),
    radial-gradient(circle at 88% 42%, rgba(22, 119, 255, .045), transparent 30%);
}

.flow-redraw-shell {
  position: relative;
  overflow: hidden;
  padding: 52px 44px 48px;
  border-color: rgba(207, 220, 215, .92);
  background:
    radial-gradient(circle at 50% 68%, rgba(47, 183, 101, .045), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(252, 254, 253, .98));
  box-shadow:
    0 24px 64px rgba(16, 25, 23, .075),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}

.flow-redraw-shell::before,
.flow-redraw-shell::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.flow-redraw-shell::before {
  top: -120px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(54, 179, 126, .045);
  filter: blur(12px);
}

.flow-redraw-shell::after {
  right: -110px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(22, 119, 255, .035);
}

.flow-redraw-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}

.flow-redraw-title {
  flex: 1 1 auto;
}

.flow-redraw-title h2 {
  margin-bottom: 0;
}

.flow-redraw-intro {
  flex: 0 1 430px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.flow-timeline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 8px 0 0;
}

.flow-track-line {
  position: absolute;
  top: 46px;
  right: 7.15%;
  left: 7.15%;
  z-index: 0;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(44, 174, 80, .18) 0%,
      rgba(44, 174, 80, .48) 18%,
      rgba(44, 174, 80, .28) 50%,
      rgba(44, 174, 80, .48) 82%,
      rgba(44, 174, 80, .18) 100%
    );
}

.flow-track-line::before {
  position: absolute;
  inset: -5px 0 auto;
  height: 12px;
  content: "";
  background:
    radial-gradient(circle, #2fb765 0 4px, transparent 4.5px)
    0 0 / 16.666% 12px repeat-x;
  opacity: .9;
}

.flow-step {
  position: relative;
  z-index: 1;
  flex: 1 1 14.285%;
  min-width: 0;
  padding: 0 12px;
  text-align: center;
}

.flow-node {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  padding: 6px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 205deg,
      #27ad53 0deg 138deg,
      #1f9fd6 138deg 302deg,
      #dff5e7 302deg 360deg
    );
  box-shadow:
    0 14px 32px rgba(46, 125, 50, .13),
    0 7px 18px rgba(22, 119, 255, .10);
}

.flow-node::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(46, 125, 50, .12);
  border-radius: 50%;
  content: "";
  background: #fff;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .88);
}

.flow-node span {
  position: relative;
  z-index: 1;
  color: #149137;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
}

.flow-step h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.flow-step p {
  max-width: 170px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.72;
}

@media (max-width: 1180px) {
  .flow-timeline {
    flex-wrap: wrap;
    row-gap: 34px;
  }

  .flow-track-line {
    display: none;
  }

  .flow-step {
    flex: 1 1 calc(25% - 12px);
    min-width: 210px;
  }
}

@media (max-width: 820px) {
  .flow-redraw-shell {
    padding: 30px 22px;
  }

  .flow-redraw-heading {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .flow-redraw-intro {
    flex-basis: auto;
    margin-top: 0;
    font-size: 15px;
  }

  .flow-step {
    flex-basis: calc(50% - 8px);
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .flow-timeline {
    flex-direction: column;
    gap: 16px;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 3px 14px;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-align: left;
    box-shadow: 0 10px 24px rgba(16, 25, 23, .045);
  }

  .flow-node {
    grid-row: 1 / 3;
    width: 58px;
    height: 58px;
    margin: 0;
    padding: 5px;
  }

  .flow-node::before {
    inset: 5px;
  }

  .flow-node span {
    font-size: 16px;
  }

  .flow-step h3 {
    align-self: end;
    margin: 0;
    white-space: normal;
  }

  .flow-step p {
    max-width: none;
    margin: 0;
    font-size: 13px;
  }
}


/* 2026-07-10 Global large-title single-line rule */
:where(
  .hero-content h1,
  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2,
  .modal-head h2
) {
  white-space: nowrap;
  text-wrap: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* Hero title: enlarge available width instead of wrapping */
.hero-inner {
  gap: 48px;
}

.hero-content {
  flex: 0 1 690px;
  max-width: 690px;
}

.hero-visual {
  flex: 1 1 520px;
}

.hero-content h1 {
  font-size: clamp(44px, 3.7vw, 60px);
  letter-spacing: -0.055em;
}

/* Section headings stay on one line with responsive sizing */
.section-heading h2,
.flow-redraw-title h2 {
  font-size: clamp(34px, 3vw, 48px);
}

.faq-layout {
  gap: 36px;
}

.faq-intro {
  flex: 0 1 42%;
  min-width: 0;
}

.faq-list {
  flex: 1 1 58%;
}

.faq-intro h2 {
  font-size: clamp(34px, 2.8vw, 46px);
  letter-spacing: -0.045em;
}

.contact-copy {
  flex: 1 1 64%;
  min-width: 0;
}

.contact-panel {
  flex: 0 1 36%;
}

.contact-copy h2 {
  font-size: clamp(34px, 2.8vw, 48px);
  letter-spacing: -0.045em;
}

.modal-head h2 {
  font-size: clamp(28px, 2.2vw, 34px);
}

/* Prevent flex children from forcing title wrapping */
.section-heading > div,
.flow-redraw-title,
.hero-content,
.faq-intro,
.contact-copy,
.modal-head > div {
  min-width: 0;
}

@media (max-width: 1180px) {
  .hero-content,
  .hero-visual,
  .faq-intro,
  .faq-list,
  .contact-copy,
  .contact-panel {
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(42px, 6vw, 58px);
  }

  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(34px, 5vw, 46px);
  }
}

@media (max-width: 820px) {
  .hero-content h1 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .modal-head h2 {
    font-size: clamp(26px, 6vw, 32px);
  }
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(28px, 7.7vw, 38px);
    letter-spacing: -0.06em;
  }

  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: -0.055em;
  }

  .modal-head h2 {
    font-size: 25px;
  }
}


/* 2026-07-10 Mobile single-line title hard fix */
@media (max-width: 820px) {
  :where(
    .hero-content h1,
    .section-heading h2,
    .flow-redraw-title h2,
    .faq-intro h2,
    .contact-copy h2,
    .modal-head h2
  ) {
    display: block;
    width: 100%;
    max-width: none;
    margin-right: 0;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.06;
    transform: none;
  }

  .section-heading,
  .flow-redraw-heading,
  .faq-layout,
  .contact-card,
  .modal-head {
    align-items: flex-start;
  }

  .section-heading > div,
  .flow-redraw-title,
  .faq-intro,
  .contact-copy,
  .modal-head > div {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(27px, 7.4vw, 32px) !important;
    letter-spacing: -0.075em !important;
  }

  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(24px, 6.8vw, 30px) !important;
    letter-spacing: -0.065em !important;
  }

  .modal-head h2 {
    font-size: clamp(22px, 6.1vw, 27px) !important;
    letter-spacing: -0.055em !important;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 27px !important;
    letter-spacing: -0.08em !important;
  }

  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 24px !important;
    letter-spacing: -0.07em !important;
  }

  .modal-head h2 {
    font-size: 22px !important;
  }
}

@media (max-width: 340px) {
  .hero-content h1 {
    font-size: 24px !important;
  }

  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 21px !important;
  }

  .modal-head h2 {
    font-size: 20px !important;
  }
}

/* Xianbao detail-page system: enterprise layout and mobile refinement */
body.page-redraw {
  --enterprise-ink: #17231f;
  --enterprise-muted: #697771;
  --enterprise-line: #e3ddd1;
  --enterprise-blue: #2f6b5b;
  --enterprise-blue-dark: #214f43;
  --enterprise-blue-soft: #eef3ed;
  --enterprise-green: #b96d4e;
  color: var(--enterprise-ink);
  background: #f7f3ea;
  overflow-x: hidden;
}

.page-redraw .site-header {
  border-bottom-color: rgba(146, 164, 181, 0.22);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 8px 26px rgba(23, 47, 72, 0.055);
}

.page-redraw .nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.page-redraw .brand {
  min-width: 0;
  color: var(--enterprise-ink);
  font-weight: 850;
}

.page-redraw .brand img {
  border-radius: 9px;
  filter: drop-shadow(0 7px 16px rgba(47, 107, 91, 0.16));
}

.page-redraw .nav-links {
  min-width: 0;
  border-color: rgba(146, 164, 181, 0.24);
  border-radius: 10px;
  background: #f8f4ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.page-redraw .nav-links a {
  min-height: 36px;
  padding: 0 10px;
  border-radius: 7px;
  color: #617184;
  font-size: 13px;
  font-weight: 700;
}

.page-redraw .nav-links a:hover,
.page-redraw .nav-links a.active {
  color: var(--enterprise-blue-dark);
  background: #fff;
  box-shadow: 0 2px 8px rgba(30, 65, 102, 0.07);
}

.page-redraw .nav-back {
  border-color: rgba(23, 104, 209, 0.18);
  color: var(--enterprise-blue-dark);
  background: #fff;
}

.page-redraw .nav-cta {
  border-radius: 8px;
  background: var(--enterprise-blue-dark);
  box-shadow: 0 8px 18px rgba(33, 79, 67, 0.2);
}

.page-redraw .hero {
  background: linear-gradient(118deg, #142b26 0%, #214f43 48%, #6f5540 100%);
}

.page-redraw .hero::before {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, rgba(47, 107, 91, 0.26), rgba(218, 200, 162, 0.08) 48%, rgba(185, 109, 78, 0.2));
  background-size: 72px 72px, 72px 72px, auto;
}

.page-redraw .hero::after {
  opacity: 0.42;
  background: linear-gradient(90deg, rgba(20, 43, 38, 0.76), transparent 58%, rgba(185, 109, 78, 0.12));
}

.page-redraw .hero-inner {
  min-height: 620px;
  padding: 70px 0;
}

.page-redraw .hero-kicker {
  color: #ead8b7;
  letter-spacing: 0;
}

.page-redraw .hero-content h1 {
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 28px rgba(15, 36, 30, 0.32);
}

.page-redraw .hero-copy {
  color: rgba(235, 244, 252, 0.8);
  line-height: 1.76;
}

.page-redraw .button {
  min-height: 46px;
  border-radius: 9px;
}

.page-redraw .button-primary {
  background: var(--enterprise-blue);
  box-shadow: 0 12px 26px rgba(47, 107, 91, 0.28);
}

.page-redraw .button-secondary {
  border-color: rgba(212, 230, 245, 0.28);
  background: rgba(20, 43, 38, 0.52);
}

.page-redraw .hero-visual img {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 30px 68px rgba(1, 13, 30, 0.32);
}

.page-redraw .hero-metrics {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 222, 240, 0.16);
  border-radius: 14px;
  background: rgba(20, 43, 38, 0.48);
  backdrop-filter: blur(12px);
}

.page-redraw .hero-metrics article {
  min-height: 100px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid rgba(200, 222, 240, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-redraw .hero-metrics article:last-child {
  border-right: 0;
}

.page-redraw .hero-metrics strong {
  font-size: 20px;
}

.page-redraw .hero-tags {
  gap: 8px;
  margin-top: 18px;
}

.page-redraw .hero-tags span {
  min-height: 30px;
  border-color: rgba(200, 222, 240, 0.12);
  color: rgba(229, 241, 250, 0.76);
  background: rgba(20, 43, 38, 0.34);
}

.page-redraw .hero-tags span::before {
  background: #ead8b7;
  box-shadow: none;
}

.page-redraw .anchor-band {
  border-bottom-color: rgba(146, 164, 181, 0.18);
  background: rgba(255, 253, 248, 0.95);
}

.page-redraw .anchor-scroll {
  border-color: rgba(146, 164, 181, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 60, 91, 0.06);
}

.page-redraw .anchor-scroll a {
  border-radius: 8px;
}

.page-redraw .anchor-scroll a:hover,
.page-redraw .anchor-scroll a.active {
  background: var(--enterprise-blue-dark);
}

.page-redraw .section {
  padding: 28px 0;
  border-top: 1px solid rgba(146, 164, 181, 0.16);
}

.page-redraw .section-soft {
  background: #fbf7ef;
}

.page-redraw .section-shell,
.page-redraw .module-shell,
.page-redraw .flow-redraw-shell {
  padding: 44px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-redraw .flow-redraw-shell::before,
.page-redraw .flow-redraw-shell::after {
  display: none;
}

.page-redraw .section-heading,
.page-redraw .flow-redraw-heading {
  margin-bottom: 26px;
}

.page-redraw .section-heading h2,
.page-redraw .flow-redraw-title h2,
.page-redraw .faq-intro h2,
.page-redraw .contact-copy h2 {
  color: var(--enterprise-ink);
  letter-spacing: -0.025em;
}

.page-redraw .section-heading > p,
.page-redraw .flow-redraw-intro,
.page-redraw .faq-intro > p {
  color: var(--enterprise-muted);
  line-height: 1.75;
}

.page-redraw .overview-card,
.page-redraw .scenario-card,
.page-redraw .guarantee-card,
.page-redraw .operation-card,
.page-redraw .delivery-card,
.page-redraw .analytics-card,
.page-redraw .kpi-card,
.page-redraw .feature-row article,
.page-redraw .faq-item {
  border-color: var(--enterprise-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(26, 52, 79, 0.055);
}

.page-redraw .overview-card,
.page-redraw .guarantee-card,
.page-redraw .operation-card,
.page-redraw .delivery-card,
.page-redraw .analytics-card {
  padding: 24px;
}

.page-redraw .icon-badge {
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--enterprise-blue);
  box-shadow: 0 8px 18px rgba(23, 104, 209, 0.16);
}

.page-redraw .scenario-visual,
.page-redraw .analytics-visual {
  border: 1px solid var(--enterprise-line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(26, 52, 79, 0.07);
}

.page-redraw .module-tabs {
  border-color: var(--enterprise-line);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(26, 52, 79, 0.05);
}

.page-redraw .module-tab {
  min-height: 44px;
  border-right-color: var(--enterprise-line);
  color: #496075;
}

.page-redraw .module-tab.active {
  color: #fff;
  background: var(--enterprise-blue-dark);
}

.page-redraw .module-panel {
  min-height: 540px;
  border-color: var(--enterprise-line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(26, 52, 79, 0.06);
}

.page-redraw .module-visual {
  border-left-color: var(--enterprise-line);
  background: #f6f1e7;
}

.page-redraw .module-visual img {
  border-radius: 16px;
  box-shadow: none;
}

.page-redraw .flow-redraw-section {
  background: #fff;
}

.page-redraw .flow-node {
  background: conic-gradient(from 205deg, #2f6b5b 0deg 170deg, #b96d4e 170deg 310deg, #efe7d9 310deg 360deg);
  box-shadow: 0 10px 24px rgba(47, 107, 91, 0.12);
}

.page-redraw .flow-node span {
  color: var(--enterprise-blue-dark);
}

.page-redraw .pricing-copy {
  border-color: var(--enterprise-line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(26, 52, 79, 0.055);
}

.page-redraw .pricing-rules span,
.page-redraw .pricing-result-card,
.page-redraw .pricing-phone {
  border-color: var(--enterprise-line);
  background: #fff;
}

.page-redraw .pricing-rules span,
.page-redraw .pricing-result-card,
.page-redraw .pricing-phone {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(26, 52, 79, 0.045);
}

.page-redraw .pricing-rules b {
  background: var(--enterprise-blue);
}

.page-redraw .pricing-result-card {
  background: #f8f3e9;
}

.page-redraw .result-total {
  border-radius: 12px;
  background: var(--enterprise-blue-dark);
  box-shadow: none;
}

.page-redraw .pricing-phone img {
  border-radius: 18px;
}

.page-redraw .kpi-card::after {
  background: var(--enterprise-blue);
}

.page-redraw .faq-item {
  overflow: hidden;
}

.page-redraw .faq-question {
  min-height: 62px;
  color: var(--enterprise-ink);
}

.page-redraw .faq-question::after {
  color: var(--enterprise-blue-dark);
  background: var(--enterprise-blue-soft);
}

.page-redraw .contact-section {
  padding-bottom: 124px;
  background: #fbf7ef;
}

.page-redraw .contact-card {
  border-color: rgba(183, 211, 230, 0.18);
  border-radius: 24px;
  background: linear-gradient(128deg, #142b26 0%, #214f43 58%, #785943 100%);
  box-shadow: 0 22px 58px rgba(16, 39, 64, 0.18);
}

.page-redraw .contact-card::after {
  display: none;
}

.page-redraw .contact-copy h2 {
  color: #fff;
}

.page-redraw .contact-panel {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
}

.page-redraw .floating-bar {
  right: 28px;
  left: auto;
  width: min(430px, calc(100% - 56px));
  border-color: rgba(146, 164, 181, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 42px rgba(25, 52, 78, 0.14);
}

.page-redraw .back-top {
  right: 28px;
  border-color: rgba(23, 104, 209, 0.18);
  color: var(--enterprise-blue-dark);
  background: rgba(255, 255, 255, 0.96);
}

@media (hover: hover) and (pointer: fine) {
  .page-redraw .overview-card:hover,
  .page-redraw .scenario-card:hover,
  .page-redraw .guarantee-card:hover,
  .page-redraw .operation-card:hover,
  .page-redraw .delivery-card:hover,
  .page-redraw .analytics-card:hover,
  .page-redraw .kpi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 104, 209, 0.26);
    box-shadow: 0 16px 34px rgba(26, 52, 79, 0.09);
  }
}

@media (max-width: 1180px) {
  .page-redraw .nav-links {
    z-index: 70;
    top: calc(var(--header-height) + 8px);
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100dvh - var(--header-height) - 24px);
    margin: 0;
    padding: 8px;
    overflow: auto;
    border: 1px solid rgba(146, 164, 181, 0.3);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 46px rgba(18, 45, 72, 0.18);
    transform: none;
    backdrop-filter: blur(18px);
  }

  .page-redraw.nav-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .page-redraw .nav-links a {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 9px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 60px;
  }

  .page-redraw .shell {
    width: min(100% - 28px, 1240px);
  }

  .page-redraw .site-header {
    height: var(--header-height);
    background: rgba(249, 251, 253, 0.97);
  }

  .page-redraw .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
    min-height: var(--header-height);
  }

  .page-redraw .brand {
    gap: 7px;
  }

  .page-redraw .brand img {
    width: 28px;
    height: 28px;
  }

  .page-redraw .brand span {
    max-width: 172px;
    font-size: 13px;
  }

  .page-redraw .nav-back {
    display: inline-flex;
    min-height: 34px;
    padding: 0 9px;
    font-size: 0;
  }

  .page-redraw .nav-back::before {
    content: "案例列表";
    font-size: 12px;
  }

  .page-redraw .nav-cta {
    display: none;
  }

  .page-redraw .mobile-menu-btn {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .page-redraw.nav-open .mobile-menu-btn span {
    opacity: 0;
  }

  .page-redraw.nav-open .mobile-menu-btn::before {
    transform: translateY(6px) rotate(45deg);
  }

  .page-redraw.nav-open .mobile-menu-btn::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .page-redraw .hero {
    background: linear-gradient(155deg, #071a36 0%, #0b3151 60%, #0d5746 100%);
  }

  .page-redraw .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .page-redraw .hero-inner {
    gap: 20px;
    min-height: 0;
    padding: 32px 0 26px;
  }

  .page-redraw .hero-content h1 {
    margin-bottom: 14px;
    font-size: clamp(29px, 7.4vw, 34px) !important;
    letter-spacing: -0.04em !important;
  }

  .page-redraw .hero-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .page-redraw .hero-copy {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.72;
  }

  .page-redraw .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page-redraw .hero-actions .button {
    width: auto;
    min-height: 46px;
    padding: 0 12px;
  }

  .page-redraw .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .page-redraw .hero-metrics article {
    min-height: 90px;
    padding: 13px 8px;
    text-align: center;
  }

  .page-redraw .hero-metrics strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .page-redraw .hero-metrics span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .page-redraw .hero-tags {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .page-redraw .hero-tags::-webkit-scrollbar {
    display: none;
  }

  .page-redraw .hero-tags span {
    flex: 0 0 auto;
  }

  .page-redraw .hero-visual {
    width: 100%;
  }

  .page-redraw .hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .page-redraw .anchor-band {
    display: none;
  }

  .page-redraw .section {
    padding: 24px 0;
    scroll-margin-top: calc(var(--header-height) + 12px);
  }

  .page-redraw .section-shell,
  .page-redraw .module-shell,
  .page-redraw .flow-redraw-shell {
    padding: 0;
  }

  .page-redraw .section-heading,
  .page-redraw .flow-redraw-heading,
  .page-redraw .pricing-heading {
    gap: 8px;
    margin-bottom: 20px;
  }

  .page-redraw .section-heading h2,
  .page-redraw .flow-redraw-title h2,
  .page-redraw .faq-intro h2,
  .page-redraw .contact-copy h2 {
    font-size: clamp(24px, 6.5vw, 28px) !important;
    letter-spacing: -0.035em !important;
  }

  .page-redraw .section-heading > p,
  .page-redraw .flow-redraw-intro,
  .page-redraw .faq-intro > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .page-redraw .card-row,
  .page-redraw .scenario-list,
  .page-redraw .analytics-list {
    gap: 12px;
  }

  .page-redraw .overview-card,
  .page-redraw .scenario-card,
  .page-redraw .guarantee-card,
  .page-redraw .operation-card,
  .page-redraw .delivery-card,
  .page-redraw .analytics-card,
  .page-redraw .kpi-card,
  .page-redraw .feature-row article,
  .page-redraw .faq-item {
    min-width: 0;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 7px 20px rgba(26, 52, 79, 0.045);
  }

  .page-redraw .title-line {
    gap: 10px;
    margin-bottom: 12px;
  }

  .page-redraw .title-line h3,
  .page-redraw .title-line h4 {
    min-height: 34px;
    display: flex;
    align-items: center;
    font-size: 18px;
  }

  .page-redraw .icon-badge {
    min-width: 34px;
    width: 34px;
    height: 34px;
    padding: 0;
  }

  .page-redraw .scenario-layout,
  .page-redraw .analytics-layout {
    gap: 14px;
  }

  .page-redraw .scenario-visual,
  .page-redraw .analytics-visual {
    border-radius: 16px;
  }

  .page-redraw .module-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 14px;
  }

  .page-redraw .module-tab {
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    border-right: 1px solid var(--enterprise-line);
    border-bottom: 1px solid var(--enterprise-line);
    font-size: 13px;
  }

  .page-redraw .module-tab:nth-child(2n) {
    border-right: 0;
  }

  .page-redraw .module-tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .page-redraw .module-panel {
    min-height: 0;
    border-radius: 16px;
  }

  .page-redraw .module-copy {
    padding: 20px 18px;
  }

  .page-redraw .module-visual {
    padding: 10px;
    border-top-color: var(--enterprise-line);
  }

  .page-redraw .module-visual img {
    border-radius: 12px;
  }

  .page-redraw .flow-redraw-heading {
    margin-bottom: 20px;
  }

  .page-redraw .flow-timeline {
    gap: 10px;
  }

  .page-redraw .flow-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 2px 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .page-redraw .flow-node {
    width: 42px;
    height: 42px;
    padding: 3px;
  }

  .page-redraw .flow-node::before {
    inset: 3px;
  }

  .page-redraw .flow-node span {
    font-size: 13px;
  }

  .page-redraw .flow-step h3 {
    min-height: 22px;
    font-size: 17px;
  }

  .page-redraw .pricing-rules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .page-redraw .pricing-rules span {
    min-width: 0;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 12px;
  }

  .page-redraw .pricing-layout {
    gap: 16px;
  }

  .page-redraw .pricing-copy {
    gap: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-redraw .feature-row {
    gap: 10px;
  }

  .page-redraw .feature-row article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 10px;
    flex-basis: 100%;
  }

  .page-redraw .feature-row .title-line {
    display: contents;
  }

  .page-redraw .feature-row .title-line .icon-badge {
    grid-column: 1;
  }

  .page-redraw .feature-row .title-line h4 {
    grid-column: 2;
  }

  .page-redraw .feature-row article > p {
    grid-column: 2;
    margin: 8px 0 0;
  }

  .page-redraw .pricing-result-card {
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
  }

  .page-redraw .result-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .page-redraw .result-steps span {
    min-width: 0;
    border-radius: 9px;
  }

  .page-redraw .result-total {
    width: 100%;
  }

  .page-redraw .pricing-phone {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-redraw .pricing-phone img {
    width: 100%;
    border-radius: 16px;
    filter: none;
  }

  .page-redraw .kpi-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
  }

  .page-redraw .kpi-card {
    min-height: 132px;
    padding: 16px;
  }

  .page-redraw .kpi-card strong {
    font-size: 24px;
  }

  .page-redraw .faq-layout {
    gap: 18px;
  }

  .page-redraw .faq-list {
    gap: 10px;
  }

  .page-redraw .faq-question {
    min-height: 58px;
    padding: 0 16px;
    font-size: 15px;
  }

  .page-redraw .faq-answer {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .page-redraw .contact-section {
    padding-bottom: 98px;
  }

  .page-redraw .contact-card {
    gap: 22px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .page-redraw .contact-copy p {
    font-size: 15px;
  }

  .page-redraw .contact-panel {
    padding: 18px 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .page-redraw .contact-panel li {
    flex-direction: row;
  }

  .page-redraw .contact-panel li strong {
    text-align: right;
  }

  .page-redraw .floating-bar {
    right: 12px;
    bottom: calc(10px + var(--safe-bottom));
    left: 12px;
    width: auto;
    padding: 8px 8px 8px 12px;
    border-radius: 13px;
  }

  .page-redraw .floating-bar span {
    display: none;
  }

  .page-redraw .floating-bar .button {
    min-height: 38px;
    padding: 0 14px;
  }

  .page-redraw .back-top {
    right: 12px;
    bottom: calc(76px + var(--safe-bottom));
    width: 40px;
    height: 40px;
  }

  .page-redraw .modal-card {
    width: min(100% - 24px, 640px);
    max-height: calc(100dvh - 24px);
    padding: 20px;
    overflow-y: auto;
    border-radius: 16px;
  }
}

@media (max-width: 390px) {
  .page-redraw .brand span {
    max-width: 144px;
  }

  .page-redraw .hero-content h1 {
    font-size: 27px !important;
    letter-spacing: -0.04em !important;
  }

  .page-redraw .hero-metrics strong {
    font-size: 14px;
  }
}

@media (min-width: 821px) {
  .page-redraw .section {
    padding: 0;
  }

  .page-redraw .section-shell,
  .page-redraw .module-shell,
  .page-redraw .flow-redraw-shell {
    padding: 40px 0;
  }
}

@media (max-width: 820px) {
  .page-redraw .hero-inner {
    justify-content: flex-start;
  }

  .page-redraw .hero-content,
  .page-redraw .hero-visual {
    flex: 0 0 auto;
    min-height: 0;
  }
}


/* ===== Pricing image whitespace fix ===== */
@media (min-width: 992px) {
  .page-redraw .pricing-layout {
    align-items: stretch;
  }

  .page-redraw .pricing-phone {
    flex: 0 0 34%;
    min-height: 560px;
    padding: 10px;
    align-items: stretch;
    justify-content: stretch;
    border-radius: 24px;
  }

  .page-redraw .pricing-phone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    display: block;
  }
}

/* ===== Commercial typography hard rule: large titles always stay on one line ===== */
:where(
  .hero-content h1,
  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2,
  .modal-head h2
) {
  white-space: nowrap !important;
  text-wrap: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

:where(
  .hero-content h1,
  .section-heading h2,
  .flow-redraw-title h2,
  .faq-intro h2,
  .contact-copy h2,
  .modal-head h2
) br {
  display: none !important;
}

/* ===== FAQ redraw: editorial support panel + numbered accordion ===== */
.page-redraw .faq-showcase {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 18px;
}

.page-redraw .faq-intro-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 392px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(234, 216, 183, 0.24), transparent 30%),
    linear-gradient(145deg, #173b32 0%, #215a4b 58%, #7a5942 135%);
  box-shadow: 0 22px 48px rgba(33, 79, 67, 0.16);
}

.page-redraw .faq-intro-card::before,
.page-redraw .faq-intro-card::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-redraw .faq-intro-card::before {
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-redraw .faq-intro-card::after {
  right: 28px;
  bottom: 28px;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.045);
}

.page-redraw .faq-kicker {
  margin: 0 0 18px;
  color: #ead8b7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.page-redraw .faq-intro-card h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 2.45vw, 40px);
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.page-redraw .faq-intro-card .faq-lead {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.page-redraw .faq-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.page-redraw .faq-topic-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 800;
}

.page-redraw .faq-support-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-redraw .faq-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #214f43;
  background: #ead8b7;
  box-shadow: 0 10px 22px rgba(10, 33, 27, 0.16);
  font-weight: 950;
}

.page-redraw .faq-support-note strong,
.page-redraw .faq-support-note small {
  display: block;
}

.page-redraw .faq-support-note strong {
  color: #fff;
  font-size: 14px;
}

.page-redraw .faq-support-note small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.page-redraw .faq-showcase .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.page-redraw .faq-showcase .faq-item {
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #e3ddd1;
  border-radius: 17px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 26px rgba(38, 53, 46, 0.055);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.page-redraw .faq-showcase .faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 107, 91, 0.32);
  box-shadow: 0 15px 32px rgba(38, 53, 46, 0.09);
}

.page-redraw .faq-showcase .faq-item.open {
  border-color: rgba(47, 107, 91, 0.28);
  background: #fffdf8;
  box-shadow: 0 16px 38px rgba(33, 79, 67, 0.1);
}

.page-redraw .faq-showcase .faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 72px;
  padding: 0 20px;
  color: #17231f;
  background: transparent;
  font-size: 15px;
  font-weight: 900;
}

.page-redraw .faq-showcase .faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  border-radius: 10px;
  color: #697771;
  background: #f1ece2;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.22s ease, background 0.22s ease;
}

.page-redraw .faq-showcase .faq-item.open .faq-number {
  color: #fff;
  background: #2f6b5b;
}

.page-redraw .faq-showcase .faq-question-text {
  min-width: 0;
  text-align: left;
}

.page-redraw .faq-showcase .faq-question::after {
  grid-column: 3;
  width: 30px;
  height: 30px;
  margin: 0;
  color: #214f43;
  background: #eef3ed;
  font-size: 18px;
}

.page-redraw .faq-showcase .faq-answer {
  padding: 0 68px 22px 76px;
  color: #697771;
  font-size: 14px;
  line-height: 1.78;
}

.page-redraw .faq-showcase .faq-answer p {
  margin: 0;
}

@media (max-width: 980px) {
  .page-redraw .faq-showcase {
    grid-template-columns: 1fr;
  }

  .page-redraw .faq-intro-card {
    min-height: 0;
  }

  .page-redraw .faq-support-note {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .page-redraw .faq-intro-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .page-redraw .faq-intro-card h2 {
    font-size: 24px !important;
  }

  .page-redraw .faq-showcase .faq-question {
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 66px;
    padding: 0 14px;
  }

  .page-redraw .faq-showcase .faq-number {
    width: 36px;
    height: 32px;
  }

  .page-redraw .faq-showcase .faq-answer {
    padding: 0 46px 18px 60px;
  }
}
