:root {
  --primary: #2d6a4f;
  --primary-dark: #1b4332;
  --primary-light: #40916c;
  --accent: #d4a373;
  --accent-light: #e9c46a;
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --text: #1e293b;
  --text-weak: #64748b;
  --border: #e5dfd3;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(30, 41, 59, .08);
  --shadow-hover: 0 10px 34px rgba(30, 41, 59, .14);
  --transition: all .25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-weight: 600; font-size: 15px;
  padding: 12px 26px; border-radius: 999px; border: none;
  box-shadow: 0 4px 16px rgba(45, 106, 79, .25);
  transition: var(--transition); cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45, 106, 79, .35); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(45, 106, 79, .2); }
.btn-primary:focus-visible, .btn-outline:focus-visible, .btn-ghost:focus-visible { outline: 3px solid rgba(45, 106, 79, .4); outline-offset: 2px; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--primary); font-weight: 600; font-size: 15px;
  padding: 12px 26px; border-radius: 999px; border: 1.5px solid var(--primary);
  transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { background: rgba(45, 106, 79, .08); border-color: var(--primary-dark); color: var(--primary-dark); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .95); font-weight: 600; font-size: 15px;
  padding: 12px 26px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px); transition: var(--transition); cursor: pointer;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .6); }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-text { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.btn-text i { transition: transform .2s; }
.btn-text:hover { color: var(--primary-dark); }
.btn-text:hover i { transform: translateX(4px); }

/* ===== Header & Nav ===== */
.site-header {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(0, 0, 0, .04);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--text); white-space: nowrap; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px;
  box-shadow: 0 4px 12px rgba(45, 106, 79, .25);
}
.logo-text { letter-spacing: .3px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-weight: 500; font-size: 15px; color: var(--text); position: relative; padding: 8px 0; transition: var(--transition); }
.main-nav a:hover { color: var(--primary); }
.main-nav a.active { color: var(--primary); font-weight: 600; }
.main-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2.5px;
  background: var(--primary); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-outline, .nav-cta .btn-primary { padding: 10px 22px; font-size: 14px; }
.nav-cta-mobile { display: none; }
.menu-toggle { display: none; }

