/* ============================================================
   赣州市懂财咨询有限公司 - 全局样式
   GEO 优化版 | 财税行业专业风格
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #c41e3a;
  --primary-light: #e0475b;
  --primary-dark: #8b1529;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --green: #2d6a4f;
  --green-light: #40916c;
  --text: #2d3436;
  --text-light: #636e72;
  --text-muted: #a0a0a0;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-section: #f0f2f5;
  --border: #e0e4e8;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

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

ul, ol { padding-left: 1.5em; }

/* ---- Typography ---- */
h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--primary-dark); line-height: 1.3; }
h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; color: var(--primary-dark); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; color: var(--text); margin-bottom: 0.6rem; }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.section-title-bar {
  width: 60px; height: 3px; background: var(--gold);
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

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

/* ---- Header / Navigation ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 36px;
  width: auto;
  max-width: 200px;
  display: block;
}

.nav { display: flex; align-items: center; gap: 0; }
.nav a {
  display: block;
  padding: 8px 11px;
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: rgba(196,30,58,0.06);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  margin-left: 8px;
  border-radius: 6px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(196,30,58,0.35);
}
.nav-cta:hover {
  background: var(--primary-light) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(196,30,58,0.45);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #c41e3a 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 { color: #fff; font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-bottom: 2rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 2.2rem; font-weight: 800;
  color: var(--gold-light);
}
.hero-stat-label {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.icon-red { background: rgba(196,30,58,0.1); color: var(--primary); }
.icon-gold { background: rgba(200,164,92,0.15); color: var(--gold); }
.icon-green { background: rgba(45,106,79,0.1); color: var(--green); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1rem; }
.service-card .link { font-weight: 600; font-size: 0.95rem; }

/* ---- Feature List ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.feature-card h4 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; }

/* ---- About Section ---- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}
.about-image .big-number {
  font-size: 3.5rem; font-weight: 800; color: var(--gold-light);
}
.about-image .big-label {
  font-size: 1rem; opacity: 0.8; margin-top: 4px;
}

/* ---- Credentials ---- */
.credentials-list {
  display: flex; flex-wrap: wrap; gap: 16px;
  list-style: none; padding: 0;
  margin-top: 1.5rem;
}
.credentials-list li {
  background: var(--bg-section);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.team-card-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.team-card h4 { margin-bottom: 2px; }
.team-card .role { color: var(--primary); font-weight: 600; font-size: 0.85rem; }
.team-card .tag { color: var(--text-muted); font-size: 0.85rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: var(--radius-lg);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 1.5rem; }

/* ---- Team Showcase ---- */
.team-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 32px;
}
.team-showcase .team-img-large {
  grid-row: span 2;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}
.team-showcase .team-img-small {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 182px;
}
.team-showcase .team-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 182px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-showcase .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196,30,58,0.25);
}
.team-showcase .team-card-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.team-showcase .team-card h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
  border: none;
  padding: 0;
}
.team-showcase .team-card h4::after { display: none; }
.team-showcase .team-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.team-showcase .team-img-large img {
  object-position: center top;
}
.team-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-showcase .team-img-large:hover img,
.team-showcase .team-img-small:hover img {
  transform: scale(1.05);
}
.team-showcase .team-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.9rem;
}
.team-showcase .team-caption strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .team-showcase {
    grid-template-columns: 1fr;
  }
  .team-showcase .team-img-large {
    grid-row: span 1;
    min-height: 240px;
  }
  .team-showcase .team-img-small {
    min-height: 200px;
  }
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ---- Service Detail ---- */
.service-detail-content {
  max-width: 860px;
  margin: 0 auto;
}
.service-detail-content h2 {
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.service-detail-content ul,
.service-detail-content ol {
  margin-bottom: 1.5rem;
}
.service-detail-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---- Price Table ---- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.price-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.price-table tr:nth-child(even) td {
  background: var(--bg-light);
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-item {
  display: flex; gap: 16px;
  margin-bottom: 1.5rem;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(196,30,58,0.1);
  color: var(--primary);
}
.contact-info-text h4 { margin-bottom: 4px; }
.contact-info-text p { font-size: 0.95rem; margin-bottom: 0; }
.contact-wechat {
  text-align: center; padding: 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-wechat .qr-placeholder {
  width: 160px; height: 160px;
  background: var(--bg-section);
  margin: 0 auto 1rem;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; display: block; padding: 4px 0; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* ---- Floating Contact ---- */
.floating-contact {
  position: fixed;
  right: 24px; bottom: 80px;
  z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  text-decoration: none;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-tel { background: var(--green); }
.floating-wx { background: #07c160; }

/* ---- Article List ---- */
.article-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.article-filter-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.article-filter-btn:hover,
.article-filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.article-card-thumb {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(196,30,58,0.08);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.article-card h3 {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.article-card h3 a {
  color: var(--text);
}
.article-card h3 a:hover {
  color: var(--primary);
}
.article-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.article-card-meta .read-more {
  color: var(--primary);
  font-weight: 600;
}

/* ---- Article Detail ---- */
.article-detail {
  max-width: 860px;
  margin: 0 auto;
}
.article-detail-header {
  text-align: center;
  margin-bottom: 2rem;
}
.article-detail-header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.article-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.article-detail-meta .tag {
  background: rgba(196,30,58,0.08);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 12px;
  font-weight: 600;
}
.article-detail-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}
.article-detail-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.article-detail-body h3 {
  margin-top: 1.8rem;
  color: var(--primary-dark);
}
.article-detail-body p {
  color: var(--text);
  margin-bottom: 1.2rem;
}
.article-detail-body ul,
.article-detail-body ol {
  margin-bottom: 1.2rem;
}
.article-detail-body li {
  margin-bottom: 0.5rem;
  color: var(--text);
}
.article-detail-body blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg-light);
  padding: 16px 24px;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  color: var(--text-light);
}
.article-detail-body strong {
  color: var(--primary-dark);
}
.article-detail-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 2.5rem 0;
}
.article-detail-cta h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.article-detail-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.article-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.article-detail-nav a {
  font-size: 0.92rem;
  color: var(--text-light);
}
.article-detail-nav a:hover {
  color: var(--primary);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .nav a { padding: 8px 8px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .header-inner { height: 60px; }
  .hero { padding: 80px 0 60px; margin-top: 60px; }
  .page-header { margin-top: 60px; padding: 40px 0 36px; }

  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; box-shadow: var(--shadow-lg); padding: 16px; }
  .nav.open a { padding: 12px 16px; }

  .nav-toggle { display: flex; }

  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr; }

  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   免费核名板块
   ============================================================ */
.homing-section {
  background: linear-gradient(135deg, #c41e3a 0%, #8b1529 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.homing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.homing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
  align-items: center;
}

.homing-left { padding-right: 20px; }

.homing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e0475b, #c41e3a);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.homing-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.homing-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin: 0 0 20px 0;
}

.homing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.homing-features li {
  font-size: 0.95rem;
  color: #444;
  padding: 6px 0;
  line-height: 1.5;
}

.homing-trust {
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #888;
}

.homing-trust strong {
  color: #c41e3a;
  font-size: 1.1rem;
}

.homing-right {
  background: #faf8f9;
  border-radius: 12px;
  padding: 32px 28px;
}

.homing-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}

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

.homing-form-group label {
  display: block;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500;
}

.homing-form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  outline: none;
}

.homing-form-group input:focus {
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}

.homing-code-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.homing-code-btn {
  white-space: nowrap;
  padding: 12px 16px;
  border: 2px solid #c41e3a;
  background: #fff;
  color: #c41e3a;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  height: 46px;
}

.homing-code-btn:hover:not(:disabled) {
  background: #c41e3a;
  color: #fff;
}

.homing-code-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.homing-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #c41e3a, #8b1529);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
}

.homing-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,30,58,0.35);
}

.homing-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.homing-disclaimer {
  font-size: 0.78rem;
  color: #999;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.homing-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f0f0f0;
  border-top-color: #c41e3a;
  border-radius: 50%;
  margin: 0 auto;
  animation: homingSpin 0.8s linear infinite;
}

@keyframes homingSpin {
  to { transform: rotate(360deg); }
}

.homing-success-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* 响应式 */
@media (max-width: 768px) {
  .homing-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .homing-left { padding-right: 0; }

  .homing-title { font-size: 1.6rem; }

  .homing-right { padding: 24px 20px; }

  .homing-code-group {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .homing-code-btn {
    height: auto;
    padding: 10px;
    text-align: center;
  }
}
