:root {
  /* CPAP4S Logo 配色 */
  --primary: #0056a8;       /* Logo 深蓝 */
  --primary-dark: #003d78;
  --primary-light: #e8f2fc;
  --secondary: #2ead5f;     /* Logo 绿 */
  --secondary-light: #eefbf3;
  --accent: #00a19b;        /* Logo 青 */
  --accent-light: #e6f7f6;
  --dark: #0f172a;
  
  --bg: #ffffff;
  --card: #ffffff;
  --text: #334155;
  --text-muted: #64748b;
  --line: #f1f5f9;
  
  --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.04), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-md: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --radius: 12px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 12px;
}

.sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.125rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Logo 品牌区 — 图形标 + 字标（避免粗竖线硬切） */
.logo-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  line-height: 1.2;
  text-decoration: none;
  color: inherit;
}

.logo-brand img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* 顶栏字标略收，与菜单单行更齐 */
.logo-brand--header img {
  height: 34px;
}

.logo-brand--header .logo-wordmark__cn {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.logo-brand--header .logo-wordmark__sub {
  font-size: 0.625rem;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding-left: 14px;
  position: relative;
}

.logo-wordmark::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 86, 168, 0.22) 20%,
    rgba(0, 86, 168, 0.22) 80%,
    transparent 100%
  );
}

.logo-wordmark__cn {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.logo-wordmark__sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* 旧 tagline 类兼容（若有缓存页面） */
.logo-brand .tagline {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-left: 14px;
  border-left: none;
  position: relative;
}

.logo-brand .tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 86, 168, 0.22),
    transparent
  );
}

.logo-brand--footer .logo-wordmark::before {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 25%,
    rgba(255, 255, 255, 0.18) 75%,
    transparent 100%
  );
}

.logo-brand--footer .logo-wordmark__cn {
  color: #e2e8f0;
}

.logo-brand--footer .logo-wordmark__sub {
  color: #94a3b8;
}

.site-footer .logo-brand img {
  height: 32px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* 顶栏 */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.nav .logo {
  flex-shrink: 0;
}

nav.menu {
  display: flex;
  gap: 24px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.menu a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

nav.menu a:hover {
  color: var(--primary);
}

nav.menu a.ext {
  color: var(--accent);
}

nav.menu a.ext:hover {
  color: var(--primary-dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  background: var(--primary-light);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 86, 168, 0.2);
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-drawer,
.mobile-bar {
  display: none !important;
}

.mobile-drawer .panel .logo-brand {
  margin-bottom: 24px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--primary-light) 0%, #fff 100%);
  padding: 88px 0 72px;
  text-align: center;
}

.hero .focus {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 86, 168, 0.12);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 86, 168, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(0, 86, 168, 0.2);
}

.btn-ghost:hover {
  background: var(--primary-light);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 161, 155, 0.25);
}

.btn-accent:hover {
  background: #008a85;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: #f8fafc;
  color: var(--primary-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}

/* 数据条 */
.stats {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.stats .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat b {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 生态整合区 */
.ecosystem {
  background: #f8fafc;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.eco-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.eco-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.eco-card .site-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  width: fit-content;
}

.eco-card .site-tag.repair { background: var(--primary-light); color: var(--primary); }
.eco-card .site-tag.community { background: var(--accent-light); color: var(--accent); }
.eco-card .site-tag.official { background: var(--secondary-light); color: var(--secondary); }

.eco-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.eco-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.eco-card .link {
  font-weight: 700;
  font-size: 0.875rem;
}

/* 步骤 */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.step .num {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 品牌卡片 */
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.brand {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s ease;
}

.brand:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.brand h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.brand p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* 表格 */
.table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #f8fafc;
  color: var(--dark);
  font-weight: 700;
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: #fafbfc;
}

.flow-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
}

.price-note {
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light);
}

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  color: var(--primary);
  margin-bottom: 24px;
}

