/* ============================================================
   BUMA 官网样式
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --primary-color:     #4f8ef7;
  --secondary-color:  #5CC8FF;
  --accent-color:     #5BE3B4;
  --background-color: #000000;
  --surface-color:    #1a1a1a;
  --surface-soft:     #111111;
  --surface-alt:      #0f0f0f;
  --text-color:       #e6e9f0;
  --text-secondary:   #a0a6b8;
  --text-light:       #7f879a;
  --heading-color:    #ffffff;
  --line-color:       rgba(255,255,255,0.08);
  --border-radius:    16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;
  --btn-primary-bg:   #4f8ef7;
  --btn-primary-hover:#6ba3ff;
  --btn-secondary-bg: rgba(255,255,255,0.05);
  --card-bg:          #1a1a1a;
  --card-border:      rgba(255,255,255,0.08);
  --container-width:  1200px;
  --nav-height:       68px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Base ──────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--heading-color); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
p  { color: var(--text-secondary); line-height: 1.7; }

/* ── Navigation ────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}

.topbar-clean {
  /* Clean variant: uses nav.nav-clean + brand-lockup + nav-endcaps layout */
}

.nav-clean {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.brandmark {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 40px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-endcaps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-signal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 4px 20px rgba(79,142,247,0.3);
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(79,142,247,0.4);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: white;
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79,142,247,0.35);
}

.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.12);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s;
}

.text-link:hover { opacity: 0.8; }

/* ── Hero ────────────────────────────────────────────── */
.hero-home-v2 {
  padding: 80px 0 80px;
  background: #000000;
  position: relative;
}

.hero-home-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(79,142,247,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(92,200,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.hero-v2-copy {
  max-width: 520px;
  position: relative;
}

/* ── About Page Hero (hero-home) ────────────────────── */
.hero-home {
  padding: 100px 0 80px;
  background: #000000;
  position: relative;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(79,142,247,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(92,200,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.hero-home-grid .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.25);
  color: #4f8ef7;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-home-grid .section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-home-grid .section-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 52ch;
}

.hero-actions { gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-soft-path {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  padding: 0 4px;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.hero-soft-path:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateX(2px);
}

.hero-subroutes {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  line-height: 1.7;
}

.hero-subroutes a {
  color: rgba(79,142,247,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-subroutes a:hover { color: rgba(79,142,247,1); }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-points span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

.fast-lanes-note {
  margin-top: 10px;
  color: var(--text-light);
  font-size: 13px;
}

.hero-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.hero-panel h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.mini-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-metrics div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mini-metrics strong {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.mini-metrics span {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-clean {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(235,241,255,0.7);
}

.hero-v2-title {
  max-width: 10.5em;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: #fff;
}

.hero-v2-title span { display: block; color: rgba(255,255,255,0.7); }

.section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 44ch;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-actions { gap: 12px; flex-wrap: wrap; }

.hero-v2-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-v2-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  position: relative;
  padding-left: 12px;
}

.hero-v2-meta span::before {
  content: '·';
  position: absolute;
  left: 0;
}

.hero-v2-meta span:first-child::before { display: none; }

.hero-intake-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.hero-intake-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.5;
}

.hero-intake-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(91,227,180,0.95);
  box-shadow: 0 0 0 4px rgba(91,227,180,0.12);
}

.hero-intake-clarity {
  margin-top: 14px;
  padding: 16px 18px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-intake-clarity-title,
.hero-next-steps-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
  margin-bottom: 12px;
}

.hero-intake-clarity-pills,
.hero-next-steps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-clarity-pill,
.hero-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.hero-clarity-pill-accent {
  background: rgba(125,211,252,0.09);
  border-color: rgba(125,211,252,0.2);
  color: rgba(255,255,255,0.9);
}

.hero-next-steps {
  margin-top: 14px;
  padding: 16px 18px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(125,211,252,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-step-pill strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #7dd3fc;
  flex-shrink: 0;
}

.hero-next-steps-row .hero-step-pill:nth-child(2) strong {
  color: #86efac;
}

.hero-next-steps-row .hero-step-pill:nth-child(3) strong {
  color: #f9a8d4;
}

.hero-v2-visual-wrap { position: relative; }

.hero-v2-visual {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* ── Promise Bar ────────────────────────────────────── */
.promise-bar {
  padding: 18px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.promise-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.promise-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.promise-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.promise-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.promise-sep {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.12);
}

/* ── Section ────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-deep {
  background: #0a0a0a;
}

.section-soft {
  background: #0f0f0f;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center { text-align: center; }

.section-header .eyebrow { margin-bottom: 14px; }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 14px;
  color: #fff;
}

.section-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 56ch;
  margin: 0 auto;
}

.section-header.left p { margin: 0; }

/* ── Grid ────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── Cards ──────────────────────────────────────────── */
.card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.15);
}

.home-card {
  padding: 24px;
}

/* Feature cards */
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* Entry cards */
.home-entry-link {
  display: grid;
  gap: 10px;
  padding: 26px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  background: rgba(0,0,0,0.5);
  transition: background 0.2s;
}

.home-entry-link:hover { background: rgba(0,0,0,0.7); }

.home-entry-link small {
  font-size: 12px;
  color: rgba(151,164,199,0.74);
  letter-spacing: 0.08em;
}

.home-entry-link strong {
  font-size: 22px;
  line-height: 1.2;
  color: var(--heading-color);
  display: block;
  margin: 4px 0;
}

.home-entry-link span {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(204,214,235,0.72);
}

/* Latest cards */
.latest-card {
  border-left: 3px solid var(--secondary-color);
  padding-left: 20px;
}

.latest-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.latest-card h3 a { color: inherit; text-decoration: none; }
.latest-card h3 a:hover { color: var(--secondary-color); }

.latest-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ── Images in cards ──────────────────────────────────── */
.feature-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  margin-bottom: 18px;
}

.section-fit-check-solutions {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at top left, rgba(79,142,247,0.08), transparent 38%),
    rgba(10,14,23,0.92);
}

.fit-check-header {
  max-width: 860px;
  margin: 0 auto 40px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fit-card {
  padding: 32px;
}

.fit-card-positive {
  border-color: rgba(91,227,180,0.24);
  background: linear-gradient(180deg, rgba(91,227,180,0.08), rgba(26,26,26,0.96));
}

.fit-card-muted {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(26,26,26,0.96));
}

.fit-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(91,227,180,0.14);
  border: 1px solid rgba(91,227,180,0.28);
  color: #88f0cd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.fit-card-badge-muted {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
}

.fit-card h3 {
  margin-bottom: 14px;
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}

.fit-list li::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(79,142,247,0.9);
}

.entry-img-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.entry-img-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
}

