/* ============================================================
   page-hero.css v2 — 二级页面统一样式
   设计语言：暖白底 + 古金细线装饰 + 宋体大标题 + 古金点缀
   适用：advantages/index, ambition/index, challenge/index,
        solution/index, future/index, about/company
   依赖：tokens.css + global.css
   ============================================================ */

/* ===== 子页面基础 ===== */
body.subpage {
  padding-top: var(--nav-height-desktop);
  background:
    radial-gradient(ellipse 80% 30% at 50% 0%, var(--gold-tint-08) 0%, transparent 70%),
    repeating-linear-gradient(0deg,  rgba(197,162,77,0.025) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(197,162,77,0.025) 0 1px, transparent 1px 80px),
    var(--white-warm);
  color: var(--black-text);
  min-height: 100vh;
}

/* ===== 二级页 Hero ===== */
.page-hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--gold-tint-12) 0%, transparent 65%),
    var(--white-ivory);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gold-tint-25);
  overflow: hidden;
}
/* 底部古金中央 2px 高亮线 */
.page-hero::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -1px;
  transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--gold-primary);
}
.page-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
/* 左右两侧古金竖装饰线 + 端点小装饰，占住 hero 两边留白 */
.page-hero .container::before,
.page-hero .container::after {
  content: '';
  position: absolute;
  top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold-tint-25) 18%,
    var(--gold-tint-40) 50%,
    var(--gold-tint-25) 82%,
    transparent 100%);
}
.page-hero .container::before { left: 36px; }
.page-hero .container::after  { right: 36px; }
/* 四角小装饰角 */
.page-hero > *:first-child::before,
.page-hero > *:first-child::after {
  /* 留作未来扩展，当前仅由 .container::before/::after 承担 */
}
@media (max-width: 1024px) {
  .page-hero .container { padding: 0 var(--space-lg); }
  .page-hero .container::before,
  .page-hero .container::after { display: none; }
}
.page-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.6);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.page-hero .hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}
.page-hero h1 {
  font-family: 'Source Han Serif SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 4px;
  line-height: 1.2;
  margin: 0 0 8px;
  text-shadow: 0 4px 20px rgba(197, 162, 77, 0.12);
}
.page-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 24px auto 16px;
}
.page-hero p,
.page-hero .lead,
.page-hero .subtitle {
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}
.page-hero .meta,
.page-hero .hero-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

/* 深色版二级页 hero（如博客列表） */
.page-hero.dark, .page-hero--dark {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(197,162,77,0.12) 0%, transparent 65%),
    repeating-linear-gradient(0deg,  rgba(197,162,77,0.04) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(90deg, rgba(197,162,77,0.04) 0 1px, transparent 1px 70px),
    linear-gradient(180deg, #050505 0%, #0F0F0F 100%);
  color: var(--white-pure);
  border-bottom: 1px solid var(--gold-tint-40);
}
.page-hero.dark h1, .page-hero--dark h1 {
  color: var(--white-pure);
  text-shadow: 0 4px 24px rgba(197, 162, 77, 0.18);
}
.page-hero.dark p, .page-hero--dark p {
  color: rgba(255, 255, 255, 0.75);
}
.page-hero.dark .hero-tag, .page-hero--dark .hero-tag {
  background: rgba(197, 162, 77, 0.12);
  color: var(--gold-primary);
}
.page-hero.dark::before, .page-hero--dark::before {
  border-color: var(--gold-tint-40);
}

/* ===== 通用 section ===== */
.page-section,
.subpage-section,
section.section {
  padding: 80px 0;
  position: relative;
}
.page-section.alt,
.page-section--alt,
section.section.alt {
  background: var(--white-ivory);
}
.subpage-section .container,
.page-section .container,
section.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
/* 二级页内容区 section-header 改为左对齐（hero 仍居中）
   带古金竖线锚定，强化分章节阅读节奏 */
.subpage-section .section-header,
.page-section .section-header {
  text-align: left;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-primary);
  position: relative;
}
.subpage-section .section-tag,
.page-section .section-tag {
  display: inline-flex;
  margin-bottom: 12px;
}
.subpage-section .section-title,
.page-section .section-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 2px;
  border: 0;
  padding: 0;
  display: block;
  margin: 0;
  line-height: 1.3;
}
.subpage-section .section-title::after,
.page-section .section-title::after {
  /* 左对齐版本不要居中渐隐下划线 */
  content: none;
}
.subpage-section .section-sub,
.page-section .section-sub {
  font-size: 15px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  margin-top: 8px;
  line-height: 1.6;
}

