/* ========================================================
   河北文旅一卡通 · Professional Design System v2
   ======================================================== */

/* ===== Tokens ===== */
:root {
  --gold: #c8956c;
  --gold-light: #e8c9a0;
  --gold-dark: #8b5e3c;
  --gold-deep: #6b452a;
  --red: #a8413a;
  --green: #2e7d32;
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --ink-muted: #8a8a8a;
  --bg: #faf8f5;
  --bg-soft: #f5f0ea;
  --white: #ffffff;
  --dark-1: #1f1810;
  --dark-2: #2d2018;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.08);
  --shadow-xl: 0 30px 80px rgba(0,0,0,.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --tick: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.4l3.2 3.2L13 5.2' stroke='%23c8956c' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

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

/* ===== Loader ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .45s ease;
}
#loader.hide { opacity: 0; pointer-events: none; }
.loader-spinner {
  width: 42px; height: 42px;
  border: 3px solid var(--gold-light);
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: relative;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  transition: color .3s;
}
.logo svg { flex-shrink: 0; }
.site-header.scrolled .logo { color: var(--ink); }
.logo span { letter-spacing: .5px; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.85);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--ink-light); }
.site-header.scrolled .nav-links a:hover { color: var(--ink); }

.nav-cta {
  padding: 10px 24px; border-radius: 50px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .85rem; font-weight: 700;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-1px); }
.site-header.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
}

.burger {
  display: none; background: none; border: none;
  width: 32px; height: 22px; position: relative;
}
.burger span {
  display: block; height: 2px; background: var(--white);
  position: absolute; left: 0; right: 0;
  border-radius: 2px; transition: all .3s;
}
.site-header.scrolled .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 3px; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { bottom: 3px; }
.burger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { bottom: 10px; transform: rotate(-45deg); }

/* ===== Buttons ===== */
.btn-outline, .btn-gold, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  transition: all .35s var(--ease);
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(200,149,108,.4);
  font-size: 1rem;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(200,149,108,.5); }
.btn-gold.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid #ddd; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 110px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(200,149,108,.18) 0%, transparent 55%),
    linear-gradient(100deg, rgba(18,12,8,.94) 0%, rgba(18,12,8,.82) 42%, rgba(18,12,8,.5) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(232,201,160,.5);
  animation: floatUp linear infinite;
}
.p1 { width: 5px; height: 5px; left: 8%;  animation-duration: 19s; animation-delay: 0s; }
.p2 { width: 4px; height: 4px; left: 22%; animation-duration: 24s; animation-delay: 3s; }
.p3 { width: 6px; height: 6px; left: 41%; animation-duration: 17s; animation-delay: 6s; }
.p4 { width: 3px; height: 3px; left: 62%; animation-duration: 26s; animation-delay: 1s; }
.p5 { width: 5px; height: 5px; left: 78%; animation-duration: 21s; animation-delay: 8s; }
.p6 { width: 4px; height: 4px; left: 92%; animation-duration: 23s; animation-delay: 5s; }
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .9; }
  100% { transform: translateY(-105vh) scale(.4); opacity: 0; }
}

.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(200,149,108,.14);
  border: 1px solid rgba(200,149,108,.3);
  padding: 8px 20px; border-radius: 50px;
  color: var(--gold-light); font-size: .84rem; font-weight: 500;
  margin-bottom: 26px;
  backdrop-filter: blur(12px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.75); }
}

.hero-title {
  font-size: 4.4rem; font-weight: 900; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 60%, #b8834f 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,.72);
  margin-bottom: 40px; max-width: 560px; line-height: 1.9;
}
.hero-sub strong { color: var(--gold-light); font-weight: 700; }

.hero-stats { display: flex; align-items: center; gap: 30px; margin-bottom: 34px; }
.stat-item { display: flex; align-items: baseline; flex-wrap: wrap; }
.stat-num { font-size: 2.1rem; font-weight: 900; color: var(--gold-light); line-height: 1.1; }
.stat-plus { font-size: 1.35rem; font-weight: 700; color: var(--gold); }
.stat-lbl {
  display: block; width: 100%; font-size: .78rem;
  color: rgba(255,255,255,.5); margin-top: 2px;
}
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,.14); }