.entry-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.entry-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.entry-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,142,247,0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.entry-card-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.entry-card-body small,
.entry-card-body strong,
.entry-card-body span { position: relative; }

.entry-card-body small {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7eb6ff;
}

.entry-card-body strong {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.entry-card-body span {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

.latest-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.card:hover .latest-img { transform: scale(1.02); }

/* ── Process Steps ──────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 0 20px;
}

.step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.step-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.step-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--secondary-color);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 20px;
  padding: 3px 12px;
}

.step-arrow {
  font-size: 24px;
  color: rgba(79,142,247,0.4);
  padding-top: 60px;
  flex-shrink: 0;
}

/* ── CTA ─────────────────────────────────────────────── */
.cta-home {
  background: #0a0a0a;
  border-top: 0.8px solid rgba(255,255,255,0.06);
  padding: 80px 0;
}

.cta-wrap-home {
  display: flex;
  align-items: center;
  gap: 48px;
}

.cta-copy { flex: 1; }

.cta-copy .eyebrow { margin-bottom: 14px; }

.cta-copy .section-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
}

.cta-copy p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 48ch;
  line-height: 1.7;
}

.cta-actions {
  flex-shrink: 0;
  max-width: 420px;
}

.cta-actions .btn-primary { margin-bottom: 12px; display: block; text-align: center; }

.cta-reassurance {
  margin-bottom: 12px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-reassurance-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}

.cta-reassurance-list {
  display: grid;
  gap: 8px;
}

.cta-reassurance-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}

.cta-reassurance-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(91,227,180,0.95);
  box-shadow: 0 0 0 4px rgba(91,227,180,0.1);
}

.cta-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-meta-unified {
  max-width: 320px;
}

.cta-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── Mobile Quick Bar ───────────────────────────────── */
.mobile-quick-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(11,15,26,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  gap: 8px;
  z-index: 50;
}

.mobile-quick-bar a {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background-color: #000000;
  color: white;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}

/* ── Trust Metrics Strip ─────────────────────────────── */
.trust-strip {
  background: #1a1a1a;
  border-top: 0.8px solid rgba(255,255,255,0.12);
  border-bottom: 0.8px solid rgba(255,255,255,0.12);
  padding: 28px 0;
  margin: 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  text-align: center;
}
.trust-number {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.trust-divider {
  width: 0.8px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Trust Bar Section (Solutions/Index style) ─────────────────── */
.trust-bar-section {
  background: rgba(12, 18, 30, 0.75);
  border-top: 0.8px solid rgba(255,255,255,0.12);
  border-bottom: 0.8px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
}
.trust-bar-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.trust-bar-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
}
.trust-bar-label-plain {
  color: rgba(255,255,255,0.6);
}
.trust-bar-sep {
  font-size: 1rem;
  color: rgba(255,255,255,0.2);
  user-select: none;
  padding: 0 4px;
}
.trust-bar-icon {
  display: flex;
  align-items: center;
}

/* ── Trust Proof Bar ────────────────────────────────── */
.section-metrics-snapshot {
  padding: 28px 0 16px;
  background: #000000;
}

.metrics-snapshot-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.metrics-snapshot-intro .eyebrow {
  margin-bottom: 14px;
}

.metrics-snapshot-intro .section-title {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.metrics-snapshot-intro .section-desc {
  max-width: 54ch;
}

.metrics-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-snapshot-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.metric-snapshot-card strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.metric-snapshot-card span {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.75;
}

.trust-bar-section-proof {
  background:
    linear-gradient(180deg, rgba(10,14,24,0.96) 0%, rgba(9,13,22,0.92) 100%);
  padding: 28px 0 34px;
}

.trust-bar-proof-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.trust-proof-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(125,211,252,0.08);
  border: 1px solid rgba(125,211,252,0.18);
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-proof-intro {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
}

.trust-bar-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.trust-proof-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 148px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.trust-proof-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(125,211,252,0.86);
}

.trust-proof-title {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 600;
}

.trust-proof-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.56);
}