/* 仅 hero 区保留居中（hero 是首屏聚焦） */
.page-hero .section-header { text-align: center; border-left: 0; padding-left: 0; }
.page-hero .section-title::after { display: block; }

/* ===== 通用栅格 ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* ===== 通用信息卡（顶部古金细线 + 白底，文本左对齐） ===== */
.info-card,
.c-card, .a-card, .feature-card,
.adv-card, .pillar-card {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-top: 2px solid var(--gold-primary);
  border-radius: 2px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  text-align: left;
}
.info-card:hover,
.c-card:hover, .a-card:hover, .feature-card:hover,
.adv-card:hover, .pillar-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(197, 162, 77, 0.12);
}
.info-card .icon, .info-card-icon,
.c-card-icon, .a-card-icon,
.feature-icon, .adv-icon, .pillar-icon {
  width: 32px; height: 32px;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.info-card .icon [data-lucide],
.c-card-icon [data-lucide],
.a-card-icon [data-lucide],
.feature-icon [data-lucide],
.adv-icon [data-lucide],
.pillar-icon [data-lucide] {
  width: 32px; height: 32px;
}
.info-card .title, .info-card-title,
.c-card-title, .a-card-title, .feature-title,
.adv-title, .pillar-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.3;
}
.info-card .desc, .info-card-desc,
.c-card-desc, .a-card-desc, .feature-desc,
.adv-desc, .pillar-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0;
  flex: 1;
}
.info-card .link, .info-card-link,
.c-card-link, .a-card-link, .feature-link,
.adv-link, .pillar-link {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 警示卡（保留与首页 #screen3 同语义） */
.a-card.warn, .warn-card {
  background: rgba(162, 59, 59, 0.03);
  border-top-color: #A23B3B;
  border-color: rgba(162, 59, 59, 0.3);
}

/* ===== 四柱方案（solution/index.html） ===== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.pillar-card {
  position: relative;
  padding: 28px 24px 24px;
  align-items: flex-start;
}
.pillar-card .pillar-num,
.pillar-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-family: 'Source Han Serif SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  background: var(--gold-tint-08);
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: 0;
}
/* pillar-sub 副标题（与 .s-subtitle 同源） */
.pillar-card .pillar-sub {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
  margin: 0;
}
/* pillar-goal 目标提示框（与 .s-goal 同源） */
.pillar-card .pillar-goal {
  font-size: 13px;
  color: var(--gold-deep);
  background: var(--gold-tint-08);
  border-left: 2px solid var(--gold-primary);
  padding: 8px 12px;
  border-radius: 0 2px 2px 0;
  line-height: 1.6;
  width: 100%;
  margin: 0;
}

/* ===== 联系/CTA 区块（future/index.html） ===== */
.contact-section,
section.contact-section {
  background: linear-gradient(180deg, var(--white-ivory), var(--white-warm));
  padding: 80px 0;
  position: relative;
  border-top: 1px solid var(--gold-tint-25);
  border-bottom: 1px solid var(--gold-tint-25);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.ct-card,
.contact-item {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-radius: 2px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ct-card:hover,
.contact-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 162, 77, 0.10);
}
.ct-icon, .contact-icon {
  width: 32px; height: 32px;
  color: var(--gold-primary);
}
.ct-icon [data-lucide], .contact-icon [data-lucide] {
  width: 32px; height: 32px;
}
.ct-label, .contact-label {
  font-size: 12px;
  color: var(--gray-700);
  letter-spacing: 2px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
}
.ct-value, .contact-value {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--black-pure);
  letter-spacing: 1px;
  word-break: break-all;
}

/* 主推联系卡（电话、微信优先视觉权重） */
.ct-card.primary,
.contact-item.primary {
  background: linear-gradient(135deg, var(--black-pure), var(--black-soft));
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}
.ct-card.primary .ct-label,
.ct-card.primary .contact-label,
.contact-item.primary .contact-label {
  color: rgba(255, 255, 255, 0.65);
}
.ct-card.primary .ct-value,
.ct-card.primary .contact-value,
.contact-item.primary .contact-value {
  color: var(--gold-primary);
}