.hero-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 34px; }
.hp-from {
  align-self: center;
  font-size: .76rem; font-weight: 700; color: var(--gold-light);
  background: rgba(200,149,108,.16); border: 1px solid rgba(200,149,108,.32);
  padding: 5px 12px; border-radius: 20px;
}
.hp-main { font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.hp-main em { font-size: .95rem; font-style: normal; font-weight: 600; color: rgba(255,255,255,.55); margin-left: 3px; }
.hp-orig { font-size: .9rem; color: rgba(255,255,255,.42); text-decoration: line-through; }

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.28);
  border-radius: 12px; z-index: 2;
}
.hero-scroll span {
  display: block; width: 3px; height: 8px;
  background: var(--gold-light); border-radius: 2px;
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 25px; }
}

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 26px 0; background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.trust-items { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--ink-muted); font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===== Section head ===== */
.section-head { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: 2.2px; color: var(--gold-deep);
  margin-bottom: 16px; padding: 5px 14px; border-radius: 6px;
  background: rgba(200,149,108,.1);
}
.section-title { font-size: 2.45rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -.5px; }
.section-sub { font-size: 1rem; color: var(--ink-muted); }

/* ===== Benefits ===== */
.benefits { padding: 116px 0; background: var(--bg); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: all .45s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,149,108,.2);
}
.benefit-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.icon-gold   { background: rgba(200,149,108,.13); color: var(--gold-deep); }
.icon-blue   { background: rgba(66,133,244,.1);   color: #3b78d8; }
.icon-green  { background: rgba(52,168,83,.1);    color: #2f8f4c; }
.icon-purple { background: rgba(147,112,219,.1);  color: #7c5bc4; }
.icon-teal   { background: rgba(0,150,136,.1);    color: #00867a; }
.icon-rose   { background: rgba(233,30,99,.08);   color: #c2185b; }

.benefit-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; transition: color .3s; }
.benefit-card p { font-size: .92rem; color: var(--ink-muted); line-height: 1.85; }
.benefit-card p strong { color: var(--gold-deep); font-weight: 700; }
.benefit-card:hover h3 { color: var(--gold-deep); }

/* ===== Scenes ===== */
.scenes { padding: 116px 0; background: var(--bg-soft); }
.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.scene-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: all .45s var(--ease);
}
.scene-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.scene-img { position: relative; height: 200px; overflow: hidden; background: #e8e2da; }
.scene-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.scene-card:hover .scene-img img { transform: scale(1.07); }
.scene-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55) 100%);
}
.scene-place {
  position: absolute; bottom: 14px; left: 16px; z-index: 2;
  background: rgba(0,0,0,.42); color: var(--white);
  font-size: .74rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
}
.scene-body { padding: 20px 22px 24px; }
.scene-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.scene-tag { font-size: .8rem; color: var(--ink-muted); }
.scene-foot { text-align: center; margin-top: 44px; font-size: .92rem; color: var(--ink-muted); }
.scene-foot strong { color: var(--gold-deep); }

/* ===== Value Analysis ===== */
.value { padding: 116px 0; background: var(--bg); }
.value-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 56px;
}
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.04);
}
.vc-label {
  font-size: .78rem; font-weight: 700; letter-spacing: 1.2px;
  color: var(--ink-muted); margin-bottom: 14px;
}
.vc-num { font-size: 2.35rem; font-weight: 900; color: var(--gold-deep); line-height: 1.1; }
.vc-num span { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.vc-desc { font-size: .84rem; color: var(--ink-muted); margin-top: 10px; }

.compare-wrap { max-width: 900px; margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  table-layout: fixed;
}
.compare-table th, .compare-table td { padding: 19px 26px; text-align: left; font-size: .93rem; }
.compare-table th:first-child, .compare-table td:first-child { width: 44%; }
.compare-table thead th {
  background: #f7f3ee; font-size: .8rem; font-weight: 700;
  letter-spacing: .6px; color: var(--ink-muted);
}
.compare-table thead th.th-hl {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-1));
  color: var(--gold-light);
}
.compare-table tbody td { border-top: 1px solid rgba(0,0,0,.05); }
.compare-table tbody td:first-child { color: var(--ink-light); }
.compare-table td.old { color: #9a9a9a; font-weight: 600; }
.compare-table td.good { color: var(--green); font-weight: 700; }
.compare-table tbody td:nth-child(3),
.compare-table tfoot td:nth-child(3) { background: rgba(200,149,108,.055); }
.compare-table tfoot td {
  border-top: 2px solid rgba(200,149,108,.28);
  font-weight: 900; font-size: 1.05rem; background: #faf7f3;
}
.compare-table tfoot td.old-total {
  color: #a0a0a0;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(0,0,0,.25);
}
.compare-table tfoot td.new-total {
  color: var(--gold-deep); font-size: 1.65rem;
  background: rgba(200,149,108,.11);
}

.compare-badge {
  margin-top: 30px; text-align: center;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(200,149,108,.12), rgba(200,149,108,.05));
  border: 1px dashed rgba(200,149,108,.42);
  border-radius: var(--radius-md);
  font-size: .97rem; color: var(--ink-light);
}
.compare-badge strong { color: var(--gold-deep); font-size: 1.15rem; font-weight: 900; }