/* ===== Hero ===== */
.hero { position: relative; padding: 90px 0 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(15, 40, 30, .94) 0%, rgba(27, 67, 50, .85) 50%, rgba(64, 145, 108, .62) 100%);
}
.hero-container { position: relative; z-index: 2; }
.hero-grid { align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  color: #fff; padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 500;
  backdrop-filter: blur(4px); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px); line-height: 1.28; color: #fff; font-weight: 800;
  margin-bottom: 20px; letter-spacing: .5px;
}
.hero-sub { color: rgba(255, 255, 255, .9); font-size: 16px; line-height: 1.85; margin-bottom: 30px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-trust span { color: rgba(255, 255, 255, .82); font-size: 14px; display: flex; align-items: center; gap: 7px; }
.hero-trust i { color: var(--accent-light); }

.hero-board { display: flex; flex-direction: column; gap: 18px; }
.progress-card {
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 24px;
  padding: 28px 30px; display: flex; align-items: center; gap: 30px;
}
.progress-ring-wrap { position: relative; width: 138px; height: 138px; flex-shrink: 0; }
.progress-ring { width: 100%; height: 100%; }
.ring-bg { fill: none; stroke: rgba(255, 255, 255, .14); stroke-width: 8; }
.ring-fg { fill: none; stroke: var(--accent-light); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 326.7; stroke-dashoffset: 71.9; transform: rotate(-90deg); transform-origin: center; }
.ring-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-text strong { font-size: 30px; color: #fff; line-height: 1.1; }
.ring-text span { font-size: 12px; color: rgba(255, 255, 255, .7); margin-top: 4px; }
.progress-meta { display: flex; align-items: center; gap: 26px; }
.meta-item strong { display: block; font-size: 26px; color: #fff; font-weight: 800; }
.meta-item span { font-size: 13px; color: rgba(255, 255, 255, .7); }
.meta-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, .2); }

.tier-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tier-card {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px; padding: 18px 16px; backdrop-filter: blur(8px);
  transition: var(--transition);
}
.tier-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .16); }
.tier-tag { display: inline-block; font-size: 12px; background: rgba(255, 255, 255, .16); padding: 3px 12px; border-radius: 999px; color: #fff; margin-bottom: 10px; }
.tier-price { font-size: 27px; font-weight: 800; color: #fff; display: inline-block; margin-right: 6px; }
.tier-unit { font-size: 12px; color: rgba(255, 255, 255, .7); }
.tier-desc { display: block; margin-top: 7px; font-size: 13px; color: rgba(255, 255, 255, .82); }

/* ===== Stats Band ===== */
.stats-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; color: #fff; }
.stat-item strong { display: block; font-size: 36px; font-weight: 800; line-height: 1.2; }
.stat-item span { font-size: 14px; opacity: .82; }

/* ===== Section ===== */
.section { padding: 90px 0; }
.section-head { max-width: 620px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
  display: inline-block; background: rgba(45, 106, 79, .08); color: var(--primary);
  font-weight: 600; font-size: 13px; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; letter-spacing: .5px;
}
.section-head h2 { font-size: clamp(26px, 3vw, 34px); line-height: 1.3; color: var(--text); font-weight: 800; }
.section-head p { color: var(--text-weak); font-size: 15px; line-height: 1.8; margin-top: 12px; }

/* ===== Timeline / News ===== */
.section-news { background: var(--bg); }
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 4px; bottom: 4px; width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), var(--accent)); border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-dot {
  position: absolute; left: -26px; top: 24px; width: 14px; height: 14px;
  background: #fff; border: 3px solid var(--primary-light); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45, 106, 79, .1);
}
.timeline-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow); transition: var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.timeline-date {
  display: inline-block; font-size: 12px; color: var(--primary); font-weight: 600;
  background: rgba(45, 106, 79, .06); padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.timeline-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.timeline-card p { font-size: 14px; color: var(--text-weak); line-height: 1.75; }

/* ===== Service Cards ===== */
.section-services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(45, 106, 79, .2); }
.card-img { position: relative; height: 180px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .card-img img { transform: scale(1.05); }
.card-tag {
  position: absolute; left: 14px; top: 14px; background: rgba(0, 0, 0, .55);
  color: #fff; font-size: 12px; padding: 4px 12px; border-radius: 999px;
  backdrop-filter: blur(4px); font-weight: 500;
}
.card-body { padding: 20px 20px 24px; }
.card-body h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.card-body p { font-size: 14px; color: var(--text-weak); line-height: 1.7; margin-bottom: 14px; }

/* ===== FAQ ===== */
.section-faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.faq-item.active { border-color: rgba(45, 106, 79, .3); box-shadow: var(--shadow-hover); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--text);
  background: transparent; text-align: left; transition: var(--transition);
}
.faq-question i { transition: transform .3s; color: var(--text-weak); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 24px 22px; color: var(--text-weak); font-size: 15px; line-height: 1.85; }

/* ===== Articles ===== */
.section-articles { background: #fff; }
.articles-layout { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.articles-list .article-item {
  display: flex; gap: 20px; padding: 24px 4px; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.article-item:last-child { border-bottom: none; }
.article-item:hover { padding-left: 12px; }
.article-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.45; }
.article-content h3 a { color: var(--text); transition: var(--transition); }
.article-content h3 a:hover { color: var(--primary); }
.article-content p { font-size: 14px; color: var(--text-weak); line-height: 1.7; }
.article-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 12px; color: var(--text-weak); }
.article-meta i { margin-right: 4px; }
.articles-side {
  background: var(--bg); border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: 96px; border: 1px solid var(--border);
}
.articles-side h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid rgba(45, 106, 79, .1); }
.articles-side ul li { padding: 12px 0; border-bottom: 1px dashed var(--border); }
.articles-side ul li:last-child { border-bottom: none; }
.articles-side ul li a { color: var(--text); font-size: 14px; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.articles-side ul li a::before { content: '◆'; font-size: 8px; color: var(--accent); }
.articles-side ul li a:hover { color: var(--primary); padding-left: 4px; }

/* ===== Safety ===== */
.section-safety { background: var(--bg); }
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.safety-item {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 24px;
  text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition);
}
.safety-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.safety-item i {
  font-size: 30px; color: var(--primary); margin-bottom: 16px;
  background: rgba(45, 106, 79, .08); width: 66px; height: 66px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 22px;
}
.safety-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.safety-item p { font-size: 14px; color: var(--text-weak); line-height: 1.7; }