/* future hero 联系卡 */
.hero-contact-card {
  background: var(--white-pure);
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  padding: 36px 32px;
  margin-top: 32px;
  position: relative;
}
.hero-contact-card::before {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: var(--gold-primary);
}
.hcc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--black-pure);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 15px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.hcc-cta:hover {
  background: var(--gold-primary);
  color: var(--black-pure);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 162, 77, 0.30);
}

/* 资质卡 */
.qualify-card {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-left: 3px solid var(--gold-primary);
  border-radius: 2px;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}
.qualify-card:hover {
  border-color: var(--gold-primary);
  border-left-width: 4px;
}

/* ===== 底部 CTA 模块 ===== */
.cta-section,
section.cta-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, var(--gold-tint-08), transparent 70%),
    var(--white-ivory);
  padding: 96px 0 80px;
  text-align: center;
  border-top: 1px solid var(--gold-tint-25);
  position: relative;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--gold-primary);
}
.cta-section::before { top: -1px; }
.cta-section::after  { bottom: -1px; }
.cta-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 16px;
  color: var(--gray-700);
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--black-pure);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 15px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: var(--gold-primary);
  color: var(--black-pure);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 162, 77, 0.30);
}
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--black-pure);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-medium);
  font-size: 15px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.cta-btn-outline:hover {
  background: var(--gold-primary);
  color: var(--black-pure);
}

/* ===== 通用 hero 内联指标条（about/company 等） ===== */
.about-meta,
.profile-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: 24px;
  padding: 16px 0;
}
.about-meta-item,
.profile-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about-meta-num,
.profile-meta-num {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  white-space: nowrap;
}
.about-meta-lab,
.profile-meta-lab {
  font-size: 12px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body.subpage {
    padding-top: var(--nav-height-mobile);
  }
  .page-hero { padding: 56px 0 40px; }
  .page-hero::before { top: 12px; left: 12px; right: 12px; bottom: 12px; }
  .page-hero h1 { font-size: 28px; letter-spacing: 2px; }
  .page-hero p, .page-hero .lead { font-size: 15px; }
  .page-section, .subpage-section, section.section { padding: 56px 0; }
  .subpage-section .container, .page-section .container { padding: 0 var(--space-md); }
  .subpage-section .section-header, .page-section .section-header { margin-bottom: 36px; }
  .subpage-section .section-title, .page-section .section-title { font-size: 22px; letter-spacing: 2px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .info-card, .c-card, .a-card,
  .feature-card, .adv-card, .pillar-card {
    padding: 24px 20px;
  }
  .pillar-card { padding: 20px 18px 18px; }
  .pillar-card .pillar-num, .pillar-card .num { width: 36px; height: 36px; font-size: 18px; }
  .info-card .title, .c-card-title, .a-card-title,
  .feature-title, .adv-title, .pillar-title { font-size: 17px; }

  .contact-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 64px 0 48px; }
  .cta-title { font-size: 22px; letter-spacing: 2px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btn, .cta-btn-outline { justify-content: center; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 24px; }
  .info-card .title { font-size: 16px; }
}

/* ============================================================
   二级 index 页面真实容器选择器补强
   覆盖：advantages/ambition/challenge/solution/future/index.html
   关键：原 HTML 用 .content-section / -section 等具体类名，
        非 .subpage-section / .page-section
   ============================================================ */

/* 所有二级页 section 通用规则（包含 future 子 section） */
.content-section,
.value-section,
.qualify-section,
.journey-section,
.quote-section,
section.contact-section,
section.hero-section:not(.page-hero) {
  padding: 80px 0;
  position: relative;
}
.content-section + .content-section,
.value-section + .content-section,
.qualify-section + .journey-section,
.journey-section + .contact-section {
  padding-top: 0;
}
.content-section > .container,
.value-section > .container,
.qualify-section > .container,
.journey-section > .container,
.quote-section > .container,
section.contact-section > .container,
section.hero-section:not(.page-hero) > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* 隔行底色（content-section + value-section 用暖白底；其他用 ivory） */
.value-section,
.journey-section,
.quote-section {
  background: var(--white-ivory);
}
.content-section:nth-of-type(even),
section.contact-section {
  background: linear-gradient(180deg, var(--white-warm) 0%, var(--white-ivory) 100%);
}

/* section 内 section-header 左对齐 + 古金竖线锚定（与 .subpage-section 同源） */
.content-section .section-header,
.value-section .section-header,
.qualify-section .section-header,
.journey-section .section-header,
.quote-section .section-header,
section.contact-section .section-header,
section.hero-section:not(.page-hero) .section-header,
.section-heading {
  text-align: left;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-primary);
}
.content-section .section-title,
.value-section .section-title,
.qualify-section .section-title,
.journey-section .section-title,
.quote-section .section-title,
section.contact-section .section-title,
section.hero-section:not(.page-hero) .section-title,
.section-heading .title,
.section-heading h2 {
  font-family: 'Source Han Serif SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 2px;
  border: 0;
  padding: 0;
  display: block;
  margin: 0;
  line-height: 1.3;
}
.content-section .section-title::after,
.value-section .section-title::after,
.qualify-section .section-title::after,
.journey-section .section-title::after,
.quote-section .section-title::after,
section.contact-section .section-title::after,
.section-heading h2::after {
  content: none;
}
.content-section .section-sub,
.value-section .section-sub,
.qualify-section .section-sub,
.journey-section .section-sub,
.quote-section .section-sub,
section.contact-section .section-sub,
.section-heading .subtitle {
  font-size: 15px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  margin-top: 8px;
  line-height: 1.7;
}