.card .icon i {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.craftsman {
  background: #f8fafc;
}

.craftsman .inner {
  display: flex;
  gap: 80px;
  align-items: center;
}

.craftsman .photo {
  flex: 0 0 450px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.craftsman h2 {
  text-align: left;
}

.craftsman blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 24px;
  margin-bottom: 24px;
  font-size: 1.25rem;
  color: var(--dark);
  background: var(--accent-light);
  border-radius: 0 8px 8px 0;
}

.craftsman p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.tl-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.tl-item b {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.tl-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.flywheel {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
}

.flywheel h2,
.flywheel .sub {
  color: #fff;
}

.flywheel .sub {
  opacity: 0.85;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.benefit {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 12px 24px;
  font-weight: 600;
}

.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.story {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s ease;
}

.story-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.story-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--primary-light);
}

.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.story-card:hover .story-card-media img {
  transform: scale(1.04);
}

.story-card-body {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-card-body h3 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.story-card-body h3 a:hover {
  color: var(--primary);
}

.story-card-body .story-quote {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.55;
}

.story-card-more {
  margin-top: auto;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
}

.story-card-more:hover {
  color: var(--primary-dark);
}

.story:hover {
  box-shadow: var(--shadow-md);
}

.story .tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.story h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.story-quote {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
}

.page-hero {
  background-color: #001e3c;
  background-image: 
    linear-gradient(135deg, rgba(0, 30, 60, 0.95) 0%, rgba(0, 45, 90, 0.85) 100%),
    url('images/hero-repair.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.1;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 30px 32px;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.page-hero-green {
  background-color: #166534;
  background-image: 
    linear-gradient(135deg, rgba(22, 101, 52, 0.95) 0%, rgba(21, 128, 61, 0.85) 100%),
    url('images/hero-process.jpg');
}

.page-hero--compact {
  padding: 32px 0 48px;
}

.page-hero--compact h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-hero--compact p {
  font-size: 1rem;
}

/* 通用表单卡片 */
.form-section {
  padding: 48px 0 64px;
}

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}

.form-wrap__lead {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.form-wrap label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin: 20px 0 8px;
  color: var(--text);
}

.form-wrap label:first-of-type {
  margin-top: 0;
}

.form-wrap label .req {
  color: #dc2626;
  margin-left: 2px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: #fcfdfd;
}

.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-wrap .hint {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-wrap .btn-block {
  width: 100%;
  margin-top: 28px;
}

.form-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.form-success {
  text-align: center;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--primary-light);
  color: var(--primary-dark);
}

.form-success__icon.is-done {
  background: #dcfce7;
  color: #166534;
}

.form-success h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.form-success-ref {
  font-size: 1.0625rem;
  margin: 0 0 16px;
  color: var(--text);
}

.form-success-ref strong {
  color: var(--primary-dark);
}

.form-success__message {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.form-success-wechat {
  background: #fff7ed;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.form-success-wechat p {
  margin-bottom: 10px;
  font-weight: 600;
  color: #9a3412;
}

.form-success-wechat img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.form-success__footer {
  margin-top: 8px;
  text-align: center;
}

.form-success-actions {
  margin: 20px 0 8px;
}

.form-success-actions .btn-block {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

/* 查进度页 */
.journey-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.journey-step {
  display: flex;
  gap: 12px;
  padding: 0 0 20px 4px;
  position: relative;
}

.journey-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.journey-step.is-done:not(:last-child)::before,
.journey-step.is-active:not(:last-child)::before {
  background: var(--primary-light);
}

.journey-step__dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
}

.journey-step.is-done .journey-step__dot,
.journey-step.is-active .journey-step__dot {
  border-color: var(--primary);
  background: var(--primary);
}

.journey-step.is-active .journey-step__dot {
  box-shadow: 0 0 0 4px var(--primary-light);
}

.journey-step__body strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
}

.journey-step.is-active .journey-step__body strong {
  color: var(--primary-dark);
}

.journey-step.is-done .journey-step__body strong {
  color: var(--primary);
}

.track-result__head {
  text-align: center;
  margin-bottom: 8px;
}

.track-status-title {
  margin: 8px 0 4px;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.track-status-hint {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.track-quote,
.track-sf {
  margin: 12px 0 0;
  font-size: 0.9375rem;
}

.track-ship {
  margin-top: 20px;
}

.track-ship h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

/* 扫码支付页 */
.pay-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}

.pay-steps li {
  flex: 1;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  position: relative;
}

.pay-steps li.is-active {
  color: var(--primary-dark);
  font-weight: 700;
  border-bottom-color: var(--primary);
}

.pay-steps li.is-done {
  color: var(--primary);
  border-bottom-color: var(--primary-light);
}

.pay-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 4px 0 16px;
  padding: 8px 16px;
  background: var(--primary-light);
  border-radius: 999px;
  font-size: 0.9375rem;
  color: var(--primary-dark);
}

.pay-amount strong {
  font-size: 1.375rem;
  font-weight: 800;
}

.pay-qr-box {
  background: #fff;
  border: 2px solid #07c160;
  border-radius: 16px;
  padding: 20px;
  margin: 16px auto 12px;
  max-width: 280px;
  box-shadow: 0 8px 24px rgba(7, 193, 96, 0.12);
}

.pay-qr-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.pay-qr-caption {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: #15803d;
  font-weight: 600;
}

.pay-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pay-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: cpap4s-pulse 1.2s ease-in-out infinite;
}

@keyframes cpap4s-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

.pay-loading {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted);
}