/* ===== Story ===== */
.section-story { position: relative; padding: 110px 0; }
.story-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.story-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15, 40, 30, .94) 0%, rgba(27, 67, 50, .78) 100%); }
.story-content { position: relative; z-index: 2; max-width: 660px; color: #fff; }
.story-content .section-tag { background: rgba(255, 255, 255, .16); color: #fff; }
.story-content h2 { font-size: clamp(26px, 3vw, 36px); color: #fff; font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.story-content p { font-size: 16px; line-height: 1.95; color: rgba(255, 255, 255, .92); margin-bottom: 28px; }

/* ===== Reserve / Form ===== */
.section-reserve { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.reserve-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  background: #fff; border-radius: 24px; padding: 52px;
  box-shadow: var(--shadow-hover); border: 1px solid var(--border);
}
.reserve-copy h2 { font-size: clamp(24px, 2.5vw, 30px); font-weight: 800; margin-bottom: 16px; color: var(--text); }
.reserve-copy > p { color: var(--text-weak); line-height: 1.8; margin-bottom: 24px; font-size: 15px; }
.reserve-copy ul li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; padding: 7px 0; }
.reserve-copy ul li i { color: var(--primary-light); }
.reserve-form form { display: grid; gap: 16px; }
.reserve-form input, .reserve-form select {
  width: 100%; border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; font-size: 15px; background: var(--bg);
  transition: var(--transition); color: var(--text);
}
.reserve-form input:focus, .reserve-form select:focus {
  outline: none; border-color: var(--primary-light); background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 106, 79, .1);
}
.reserve-form input::placeholder { color: #9aa5b1; }
.privacy-note { font-size: 12px; color: var(--text-weak); text-align: center; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ===== Footer ===== */
.site-footer { background: var(--primary-dark); color: rgba(255, 255, 255, .78); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 44px; }
.footer-brand h3 { color: #fff; font-size: 20px; margin-bottom: 14px; font-weight: 700; }
.footer-brand p { font-size: 14px; line-height: 1.85; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .footer-logo i {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .12);
  display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 17px;
}
.footer-brand .footer-logo span { color: #fff; font-size: 18px; font-weight: 700; }
.footer-nav h4, .footer-contact h4 { color: #fff; margin-bottom: 16px; font-size: 16px; font-weight: 600; }
.footer-nav a { display: block; padding: 7px 0; color: rgba(255, 255, 255, .78); transition: var(--transition); font-size: 14px; }
.footer-nav a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-contact p { font-size: 14px; padding: 5px 0; }
.footer-contact i { margin-right: 8px; color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); padding: 20px 0;
  font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: rgba(255, 255, 255, .5);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve-card { grid-template-columns: 1fr; padding: 36px; }
  .hero { padding: 70px 0 80px; }
  .hero-board { margin-top: 40px; }
  .hero-grid .large-6 { width: 100%; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .menu-toggle {
    display: flex; flex-direction: column; width: 42px; height: 42px;
    align-items: center; justify-content: center; gap: 5px;
    border-radius: 10px; background: var(--bg); border: 1px solid var(--border);
  }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    flex-direction: column; padding: 22px 24px 26px; gap: 14px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    display: none; z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 16px; padding: 9px 0; border-bottom: 1px solid rgba(0, 0, 0, .04); }
  .main-nav a:last-of-type { border-bottom: none; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { background: rgba(45, 106, 79, .06); border-radius: 8px; padding-left: 12px; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: flex; gap: 12px; margin-top: 14px; }
  .logo-text { font-size: 15px; }
  .hero { padding: 56px 0 64px; }
  .hero-sub { font-size: 15px; }
  .hero-actions .btn-lg { padding: 12px 22px; font-size: 15px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item strong { font-size: 30px; }
  .articles-layout { grid-template-columns: 1fr; }
  .articles-side { position: static; }
  .progress-card { flex-direction: column; align-items: flex-start; gap: 20px; }
  .tier-row { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .reserve-card { padding: 28px; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .header-inner { height: 64px; gap: 12px; }
  .main-nav { top: 64px; }
  .logo-text { font-size: 13px; line-height: 1.3; }
  .logo-icon { width: 34px; height: 34px; font-size: 15px; }
  .service-grid, .safety-grid { grid-template-columns: 1fr; }
  .tier-row { grid-template-columns: 1fr; }
  .hero-actions, .hero-trust { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; }
  .hero-actions .btn-ghost { width: 100%; }
  .stats-grid { gap: 14px; }
  .stat-item strong { font-size: 26px; }
  .timeline-card { padding: 18px; }
  .timeline-card h3 { font-size: 16px; }
  .reserve-card { padding: 22px; }
  .article-meta { flex-direction: column; gap: 4px; }
}

:root {
  --primary: #6b3f23;
  --primary-dark: #4a2a14;
  --primary-light: #8b5e34;
  --accent: #c49a6c;
  --accent-light: #eadcc8;
  --bg-main: #faf7f2;
  --bg-alt: #f2ede5;
  --bg-dark: #2d211a;
  --text-main: #2d241c;
  --text-weak: #7a6a58;
  --white: #fff;
  --border: #e5dacb;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-full: 999px;
  --shadow-sm: 0 2px 8px rgba(61,43,32,0.06);
  --shadow-md: 0 8px 24px rgba(61,43,32,0.10);
  --shadow-lg: 0 16px 40px rgba(61,43,32,0.14);
  --grad-primary: linear-gradient(135deg, #3a1f10 0%, #6b3f23 60%, #8b5e34 100%);
  --grad-accent: linear-gradient(135deg, #c49a6c, #e2cba8);
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 56px;
  --space-xl: 88px;
  --transition: all 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif; background: var(--bg-main); color: var(--text-main); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== 按钮 ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--r-full); font-size: 15px; font-weight: 600; line-height: 1.4; cursor: pointer; border: none; transition: var(--transition); }
.btn-solid { background: var(--grad-primary); color: var(--white); box-shadow: 0 4px 16px rgba(107,63,35,0.28); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,63,35,0.36); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-block { width: 100%; }
.btn:focus, a:focus { outline: 3px solid rgba(196,154,108,0.5); outline-offset: 2px; }

/* ===== 头部导航 ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.site-logo i { font-size: 24px; color: var(--accent); }
.site-logo:hover { color: var(--primary-dark); }
.main-nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.main-nav a { padding: 8px 18px; border-radius: var(--r-full); font-size: 14px; font-weight: 500; color: var(--text-main); transition: var(--transition); }
.main-nav a:hover { background: var(--bg-alt); color: var(--primary); }
.main-nav a.active { background: var(--primary); color: var(--white); }
.header-ctas { display: flex; gap: 10px; flex-shrink: 0; }
.header-ctas .btn { padding: 9px 20px; font-size: 14px; }

/* ===== Hero ===== */
.hero { background: linear-gradient(135deg, rgba(58,31,16,0.94) 0%, rgba(107,63,35,0.90) 55%, rgba(139,94,52,0.86) 100%), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat; color: var(--white); padding: 90px 0 70px; position: relative; overflow: hidden; }
.hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:60px; background:linear-gradient(transparent, rgba(250,247,242,0.08)); }
.hero-inner { display: flex; gap: 56px; align-items: center; }
.hero-copy { flex: 1.1; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24); padding: 6px 16px; border-radius: var(--r-full); font-size: 13px; letter-spacing: 1px; margin-bottom: 22px; backdrop-filter: blur(4px); }
.hero-copy h1 { font-size: 38px; line-height: 1.3; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
.hero-copy h1 span { color: #e2cba8; }
.hero-subtitle { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.86); margin-bottom: 32px; max-width: 520px; }
.hero-stats { display: flex; gap: 40px; margin-bottom: 36px; }
.hero-stat-item { border-left: 3px solid var(--accent); padding-left: 14px; }
.hero-stat-item .stat-num { font-size: 26px; font-weight: 700; color: var(--white); line-height: 1.2; }
.hero-stat-item .stat-label { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 2px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-panel { flex: 0.9; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-lg); padding: 32px; backdrop-filter: blur(10px); box-shadow: 0 16px 48px rgba(0,0,0,0.24); }
.panel-title { text-align: center; font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.panel-subtitle { text-align: center; font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.progress-ring { width: 150px; height: 150px; border-radius: 50%; background: conic-gradient(#e2cba8 0% 86%, rgba(255,255,255,0.14) 86% 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; position: relative; }
.progress-ring::before { content:''; position: absolute; width: 124px; height: 124px; border-radius: 50%; background: #4a2a14; }
.ring-inner { position: relative; z-index: 1; text-align: center; }
.ring-num { display: block; font-size: 30px; font-weight: 700; color: var(--white); line-height: 1.1; }
.ring-label { display: block; font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.ring-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.5; }
.tier-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.tier-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-md); padding: 14px 10px; text-align: center; transition: var(--transition); }
.tier-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.tier-name { display: block; font-size: 13px; font-weight: 600; color: #e2cba8; margin-bottom: 2px; }
.tier-price { display: block; font-size: 17px; font-weight: 700; color: var(--white); }
.tier-desc { display: block; font-size: 11px; color: rgba(255,255,255,0.62); }

/* ===== 数据条 ===== */
.stats-band { background: var(--white); border-bottom: 1px solid var(--border); padding: 40px 0; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-block { text-align: center; padding: 8px 12px; border-radius: var(--r-md); transition: var(--transition); }
.stat-block:hover { background: var(--bg-alt); }
.stat-block .num { font-size: 32px; font-weight: 700; color: var(--primary); line-height: 1.2; }
.stat-block .num small { font-size: 16px; color: var(--accent); }
.stat-block .lbl { font-size: 14px; color: var(--text-weak); margin-top: 4px; }

/* ===== 通用板块 ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-tag { display: inline-block; background: var(--accent-light); color: var(--primary); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 12px; letter-spacing: 1px; }
.section-head h2 { font-size: 32px; font-weight: 700; color: var(--text-main); line-height: 1.3; margin-bottom: 12px; }
.section-head p { font-size: 15px; color: var(--text-weak); line-height: 1.7; }

/* ===== 服务矩阵 ===== */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .card-img { height: 200px; overflow: hidden; position: relative; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-img img { transform: scale(1.04); }
.service-card .card-img::after { content:''; position: absolute; top:0; left:0; right:0; bottom:0; background: linear-gradient(transparent 60%, rgba(0,0,0,0.25)); }
.service-card .img-badge { position: absolute; bottom: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.94); color: var(--primary); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: var(--r-full); }
.service-card .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card .card-body h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.service-card .card-body p { font-size: 14px; color: var(--text-weak); line-height: 1.7; margin-bottom: 14px; flex: 1; }
.card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.tag { display: inline-block; background: var(--bg-alt); color: var(--primary); font-size: 12px; padding: 3px 12px; border-radius: var(--r-full); border: 1px solid var(--border); }
.tag-featured { background: var(--accent-light); border-color: transparent; color: var(--primary-dark); }
.card-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-weak); border-top: 1px dashed var(--border); padding-top: 14px; }
.card-meta i { color: var(--accent); }

/* ===== 动态时间线 ===== */
.timeline-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content:''; position: absolute; left: 8px; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(var(--accent), var(--primary-light)); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content:''; position: absolute; left: -26px; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 3px solid var(--accent); box-shadow: 0 0 0 3px rgba(196,154,108,0.2); }
.timeline-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.timeline-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.time-badge { display: inline-block; background: var(--accent-light); color: var(--primary-dark); font-size: 12px; font-weight: 600; padding: 2px 10px; border-radius: var(--r-full); margin-bottom: 8px; }
.timeline-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--text-main); }
.timeline-card p { font-size: 14px; color: var(--text-weak); line-height: 1.6; }
.timeline-side { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.timeline-side h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; color: var(--primary-dark); }
.timeline-side p { font-size: 14px; color: var(--text-weak); line-height: 1.8; margin-bottom: 16px; }
.timeline-side ul { margin-bottom: 20px; }
.timeline-side ul li { font-size: 14px; color: var(--text-main); padding: 6px 0; display: flex; gap: 10px; align-items: flex-start; }
.timeline-side ul li i { color: var(--accent); margin-top: 4px; font-size: 14px; }
.timeline-side .btn { margin-top: 8px; }

/* ===== FAQ ===== */
.faq-panel { max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 14px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text-main); transition: var(--transition); }
.faq-q i { color: var(--accent); transition: transform 0.3s ease; font-size: 14px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; font-size: 14px; color: var(--text-weak); line-height: 1.8; }
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 300px; }

/* ===== 资讯 ===== */
.news-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
.news-list-item { display: flex; gap: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 14px; transition: var(--transition); align-items: flex-start; }
.news-list-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: var(--accent); }
.news-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--accent-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.news-content { flex: 1; }
.news-title { font-size: 15px; font-weight: 600; color: var(--text-main); line-height: 1.5; margin-bottom: 4px; transition: var(--transition); }
.news-list-item:hover .news-title { color: var(--primary); }
.news-meta { font-size: 12px; color: var(--text-weak); display: flex; gap: 14px; }
.news-meta i { font-size: 12px; margin-right: 4px; }
.news-side .side-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; margin-bottom: 20px; }
.side-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); color: var(--primary-dark); }
.hot-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hot-tags a { background: var(--bg-alt); font-size: 13px; padding: 5px 14px; border-radius: var(--r-full); color: var(--text-main); border: 1px solid var(--border); transition: var(--transition); }
.hot-tags a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.side-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; display: flex; gap: 8px; align-items: flex-start; }
.side-list li:last-child { border-bottom: none; }
.side-list li i { color: var(--accent); font-size: 12px; margin-top: 5px; }
.side-list li a:hover { color: var(--primary); }
.side-note { background: var(--bg-alt); font-size: 13px; color: var(--text-weak); padding: 10px 14px; border-radius: var(--r-sm); margin-top: 12px; display: flex; gap: 8px; align-items: center; }
.side-note i { color: var(--accent); }

/* ===== 安全体系 ===== */
.security-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.security-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; text-align: center; transition: var(--transition); }
.security-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.security-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: var(--primary-dark); box-shadow: 0 6px 16px rgba(196,154,108,0.35); }
.security-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.security-card p { font-size: 13px; color: var(--text-weak); line-height: 1.6; }