/* section-more（查看更多类链接，居中） */
.section-more {
  text-align: center;
  margin-top: 32px;
}
.section-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
  color: var(--gold-deep);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}
.section-more a:hover {
  background: var(--gold-primary);
  color: var(--black-pure);
}

/* ============================================================
   卡片网格容器（auto-fit 自适应）
   ============================================================ */
.adv-cards,
.adv-grid,
.challenge-cards,
.solution-flow,
.pillars-flow,
.sub-cards,
.ct-grid,
.qualify-grid,
.if-grid,
.cost-grid {
  display: grid;
  gap: var(--space-lg);
}
/* 优势 6 卡 / 困境 3 卡 / 解决方案 4 柱：自适应 */
.adv-cards, .adv-grid {
  grid-template-columns: repeat(3, 1fr);
}
.challenge-cards, .sub-cards {
  grid-template-columns: repeat(3, 1fr);
}
.solution-flow, .pillars-flow {
  grid-template-columns: repeat(4, 1fr);
}
.if-grid {
  grid-template-columns: repeat(2, 1fr);
}
.cost-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
/* qualify-grid 固定 4 列（future "我们期待这样的你" 4 张卡） */
.qualify-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
/* ct-grid 4 列布局：上 4 卡（电话/微信/邮箱/时间）+ 下 1 长条地址（.ct-card-wide 跨满 4 列）
   原 HTML 第 5 卡明确标 .ct-card-wide，沿用其设计意图 */
.ct-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
/* .ct-card-wide 占满整行（4 列宽），地址等长信息横排完整可读 */
.ct-grid .ct-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  text-align: left;
}
.ct-grid .ct-card-wide .ct-icon,
.ct-grid .ct-card-wide .contact-icon {
  margin: 0;
}
.ct-grid .ct-card-wide .ct-text,
.ct-grid .ct-card-wide > div:not(.ct-icon):not(.contact-icon) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
}
.ct-grid .ct-card-wide .ct-label,
.ct-grid .ct-card-wide .contact-label { text-align: left; }
.ct-grid .ct-card-wide .ct-value,
.ct-grid .ct-card-wide .contact-value { text-align: left; }