/* ===== Pricing ===== */
.pricing { padding: 116px 0; background: var(--bg-soft); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 46px 34px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05);
  transition: all .45s var(--ease); position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.highlighted {
  background: linear-gradient(150deg, var(--dark-2), var(--dark-1));
  color: var(--white);
  border: 1px solid rgba(200,149,108,.32);
  transform: scale(1.03);
  box-shadow: 0 24px 70px rgba(200,149,108,.22);
}
.price-card.highlighted:hover { transform: scale(1.03) translateY(-8px); }
.pc-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); font-size: .74rem; font-weight: 700;
  padding: 6px 20px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(139,94,60,.35);
}
.pc-label {
  font-size: .72rem; font-weight: 700; letter-spacing: 1.6px;
  color: var(--ink-muted); text-transform: uppercase; margin-bottom: 8px;
}
.price-card.highlighted .pc-label { color: var(--gold-light); }
.pc-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.pc-price { font-weight: 900; margin-bottom: 6px; display: flex; align-items: baseline; gap: 2px; }
.pc-cur { font-size: 1.35rem; font-weight: 700; }
.pc-num { font-size: 3.4rem; line-height: 1; }
.price-card.highlighted .pc-num { color: var(--gold-light); }
.pc-price-alt { font-size: 2rem; font-weight: 900; color: var(--gold-deep); display: block; margin-bottom: 6px; }
.pc-orig { font-size: .82rem; color: var(--ink-muted); margin-bottom: 28px; }
.price-card.highlighted .pc-orig { color: rgba(255,255,255,.5); }
.pc-list { flex: 1; margin-bottom: 32px; }
.pc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; font-size: .9rem; color: var(--ink-light);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.pc-list li:last-child { border-bottom: none; }
.price-card.highlighted .pc-list li {
  color: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.07);
}
.tick {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px;
  background: var(--tick) no-repeat center / contain;
}
.price-foot { text-align: center; margin-top: 44px; font-size: .92rem; color: var(--ink-muted); }
.price-foot a { color: var(--gold-deep); font-weight: 700; }
.price-foot a:hover { text-decoration: underline; }

/* ===== Reviews ===== */
.reviews { padding: 116px 0; background: var(--white); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .45s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--white); }
.rv-stars { color: #e0a52a; letter-spacing: 3px; font-size: 1rem; margin-bottom: 16px; }
.rv-text { flex: 1; font-size: .94rem; color: var(--ink-light); line-height: 1.9; margin-bottom: 24px; }
.rv-user { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.06); }
.rv-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
}
.rv-name { font-weight: 700; font-size: .92rem; }
.rv-meta { font-size: .78rem; color: var(--ink-muted); }