/* ===== App下载 ===== */
.app-band { background: var(--grad-primary); border-radius: var(--r-lg); padding: 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; color: var(--white); position: relative; overflow: hidden; }
.app-band::before { content:''; position: absolute; top:-40px; right:-40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.app-band::after { content:''; position: absolute; bottom:-60px; right: 60px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.app-info h2 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.app-info > p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 480px; line-height: 1.8; }
.app-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.app-feature-list li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); border-radius: var(--r-sm); padding: 8px 14px; }
.app-feature-list i { color: #e2cba8; }
.app-download { display: flex; gap: 12px; }
.app-btn { display: inline-flex; gap: 10px; align-items: center; background: var(--white); color: var(--primary-dark); border-radius: var(--r-md); padding: 10px 20px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.app-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.16); }
.app-btn i { font-size: 22px; }
.app-qr { text-align: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-lg); padding: 24px; max-width: 220px; justify-self: end; }
.app-qr .qr-box { width: 140px; height: 140px; background: var(--white); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--primary); font-size: 40px; }
.app-qr p { font-size: 13px; color: rgba(255,255,255,0.72); }

/* ===== CTA表单 ===== */
.cta-section { background: var(--bg-alt); padding: 88px 0; }
.cta-card { max-width: 720px; margin: 0 auto; background: var(--white); border-radius: var(--r-lg); padding: 44px 48px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.cta-card h2 { font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 12px; color: var(--text-main); }
.cta-card > p { text-align: center; color: var(--text-weak); font-size: 15px; margin-bottom: 32px; line-height: 1.7; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--text-main); }
.form-group input, .form-group select { height: 44px; border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 0 14px; font-size: 14px; background: #fdfbf7; transition: var(--transition); font-family: inherit; }
.form-group input:focus, .form-group select:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(196,154,108,0.15); background: var(--white); }
.form-submit { grid-column: 1 / -1; margin-top: 8px; }
.privacy-note { grid-column: 1 / -1; text-align: center; font-size: 12px; color: var(--text-weak); display: flex; align-items: center; justify-content: center; gap: 6px; }
.privacy-note i { color: var(--accent); }