/* ct-grid 内卡片排版统一收紧 */
.ct-grid .ct-card,
.ct-grid .contact-item {
  padding: 24px 18px;
  gap: 10px;
}
.ct-grid .ct-value,
.ct-grid .contact-value {
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  word-break: break-word;
  text-align: center;
}
.ct-grid .ct-label,
.ct-grid .contact-label {
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* solution 四柱卡片（页面级用，与首页 #screen4 .s-pillar 同源） */
.solution-flow .s-pillar,
.pillars-flow .s-pillar {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-top: 2px solid var(--gold-primary);
  border-radius: 2px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-flow .s-pillar:hover,
.pillars-flow .s-pillar:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(197, 162, 77, 0.12);
}
.solution-flow .s-num,
.pillars-flow .s-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  background: var(--gold-tint-08);
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  margin-bottom: 8px;
  line-height: 1;
}
.solution-flow .s-title,
.pillars-flow .s-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 2px;
  margin: 0;
}
.solution-flow .s-subtitle,
.pillars-flow .s-subtitle {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
}
.solution-flow .s-desc,
.pillars-flow .s-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-700);
  flex: 1;
}
.solution-flow .s-goal,
.pillars-flow .s-goal {
  font-size: 13px;
  color: var(--gold-deep);
  background: var(--gold-tint-08);
  border-left: 2px solid var(--gold-primary);
  padding: 8px 12px;
  border-radius: 0 2px 2px 0;
  line-height: 1.6;
  width: 100%;
}
.solution-flow .s-btn,
.pillars-flow .s-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: 1px;
  color: var(--black-pure);
  background: transparent;
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  text-align: center;
  margin-top: 4px;
  transition: all 0.3s ease;
}
.solution-flow .s-btn:hover,
.pillars-flow .s-btn:hover {
  background: var(--gold-primary);
  color: var(--black-pure);
}

/* challenge 痛点 3 卡：与首页 #screen2 同源 */
.challenge-cards .c-card,
.sub-cards .c-card {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-left: 3px solid var(--gold-primary);
  border-radius: 2px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.challenge-cards .c-card:hover,
.sub-cards .c-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(197, 162, 77, 0.12);
}

/* cost-grid 子代价小卡（4 项一行） */
.cost-grid .cost-card {
  background: linear-gradient(135deg, var(--gold-tint-08), transparent);
  border: 1px solid var(--gold-tint-25);
  border-radius: 2px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cost-grid .cost-card:hover { border-color: var(--gold-primary); }

/* future hero-section（联系页首屏，居中聚焦） */
section.hero-section.qualify-section,
section.qualify-section.hero-section,
.hero-section[class*="qualify"] { /* fallback */ }
section.hero-section:not(.page-hero) {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--gold-tint-12), transparent 65%),
    var(--white-ivory);
  text-align: center;
  border-bottom: 1px solid var(--gold-tint-25);
}
section.hero-section:not(.page-hero) > .container {
  text-align: center;
}
section.hero-section:not(.page-hero) h1 {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 4px;
  margin: 0 0 12px;
}
section.hero-section:not(.page-hero) p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .adv-cards, .adv-grid, .challenge-cards, .sub-cards { grid-template-columns: repeat(2, 1fr); }
  .solution-flow, .pillars-flow { grid-template-columns: repeat(2, 1fr); }
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
  /* 中等屏：4 卡 → 2 列；ct-grid 仍 2 列（4 卡 2×2 + 长条地址跨 2 列） */
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-grid .ct-card-wide { grid-column: 1 / -1; flex-direction: column; align-items: center; text-align: center; }
  .ct-grid .ct-card-wide .ct-text,
  .ct-grid .ct-card-wide > div:not(.ct-icon) { align-items: center; text-align: center; }
  .qualify-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .content-section, .value-section,
  .qualify-section, .journey-section, .quote-section,
  section.contact-section, section.hero-section:not(.page-hero) { padding: 56px 0; }
  .content-section > .container,
  .value-section > .container,
  .qualify-section > .container,
  .journey-section > .container,
  .quote-section > .container,
  section.contact-section > .container,
  section.hero-section:not(.page-hero) > .container { padding: 0 var(--space-md); }
  .adv-cards, .adv-grid,
  .challenge-cards, .sub-cards,
  .solution-flow, .pillars-flow,
  .if-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: 1fr 1fr; }
  .ct-grid, .qualify-grid { grid-template-columns: 1fr; }
  .content-section .section-header,
  .value-section .section-header,
  .qualify-section .section-header,
  .journey-section .section-header,
  .quote-section .section-header,
  section.contact-section .section-header { margin-bottom: 24px; }
  .content-section .section-title,
  .value-section .section-title { font-size: 20px; letter-spacing: 1.5px; }
}

/* ============================================================
   future/index.html · quote-section 终章排版
   名言+理念居中（碑文式庄重），落款靠右（传统书信"上居中下落款"）
   ============================================================ */