/* ── Solutions Outcomes Strip ───────────────────────── */
.section-outcomes-strip {
  padding-top: 12px;
}

.outcomes-strip-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.018));
  box-shadow: 0 18px 60px rgba(0,0,0,0.2);
}

.outcomes-strip-intro .eyebrow {
  margin-bottom: 14px;
}

.outcomes-strip-intro .section-title {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.outcomes-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.outcome-strip-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.028);
}

.outcome-strip-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(125,211,252,0.86);
}

.outcome-strip-card strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.outcome-strip-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
}

/* ── Testimonials Section ───────────────────────────── */
.section-testimonials {
  padding: 72px 0;
  background: #000000;
  border-top: 0.8px solid rgba(255,255,255,0.06);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(79,142,247,0.3);
  transform: translateY(-2px);
}

.testimonial-quote-mark {
  font-size: 64px;
  line-height: 1;
  color: rgba(79,142,247,0.25);
  font-family: Georgia, serif;
  position: absolute;
  top: 20px;
  left: 24px;
  user-select: none;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  font-style: normal;
  padding-top: 24px;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 0.8px solid rgba(255,255,255,0.06);
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.testimonial-company {
  font-size: 12px;
  color: rgba(79,142,247,0.7);
  letter-spacing: 0.02em;
}

.testimonials-cta {
  text-align: center;
  margin-top: 32px;
}

/* ── First Message Example ───────────────────────────── */
.section-first-msg-example {
  padding: 0 0 16px;
  background: #000000;
}

.first-msg-shell {
  background: linear-gradient(135deg, rgba(79,142,247,0.07) 0%, rgba(91,227,180,0.04) 100%);
  border: 1px solid rgba(79,142,247,0.18);
  border-radius: 24px;
  padding: 32px 36px 28px;
  max-width: 820px;
  margin: 0 auto;
}

.first-msg-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(79,142,247,0.14);
  border: 1px solid rgba(79,142,247,0.28);
  color: #7eb6ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.first-msg-layout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.first-msg-role-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.first-msg-role-user { flex-direction: row; }
.first-msg-role-ai   { flex-direction: row; }

.first-msg-role-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.first-msg-role-ai .first-msg-role-icon {
  background: rgba(79,142,247,0.15);
  border-color: rgba(79,142,247,0.3);
}

.first-msg-bubble {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.first-msg-bubble-user {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  border-bottom-left-radius: 4px;
}

.first-msg-bubble-ai {
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.22);
  color: rgba(255,255,255,0.88);
  border-bottom-left-radius: 4px;
}

.first-msg-arrow {
  font-size: 22px;
  color: rgba(79,142,247,0.5);
  flex-shrink: 0;
  padding-top: 6px;
}

.first-msg-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-top: 16px;
  line-height: 1.7;
  text-align: center;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-v2-copy { max-width: 100%; }
  .hero-v2-visual { aspect-ratio: 16/9; }
  .grid-3 { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .cta-wrap-home { flex-direction: column; align-items: flex-start; }
  .process-steps { gap: 24px; }
  .step-arrow { display: none; }
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .nav-signal { display: none; }
  .footer-line { flex-direction: column; gap: 8px; text-align: center; }
  .mobile-quick-bar { display: flex; }
  .promise-sep { display: none; }
  .promise-bar-inner { gap: 16px; }
  .trust-metric { padding: 0 20px; }
  .trust-number { font-size: 1.5rem; }
  .trust-strip-inner { gap: 16px; flex-wrap: wrap; }
  .trust-divider { display: none; }
  .metrics-snapshot-shell {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .metrics-snapshot-grid {
    grid-template-columns: 1fr;
  }
  .metric-snapshot-card {
    min-height: auto;
  }
  .hero-intake-clarity,
  .hero-next-steps {
    padding: 14px 14px 16px;
  }
  .hero-clarity-pill,
  .hero-step-pill {
    width: 100%;
    justify-content: flex-start;
  }
  .trust-bar-proof-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-bar-proof-grid {
    grid-template-columns: 1fr;
  }
  .trust-proof-card {
    min-height: auto;
  }
  .outcomes-strip-shell {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .outcomes-strip-grid {
    grid-template-columns: 1fr;
  }
  .outcome-strip-card {
    min-height: auto;
  }
  .trust-bar { gap: 4px; justify-content: flex-start; }
  .trust-bar-item { padding: 6px 12px; }
  .trust-bar-sep { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .first-msg-shell { padding: 24px 20px 22px; }
  .first-msg-layout { flex-direction: column; gap: 10px; }
  .first-msg-arrow { display: none; }
  body { padding-bottom: 64px; }
}