/* ===== 页脚 ===== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .site-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.62); max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: #e2cba8; padding-left: 4px; }
.footer-col ul li i { margin-right: 8px; color: var(--accent); font-size: 13px; }
.footer-copyright { text-align: center; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-copy h1 { font-size: 32px; }
  .hero-panel { width: 100%; max-width: 520px; }
  .timeline-wrap { grid-template-columns: 1fr; gap: 32px; }
  .news-layout { grid-template-columns: 1fr; gap: 32px; }
  .security-grid { grid-template-columns: repeat(2,1fr); }
  .app-band { grid-template-columns: 1fr; } 
  .app-qr { justify-self: start; }
}
@media (max-width: 768px) {
  .header-inner { height: auto; flex-wrap: wrap; padding: 12px 0; gap: 12px; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; flex: 0 0 100%; }
  .main-nav a { white-space: nowrap; }
  .header-ctas { margin-left: auto; }
  .hero { padding: 60px 0 48px; }
  .hero-copy h1 { font-size: 27px; }
  .hero-stats { gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
  .cta-card { padding: 28px 20px; }
  .cta-form { grid-template-columns: 1fr; }
  .form-group.full, .form-submit, .privacy-note { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .tier-cards { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .hero-copy h1 { font-size: 23px; }
  .hero-subtitle { font-size: 14px; }
  .hero-ctas .btn { padding: 10px 18px; font-size: 13px; }
  .tier-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block .num { font-size: 26px; }
  .security-grid { grid-template-columns: 1fr; }
  .app-feature-list { grid-template-columns: 1fr; }
  .app-band { padding: 28px 20px; }
  .header-ctas .btn { padding: 7px 16px; font-size: 13px; }
}

/* ===== 设计变量 ===== */
:root {
  --primary: #2d5a3d;
  --primary-dark: #1a3d28;
  --primary-deep: #132e1e;
  --accent: #c9a96e;
  --accent-light: #e8d5b5;
  --bg: #f7f4ef;
  --bg-white: #ffffff;
  --bg-deep: #16261c;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-white: #f5f1ea;
  --border: #e5e0d8;
  --border-dark: #d4cdc0;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --shadow: 0 8px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .12);
  --shadow-accent: 0 8px 24px rgba(201, 169, 110, .28);
  --spacing: 96px;
  --spacing-sm: 64px;
  --transition: all .3s cubic-bezier(.25, .8, .25, 1);
}