.quote-section .container {
  max-width: 760px;
}
.quote-section .quote-text {
  font-family: 'Source Han Serif SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--black-pure);
  text-align: center;
  letter-spacing: 4px;
  line-height: 1.8;
  margin: 0 0 24px;
  position: relative;
  padding: 0 32px;
}
/* 名言两侧古金装饰角线 */
.quote-section .quote-text::before,
.quote-section .quote-text::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 10%, var(--gold-tint-40) 50%, transparent 90%);
}
.quote-section .quote-text::before { left: 0; }
.quote-section .quote-text::after  { right: 0; }
.quote-section .quote-text br + * { display: block; }

.quote-section .quote-source {
  font-size: 14px;
  color: var(--gold-deep);
  text-align: right;
  letter-spacing: 2px;
  font-weight: var(--fw-medium);
  margin: 0;
  padding-right: 8px;
  position: relative;
}
/* 落款前的细古金短线（"—" 的延伸视觉） */
.quote-section .quote-source::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-primary);
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .quote-section .quote-text {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 0 12px;
  }
  .quote-section .quote-text::before,
  .quote-section .quote-text::after { display: none; }
  .quote-section .quote-source { font-size: 13px; letter-spacing: 1.5px; }
}

/* ============================================================
   future/index.html 专用整套样式补强
   覆盖 hero-section / qualify-section / journey-section / contact-section
   注：future 用独有 class（hero-main-title/.section-heading/.sec-* 等），
       不能复用通用 .page-hero 的选择器
   ============================================================ */

/* ===== hero-section（首屏：志启未来）===== */
section.hero-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--gold-tint-12) 0%, transparent 65%),
    repeating-linear-gradient(0deg,  rgba(197,162,77,0.03) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(197,162,77,0.03) 0 1px, transparent 1px 80px),
    var(--white-ivory);
  padding: 64px 0;
  border-bottom: 1px solid var(--gold-tint-25);
}
section.hero-section > .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
/* 左右两栏：左标题+引用 / 右联系卡 */
.hero-section .hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.6);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-tag-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}
.hero-main-title {
  font-family: 'Source Han Serif SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif;
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 4px;
  line-height: 1.25;
  margin: 0 0 20px;
  text-shadow: 0 4px 20px rgba(197, 162, 77, 0.12);
}
.hero-main-title span {
  color: var(--gold-primary);
}
.hero-main-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-700);
  letter-spacing: 0.5px;
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-quote-box {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-left: 3px solid var(--gold-primary);
  border-radius: 2px;
  padding: 22px 26px;
  position: relative;
}
.hero-quote-box::before {
  content: '"';
  position: absolute;
  top: -4px; left: 14px;
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 36px;
  color: var(--gold-primary);
  opacity: 0.4;
  line-height: 1;
}
.hero-quote-text {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--black-pure);
  letter-spacing: 1.5px;
  font-weight: var(--fw-semibold);
  margin: 0 0 10px;
}
.hero-quote-src {
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 1.5px;
  text-align: right;
  margin: 0;
}

/* hero-section 右栏：hero-contact-card */
.hero-section .hero-contact-card {
  background: linear-gradient(180deg, var(--black-pure), var(--black-soft));
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  padding: 36px 32px;
  position: relative;
  margin-top: 0;
}
.hero-section .hero-contact-card::before {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: var(--gold-primary);
}
.hcc-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-tint-25);
}
.hcc-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.hcc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(197, 162, 77, 0.06);
  border: 1px solid var(--gold-tint-25);
  border-radius: 2px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.hcc-item:hover {
  border-color: var(--gold-primary);
  background: rgba(197, 162, 77, 0.10);
}
.hcc-icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  background: rgba(197, 162, 77, 0.10);
  border: 1px solid var(--gold-tint-40);
  border-radius: 2px;
  flex-shrink: 0;
}
.hcc-icon [data-lucide] { width: 18px; height: 18px; color: var(--gold-primary); }
.hcc-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 2px;
}
.hcc-value {
  font-size: 15px;
  color: var(--gold-primary);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.5px;
}
.hcc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--black-pure);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: var(--fw-bold);
  letter-spacing: 2px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(197, 162, 77, 0.30);
}
.hcc-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 162, 77, 0.45);
}