.pay-loading__spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border: 3px solid var(--line);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: cpap4s-spin 0.8s linear infinite;
}

@keyframes cpap4s-spin {
  to { transform: rotate(360deg); }
}

.form-wrap--wide {
  max-width: 720px;
  padding: 48px 40px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit-row {
  margin-top: 28px;
  text-align: center;
}

.form-submit-row .btn-block {
  width: 100%;
  padding: 16px;
}

.form-submit-row .hint {
  margin-top: 14px;
}

.form-wrap .hint--center {
  text-align: center;
  margin-bottom: 24px;
}

.form-wrap .hint--tight {
  margin-top: 0;
}

.form-wrap .hint a {
  font-weight: 600;
}

.form-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-top: 20px;
  cursor: pointer;
}

.form-check-row input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.hint--indent {
  margin-left: 26px;
  margin-top: 4px;
}

.model-picked-hint.is-error {
  color: #dc2626;
}

.btn[aria-busy="true"] {
  opacity: 0.88;
  cursor: wait;
  transform: none;
}

.btn[aria-busy="true"]:hover {
  transform: none;
}

/* 报修页 */
.type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.type-toggle button {
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: inherit;
}

.type-toggle button i {
  width: 24px;
  height: 24px;
}

.type-toggle button.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.benefit-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.benefit-strip span {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.model-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.model-card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
}

.model-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.model-card.sel {
  border-color: var(--primary);
  background: var(--primary-light);
}

.model-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.model-card .name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.model-card .brand-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.model-picked-hint {
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 12px;
  min-height: 1.2em;
  font-weight: 600;
}

/* 远程诊断页 */
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.tier {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  position: relative;
}

.tier.hi {
  border-color: var(--primary);
}

.tier .who {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--text-muted);
  border-radius: 999px;
  padding: 3px 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.tier.hi .who {
  background: var(--primary);
}

.tier h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.tier .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 10px 0 2px;
}

.tier .price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.tier ul {
  padding-left: 20px;
  font-size: 0.92rem;
  margin: 16px 0;
  color: var(--text);
}

.tier li {
  margin-bottom: 8px;
}

.tier .fit {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  margin-top: 6px;
}

.deduct-banner {
  max-width: 860px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 12px;
  padding: 22px 26px;
  text-align: center;
  font-size: 1rem;
}

.deduct-banner b {
  color: #fde68a;
}

.value-box {
  max-width: 860px;
  margin: 0 auto;
  border-left: 4px solid var(--accent);
  background: #fffbeb;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.93rem;
}

.value-box--spaced {
  margin-top: 26px;
}

.steps-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.smini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  font-size: 0.88rem;
}