/* ===== 基础重置 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* ===== 容器 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 按钮系统 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn i {
  font-size: 16px;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, .3);
}

.btn-solid {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-solid:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, .3);
}

.btn-group-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-group-primary:hover {
  background: #b89458;
  border-color: #b89458;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, .4);
}

.btn-group-secondary {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-group-secondary:hover {
  background: rgba(255, 255, 255, .25);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-submit {
  background: var(--primary);
  border: none;
  color: #fff;
  width: 100%;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 50px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 90, 61, .35);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn:focus-visible {
  outline: 3px solid rgba(201, 169, 110, .5);
  outline-offset: 2px;
}

/* ===== 头部导航 ===== */
.site-header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .5px;
  white-space: nowrap;
}

.site-logo i {
  color: var(--accent);
  font-size: 26px;
}

.site-logo:hover {
  color: var(--primary-dark);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a.active {
  color: var(--primary);
  font-weight: 700;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-ctas .btn {
  padding: 9px 22px;
  font-size: 14px;
}

/* ===== 页面 Hero ===== */
.page-hero {
  position: relative;
  padding: 120px 0 100px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22, 38, 28, .95) 0%, rgba(26, 61, 40, .88) 45%, rgba(22, 38, 28, .45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, .25);
  border: 1px solid rgba(201, 169, 110, .4);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-badge i {
  color: var(--accent);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 60%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  max-width: 560px;
}

.group-progress {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

.group-progress p {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.group-progress p i {
  color: var(--accent);
}

.group-bar {
  height: 8px;
  background: rgba(255, 255, 255, .15);
  border-radius: 10px;
  overflow: hidden;
}

.group-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e8d5b5);
  border-radius: 10px;
  position: relative;
}

.group-bar span::after {
  content: '82%';
  position: absolute;
  right: 4px;
  top: -26px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.panel-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-card h3 i {
  color: var(--accent);
}

.panel-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.panel-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-hot { background: #ff7b54; box-shadow: 0 0 8px rgba(255, 123, 84, .6); }
.dot-ok { background: #4ade80; box-shadow: 0 0 8px rgba(74, 222, 128, .5); }

.panel-card ul li .tag {
  margin-left: auto;
  background: rgba(201, 169, 110, .25);
  color: var(--accent-light);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.panel-card .panel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.panel-card .panel-link:hover {
  color: #fff;
  gap: 10px;
}

/* ===== 指标看板 ===== */
.stats-section {
  padding: 72px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.stat-num {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== 板块标题 ===== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(201, 169, 110, .2);
  color: #8a6a34;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 服务矩阵 ===== */
.places-section {
  padding: var(--spacing) 0;
}

.place-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.place-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.place-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.place-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.place-card:hover .place-img img {
  transform: scale(1.06);
}

.place-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .25) 100%);
}

.place-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, .9);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.place-body {
  padding: 24px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.place-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.place-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.place-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.place-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.place-meta i {
  color: var(--accent);
  font-size: 14px;
}

/* ===== 对比区域 ===== */
.compare-section {
  padding: var(--spacing) 0;
  background: linear-gradient(135deg, #16261c 0%, #1a3d28 100%);
  color: #fff;
}

.compare-section .section-tag {
  background: rgba(201, 169, 110, .2);
  color: var(--accent-light);
}

.compare-section .section-head h2 {
  color: #fff;
}

.compare-section .section-head p {
  color: rgba(255, 255, 255, .7);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.compare-col {
  padding: 36px 36px 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}

.compare-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-x h3 {
  color: #ff9d85;
}

.compare-y h3 {
  color: #8ef0a8;
}

.compare-col h3 i {
  font-size: 26px;
}

.compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
}

.compare-col ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.compare-x ul li::before {
  background: #ff9d85;
}

.compare-y ul li::before {
  background: #8ef0a8;
}

/* ===== 流程步骤 ===== */
.steps-section {
  padding: var(--spacing) 0;
  background: var(--bg-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border));
  z-index: 0;
}

.step-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(45, 90, 61, .3);
}

.step-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  padding: var(--spacing) 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px !important;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--border-dark);
}

.accordion-title {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 20px 24px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  background: var(--bg-white) !important;
  position: relative;
  transition: var(--transition);
}

.accordion-title:hover {
  background: #faf8f5 !important;
  color: var(--primary) !important;
}

.accordion-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .2);
  color: #8a6a34;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.accordion-title::after {
  content: '\f078' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  position: absolute !important;
  right: 24px !important;
  color: var(--accent) !important;
  font-size: 14px !important;
  transition: transform .3s ease !important;
}

