/* ==========================================================================
   南途锦域建站 - 组件样式
   暗黑系 · 共享卡片/网格/表单/FAQ/时间线等
   ========================================================================== */

/* ==========================================================================
   首页 Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.6) 50%, rgba(15, 15, 20, 0.85) 100%),
    linear-gradient(180deg, transparent 60%, var(--ink) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--purple-glow);
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(107, 75, 168, 0.1);
  margin-bottom: 26px;
  font-family: var(--font-en);
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-glow);
  box-shadow: 0 0 10px var(--purple-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 56px;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero h1 .yel {
  color: var(--purple-glow);
  position: relative;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.85;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--purple-glow);
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stats .stat span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 3px;
  font-family: var(--font-en);
}

.hero-scroll .mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--purple-soft);
  border-radius: 12px;
  margin: 10px auto 0;
  position: relative;
}

.hero-scroll .mouse::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--purple-glow);
  animation: scroll-down 1.6s infinite;
}

@keyframes scroll-down {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ==========================================================================
   核心优势卡片
   ========================================================================== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.adv-card {
  position: relative;
  padding: 34px 26px 30px;
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  transition: all 0.35s ease;
  overflow: hidden;
}

.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.adv-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  background: var(--slate-2);
  box-shadow: var(--shadow-md);
}

.adv-card:hover::before {
  transform: scaleX(1);
}

.adv-card .adv-no {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 44px;
  font-weight: 800;
  color: rgba(107, 75, 168, 0.12);
  font-family: var(--font-en);
  line-height: 1;
}

.adv-card .adv-ico {
  width: 54px;
  height: 54px;
  border-radius: var(--r-sm);
  background: rgba(107, 75, 168, 0.15);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-glow);
  transition: all 0.35s ease;
}

.adv-card:hover .adv-ico {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--glow-purple);
}

.adv-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}

.adv-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.8;
}

/* ==========================================================================
   服务模块（左右交替图文行）
   ========================================================================== */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.svc-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.svc-row.reverse {
  direction: rtl;
}

.svc-row.reverse > * {
  direction: ltr;
}

.svc-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.svc-row:hover .svc-media img {
  transform: scale(1.06);
}

.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(107, 75, 168, 0.25) 100%);
}

.svc-media .badge-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--purple-glow);
  letter-spacing: 1px;
}

.svc-body .step-no {
  font-size: 12px;
  color: var(--purple-soft);
  letter-spacing: 3px;
  font-family: var(--font-en);
  margin-bottom: 12px;
}

.svc-body h3 {
  font-size: 26px;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.svc-body > p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 22px;
}

.svc-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.svc-feat li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-2);
}

.svc-feat li svg {
  flex-shrink: 0;
  color: var(--purple-glow);
}

/* ==========================================================================
   案例网格
   ========================================================================== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.case-card {
  display: block;
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.35s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
}

.case-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-card:hover .case-img img {
  transform: scale(1.08);
}

.case-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 12, 0.7) 100%);
}

.case-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 12px;
  background: rgba(107, 75, 168, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  color: #fff;
  letter-spacing: 1px;
}

.case-info {
  padding: 22px 22px 24px;
}

.case-info h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
}

.case-info p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line-2);
  padding-top: 14px;
}

.case-meta .more {
  color: var(--purple-glow);
  font-weight: 600;
  transition: transform 0.25s ease;
}

.case-card:hover .case-meta .more {
  transform: translateX(4px);
}

/* ==========================================================================
   建站流程
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0.4;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--slate);
  border: 1px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-glow);
  font-family: var(--font-en);
  margin: 0 auto 20px;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 6px rgba(107, 75, 168, 0.08);
}

.step-item:hover .step-circle {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--glow-purple), 0 0 0 6px rgba(107, 75, 168, 0.15);
}

.step-item h4 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ==========================================================================
   资讯列表项
   ========================================================================== */
.news-list {
  margin-bottom: 16px;
}

.news-item {
  display: flex;
  gap: 22px;
  padding: 22px;
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.news-item:hover {
  border-color: var(--purple);
  background: var(--slate-2);
  transform: translateX(6px);
}

.n-thumb {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-sm);
  overflow: hidden;
}

.n-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-item:hover .n-thumb img {
  transform: scale(1.08);
}

.n-body {
  flex: 1;
  min-width: 0;
}

.n-body h4 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.news-item:hover .n-body h4 {
  color: var(--purple-glow);
}

.n-excerpt {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.n-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
}

.n-foot .read {
  color: var(--purple-glow);
  font-weight: 600;
}

/* 资讯页两栏布局 */
.news-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.news-page-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 30px;
}

.side-card {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 24px;
}

.side-card h4 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
  letter-spacing: 1px;
}

/* 迷你资讯项（侧栏） */
.news-mini {
  margin-bottom: 14px;
}

.news-mini:last-child {
  margin-bottom: 0;
}

.mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.m-thumb {
  flex-shrink: 0;
  width: 84px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
}

.m-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mini-item:hover .m-thumb img {
  transform: scale(1.1);
}

