:root {
    --bg: #FFF8F0;
    --ink: #2A1F1A;
    --heading: #24130C;
    --muted: #75645A;
    --soft: #A9978C;
    --brand: #FF6B35;
    --deep: #2B1A3F;
    --neon: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --blue-soft: #E9FFF8;
    --gold-soft: #FFF1C7;
    --card: #FFFFFF;
    --shadow: 0 20px 46px rgba(97,45,16,0.14);
    --border: rgba(255,107,53,0.18);
    --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", "Noto Sans CJK SC", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(38,20,12,0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(97,45,16,0.16);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.site-logo, .drawer-brand, .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: .04em;
}
.site-logo { color: #FFF3E8; min-width: 118px; }
.site-logo img { max-height: 44px; width: auto; display: block; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; }
.nav-core a {
    color: #FFF3E8;
    text-decoration: none;
    border-radius: 999px;
    padding: 8px 12px;
    white-space: nowrap;
    font-size: .95rem;
}
.nav-core a:hover, .nav-core a.active { color: #FFFFFF; background: rgba(0,229,176,0.16); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 205px; }
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
    color: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(255,107,53,0.22);
    text-decoration: none;
    font-weight: 800;
    border: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(255,107,53,0.28); }
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(43,26,63,.18);
    background: rgba(255,255,255,.75);
    color: var(--deep);
}
.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    border-radius: 14px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-menu-toggle { display: none; }
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26,15,10,.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.site-drawer {
    position: fixed;
    z-index: 10001;
    top: 0;
    right: 0;
    width: min(390px, 90vw);
    height: 100vh;
    padding: 24px;
    overflow-y: auto;
    background: #FFF8F0;
    transform: translateX(105%);
    transition: transform .28s ease;
    box-shadow: -24px 0 60px rgba(26,15,10,.2);
}
.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
.drawer-open .site-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.drawer-brand { color: var(--heading); }
.drawer-brand img, .footer-logo img { height: 42px; width: auto; }
.drawer-close { border: 0; background: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 1.7rem; cursor: pointer; }
.drawer-intro { color: var(--muted); font-size: .94rem; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.drawer-nav a { padding: 12px 14px; border-radius: 14px; text-decoration: none; background: #fff; border: 1px solid var(--border); font-weight: 700; }
.drawer-nav a:hover { color: var(--brand); transform: translateX(2px); }
.drawer-note { padding: 18px; border-radius: 18px; background: linear-gradient(135deg, #2B1A3F, #4D2A67); color: #fff; }
.drawer-note p { margin-bottom: 0; color: rgba(255,255,255,.78); }
.site-main { min-height: 60vh; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section.compact { padding: 58px 0; }
.section-tint { background: linear-gradient(180deg, rgba(233,255,248,.82), rgba(255,248,240,.45)); }
.section-deep { background: linear-gradient(135deg, #2B1A3F 0%, #3C2253 55%, #203E46 100%); color: #fff; }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: #8F5B00; background: var(--gold-soft); border-radius: 999px; padding: 6px 12px; font-size: .85rem; font-weight: 900; letter-spacing: .06em; }
h1, h2, h3, .section-title { color: var(--heading); line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.16rem); max-width: 820px; }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section-head p { color: var(--muted); }
.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 62px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,107,53,.22), transparent 28%),
        radial-gradient(circle at 80% 14%, rgba(0,229,176,.22), transparent 26%),
        radial-gradient(circle at 76% 76%, rgba(184,51,106,.16), transparent 30%),
        linear-gradient(135deg, #FFF1E6 0%, #F2F0FF 48%, #E9FFF8 100%);
}
.hero::after { content: ''; position: absolute; width: 360px; height: 360px; right: -120px; bottom: -160px; border-radius: 50%; border: 1px solid rgba(43,26,63,.12); box-shadow: 0 0 0 42px rgba(255,255,255,.18), 0 0 0 84px rgba(255,255,255,.12); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 44px; align-items: center; }
.hero-copy h1 span { display: block; font-size: .32em; color: var(--rose); letter-spacing: .03em; margin-top: 10px; }
.hero-copy .lead { max-width: 710px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-points li { background: rgba(255,255,255,.82); border: 1px solid rgba(43,26,63,.1); border-radius: 999px; padding: 8px 13px; font-weight: 700; color: var(--deep); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-height: 560px; object-fit: contain; display: block; filter: drop-shadow(0 24px 36px rgba(43,26,63,.18)); }
.floating-note { position: absolute; padding: 13px 16px; background: rgba(255,255,255,.9); border: 1px solid rgba(255,107,53,.14); box-shadow: var(--shadow); border-radius: 18px; font-size: .9rem; font-weight: 800; }
.floating-note.one { left: -18px; bottom: 16%; }
.floating-note.two { right: 0; top: 12%; }
.card, .zone-card, .info-card, .review-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 22px;
}
.card { padding: 26px; }
.highlight-strip { margin-top: -26px; position: relative; z-index: 3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.highlight-item { padding: 20px; border-radius: 20px; background: rgba(255,255,255,.95); border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(97,45,16,.1); }
.highlight-item strong { display: block; color: var(--heading); margin-bottom: 6px; }
.highlight-item p { margin: 0; color: var(--muted); font-size: .92rem; }
.capsule-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.capsule { flex: 1 1 210px; padding: 16px 18px; background: #fff; border: 1px solid var(--border); border-radius: 999px; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.capsule b { color: var(--brand); white-space: nowrap; }
.capsule span { color: var(--muted); font-size: .88rem; }
.media-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; align-items: center; }
.media-split.reverse { grid-template-columns: 1.08fr .92fr; }
.media-panel { position: relative; padding: 18px; border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(233,255,248,.86)); border: 1px solid rgba(43,26,63,.08); }
.content-img, .zone-card img, .app-section img, .hero-visual img { max-width: 100%; height: auto; object-fit: contain; }
.media-panel img { width: 100%; max-height: 520px; object-fit: contain; display: block; }
.check-list { display: grid; gap: 10px; margin: 22px 0; }
.check-list div { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check-list div::before { content: '✓'; display: inline-grid; place-items: center; min-width: 24px; height: 24px; border-radius: 50%; background: var(--blue-soft); color: #007D66; font-weight: 900; }
.text-link { color: var(--brand); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.zone-card { overflow: hidden; }
.zone-card .zone-image { background: linear-gradient(135deg, #FFF1E6, #E9FFF8); padding: 12px; }
.zone-card .zone-image img { width: 100%; height: 250px; object-fit: contain; display: block; }
.zone-card .zone-content { padding: 24px; }
.zone-card p { color: var(--muted); }
.zone-card ul { padding-left: 20px; color: var(--muted); }
.info-card { padding: 24px; }
.info-card p { color: var(--muted); }
.info-card .number { font-size: 2rem; font-weight: 900; color: rgba(255,107,53,.28); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 22px; border-radius: 20px; background: linear-gradient(145deg, #fff, #FFF7EA); border: 1px solid var(--border); }
.stat b { display: block; color: var(--deep); font-size: 1.12rem; }
.stat span { color: var(--muted); font-size: .92rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 24px; position: relative; }
.review-card::before { content: '“'; position: absolute; top: 4px; right: 18px; font-size: 4rem; color: rgba(255,107,53,.12); font-family: Georgia, serif; }
.review-card p { color: var(--muted); }
.review-meta { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--soft); }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-soft); color: var(--deep); font-weight: 900; }
.faq-list { display: grid; gap: 14px; }
details { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px 20px; box-shadow: 0 10px 26px rgba(97,45,16,.07); }
summary { cursor: pointer; font-weight: 900; color: var(--heading); }
details p { color: var(--muted); margin: 12px 0 0; }
.notice { padding: 28px; border-radius: 24px; background: linear-gradient(135deg, #FFF1C7, #E9FFF8); border: 1px solid rgba(255,107,53,.16); }
.notice h2 { margin-bottom: 12px; }
.notice p:last-child { margin-bottom: 0; }
.page-hero { padding: 72px 0 48px; background: linear-gradient(135deg, #FFF1E6 0%, #F2F0FF 52%, #E9FFF8 100%); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.page-hero h1 { font-size: clamp(2.35rem, 5vw, 4.6rem); }
.page-hero img { width: 100%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(43,26,63,.15)); }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: .9rem; color: var(--soft); margin-bottom: 16px; }
.breadcrumbs a { color: var(--brand); text-decoration: none; }
.prose-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; align-items: start; }
.prose article { max-width: 820px; }
.prose article h2 { margin-top: 42px; }
.prose article h3 { margin-top: 28px; }
.prose article p { color: #4D4039; }
.side-panel { position: sticky; top: 96px; display: grid; gap: 16px; }
.side-panel .card { box-shadow: 0 12px 30px rgba(97,45,16,.08); }
.side-panel a { display: block; margin-top: 8px; }
.service-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-point { padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--border); }
.service-point b { color: var(--deep); display: block; margin-bottom: 6px; }
.service-point p { margin: 0; color: var(--muted); font-size: .93rem; }
.quote-box { margin: 28px 0; padding: 24px; border-left: 5px solid var(--brand); border-radius: 0 18px 18px 0; background: #fff; box-shadow: 0 12px 30px rgba(97,45,16,.08); color: var(--muted); }
.cta-band { padding: 34px; border-radius: 28px; background: linear-gradient(135deg, #2B1A3F 0%, #5A2D6B 48%, #146B73 100%); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 0; max-width: 760px; }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 64px 0 28px; }
.footer-grid { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 32px; }
.footer-grid h2 { color: #fff; font-size: 1rem; }
.footer-grid a { display: block; color: rgba(255,243,232,.72); text-decoration: none; margin: 8px 0; }
.footer-grid a:hover { color: var(--neon); }
.footer-brand p { color: rgba(255,243,232,.68); max-width: 440px; }
.footer-logo { color: #fff; margin-bottom: 14px; }
.footer-bottom { width: min(var(--max), calc(100% - 40px)); margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,243,232,.56); font-size: .88rem; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1080px) {
    .nav-core { gap: 2px; }
    .nav-core a { padding: 8px 9px; font-size: .9rem; }
    .header-actions { min-width: 190px; }
    .hero-grid, .page-hero-grid { gap: 28px; }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .nav-core { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
    .desktop-menu-toggle { display: none; }
    .header-inner { min-height: 64px; }
    .header-actions { min-width: auto; }
    .site-logo { position: absolute; left: 50%; transform: translateX(-50%); min-width: auto; }
    .site-logo img { max-height: 38px; }
    .hero-grid, .page-hero-grid, .media-split, .media-split.reverse, .prose-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy .lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-points { justify-content: center; }
    .hero-visual { max-width: 660px; margin: 0 auto; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .three-col { grid-template-columns: 1fr; }
    .service-points { grid-template-columns: 1fr; }
    .side-panel { position: static; grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    body { padding-bottom: 72px; }
    .container, .footer-grid, .footer-bottom { width: min(100% - 28px, var(--max)); }
    .header-inner { padding: 0 12px; }
    .site-logo strong { display: none; }
    .header-cta { min-height: 40px; padding: 9px 14px; font-size: .88rem; }
    .menu-toggle { width: 40px; height: 40px; }
    .hero { padding: 54px 0 46px; }
    .section { padding: 62px 0; }
    .section.compact { padding: 46px 0; }
    .hero-copy h1 { font-size: 3.6rem; }
    .hero-copy h1 span { font-size: .25em; line-height: 1.4; }
    .floating-note { position: static; display: inline-block; margin: 8px 4px 0; }
    .highlight-grid, .two-col, .review-grid, .stats-row, .side-panel { grid-template-columns: 1fr; }
    .four-col { grid-template-columns: 1fr; }
    .capsule { border-radius: 20px; align-items: flex-start; flex-direction: column; gap: 2px; }
    .zone-card .zone-image img { height: 220px; }
    .cta-band { padding: 26px; align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .drawer-nav { grid-template-columns: 1fr; }
    .mobile-bottom-nav { position: fixed; z-index: 9998; left: 0; right: 0; bottom: 0; height: 64px; padding-bottom: env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,107,53,.16); box-shadow: 0 -10px 30px rgba(97,45,16,.1); }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; text-decoration: none; color: var(--muted); font-size: .78rem; }
    .mobile-bottom-nav a span { font-size: 1.12rem; line-height: 1; }
    .mobile-bottom-nav a.active { color: var(--brand); font-weight: 900; }
}