.smini b {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

/* 备用机页 */
.rule-table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rule-table th,
.rule-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.9375rem;
}

.rule-table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
}

.rule-table td:first-child {
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
}

.urgent-box {
  max-width: 760px;
  margin: 24px auto 0;
  border-left: 4px solid #dc2626;
  background: #fef2f2;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.93rem;
  line-height: 1.65;
}

.pay-qr-hint {
  margin-top: 14px;
}

.form-success__footer--spaced {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .form-wrap--wide {
    padding: 32px 20px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .model-picker {
    grid-template-columns: 1fr 1fr;
  }

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

  .steps-mini {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .form-wrap {
    padding: 28px 20px;
  }

  .pay-steps li {
    font-size: 0.75rem;
  }
}

/* 面包屑导航 */
.breadcrumb-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.breadcrumb-bar--in-hero {
  background: transparent;
  border-bottom: none;
  padding: 0 0 20px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 2;
}

.breadcrumb-bar--in-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb-bar--in-hero .breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-bar--in-hero .breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-bar--in-hero .breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

.breadcrumb-bar--in-article {
  background: transparent;
  border-bottom: none;
  padding: 0 0 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: #cbd5e1;
  user-select: none;
  font-size: 0.75rem;
}

.breadcrumb .current {
  color: var(--text);
  font-weight: 600;
  max-width: 480px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 寄修地址卡片 */
.ship-address-section {
  padding: 80px 0;
  background: #fff;
}

.ship-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ship-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.ship-card-header i {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.ship-card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.ship-card-header p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0;
}

.ship-card-body {
  padding: 8px 0;
}

.ship-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
}

.ship-row:last-child {
  border-bottom: none;
}

.ship-label {
  flex-shrink: 0;
  width: 56px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 2px;
}

.ship-value {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

.ship-value a {
  color: var(--primary);
}

.ship-copy {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.ship-copy:hover {
  background: var(--primary);
  color: #fff;
}

.ship-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.ship-notice i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ship-notice-warn {
  background: #fffbeb;
  color: #92400e;
  border-top-color: #fde68a;
}

.ship-notice-warn i {
  color: #d97706;
}

@media (max-width: 640px) {
  .ship-row {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .ship-copy {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
  }

  .ship-card-header,
  .ship-notice {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ===== 文章页布局 ===== */
.article-section {
  padding: 32px 0 80px;
}

.article-section > .container:first-child {
  margin-bottom: 8px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

.article .tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(0, 161, 155, 0.15);
  border-radius: 999px;
  padding: 3px 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.article h1 {
  font-size: 1.75rem;
  line-height: 1.45;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.article .meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.article p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.article h3 {
  color: var(--primary-dark);
  margin: 36px 0 16px;
  font-size: 1.2rem;
}

.article blockquote {
  border-left: 4px solid var(--accent);
  background: #fffbeb;
  padding: 16px 22px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #92400e;
}

.article-back {
  text-align: center;
  margin-top: 32px;
}

.article-back a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9375rem;
}

.article-back a:hover {
  color: var(--primary);
}

.story-pagination {
  margin-top: 48px;
}

.story-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.story-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.story-pagination a.page-numbers:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.story-pagination span.page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.story-pagination .prev.page-numbers,
.story-pagination .next.page-numbers {
  min-width: auto;
}

.story-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.story-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.2s ease;
}

.story-post-nav__link:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.story-post-nav__prev {
  text-align: left;
}

.story-post-nav__next {
  text-align: right;
}

.story-post-nav__link--empty {
  visibility: hidden;
  pointer-events: none;
}

.story-post-nav__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.story-post-nav__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .story-post-nav {
    grid-template-columns: 1fr;
  }

  .story-post-nav__next {
    text-align: left;
  }

  .story-post-nav__link--empty {
    display: none;
  }
}

/* ===== 文章页右侧小工具 ===== */
.article-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.widget-title i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.sidebar-widget p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.widget-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.9375rem;
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* CTA 主卡片 */
.sidebar-widget-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border: none;
  color: #fff;
}

.sidebar-widget-cta .widget-title {
  color: #fff;
}

.sidebar-widget-cta .widget-title i {
  color: rgba(255, 255, 255, 0.85);
}

.sidebar-widget-cta p {
  color: rgba(255, 255, 255, 0.85);
}

.sidebar-widget-cta .btn-primary {
  background: #fff;
  color: var(--primary);
}

.sidebar-widget-cta .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.sidebar-widget-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

/* 联系电话 */
.widget-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.widget-phone:hover {
  color: var(--primary-dark);
}

.widget-hint {
  font-size: 0.8125rem !important;
  margin-bottom: 16px !important;
}

.widget-qr {
  text-align: center;
  padding-top: 4px;
}

.widget-qr img {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 8px;
}

.widget-qr span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* 工具链接 */
.widget-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.widget-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.15s ease;
}

.widget-links a i {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.widget-links a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* 故事列表页 */
.story-archive-section {
  padding: 64px 0;
}

.story-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* 归档页：左图右文列表卡片 */
.story-list .story-card--list {
  flex-direction: row;
  align-items: stretch;
}

.story-list .story-card--list .story-card-media {
  flex: 0 0 220px;
  width: 220px;
  aspect-ratio: auto;
  min-height: 148px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.story-list .story-card--list .story-card-body {
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.story-list .story-card--list .story-card-body h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0;
  padding: 0;
  border: none;
  -webkit-line-clamp: 2;
}

.story-list .story-card--list .story-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}

.story-list .story-card--list .tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 9999px;
  padding: 3px 10px;
  font-weight: 600;
  margin: 0;
  width: fit-content;
  letter-spacing: 0.04em;
}

.story-list .story-card--list .story-excerpt {
  margin: 14px 0 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-list .story-card--list .story-card-more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.story-list .story-card--list:hover .story-card-more {
  color: var(--primary-dark);
}

.story-list-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (max-width: 640px) {
  .story-list .story-card--list {
    flex-direction: column;
  }

  .story-list .story-card--list .story-card-media {
    flex: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .story-list .story-card--list .story-card-body h3 {
    font-size: 1.0625rem;
  }

  .story-list .story-card--list .story-card-meta {
    margin-top: 8px;
  }

  .story-list .story-card--list .story-excerpt {
    margin-top: 12px;
    font-size: 0.875rem;
    line-height: 1.75;
    -webkit-line-clamp: 3;
  }

  .story-list .story-card--list .story-card-more {
    padding-top: 14px;
  }
}

/* 故事列表 */
.widget-stories {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-stories a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.4;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

.widget-stories a:hover,
.widget-stories a.active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
}

.widget-more {
  display: block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.widget-more:hover {
  text-decoration: underline;
}

/* 滤膜登记卡片 */
.sidebar-widget-accent {
  border-top: 4px solid var(--accent);
}

.sidebar-widget-accent .widget-title i {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sidebar-widget-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .article {
    padding: 32px 24px;
  }

  .article h1 {
    font-size: 1.4rem;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #0f172a; /* 深色背景 */
  color: #fff;
  padding: 64px 0 0;
  position: relative;
  z-index: 10;
}

/* 五栏页脚 */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

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

.footer-col-brand .logo-brand {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-slogan {
  color: #94a3b8;
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-phone-block {
  margin-top: 4px;
}

.footer-phone-block .contact-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 4px;
}

.footer-phone-block .contact-phone {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff !important;
}

.footer-phone-block .contact-phone:hover {
  color: var(--accent) !important;
}

.footer-col-qr {
  text-align: left;
}

.footer-col-qr h4 {
  text-align: left;
}

.footer-qr-row {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.footer-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-qr-item img {
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 4px;
  display: block;
}

.footer-qr-item span {
  font-size: 0.75rem;
  color: #64748b;
}

/* 底部版权区 */
.footer-bottom {
  padding: 24px 0 32px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-bottom a {
  color: #64748b;
}

.footer-bottom a:hover {
  color: #94a3b8;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: #475569 !important;
  max-width: 720px;
  margin: 12px auto 0 !important;
  line-height: 1.6 !important;
}

@media (max-width: 1200px) {
  .logo-brand--header .logo-wordmark__sub {
    display: none;
  }

  .logo-brand--header .logo-wordmark {
    gap: 0;
  }

  nav.menu {
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 2.75rem; }
  .craftsman .inner { gap: 40px; }
  .craftsman .photo { flex: 0 0 320px; }
  nav.menu { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-col-qr { grid-column: auto; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero { padding: 60px 0; }

  .logo-brand--header img {
    height: 30px;
  }

  .logo-brand--header .logo-wordmark__cn {
    font-size: 0.8125rem;
  }

  .logo-brand img {
    height: 30px;
  }

  .logo-wordmark {
    padding-left: 10px;
  }
  
  nav.menu, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .mobile-bar { 
    display: flex !important; 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    gap: 12px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
  }
  
  .mobile-bar a {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text);
  }
  
  .mobile-bar a.primary {
    background: var(--primary);
    color: #fff;
    padding: 8px;
    border-radius: 8px;
  }
  
  body { padding-bottom: 80px; }
  
  .steps { grid-template-columns: 1fr 1fr; }
  .brands { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  
  .craftsman .inner { flex-direction: column; text-align: center; }
  .craftsman .photo { width: 100%; height: 300px; }
  .craftsman h2 { text-align: center; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }

  .footer-col-qr {
    grid-column: 1 / -1;
  }

  .footer-qr-row {
    justify-content: flex-start;
  }
  
  .mobile-drawer.open { display: block !important; }
}

/* ========================================
   维修站首页 · 专用样式
   ======================================== */

/* Hero 双栏 */
.hero-repair {
  background-color: #001e3c;
  background-image: 
    linear-gradient(135deg, rgba(0, 30, 60, 0.92) 0%, rgba(0, 45, 90, 0.8) 50%, rgba(0, 30, 60, 0.92) 100%),
    url('images/hero-craftsman.jpg'); /* 医疗科技展位/实验室感背景图 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 50px 0 120px; /* 减小上边距，增加下边距 */
  position: relative;
  overflow: hidden;
}

/* 品牌色光晕增强（去除怪异绿色，改用纯净青蓝） */
.hero-repair::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 75% 25%, rgba(0, 161, 155, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(0, 86, 168, 0.2) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

@keyframes heroGlow {
  from { opacity: 0.8; transform: scale(1); }
  to { opacity: 1; transform: scale(1.02); }
}

.hero-repair::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px; /* 恢复较大的高度 */
  /* 高级渐变：从深蓝背景色平滑过渡到页面背景色 */
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.2) 50%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 380px;
  gap: 60px; /* 缩小间距 */
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 161, 155, 0.15); /* 改为青色系 */
  border: 1px solid rgba(0, 161, 155, 0.3);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5eead4; /* 更清爽的青色 */
  margin-bottom: 20px; /* 缩小间距 */
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-repair h1 {
  font-size: 3.25rem; /* 略微缩小字号 */
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-repair h1 span {
  display: block;
  font-size: 0.45em;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 800;
  opacity: 0.9;
}

.hero-lead {
  font-size: 1.15rem; /* 略微缩小 */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border: none;
  box-shadow: 0 10px 25px -5px rgba(0, 161, 155, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.hero-actions .btn-primary:hover::before {
  left: 100%;
}

.hero-actions .btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero-trust i {
  width: 18px;
  height: 18px;
  color: var(--accent); /* 改为青色系，统一视觉 */
}

/* Hero 右侧面板 - 极致玻璃拟态 */
.hero-panel-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
}

@supports (backdrop-filter: blur(10px)) {
  .hero-panel-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(25px);
  }
}

.hero-panel-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 800;
}

.hero-panel-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-entry {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-entry:hover {
  transform: scale(1.02) translateX(6px);
  box-shadow: 0 10px 20px -8px rgba(0, 86, 168, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.entry-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.hero-entry:nth-child(4) .entry-icon { background: var(--accent-light); color: var(--accent); }
.hero-entry:nth-child(5) .entry-icon { background: rgba(0, 86, 168, 0.1); color: var(--primary); }

.hero-entry span b {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1px;
}

.hero-entry span small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.entry-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  margin-left: auto;
  opacity: 0.4;
}

.hero-panel-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-panel-foot i {
  width: 16px;
  height: 16px;
}

.hero-panel-foot a {
  font-weight: 700;
}

/* 数据条 */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stats-bar .stat b {
  font-size: 2rem;
}

/* 快速工具 */
.quick-tools {
  padding: 56px 0;
}

.tool-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  color: var(--text);
}

.tool-card.featured {
  border-color: var(--primary);
  background: var(--primary-light);
}

.tool-card.featured .tool-icon {
  background: var(--primary);
  color: #fff;
}

.tool-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.tool-icon i {
  width: 24px;
  height: 24px;
}

.tool-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.tool-link {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}

/* 通用区块 */
.section-alt {
  background: #f8fafc;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  margin-bottom: 8px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* 流程轨道 */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0, 86, 168, 0.25);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 品牌卡片 */
.brand-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px; /* 随着容器加宽，也同步加宽 */
  margin: 0 auto;
}

.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03); /* 增加微妙阴影 */
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 86, 168, 0.1);
  border-color: var(--primary-light);
}

.brand-image {
  height: 240px; /* 再次微调高度 */
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 30px;
  position: relative;
}

/* 给机器增加一个浅浅的光晕效果，让它看起来更立体 */
.brand-image::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 20px;
  background: rgba(0,0,0,0.05);
  filter: blur(15px);
  bottom: 25px;
  border-radius: 50%;
  z-index: 0;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

.brand-card:hover .brand-image img {
  transform: scale(1.05);
}

.brand-card-content {
  padding: 24px 32px 32px;
}

.brand-logo-text {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.brand-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.brand-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.brand-card li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.brand-card li::before {
  content: '✓ ';
  color: var(--secondary);
  font-weight: 700;
}

.brand-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* 价格卡片 */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.price-card.highlight {
  border-color: var(--primary);
  background: var(--primary-light);
}

.price-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 600;
}

.price-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-details {
  max-width: 800px;
  margin: 0 auto;
}

.price-details summary {
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  padding: 12px;
  list-style: none;
}

.price-details summary::-webkit-details-marker {
  display: none;
}

/* 为什么选我们 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 24px 16px;
}

.why-item i {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.why-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 匠人区（新版） */
.craftsman-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.craftsman-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.craftsman-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.craftsman-copy h2 {
  text-align: left;
  margin-bottom: 16px;
}

.craftsman-copy blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--dark);
  background: var(--accent-light);
  border-radius: 0 8px 8px 0;
}

.craftsman-copy p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* CTA 区 (召回区) */
.cta-section {
  background-color: #f8fafc;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 100px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
}

.cta-card h3 {
  color: var(--dark);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* 登记领滤膜卡片 - 强调青色/绿色系 */
.cta-card:first-child {
  border-top: 6px solid var(--accent);
}

.cta-card:first-child h3 { color: var(--accent); }

/* 报修卡片 - 强调品牌蓝色系 */
.cta-main {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: #fff;
}

.cta-main h3 { color: #fff; }
.cta-main p { color: rgba(255, 255, 255, 0.85); }

.cta-btns {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* 按钮样式修复 */
.cta-btns .btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 16px 32px;
}

.cta-btns .btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.cta-btns .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.cta-btns .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* 非主卡片的按钮 */
.cta-card:first-child .btn-outline-accent {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}

/* 首页响应式 */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-repair h1 { font-size: 2.5rem; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .craftsman-grid { grid-template-columns: 1fr; }
  .craftsman-photo img { height: 320px; }
}

@media (max-width: 768px) {
  .hero-repair { padding: 48px 0 40px; }
  .hero-repair h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .tool-cards { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 24px; }
  .process-track::before { display: none; }
  .brand-cards { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}
