* { box-sizing: border-box; }
:root {
    --bg: #FFF8F0;
    --nav: rgba(38, 20, 12, 0.94);
    --title: #24130C;
    --brand: #FF6B35;
    --deep: #2B1A3F;
    --cyan: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --blue-light: #E9FFF8;
    --gold-light: #FFF1C7;
    --text: #2A1F1A;
    --muted: #75645A;
    --soft: #A9978C;
    --card: #FFFFFF;
    --border: rgba(255, 107, 53, 0.18);
    --shadow: 0 20px 46px rgba(97, 45, 16, 0.14);
    --radius: 24px;
    --max: 1240px;
}
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 5% 8%, rgba(255, 209, 102, .20), transparent 26rem),
        radial-gradient(circle at 96% 18%, rgba(0, 229, 176, .12), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: "PingFang SC", "Microsoft YaHei", "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, input, textarea, select { font: inherit; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 12000; background: #fff; color: var(--title); padding: 10px 16px; border-radius: 999px; transition: top .2s; }
.skip-link:focus { top: 12px; }
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: var(--nav);
    backdrop-filter: blur(12px);
    -webkit-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 { display: inline-flex; align-items: center; gap: 10px; color: #FFF3E8; text-decoration: none; font-weight: 900; font-size: 20px; white-space: nowrap; }
.site-logo img { width: 44px; height: 44px; object-fit: contain; display: block; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; }
.nav-core a { color: #FFF3E8; text-decoration: none; border-radius: 999px; padding: 8px 12px; font-size: 15px; white-space: nowrap; transition: .2s ease; }
.nav-core a:hover, .nav-core a.active { color: #fff; background: rgba(0, 229, 176, 0.16); }
.header-actions { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.main-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 11px 24px; border: 0; border-radius: 999px; text-decoration: none; font-weight: 800; color: #fff; background: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%); box-shadow: 0 14px 32px rgba(255, 107, 53, 0.22); 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); }
.compact-btn { min-height: 42px; padding: 8px 18px; font-size: 14px; }
.secondary-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 22px; border: 1px solid rgba(43,26,63,.18); border-radius: 999px; color: var(--deep); text-decoration: none; font-weight: 800; background: rgba(255,255,255,.78); }
.menu-toggle { width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: #fff; }
.mobile-only { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 10000; border: 0; background: rgba(24, 10, 7, .58); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.site-drawer { position: fixed; right: 0; top: 0; z-index: 10001; width: min(420px, 92vw); height: 100vh; overflow-y: auto; padding: 26px; background: linear-gradient(180deg, #2B1A3F 0%, #24130C 100%); color: #FFF3E8; transform: translateX(104%); transition: transform .3s ease; box-shadow: -24px 0 60px rgba(0,0,0,.2); }
.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-open .site-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.drawer-brand { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 900; font-size: 20px; }
.drawer-brand img { width: 46px; height: 46px; object-fit: contain; }
.drawer-close { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.drawer-intro { color: rgba(255,243,232,.72); margin: 20px 0; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 48px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.10); border-radius: 15px; color: #fff; text-decoration: none; background: rgba(255,255,255,.05); }
.drawer-nav a:hover { background: rgba(0,229,176,.12); }
.drawer-note { margin-top: 20px; padding: 18px; border-radius: 18px; background: rgba(255,209,102,.12); border: 1px solid rgba(255,209,102,.18); }
.drawer-note p { margin: 6px 0 0; color: rgba(255,243,232,.76); font-size: 14px; }
main { display: block; }
.section { padding: 88px 20px; }
.section-tight { padding: 54px 20px; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-kicker { display: inline-block; margin-bottom: 10px; color: var(--rose); font-size: 13px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, .section-title { color: var(--title); margin-top: 0; line-height: 1.22; }
h1 { font-size: clamp(42px, 7vw, 82px); letter-spacing: -.04em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.02em; }
h3 { font-size: 22px; }
p { margin-top: 0; }
.lead { font-size: 18px; color: var(--muted); }
.muted { color: var(--muted); }
.text-link { color: var(--brand); text-decoration: none; font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.hero { position: relative; overflow: hidden; padding: 82px 20px 76px; background: linear-gradient(140deg, #FFF1C7 0%, #F3EEFF 44%, #E9FFF8 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.hero::before { width: 340px; height: 340px; left: -160px; top: -120px; background: rgba(255,107,53,.20); }
.hero::after { width: 420px; height: 420px; right: -180px; bottom: -240px; background: rgba(0,229,176,.18); }
.hero-grid { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.hero-copy { max-width: 650px; }
.hero-copy .brand-line { color: var(--brand); font-weight: 900; letter-spacing: .1em; }
.hero-copy h1 { margin: 12px 0 18px; }
.hero-subtitle { font-size: clamp(23px, 3vw, 34px); font-weight: 900; color: var(--deep); margin-bottom: 18px; }
.hero-copy .lead { font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.hero-points li { padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid rgba(43,26,63,.10); color: var(--deep); font-weight: 700; font-size: 14px; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 7% 5% -4% 10%; border-radius: 44px; background: linear-gradient(135deg, rgba(184,51,106,.24), rgba(0,229,176,.22)); transform: rotate(5deg); }
.hero-visual img { position: relative; display: block; width: 100%; max-height: 620px; object-fit: contain; border-radius: 34px; box-shadow: 0 30px 70px rgba(43,26,63,.20); }
.floating-chip { position: absolute; z-index: 2; padding: 12px 16px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); font-weight: 800; color: var(--deep); }
.floating-chip.one { left: -18px; top: 12%; }
.floating-chip.two { right: -14px; bottom: 10%; }
.highlight-strip { margin-top: -28px; position: relative; z-index: 3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.highlight-card { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: 0 18px 42px rgba(97,45,16,.10); }
.highlight-card .num { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; color: #fff; background: var(--deep); font-weight: 900; margin-bottom: 12px; }
.highlight-card h2 { font-size: 20px; margin-bottom: 8px; }
.highlight-card p { color: var(--muted); margin: 0; font-size: 14px; }
.pill-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.pill-card { min-height: 126px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.76); border: 1px solid rgba(43,26,63,.10); text-decoration: none; transition: transform .2s, background .2s; }
.pill-card:hover { transform: translateY(-3px); background: #fff; }
.pill-card strong { display: block; color: var(--title); margin-bottom: 6px; }
.pill-card span { display: block; color: var(--muted); font-size: 13px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img, .content-img, .zone-card img, .app-section img { width: 100%; height: auto; object-fit: contain; border-radius: 28px; display: block; }
.media-frame { position: relative; padding: 12px; border-radius: 34px; background: linear-gradient(135deg, rgba(255,107,53,.18), rgba(0,229,176,.16)); }
.media-frame::after { content: ""; position: absolute; width: 70px; height: 70px; right: -18px; bottom: -18px; border-radius: 50%; background: var(--gold); opacity: .55; z-index: -1; }
.card, .zone-card, .info-card, .review-card { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 22px; }
.zone-card { overflow: hidden; }
.zone-card img { border-radius: 0; max-height: 330px; }
.zone-body { padding: 28px; }
.zone-body p { color: var(--muted); }
.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; }
.soft-section { background: linear-gradient(180deg, rgba(233,255,248,.62), rgba(255,248,240,.25)); }
.deep-section { background: linear-gradient(135deg, #2B1A3F 0%, #24130C 100%); color: #FFF3E8; }
.deep-section h2, .deep-section h3 { color: #fff; }
.deep-section .lead, .deep-section p { color: rgba(255,243,232,.76); }
.service-list { display: grid; gap: 12px; margin: 22px 0; }
.service-item { display: flex; gap: 12px; align-items: flex-start; }
.service-icon { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold-light); color: var(--rose); font-weight: 900; }
.service-item strong { display: block; color: var(--title); }
.service-item p { margin: 2px 0 0; font-size: 14px; color: var(--muted); }
.deep-section .service-item strong { color: #fff; }
.deep-section .service-item p { color: rgba(255,243,232,.72); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 24px; }
.review-stars { color: #FFB703; letter-spacing: .15em; }
.review-card p { color: var(--muted); }
.review-author { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 800; color: var(--deep); }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--brand), var(--rose)); }
.faq-list { display: grid; gap: 14px; max-width: 920px; margin: 0 auto; }
details { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 0 20px; box-shadow: 0 12px 30px rgba(97,45,16,.07); }
summary { cursor: pointer; list-style: none; padding: 20px 36px 20px 0; color: var(--title); font-weight: 900; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 28px; color: var(--brand); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); padding-bottom: 18px; margin: 0; }
.notice-panel { padding: 30px; border-radius: 28px; background: linear-gradient(135deg, #FFF1C7 0%, #E9FFF8 100%); border: 1px solid rgba(43,26,63,.10); }
.notice-panel h2 { font-size: 28px; }
.notice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.notice-item { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.75); }
.notice-item strong { color: var(--title); }
.inner-hero { padding: 70px 20px 64px; background: linear-gradient(135deg, #FFF1C7 0%, #F5EEFF 52%, #E9FFF8 100%); overflow: hidden; }
.inner-hero-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.inner-hero h1 { font-size: clamp(40px, 6vw, 70px); margin: 12px 0 18px; }
.inner-hero img { width: 100%; max-height: 480px; object-fit: contain; border-radius: 28px; box-shadow: var(--shadow); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--brand); text-decoration: none; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--deep); color: var(--gold); font-size: 13px; font-weight: 800; }
.article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 30px; align-items: start; }
.article-main { min-width: 0; }
.article-section { padding: 30px; margin-bottom: 22px; background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 14px 36px rgba(97,45,16,.08); }
.article-section h2 { font-size: 30px; margin-bottom: 14px; }
.article-section p { color: var(--muted); }
.article-section p:last-child { margin-bottom: 0; }
.side-stack { position: sticky; top: 98px; display: grid; gap: 18px; }
.side-card { padding: 24px; border-radius: 22px; background: #24130C; color: #FFF3E8; box-shadow: var(--shadow); }
.side-card h2 { color: #fff; font-size: 23px; }
.side-card p { color: rgba(255,243,232,.72); font-size: 14px; }
.side-card a:not(.main-btn) { display: block; color: var(--gold); text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.feature-card { padding: 25px; }
.feature-card .service-icon { margin-bottom: 14px; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { counter-increment: step; padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(97,45,16,.07); }
.step-card::before { content: counter(step, decimal-leading-zero); display: block; color: var(--rose); font-weight: 900; font-size: 24px; margin-bottom: 10px; }
.step-card h3 { font-size: 19px; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }
.quote-panel { position: relative; padding: 34px; border-radius: 28px; background: #2B1A3F; color: #fff; overflow: hidden; }
.quote-panel::before { content: "“"; position: absolute; right: 24px; top: -24px; font-size: 150px; color: rgba(255,255,255,.08); font-family: Georgia, serif; }
.quote-panel p { position: relative; color: rgba(255,255,255,.82); font-size: 18px; }
.quote-panel strong { color: var(--gold); }
.contact-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-type { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.contact-type h3 { font-size: 20px; }
.contact-type p { color: var(--muted); font-size: 14px; }
.site-footer { position: relative; overflow: hidden; padding: 72px 20px 28px; background: #1A0F0A; color: #FFF3E8; }
.footer-glow { position: absolute; width: 440px; height: 440px; right: -220px; top: -220px; border-radius: 50%; background: rgba(0,229,176,.10); }
.footer-inner { position: relative; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 36px; }
.footer-brand p { max-width: 460px; color: rgba(255,243,232,.70); }
.footer-logo { margin-bottom: 18px; }
.footer-col h2 { color: #fff; font-size: 18px; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,243,232,.72); text-decoration: none; padding: 5px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max); margin: 46px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,243,232,.58); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 14px; }
.footer-bottom a { color: rgba(255,243,232,.72); text-decoration: none; white-space: nowrap; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1080px) {
    .nav-core { gap: 0; }
    .nav-core a { padding: 8px 9px; font-size: 14px; }
    .hero-grid, .inner-hero-grid { gap: 32px; }
    .pill-grid { grid-template-columns: repeat(3, 1fr); }
    .four-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .article-shell { grid-template-columns: 1fr; }
    .side-stack { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .nav-core { display: none; }
    .desktop-menu { display: none; }
    .mobile-only { display: inline-flex; }
    .header-inner { min-height: 66px; }
    .header-inner > .site-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .header-inner > .site-logo span { display: none; }
    .header-actions { margin-left: auto; }
    .hero, .inner-hero { padding-top: 54px; }
    .hero-grid, .inner-hero-grid, .split { grid-template-columns: 1fr; }
    .hero-copy { max-width: none; }
    .hero-visual { max-width: 640px; margin: 0 auto; }
    .split.reverse .split-media { order: 0; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .three-grid, .reviews { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
    body { padding-bottom: 68px; }
    .header-inner { padding: 0 12px; }
    .header-inner > .site-logo img { width: 40px; height: 40px; }
    .compact-btn { padding: 7px 12px; min-height: 40px; font-size: 13px; }
    .menu-toggle { width: 40px; height: 40px; }
    .section { padding: 64px 16px; }
    .section-tight { padding: 42px 16px; }
    .hero, .inner-hero { padding: 46px 16px 56px; }
    h1 { font-size: 48px; }
    h2 { font-size: 32px; }
    .hero-subtitle { font-size: 25px; }
    .hero-copy .lead, .lead { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions a { width: 100%; }
    .floating-chip { font-size: 12px; padding: 9px 11px; }
    .floating-chip.one { left: 4px; }
    .floating-chip.two { right: 4px; }
    .highlight-strip { margin-top: -18px; }
    .highlight-grid, .pill-grid, .two-grid, .three-grid, .four-grid, .reviews, .notice-grid, .side-stack, .contact-types, .steps { grid-template-columns: 1fr; }
    .pill-card { min-height: auto; }
    .zone-body, .article-section { padding: 22px; }
    .article-section h2 { font-size: 25px; }
    .drawer-nav { grid-template-columns: 1fr; }
    .site-drawer { padding: 20px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom div { flex-wrap: wrap; }
    .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000; height: 64px; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(26,15,10,.96); border-top: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(12px); }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: rgba(255,243,232,.82); text-decoration: none; font-size: 12px; }
    .mobile-bottom-nav span { color: var(--gold); font-size: 18px; line-height: 1; }
}