/* ===== qualify-section（我们期待这样的你）===== */
section.qualify-section {
  background:
    radial-gradient(ellipse 80% 30% at 50% 0%, var(--gold-tint-08) 0%, transparent 60%),
    var(--white-warm);
  padding: 80px 0;
}
section.qualify-section > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
/* .section-heading（future 独有，左对齐+古金竖线，与 .subpage-section .section-header 同源） */
.section-heading {
  text-align: left;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-primary);
}
.section-heading .sec-tag,
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: var(--gold-tint-12);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 2px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.section-heading .sec-title,
.sec-title,
.section-heading h2 {
  font-family: 'Source Han Serif SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 2px;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  line-height: 1.3;
}
.section-heading .sec-title::after,
.section-heading h2::after { content: none; }
.section-heading .sec-sub,
.sec-sub {
  font-size: 15px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  margin: 0;
  line-height: 1.7;
}

/* qualify-card 内子级（之前 .qualify-card 容器样式已存在，补内部子级） */
.qualify-card {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-top: 2px solid var(--gold-primary);
  border-radius: 2px;
  padding: 28px 24px;
  border-left: 1px solid var(--gold-tint-25);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.qualify-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 162, 77, 0.10);
}
.qc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-primary);
  background: var(--gold-tint-08);
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.qc-icon {
  width: 32px; height: 32px;
  color: var(--gold-primary);
}
.qc-icon [data-lucide] { width: 24px; height: 24px; color: var(--gold-primary); }
.qc-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin: 0;
}
.qc-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0;
  letter-spacing: 0.5px;
}

/* qualify-connector：4 卡下方分隔语 */
.qualify-connector {
  text-align: center;
  margin-top: 36px;
  padding: 12px 0;
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 6px;
  position: relative;
}
.qualify-connector::before,
.qualify-connector::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold-primary);
  vertical-align: middle;
  margin: 0 16px 3px;
}

/* ===== journey-section（相遇从一次对话开始）===== */
section.journey-section {
  background:
    radial-gradient(ellipse 80% 30% at 50% 100%, var(--gold-tint-12) 0%, transparent 60%),
    var(--white-ivory);
  padding: 80px 0;
}
section.journey-section > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.journey-step {
  background: var(--white-pure);
  border: 1px solid var(--gold-tint-25);
  border-radius: 2px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.journey-step::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 2px;
  background: var(--gold-primary);
}
.journey-step:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(197, 162, 77, 0.12);
}
.js-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.js-icon-wrap {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint-08);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.js-icon-wrap [data-lucide] { width: 26px; height: 26px; color: var(--gold-primary); }
.js-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 2px;
  margin: 0;
}
.journey-step p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray-700);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ===== contact-section（随时欢迎你的联系）===== */
section.contact-section .ct-title {
  font-family: 'Source Han Serif SC', 'STSong', serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--black-pure);
  letter-spacing: 3px;
  margin: 0 0 8px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-primary);
}
section.contact-section .ct-sub {
  font-size: 15px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  margin: 0 0 32px;
  padding-left: 20px;
  line-height: 1.7;
}

/* cta-wrap：地址下方的主按钮 + 备注 */
.cta-wrap {
  text-align: center;
  margin-top: 32px;
}
.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--black-pure);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 15px;
  letter-spacing: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.cta-main:hover {
  background: var(--gold-primary);
  color: var(--black-pure);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 162, 77, 0.30);
}
.cta-note {
  font-size: 13px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  margin-top: 16px;
}

/* ===== 响应式：768 / 480 ===== */
@media (max-width: 1024px) {
  .hero-section .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .journey-timeline { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  section.hero-section { padding: 48px 0; }
  section.hero-section > .container { padding: 0 var(--space-md); }
  .hero-main-title { font-size: 32px; letter-spacing: 2px; }
  .hero-main-sub { font-size: 15px; }
  .hero-section .hero-contact-card { padding: 28px 22px; }
  .hcc-title { font-size: 18px; letter-spacing: 2px; }
  section.qualify-section,
  section.journey-section { padding: 56px 0; }
  section.qualify-section > .container,
  section.journey-section > .container { padding: 0 var(--space-md); }
  .qc-title { font-size: 16px; }
  .journey-step { padding: 24px 20px; }
  .qualify-connector { letter-spacing: 4px; font-size: 13px; }
  .qualify-connector::before,
  .qualify-connector::after { width: 30px; }
  section.contact-section .ct-title { font-size: 22px; letter-spacing: 2px; }
}
