:root {
  --navy: #1a365d;
  --navy-strong: #10233e;
  --navy-mid: #254c7f;
  --navy-soft: #eaf0f7;
  --gold: #b8943f;
  --gold-light: #f5d98b;
  --gold-soft: #fbf6e8;
  --gold-border: #e6d6ae;
  --gold-text: #735716;
  --bg: #f5f7fb;
  --hero-wash: #edf2f8;
  --gold-wash: #f5ecd7;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --media-bg: #eef3f8;
  --line: #d9e2ec;
  --line-strong: #aebbd0;
  --field-line: #cad6e4;
  --dash-line: #b7c4d4;
  --text: #13213a;
  --muted: #64748b;
  --muted-2: #475569;
  --nav-text: #3f4d63;
  --text-on-navy-muted: #dbe7f5;
  --footer-muted: #cbd8e8;
  --footer-subtle: #aebbd0;
  --success: #1f8a5b;
  --danger: #b42318;
  --shadow: 0 18px 42px rgba(18, 32, 56, 0.08);
  --max: 1180px;
  --radius: 8px;
  --ai-float-bottom: 84px;
  --ai-panel-top: 104px;
  --ai-panel-bottom: 156px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.ai-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 148, 63, 0.34);
  outline-offset: 3px;
}

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


.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 236, 0.88);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: var(--max);
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
  flex: 0 0 auto;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.hero-inner > *,
.ai-band > *,
.split > *,
.grid-4 > *,
.grid-3 > *,
.grid-2 > * {
  min-width: 0;
}

.brand-text strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.brand-text span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--nav-text);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.nav-button {
  min-width: 92px;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  background: var(--navy);
  color: #fff !important;
  border-bottom: 0 !important;
  white-space: nowrap;
  text-align: center;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}

.section {
  padding: 64px 24px;
  background: #fff;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
}

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

.section-head h2,
.content-block h2 {
  margin: 0;
  color: var(--navy-strong);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
}

.section-head p {
  max-width: 720px;
  margin: 8px 0 0;
}


.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.64fr);
  gap: 24px;
  align-items: start;
}

.site-footer {
  background: var(--navy-strong);
  color: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.8fr;
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.qr-image {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(26, 54, 93, 0.2);
}

.site-footer .qr-image {
  border-color: rgba(255, 255, 255, 0.22);
}

.qr-placeholder {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  display: block;
  background: #fff url("../images/wechat-qrcode.jpg") center / cover no-repeat;
  border: 1px solid rgba(26, 54, 93, 0.2);
}

.site-footer .qr-placeholder {
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--footer-subtle);
  font-size: 13px;
}