.m-body h5 {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.mini-item:hover .m-body h5 {
  color: var(--purple-glow);
}

.m-date {
  font-size: 11.5px;
  color: var(--muted);
}

/* ==========================================================================
   文章详情
   ========================================================================== */
.article-wrap {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 40px;
}

.article-head h1 {
  font-size: 30px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 28px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta svg {
  color: var(--purple-soft);
}

.article-content {
  font-size: 15px;
  line-height: 2;
  color: var(--text-2);
}

.article-content img {
  border-radius: var(--r-md);
  margin-bottom: 24px;
  width: 100%;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2,
.article-content h3 {
  color: var(--text);
  margin: 30px 0 16px;
  font-size: 20px;
}

.article-content ul,
.article-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.article-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-tags a {
  padding: 6px 14px;
  background: var(--slate-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  color: var(--text-2);
  transition: all 0.25s ease;
}

.article-tags a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ==========================================================================
   CTA 横幅
   ========================================================================== */
.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 44px 48px;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--slate) 100%);
  border: 1px solid var(--purple);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 218, 0.3) 0%, transparent 70%);
}

.cta-text {
  position: relative;
  z-index: 2;
}

.cta-text h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 14px;
  color: rgba(233, 231, 242, 0.8);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   FAQ 折叠
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--purple);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15.5px;
  color: var(--text);
  font-weight: 600;
}

.faq-q .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--slate-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-glow);
  transition: all 0.3s ease;
}

.faq-item.open .faq-q .faq-icon {
  background: var(--purple);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.9;
}

/* ==========================================================================
   价格方案
   ========================================================================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.price-card {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.35s ease;
}

.price-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--purple);
  background: linear-gradient(180deg, var(--slate-2) 0%, var(--slate) 100%);
  box-shadow: var(--glow-purple);
}

.price-card .price-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 4px 14px;
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  border-radius: var(--r-pill);
  letter-spacing: 1px;
}

.price-card h3 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 8px;
}

.price-card .price-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.price-card .price-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--purple-glow);
  font-family: var(--font-en);
  margin-bottom: 4px;
}

.price-card .price-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 11px;
  line-height: 1.6;
}

.price-card ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--purple-glow);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   团队卡片
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.35s ease;
}

.team-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.team-avatar {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: all 0.4s ease;
}

.team-card:hover .team-avatar img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.team-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 12, 0.6) 100%);
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12.5px;
  color: var(--purple-glow);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ==========================================================================
   时间线（发展历程）
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--purple-deep), transparent);
}

.tl-item {
  position: relative;
  padding-bottom: 40px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--purple);
  box-shadow: 0 0 12px var(--purple);
}

.tl-year {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-glow);
  font-family: var(--font-en);
  margin-bottom: 8px;
}

.tl-item h4 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}

.tl-item p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.8;
}

/* ==========================================================================
   荣誉资质网格
   ========================================================================== */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.honor-card {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 30px 22px;
  text-align: center;
  transition: all 0.35s ease;
}

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

.honor-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(107, 75, 168, 0.15);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-glow);
}

.honor-card h4 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.honor-card p {
  font-size: 12.5px;
  color: var(--muted);
}

/* ==========================================================================
   联系表单
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 36px;
}

.contact-info-card h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-info-card .ci-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

.ci-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.ci-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(107, 75, 168, 0.15);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-glow);
  flex-shrink: 0;
}

.ci-list li .ci-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 3px;
}

.ci-list li .ci-val {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}

.contact-form {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--coal);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 75, 168, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-tip {
  font-size: 13px;
  margin-top: 12px;
  min-height: 20px;
}

/* ==========================================================================
   通用文本/图文模块
   ========================================================================== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-block.reverse .split-media {
  order: 2;
}

.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(107, 75, 168, 0.2) 100%);
}

.split-body .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--purple-glow);
  text-transform: uppercase;
  font-family: var(--font-en);
  margin-bottom: 14px;
}

.split-body h2 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.split-body > p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.95;
  margin-bottom: 22px;
}

.split-list {
  margin-bottom: 26px;
}

.split-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-2);
  align-items: flex-start;
}

.split-list li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(107, 75, 168, 0.15);
  color: var(--purple-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ==========================================================================
   口碑评价
   ========================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--slate);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 30px 26px;
  position: relative;
  transition: all 0.35s ease;
}

.review-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.review-card .quote-mark {
  font-size: 48px;
  color: rgba(107, 75, 168, 0.25);
  font-family: var(--font-en);
  line-height: 0.5;
  margin-bottom: 14px;
}

.review-card .review-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author .ra-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-author .ra-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author .ra-name {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.review-author .ra-role {
  font-size: 12px;
  color: var(--muted);
}

/* ==========================================================================
   通用响应式（组件层）
   ========================================================================== */
@media (max-width: 1100px) {
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .honor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 980px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .svc-row.reverse {
    direction: ltr;
  }
  .news-page-grid {
    grid-template-columns: 1fr;
  }
  .news-side {
    position: static;
  }
  .split-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split-block.reverse .split-media {
    order: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-stats {
    gap: 30px;
  }
  .hero-stats .stat strong {
    font-size: 32px;
  }
  .news-item {
    flex-direction: column;
  }
  .n-thumb {
    width: 100%;
  }
  .article-wrap {
    padding: 26px;
  }
  .article-head h1 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .adv-grid,
  .case-grid,
  .team-grid,
  .honor-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .svc-feat {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 30px 24px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