/* ===== FAQ ===== */
.faq { padding: 116px 0; background: var(--bg-soft); }
.faq-list {
  max-width: 880px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 10px 42px; box-shadow: var(--shadow-sm);
}
.faq-item { border-bottom: 1px solid rgba(0,0,0,.06); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 26px 0; background: none; border: none;
  text-align: left; font-size: 1.02rem; font-weight: 600;
  color: var(--ink); line-height: 1.6;
  transition: color .25s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-icon { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold);
  border-radius: 2px; transition: transform .35s var(--ease), opacity .3s;
}
.faq-icon::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-icon::after  { width: 2px; height: 14px; top: 4px; left: 10px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-item.open .faq-q { color: var(--gold-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.faq-a p { padding-bottom: 26px; font-size: .93rem; color: var(--ink-muted); line-height: 1.95; }
.faq-a strong { color: var(--ink-light); font-weight: 700; }
.faq-a a { color: var(--gold-deep); font-weight: 700; text-decoration: underline; }

/* ===== Contact ===== */
.contact {
  padding: 116px 0; position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 100%);
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 18% 45%, rgba(200,149,108,.1) 0%, transparent 58%);
}
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 76px; align-items: center; position: relative; z-index: 2;
}
.contact .section-tag { background: rgba(200,149,108,.16); color: var(--gold-light); }
.contact .section-title { color: var(--white); margin-bottom: 20px; }
.contact .section-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-desc { font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: 40px; line-height: 1.9; }
.contact-desc strong { color: var(--gold-light); }

.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.channel-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .35s var(--ease);
}
.channel-item:hover { background: rgba(255,255,255,.1); transform: translateX(6px); }
.ch-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(200,149,108,.16); color: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.ch-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.ch-val { font-size: 1.15rem; font-weight: 700; color: var(--white); }

.lead-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 46px; box-shadow: var(--shadow-xl);
}
.form-head { margin-bottom: 28px; }
.form-head h3 { font-size: 1.32rem; font-weight: 800; margin-bottom: 6px; }
.form-head p { font-size: .85rem; color: var(--ink-muted); }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.form-group label em { color: var(--red); font-style: normal; }
.form-group input, .form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #e8e8e8; border-radius: var(--radius-md);
  font-size: 16px; background: var(--bg); color: var(--ink);
  transition: all .3s;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  background: var(--white); box-shadow: 0 0 0 4px rgba(200,149,108,.12);
}
.form-group input::placeholder { color: #bbb; }

.form-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .77rem; color: var(--ink-muted); margin-top: 16px;
}
.form-note svg { color: var(--green); flex-shrink: 0; }