.hero-actions,
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(26, 54, 93, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-on-dark {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.btn-on-dark::after {
  content: "→";
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1;
}

.btn-on-dark:hover {
  background: transparent;
  color: var(--gold-light);
  box-shadow: none;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}

.link-more::after {
  content: "→";
  color: var(--gold);
  font-size: 14px;
}

.link-more:hover {
  color: var(--navy-strong);
  transform: translateX(2px);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(18, 32, 56, 0.04);
}

.service-card {
  border-top: 3px solid var(--gold);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.service-card .button-row {
  margin-top: auto;
  padding-top: 18px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--navy-soft);
  color: var(--navy);
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.card p,
.content-block p,
.feature-list li,
.timeline li,
.site-footer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
}

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

.process-card {
  min-height: 170px;
}

.process-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.tag {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

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

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

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

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

.field label {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--field-line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

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

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.consent input {
  width: auto;
  flex: 0 0 auto;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.form-status.error {
  color: var(--danger);
}

.notice {
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-text);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.7;
}

.ai-float {
  position: fixed;
  right: 24px;
  bottom: var(--ai-float-bottom);
  z-index: 80;
  min-width: 118px;
  height: 48px;
  padding: 0 16px 0 14px;
  border: 1px solid rgba(184, 148, 63, 0.42);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #18365f 0%, #10233e 100%);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(16, 35, 62, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ai-float::after {
  content: "AI 咨询";
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.ai-float:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #214872 0%, #153050 100%);
  box-shadow:
    0 20px 38px rgba(16, 35, 62, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.78);
}

.ai-bot-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-panel {
  position: fixed;
  right: 24px;
  top: var(--ai-panel-top);
  bottom: auto;
  z-index: 110;
  width: min(380px, calc(100vw - 32px));
  height: auto;
  max-height: calc(100vh - var(--ai-panel-top) - 24px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18, 32, 56, 0.2);
  overflow: hidden;
  display: none;
}

.ai-panel.open {
  display: grid;
  grid-template-rows: auto auto auto auto;
}

.ai-panel.has-conversation {
  bottom: var(--ai-panel-bottom);
  max-height: none;
}

.ai-panel.has-conversation.open {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.ai-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
}

.ai-panel-head strong {
  display: block;
}

.ai-panel-head span {
  color: var(--text-on-navy-muted);
  font-size: 12px;
}

.ai-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.ai-panel-body {
  padding: 16px;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
}

.ai-message {
  max-width: 92%;
  border-radius: 8px;
  background: var(--surface-2);
  padding: 12px;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.ai-message-user {
  justify-self: end;
  background: var(--navy);
  color: #fff;
}

.ai-message-assistant {
  justify-self: start;
}

.ai-message-status {
  color: var(--muted);
  font-size: 13px;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.ai-chat-form textarea {
  width: 100%;
  min-height: 44px;
  max-height: 112px;
  resize: vertical;
  border: 1px solid var(--field-line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--text);
  outline: none;
}

.ai-chat-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.ai-chat-form button {
  min-width: 70px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.ai-chat-form button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.ai-frame-placeholder {
  margin-top: 12px;
  border: 1px dashed var(--dash-line);
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.ai-disclaimer {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  background: #fff;
}

.mobile-quick {
  display: none;
  position: fixed;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 70;
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 24px rgba(18, 32, 56, 0.08);
}

@supports (width: 100dvw) {
  .mobile-quick {
    width: 100dvw;
    max-width: 100dvw;
  }
}

.mobile-quick a,
.mobile-quick button {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  min-width: 0;
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  white-space: nowrap;
}

.mobile-quick button {
  border-right: 0;
}


.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.89)),
    linear-gradient(135deg, var(--hero-wash) 0%, #ffffff 50%, var(--gold-wash) 100%);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 26px 42px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  position: relative;
  padding-left: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 14px 0 12px;
  color: var(--navy-strong);
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero p,
.page-hero p,
.section-head p {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 720px;
}


.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image {
  position: relative;
  aspect-ratio: 1717 / 916;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.9);
  box-shadow: var(--shadow);
  background: var(--media-bg);
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-trust {
  grid-column: 1 / -1;
  min-width: 0;
}

.trust-panel {
  width: 100%;
  height: auto;
  margin-top: 0;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  padding: 18px 20px;
  box-shadow: 0 20px 44px rgba(26, 54, 93, 0.22);
}

.trust-panel h2,
.trust-panel h3 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 16px;
}

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

.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 9px;
}

.trust-item svg {
  color: var(--gold-light);
  flex: 0 0 auto;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.trust-item span {
  display: block;
  color: #d8e4f2;
  font-size: 12px;
  line-height: 1.55;
}

.proof-strip {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  position: relative;
  padding: 0 22px;
}

.proof-item + .proof-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(174, 187, 208, 0.85), transparent);
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

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

.news-list-section {
  padding-top: 18px;
}

.news-card {
  display: flex;
  min-height: 212px;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 36px rgba(18, 32, 56, 0.09);
}

.news-card:focus-visible {
  outline: 3px solid rgba(184, 148, 63, 0.32);
  outline-offset: 3px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.news-meta .tag {
  margin-bottom: 0;
}

.news-card h3 {
  transition: color 0.18s ease;
}

.news-card:hover h3,
.news-card:focus-visible h3 {
  color: var(--navy-strong);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.card-cta::after {
  content: "→";
  color: var(--gold);
  transition: transform 0.18s ease;
}

.news-card:hover .card-cta::after,
.news-card:focus-visible .card-cta::after {
  transform: translateX(2px);
}

.ai-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.ai-intro {
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  padding: 32px;
}

.ai-intro h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.25;
}

.ai-intro p {
  color: var(--text-on-navy-muted);
}

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

.cta-band {
  margin-top: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  padding: 32px;
  display: block;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.cta-band p {
  margin: 0;
  color: var(--text-on-navy-muted);
}

.cta-band .btn-on-dark {
  margin-top: 18px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, var(--hero-wash), #fff 52%, var(--gold-wash));
}

.page-hero .container {
  padding: 64px 24px 52px;
}

.news-page .page-hero .container {
  padding-bottom: 22px;
}

.breadcrumb {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.content-block {
  margin-bottom: 32px;
}


.statement {
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  background: var(--gold-soft);
  border-radius: 0 8px 8px 0;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline li {
  border-left: 3px solid var(--line);
  padding-left: 16px;
}

.timeline strong {
  display: block;
  color: var(--navy);
}


@media (max-width: 1060px) {
  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    z-index: 130;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .site-nav a,
  .nav-button {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 9px 10px;
    border-bottom: 0;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

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

  .trust-panel {
    width: auto;
    margin-top: 0;
  }

  .hero-image,
  .hero-image img {
    min-height: 0;
  }

  .grid-4,
  .grid-3,
  .proof-inner,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .nav-wrap {
    height: 66px;
    padding: 0 16px;
    gap: 10px;
    justify-content: flex-start;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 54px);
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text span {
    display: none;
  }

  .brand-text strong {
    font-size: 15px;
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-button {
    display: grid !important;
    flex: 0 0 42px;
    margin-left: auto;
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 140;
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }

  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    justify-items: stretch;
    overflow: visible;
  }

  .hero-visual,
  .hero-copy,
  .hero-trust,
  .hero p,
  .hero h1,
  .hero-actions {
    width: auto !important;
    max-width: min(100%, 340px) !important;
    min-width: 0;
  }

  .hero-image {
    width: 100% !important;
    max-width: min(100%, 340px) !important;
    min-width: 0;
  }

  .hero-visual {
    margin-top: 0;
  }

  .hero p {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-image img {
    max-width: 100%;
  }

  .hero-inner,
  .page-hero .container {
    padding: 24px 40px 36px 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 31px;
    word-break: break-all;
    max-width: 100%;
  }

  .section {
    padding: 46px 16px;
  }

  .section-head,
  .cta-band,
  .footer-bottom {
    display: block;
  }

  .link-more {
    display: inline-block;
    margin-top: 12px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .proof-inner,
  .trust-list,
  .ai-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 16px 0;
  }

  .proof-item + .proof-item::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(174, 187, 208, 0.85), transparent);
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .ai-float {
    display: none;
  }

  .ai-panel {
    right: 12px;
    left: 12px;
    top: 88px;
    bottom: auto;
    width: auto;
    max-height: calc(100vh - 104px);
  }

  .ai-panel.has-conversation {
    bottom: 16px;
    max-height: none;
  }

  .mobile-quick {
    display: none;
  }
}