.accordion-item.is-active .accordion-title::after {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 24px 20px 64px !important;
  background: var(--bg-white) !important;
  color: var(--text-light) !important;
  font-size: 15px;
  line-height: 1.75;
}

/* ===== CTA 表单 ===== */
.cta-section {
  padding: var(--spacing) 0;
  background: linear-gradient(135deg, #16261c 0%, #1a3d28 50%, #2d5a3d 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .15);
  filter: blur(60px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(45, 90, 61, .4);
  filter: blur(80px);
}

.cta-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(16px);
  max-width: 900px;
  margin: 0 auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
}

.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.cta-form select option {
  color: var(--text);
  background: #fff;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, .6);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .2);
}

.cta-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, .8);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 48px;
}

.footer-brand .site-logo {
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand .site-logo i {
  color: var(--accent);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .65);
  max-width: 360px;
}

.footer-col h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.footer-col ul li i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 13px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
}

/* ===== 响应式断点 ===== */
@media (max-width: 1024px) {
  :root {
    --spacing: 72px;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 14px 0;
    gap: 12px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .main-nav a {
    white-space: nowrap;
    font-size: 14px;
  }

  .header-ctas {
    margin-left: auto;
  }

  .header-ctas .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-panel {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-num {
    font-size: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .page-hero {
    padding: 80px 0 70px;
  }

  .hero-text h1 {
    font-size: 27px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 28px;
  }

  .stats-section {
    padding: 48px 0;
  }

  .places-section,
  .compare-section,
  .steps-section,
  .faq-section,
  .cta-section {
    padding: 56px 0;
  }

  .compare-col {
    padding: 24px 20px;
  }

  .stage-num {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .accordion-title {
    padding: 16px 18px !important;
    font-size: 15px !important;
  }

  .accordion-content {
    padding: 0 18px 16px 46px !important;
  }

  .cta-card {
    padding: 24px 18px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .header-ctas .btn-outline {
    display: none;
  }
}