.form-msg {
  margin-top: 16px; padding: 15px 20px;
  border-radius: var(--radius-md); font-weight: 600;
  font-size: .9rem; text-align: center;
}
.form-msg.success { background: #e8f5e9; color: var(--green); }
.form-msg.error { background: #fce9e9; color: #c0392b; }

/* ===== Footer ===== */
.site-footer { background: #14100c; color: var(--ink-muted); padding: 62px 0 30px; }
.footer-main { display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px; margin-bottom: 46px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: .89rem; line-height: 1.85; color: rgba(255,255,255,.4); max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fl-col h4 { font-size: .84rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.fl-col a, .fl-col span {
  display: block; font-size: .87rem; color: rgba(255,255,255,.5);
  padding: 5px 0; transition: color .2s;
}
.fl-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; gap: 12px;
  font-size: .81rem; color: rgba(255,255,255,.35);
}
.footer-bottom .motto { color: var(--gold); }

/* ===== Floating Actions ===== */
.float-actions {
  position: fixed; right: 24px; bottom: 34px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--gold-deep);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease); position: relative;
}
.float-btn:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.float-btn::after {
  content: attr(data-tip);
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--dark-1); color: var(--white);
  font-size: .78rem; font-weight: 500; white-space: nowrap;
  padding: 7px 14px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: all .3s var(--ease);
}
.float-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
#backTop { opacity: 0; visibility: hidden; transform: translateY(10px); }
#backTop.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Mobile CTA ===== */
.mobile-cta { display: none; }

/* ===== Scroll Reveal ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: -24px; right: -24px;
    background: var(--white); padding: 12px 24px 20px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav-links.open a {
    color: var(--ink) !important; padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
    font-size: 1rem;
  }
  .nav-links.open a::after { display: none; }

  .hero { min-height: auto; padding: 120px 0 84px; }
  .hero-title { font-size: 3rem; }
  .benefit-grid, .scene-grid, .review-grid, .spot-grid { grid-template-columns: repeat(2, 1fr); }
  .value-cards { gap: 16px; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.highlighted { transform: none; }
  .price-card.highlighted:hover { transform: translateY(-8px); }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 78px; }
  .container { padding: 0 20px; }
  .benefits, .scenes, .value, .pricing, .reviews, .faq, .contact { padding: 76px 0; }
  .section-head { margin-bottom: 44px; }
  .section-title { font-size: 1.9rem; }
  .section-sub { font-size: .92rem; }

  .hero { padding: 108px 0 76px; }
  .hero-title { font-size: 2.5rem; letter-spacing: -.8px; }
  .hero-sub { font-size: 1rem; }
  .hero-sub br { display: none; }
  .hero-stats { gap: 0; justify-content: space-between; width: 100%; margin-bottom: 28px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.55rem; }
  .stat-lbl { font-size: .72rem; }
  .hero-price-row { gap: 10px; margin-bottom: 28px; }
  .hp-main { font-size: 2rem; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-gold, .hero-actions .btn-ghost { flex: 1; padding: 15px 16px; font-size: .9rem; }
  .hero-scroll { display: none; }

  .trust-items { gap: 14px 22px; }
  .trust-item { font-size: .79rem; }

  .benefit-grid, .scene-grid, .review-grid { grid-template-columns: 1fr; gap: 18px; }
  .benefit-card { padding: 30px 24px; }
  .scene-img { height: 190px; }

  .value-cards { grid-template-columns: 1fr; gap: 12px; margin-bottom: 34px; }
  .value-card {
    padding: 20px 22px; display: flex;
    align-items: center; justify-content: space-between; gap: 14px;
  }
  .vc-label { margin-bottom: 0; text-align: left; }
  .vc-num { font-size: 1.7rem; }
  .vc-desc { display: none; }

  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 520px; }
  .compare-table th, .compare-table td { padding: 15px 16px; font-size: .85rem; }
  .compare-table tfoot td.new-total { font-size: 1.35rem; }
  .compare-badge { font-size: .88rem; padding: 16px 18px; }

  .price-card { padding: 38px 26px; }
  .pc-num { font-size: 2.9rem; }

  .faq-list { padding: 6px 22px; }
  .faq-q { padding: 22px 0; font-size: .96rem; gap: 14px; }
  .faq-a p { font-size: .89rem; }

  .lead-form { padding: 30px 22px; }
  .contact .section-title { font-size: 1.75rem; }
  .contact-channels { gap: 12px; }
  .channel-item { padding: 16px 18px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-actions { display: none; }
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(0,0,0,.07);
  }
  .mcta-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    height: 46px; border-radius: 12px; font-size: .92rem; font-weight: 700;
    transition: transform .25s var(--ease);
  }
  .mcta-btn:active { transform: scale(.97); }
  .mcta-ghost {
    flex: 0 0 34%;
    border: 1.5px solid var(--gold); color: var(--gold-deep); background: var(--white);
  }
  .mcta-solid {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--white); box-shadow: 0 6px 18px rgba(200,149,108,.4);
  }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2.15rem; }
  .stat-num { font-size: 1.35rem; }
  .hp-main { font-size: 1.75rem; }
}

/* ===== 文旅场所全览目录 ===== */
.directory-stats {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 44px;
  padding: 28px 24px; background: var(--bg-warm); border-radius: var(--radius-lg);
  border: 1px solid rgba(200,149,108,.12);
}
.directory-stats .stat-item { text-align: center; color: var(--ink-2); font-size: .9rem; }
.directory-stats .stat-num {
  display: block; font-size: 2rem; font-weight: 800; color: var(--gold-deep);
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 2px;
}

.filter-bar {
  margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start;
}
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.chip {
  padding: 8px 16px; border-radius: 30px; border: 1.5px solid rgba(200,149,108,.25);
  background: var(--white); color: var(--ink-2); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.chip.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.filter-controls { display: flex; gap: 12px; align-items: center; }
.type-toggle { display: flex; border-radius: 30px; overflow: hidden; border: 1.5px solid rgba(200,149,108,.2); }
.type-btn {
  padding: 8px 18px; font-size: .82rem; font-weight: 600; background: var(--white);
  color: var(--ink-2); cursor: pointer; transition: all .25s var(--ease); border: none;
}
.type-btn:not(:last-child) { border-right: 1px solid rgba(200,149,108,.1); }
.type-btn.active { background: var(--gold-dark); color: var(--white); }
.search-wrap input {
  width: 200px; padding: 8px 14px; border-radius: 30px; border: 1.5px solid rgba(200,149,108,.2);
  font-size: .85rem; background: var(--white); color: var(--ink); outline: none;
  transition: border-color .25s var(--ease);
}
.search-wrap input:focus { border-color: var(--gold); }

.result-info {
  font-size: .88rem; color: var(--ink-2); margin-bottom: 20px; padding: 0 4px;
}
.result-info strong { color: var(--gold-deep); }
.result-info-sub { color: var(--ink-3); margin-left: 8px; }

.spot-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 32px;
}
.spot-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: all .35s var(--ease);
  border: 1px solid rgba(0,0,0,.04); cursor: default;
}
.spot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spot-img {
  position: relative; overflow: hidden; height: 180px; background: var(--bg-warm);
}
.spot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.spot-card:hover .spot-img img { transform: scale(1.05); }
.spot-level {
  position: absolute; top: 10px; left: 10px;
  background: rgba(200,149,108,.9); color: var(--white);
  padding: 3px 9px; border-radius: 6px; font-size: .72rem; font-weight: 700;
  backdrop-filter: blur(4px);
}
.cinema-tag { background: rgba(60,60,80,.85); }
.spot-info { padding: 14px 16px 16px; }
.spot-name { font-size: .95rem; font-weight: 700; color: var(--dark-1); margin-bottom: 6px; line-height: 1.35; }
.spot-tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.spot-city-tag, .spot-cat-tag {
  padding: 2px 10px; border-radius: 20px; font-size: .7rem; font-weight: 600;
}
.spot-city-tag { background: rgba(200,149,108,.12); color: var(--gold-deep); }
.spot-cat-tag { background: var(--bg-warm); color: var(--ink-2); }
.spot-price { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.spot-orig { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.spot-free-label {
  font-size: .72rem; font-weight: 700; color: var(--white);
  background: linear-gradient(135deg,#e74c3c,#c0392b);
  padding: 2px 10px; border-radius: 20px; letter-spacing: .5px;
}
.spot-count { font-size: .78rem; color: var(--gold-deep); font-weight: 500; margin-bottom: 4px; }
.spot-note { font-size: .74rem; color: var(--ink-3); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.load-more-wrap { text-align: center; padding: 8px 0 0; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 36px; border-radius: 30px; border: 2px solid var(--gold);
  color: var(--gold-deep); background: var(--white); font-size: .92rem; font-weight: 700;
  cursor: pointer; transition: all .3s var(--ease);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

@media (max-width: 768px) {
  .directory-stats { gap: 20px; padding: 20px 16px; flex-wrap: wrap; }
  .directory-stats .stat-num { font-size: 1.6rem; }
  .filter-bar { flex-direction: column; gap: 12px; }
  .filter-controls { width: 100%; flex-wrap: wrap; }
  .search-wrap input { width: 100%; }
  .spot-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .spot-img { height: 130px; }
  .spot-info { padding: 10px 12px 12px; }
  .spot-name { font-size: .85rem; }
  .spot-orig { font-size: .95rem; }
}
@media (max-width: 400px) {
  .spot-grid { grid-template-columns: 1fr; }
  .spot-img { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
