:root {
  --bg: #FFF8F0; --ink: #2A1F1A; --muted: #75645A; --soft: #A9978C;
  --brand: #FF6B35; --deep: #2B1A3F; --mint: #00E5B0; --gold: #FFD166;
  --wine: #B8336A; --blue-soft: #E9FFF8; --gold-soft: #FFF1C7;
  --card: #FFFFFF; --dark: #24130C; --footer: #1A0F0A;
  --border: rgba(255,107,53,.18); --shadow: 0 20px 46px rgba(97,45,16,.14);
  --radius: 24px; --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif; line-height: 1.75; overflow-x: hidden; }
body.drawer-open { overflow: hidden; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: #D94E1E; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
main { min-height: 60vh; }
.site-header { position: sticky; top: 0; width: 100%; z-index: 9999; background: rgba(38,20,12,.94); backdrop-filter: blur(12px); box-shadow: 0 8px 26px rgba(97,45,16,.16); }
.header-inner { max-width: 1280px; margin: 0 auto; min-height: 72px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; color: #FFF3E8; font-size: 21px; font-weight: 800; white-space: nowrap; }
.site-logo:hover { color: #fff; }
.site-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 6px; }
.nav-core a { color: #FFF3E8; border-radius: 999px; padding: 8px 12px; font-size: 15px; white-space: nowrap; }
.nav-core a:hover, .nav-core a.active { color: #fff; background: rgba(0,229,176,.16); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.main-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px; border-radius: 999px; color: #fff; font-weight: 800; background: linear-gradient(135deg,#FF6B35 0%,#FFB703 48%,#00E5B0 100%); box-shadow: 0 14px 32px rgba(255,107,53,.22); transition: transform .2s ease, box-shadow .2s ease; }
.main-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px rgba(255,107,53,.28); }
.main-btn.compact { min-height: 42px; padding: 9px 18px; font-size: 14px; }
.menu-toggle { border: 1px solid rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); border-radius: 999px; padding: 9px 14px; cursor: pointer; }
.mobile-only { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(26,15,10,.55); opacity: 0; visibility: hidden; transition: .25s ease; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.site-drawer { position: fixed; top: 0; right: 0; z-index: 10001; width: min(390px, 88vw); height: 100vh; background: #fff; box-shadow: -24px 0 60px rgba(36,19,12,.22); transform: translateX(105%); transition: transform .28s ease; padding: 26px; overflow-y: auto; }
.site-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.drawer-head strong { font-size: 20px; color: var(--deep); }
.drawer-head button { border: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-soft); cursor: pointer; font-size: 26px; }
.drawer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 22px 0; }
.drawer-nav a { padding: 11px 13px; border-radius: 14px; background: #FFF8F0; color: var(--ink); font-weight: 700; }
.drawer-nav a:hover { background: var(--blue-soft); color: var(--deep); }
.drawer-note { border-radius: 18px; padding: 16px; background: linear-gradient(135deg, var(--gold-soft), var(--blue-soft)); color: var(--muted); font-size: 14px; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hero { position: relative; overflow: hidden; padding: 78px 0 64px; background: radial-gradient(circle at 85% 15%, rgba(0,229,176,.23), transparent 28%), radial-gradient(circle at 8% 25%, rgba(255,107,53,.19), transparent 30%), linear-gradient(145deg,#FFF1E7 0%,#F1FFFB 45%,#F5EDFF 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.hero::before { width: 230px; height: 230px; background: rgba(255,209,102,.25); left: -70px; bottom: -90px; }
.hero::after { width: 170px; height: 170px; background: rgba(184,51,106,.12); right: 9%; top: 30px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 56px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-weight: 800; letter-spacing: .06em; font-size: 14px; }
.eyebrow::before, .section-kicker::before { content: ""; width: 26px; height: 4px; border-radius: 999px; background: linear-gradient(90deg,var(--brand),var(--mint)); }
h1, h2, h3 { color: var(--dark); line-height: 1.25; margin-top: 0; }
.hero h1 { margin: 16px 0 12px; font-size: clamp(46px, 7vw, 86px); letter-spacing: -.04em; }
.hero-subtitle { margin: 0 0 18px; color: var(--deep); font-size: clamp(22px, 3vw, 34px); font-weight: 800; }
.hero-copy { max-width: 680px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 28px 0 20px; }
.text-link { font-weight: 800; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-points li { background: rgba(255,255,255,.76); border: 1px solid var(--border); border-radius: 999px; padding: 8px 13px; font-size: 14px; font-weight: 700; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 30px 34px rgba(43,26,63,.18)); }
.floating-note { position: absolute; left: -18px; bottom: 28px; max-width: 240px; padding: 15px 17px; border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); font-size: 14px; color: var(--muted); }
.section { padding: 78px 0; }
.section-tight { padding: 36px 0; }
.section-alt { background: #F3FFFB; }
.section-deep { background: linear-gradient(145deg,#24130C,#2B1A3F); color: #FFF3E8; }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-kicker { justify-content: center; }
.section-head h2 { margin: 12px 0; font-size: clamp(30px,4vw,48px); }
.section-head p { color: var(--muted); margin: 0; font-size: 16px; }
.section-deep .section-head p { color: rgba(255,243,232,.76); }
.card, .zone-card, .info-card, .review-card, .faq-item { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: var(--radius); }
.highlights { margin-top: -30px; position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.highlight-card { padding: 22px; }
.highlight-card strong { display: block; color: var(--deep); font-size: 17px; margin-bottom: 6px; }
.highlight-card p { margin: 0; color: var(--muted); font-size: 14px; }
.capsule-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.capsule { flex: 1 1 205px; padding: 16px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 24px rgba(97,45,16,.08); }
.capsule strong { display: block; color: var(--deep); }
.capsule span { display: block; color: var(--muted); font-size: 13px; }
.split { display: grid; grid-template-columns: repeat(2,1fr); align-items: center; gap: 42px; }
.split.reverse .media { order: 2; }
.media img, .content-img { width: 100%; max-height: 520px; object-fit: contain; border-radius: var(--radius); }
.media { padding: 18px; border-radius: 32px; background: linear-gradient(145deg,#FFF1C7,#E9FFF8); }
.copy h2 { font-size: clamp(30px,4vw,44px); margin: 12px 0 18px; }
.copy p { color: var(--muted); }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }
.link-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 20px; }
.two-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.four-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; aspect-ratio: 16/10; object-fit: contain; background: linear-gradient(135deg,#FFF7EB,#EBFFFA); }
.zone-content { padding: 25px; }
.zone-content h3 { font-size: 24px; margin-bottom: 10px; }
.zone-content p { color: var(--muted); }
.service-points { display: grid; gap: 10px; margin: 16px 0; }
.service-points span { padding: 10px 12px; border-radius: 13px; background: #FFF8F0; color: var(--muted); font-size: 14px; }
.security-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.security-card { padding: 28px; border-radius: 26px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); }
.security-card img { max-height: 240px; margin: 0 auto 18px; object-fit: contain; }
.security-card p, .security-card li { color: rgba(255,243,232,.76); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { padding: 24px; }
.review-card p { margin-top: 0; color: var(--muted); }
.review-card strong { color: var(--deep); }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 20px 24px; }
.faq-item summary { cursor: pointer; font-weight: 800; color: var(--deep); }
.faq-item p { margin: 12px 0 0; color: var(--muted); }
.notice { border-radius: 28px; padding: 30px; background: linear-gradient(135deg,#FFF1C7,#E9FFF8); border: 1px solid var(--border); }
.notice h2 { margin-bottom: 10px; }
.notice p { color: var(--muted); }
.inner-hero { padding: 68px 0 56px; background: radial-gradient(circle at 80% 20%,rgba(0,229,176,.20),transparent 28%),linear-gradient(145deg,#FFF1E7,#F3FFFB 55%,#F6EEFF); }
.inner-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; }
.inner-hero h1 { margin: 14px 0; font-size: clamp(38px,5vw,62px); }
.inner-hero p { color: var(--muted); font-size: 17px; }
.inner-hero img { width: 100%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 24px 34px rgba(43,26,63,.16)); }
.content-shell { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 32px; align-items: start; }
.article-card { padding: 34px; }
.article-card + .article-card { margin-top: 22px; }
.article-card h2 { font-size: 30px; margin-bottom: 14px; }
.article-card h3 { margin-bottom: 8px; }
.article-card p { color: var(--muted); }
.article-card ul { color: var(--muted); padding-left: 22px; }
.side-card { position: sticky; top: 98px; padding: 24px; }
.side-card h2 { font-size: 22px; }
.side-card nav { display: grid; gap: 9px; }
.side-card nav a { padding: 10px 12px; border-radius: 12px; background: #FFF8F0; color: var(--ink); font-weight: 700; }
.side-card .main-btn { width: 100%; margin-top: 18px; }
.callout { padding: 18px; border-radius: 18px; background: var(--blue-soft); color: var(--muted); border-left: 5px solid var(--mint); }
.timeline { display: grid; gap: 14px; counter-reset: step; }
.timeline-item { position: relative; padding: 18px 18px 18px 58px; border-radius: 18px; background: #FFF8F0; }
.timeline-item::before { counter-increment: step; content: counter(step); position: absolute; left: 18px; top: 18px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 900; }
.site-footer { background: var(--footer); color: #FFF3E8; padding: 58px 0 26px; }
.footer-grid, .footer-bottom { width: min(var(--max),calc(100% - 40px)); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 32px; }
.footer-grid h2 { color: #fff; font-size: 17px; margin-bottom: 14px; }
.footer-grid a { display: block; color: rgba(255,243,232,.72); margin: 7px 0; }
.footer-grid p { color: rgba(255,243,232,.68); max-width: 430px; }
.footer-brand { display: flex !important; align-items: center; gap: 10px; color: #fff !important; font-size: 23px; font-weight: 900; }
.footer-brand img { width: 46px; height: 46px; object-fit: contain; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,243,232,.60); font-size: 13px; }
.footer-bottom div { display: flex; gap: 16px; }
.footer-bottom a { color: rgba(255,243,232,.72); }
.mobile-bottom { display: none; }
@media (max-width: 1050px) {
  .nav-core { display: none; }
  .hero-grid, .inner-grid, .split, .content-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-visual { max-width: 720px; margin: 0 auto; }
  .side-card { position: static; }
  .highlights, .four-grid { grid-template-columns: repeat(2,1fr); }
  .three-grid, .review-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .header-inner { min-height: 64px; padding: 0 12px; gap: 10px; }
  .mobile-only { display: inline-flex; }
  .desktop-only { display: none; }
  .site-logo span { display: none; }
  .site-logo img { width: 40px; height: 40px; }
  .header-actions .main-btn { padding: 8px 13px; min-height: 38px; font-size: 13px; }
  .hero { padding: 56px 0 48px; }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: 52px; }
  .hero-subtitle { font-size: 25px; }
  .hero-copy, .inner-hero p { font-size: 15px; }
  .floating-note { position: static; margin-top: 14px; max-width: none; }
  .section { padding: 58px 0; }
  .container { width: min(100% - 26px,var(--max)); }
  .highlights { grid-template-columns: 1fr; margin-top: 16px; }
  .two-grid, .three-grid, .four-grid, .security-panel, .review-grid { grid-template-columns: 1fr; }
  .split.reverse .media { order: 0; }
  .article-card { padding: 24px 20px; }
  .inner-hero { padding: 48px 0 40px; }
  .inner-grid { gap: 24px; }
  .inner-hero h1 { font-size: 40px; }
  .drawer-nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-bottom { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000; min-height: 64px; padding-bottom: env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(4,1fr); background: rgba(36,19,12,.96); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.12); }
  .mobile-bottom a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; color: #FFF3E8; font-size: 12px; }
  .mobile-bottom span { font-size: 18px; color: var(--mint); }
}
