@charset "UTF-8";
:root {
    --bg: #FFF8F0;
    --nav: rgba(38,20,12,.94);
    --title: #24130C;
    --primary: #FF6B35;
    --deep: #2B1A3F;
    --neon: #00E5B0;
    --gold: #FFD166;
    --berry: #B8336A;
    --sky: #E9FFF8;
    --cream: #FFF1C7;
    --highlight: #FF7A00;
    --text: #2A1F1A;
    --muted: #75645A;
    --hint: #A9978C;
    --card: #FFFFFF;
    --border: rgba(255,107,53,.18);
    --shadow: 0 20px 46px rgba(97,45,16,.14);
    --shadow-small: 0 12px 28px rgba(97,45,16,.10);
    --gradient: linear-gradient(135deg,#FF6B35 0%,#FFB703 48%,#00E5B0 100%);
    --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    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; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 12000;
    background: #fff;
    color: var(--title);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
}
.skip-link:focus { top: 12px; }
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: var(--nav);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(97,45,16,.16);
}
.header-inner {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.site-logo, .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .04em;
}
.site-logo { color: #FFF3E8; flex: 0 0 auto; }
.site-logo img { width: auto; max-width: 150px; max-height: 44px; display: block; object-fit: contain; }
.site-logo span { white-space: nowrap; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 8px; }
.nav-core a {
    color: #FFF3E8;
    text-decoration: none;
    border-radius: 999px;
    padding: 8px 12px;
    white-space: nowrap;
    transition: .2s ease;
}
.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; flex: 0 0 auto; }
.main-btn, .ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.main-btn { background: var(--gradient); color: #fff; box-shadow: 0 14px 32px rgba(255,107,53,.22); }
.main-btn:hover { transform: translateY(-2px); filter: saturate(1.08); box-shadow: 0 18px 38px rgba(255,107,53,.28); }
.ghost-btn { color: var(--primary); background: #fff; border: 1px solid var(--border); }
.ghost-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-small); }
.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; border-radius: 2px; background: #fff; }
.mobile-menu-toggle { display: none; }
.drawer-mask {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26,15,10,.55);
    opacity: 0;
    transition: opacity .22s ease;
}
.drawer-mask.is-visible { opacity: 1; }
.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
    width: min(420px, 92vw);
    height: 100dvh;
    overflow-y: auto;
    background: #fff;
    padding: 22px;
    transform: translateX(105%);
    transition: transform .28s ease;
    box-shadow: -24px 0 60px rgba(36,19,12,.25);
}
.site-drawer.is-open { 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: var(--title); }
.drawer-brand img { max-width: 128px; max-height: 42px; object-fit: contain; }
.drawer-close { width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--sky); color: var(--deep); font-size: 28px; line-height: 1; }
.drawer-intro { margin: 18px 0; color: var(--muted); }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border: 1px solid var(--border); border-radius: 14px; text-decoration: none; background: #fffaf6; }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--sky); color: var(--deep); border-color: rgba(0,229,176,.35); }
.drawer-note { margin-top: 20px; padding: 18px; border-radius: 18px; background: linear-gradient(135deg,#FFF1C7,#EFFFFA); }
.drawer-note strong { color: var(--title); }
.drawer-note p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
main { display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 78px 0; position: relative; }
.section-tight { padding: 48px 0; }
.section-soft { background: linear-gradient(180deg,rgba(233,255,248,.75),rgba(255,248,240,.35)); }
.section-deep { color: #fff; background: radial-gradient(circle at 15% 15%,rgba(0,229,176,.14),transparent 32%), linear-gradient(135deg,#24130C,#2B1A3F); }
.section-deep h2, .section-deep h3, .section-deep .section-title { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--primary); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--gradient); }
h1, h2, h3, .section-title { color: var(--title); line-height: 1.24; margin-top: 0; }
h1 { font-size: clamp(40px,7vw,84px); letter-spacing: -.04em; }
h2, .section-title { font-size: clamp(28px,4vw,46px); letter-spacing: -.025em; }
h3 { font-size: clamp(20px,2.2vw,26px); }
p { margin-top: 0; }
.lead { font-size: clamp(17px,2vw,21px); color: var(--muted); line-height: 1.85; }
.muted { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); text-decoration: none; font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 72px;
    background:
        radial-gradient(circle at 8% 15%,rgba(255,209,102,.55),transparent 25%),
        radial-gradient(circle at 88% 18%,rgba(0,229,176,.28),transparent 28%),
        radial-gradient(circle at 75% 88%,rgba(184,51,106,.17),transparent 30%),
        linear-gradient(135deg,#FFF1C7 0%,#F8EDFF 44%,#E9FFF8 100%);
}
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; border: 80px solid rgba(255,255,255,.34); border-radius: 50%; right: -180px; top: -190px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; }
.hero-copy { max-width: 660px; }
.hero-copy h1 { margin-bottom: 12px; }
.hero-subtitle { font-size: clamp(23px,3.3vw,38px); color: var(--berry); font-weight: 900; margin-bottom: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.hero-points li { padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.8); border: 1px solid rgba(255,107,53,.15); font-weight: 800; color: var(--deep); }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 10% -6% -6% 12%; border-radius: 42px; background: var(--gradient); opacity: .22; filter: blur(24px); }
.hero-visual img { position: relative; width: 100%; max-height: 590px; object-fit: contain; display: block; filter: drop-shadow(0 28px 42px rgba(43,26,63,.22)); }
.highlight-strip { margin-top: -26px; position: relative; z-index: 3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.highlight-item { background: rgba(255,255,255,.94); border: 1px solid var(--border); box-shadow: var(--shadow-small); border-radius: 20px; padding: 20px; }
.highlight-item strong { display: block; color: var(--title); font-size: 18px; margin-bottom: 6px; }
.highlight-item p { margin: 0; color: var(--muted); font-size: 14px; }
.pill-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-nav a { flex: 1 1 180px; min-height: 74px; display: flex; flex-direction: column; justify-content: center; text-decoration: none; padding: 12px 16px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: 0 8px 22px rgba(97,45,16,.08); }
.pill-nav a:hover { transform: translateY(-2px); background: var(--sky); }
.pill-nav strong { color: var(--title); }
.pill-nav small { color: var(--muted); line-height: 1.5; }
.card, .zone-card, .info-card, .review-card { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 22px; }
.card { padding: 28px; }
.media-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 46px; }
.media-split.reverse .media-copy { order: 2; }
.media-split.reverse .media-visual { order: 1; }
.media-visual { min-width: 0; }
.media-visual img, .content-img, .zone-card img, .app-section img { width: 100%; max-height: 520px; display: block; object-fit: contain; border-radius: 26px; }
.media-visual.decorated { position: relative; padding: 18px; border-radius: 34px; background: linear-gradient(135deg,rgba(255,107,53,.15),rgba(0,229,176,.14)); }
.check-list, .service-list { padding: 0; margin: 20px 0; list-style: none; display: grid; gap: 12px; }
.check-list li, .service-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before, .service-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; background: var(--sky); color: #08725d; font-weight: 900; font-size: 13px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.four-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.zone-card { overflow: hidden; }
.zone-card .zone-body { padding: 26px; }
.zone-card img { border-radius: 0; aspect-ratio: 16/10; background: linear-gradient(135deg,#FFF1C7,#E9FFF8); }
.zone-card p { color: var(--muted); }
.mini-points { display: grid; gap: 9px; margin: 16px 0; }
.mini-point { padding: 11px 13px; border-radius: 13px; background: #fffaf6; color: var(--muted); }
.feature-card { padding: 24px; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-small); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 16px; background: linear-gradient(135deg,var(--cream),var(--sky)); color: var(--deep); font-weight: 900; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { padding: 24px; }
.review-card p { color: var(--muted); }
.review-card footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--title); font-weight: 800; }
.review-card .review-tag { font-size: 12px; color: var(--berry); background: #fff0f6; padding: 5px 9px; border-radius: 999px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 900; color: var(--title); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--sky); color: var(--deep); }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }
.notice-box { padding: 28px; border-radius: 24px; background: linear-gradient(135deg,#FFF1C7,#EFFFFA); border: 1px solid rgba(255,107,53,.2); }
.notice-box h2, .notice-box h3 { margin-bottom: 10px; }
.page-hero { padding: 72px 0 58px; background: radial-gradient(circle at 12% 22%,rgba(255,209,102,.5),transparent 24%), radial-gradient(circle at 88% 28%,rgba(0,229,176,.25),transparent 28%), linear-gradient(135deg,#FFF8F0,#F5EEFF 46%,#E9FFF8); }
.page-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 44px; }
.page-hero h1 { font-size: clamp(36px,5vw,64px); margin-bottom: 18px; }
.page-hero img { width: 100%; max-height: 440px; object-fit: contain; display: block; filter: drop-shadow(0 24px 36px rgba(43,26,63,.2)); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.prose { font-size: 17px; }
.prose p { color: var(--muted); }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step-card { position: relative; padding: 26px; background: #fff; border-radius: 22px; border: 1px solid var(--border); box-shadow: var(--shadow-small); }
.step-card::before { counter-increment: step; content: counter(step); width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px; background: var(--gradient); color: #fff; font-weight: 900; margin-bottom: 16px; }
.quote-card { padding: 26px; border-radius: 22px; border: 1px solid var(--border); background: #fff; }
.quote-card blockquote { margin: 0; color: var(--muted); }
.quote-card cite { display: block; margin-top: 12px; color: var(--title); font-style: normal; font-weight: 800; }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-option { padding: 26px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-small); }
.contact-option strong { display: block; color: var(--title); font-size: 20px; margin-bottom: 8px; }
.contact-form { padding: 30px; border-radius: 24px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { color: var(--title); font-weight: 800; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid rgba(117,100,90,.24); border-radius: 14px; padding: 12px 14px; background: #fffdfb; color: var(--text); }
.form-field textarea { min-height: 140px; resize: vertical; }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 58px 0 88px; }
.footer-grid, .footer-compliance, .footer-bottom { width: min(calc(100% - 32px), var(--max)); margin-left: auto; margin-right: auto; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 34px; }
.footer-grid h2 { color: #fff; font-size: 17px; margin-bottom: 16px; }
.footer-grid section > a:not(.footer-logo) { display: block; color: #d9c9bd; text-decoration: none; margin: 8px 0; }
.footer-grid section > a:hover { color: var(--neon); }
.footer-logo { color: #fff; font-size: 20px; }
.footer-logo img { max-width: 140px; max-height: 44px; object-fit: contain; }
.footer-brand p { color: #d9c9bd; max-width: 420px; margin-top: 18px; }
.footer-compliance { margin-top: 34px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; color: #d9c9bd; }
.footer-compliance p { margin: 0; }
.footer-bottom { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #bfaea2; font-size: 14px; }
.mobile-quick-nav { display: none; }
@media (max-width: 1080px) {
    .nav-core { gap: 2px; }
    .nav-core a { padding: 8px 9px; font-size: 14px; }
    .header-inner { gap: 10px; }
    .hero-grid, .page-hero-grid { gap: 30px; }
    .four-col { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
    .nav-core, .desktop-menu-toggle { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
    .header-inner { min-height: 66px; }
    .site-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .site-logo span { display: none; }
    .site-logo img { max-width: 120px; max-height: 40px; }
    .header-cta { min-height: 40px; padding: 8px 14px; font-size: 14px; }
    .hero { padding-top: 62px; }
    .hero-grid, .page-hero-grid, .media-split, .media-split.reverse, .contact-panel { grid-template-columns: 1fr; }
    .media-split.reverse .media-copy, .media-split.reverse .media-visual { order: initial; }
    .hero-copy { max-width: none; }
    .hero-visual img { max-height: 480px; }
    .highlight-grid, .three-col, .steps { grid-template-columns: repeat(2,1fr); }
    .review-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid section:last-child { grid-column: 2/4; }
}
@media (max-width: 640px) {
    body { padding-bottom: 74px; }
    .container, .header-inner, .footer-grid, .footer-compliance, .footer-bottom { width: min(calc(100% - 24px), var(--max)); }
    .section { padding: 56px 0; }
    .section-tight { padding: 38px 0; }
    .hero { padding: 52px 0 48px; }
    h1 { font-size: 46px; }
    .hero-subtitle { font-size: 25px; }
    .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .main-btn, .ghost-btn { padding: 10px 15px; }
    .highlight-strip { margin-top: 0; padding-top: 16px; }
    .highlight-grid, .two-col, .three-col, .four-col, .steps, .review-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
    .footer-grid section:last-child { grid-column: auto; }
    .drawer-nav { grid-template-columns: 1fr; }
    .site-drawer { width: min(360px, 92vw); }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .mobile-quick-nav {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        position: fixed;
        left: 8px;
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        z-index: 9000;
        min-height: 58px;
        padding: 7px 6px;
        border-radius: 20px;
        background: rgba(36,19,12,.94);
        backdrop-filter: blur(12px);
        box-shadow: 0 15px 35px rgba(36,19,12,.28);
    }
    .mobile-quick-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; color: #FFF3E8; text-decoration: none; font-size: 12px; }
    .mobile-quick-nav span { font-size: 17px; color: var(--neon); }
    .site-footer { padding-bottom: 38px; }
    .page-hero { padding: 52px 0 44px; }
    .page-hero h1 { font-size: 39px; }
    .contact-form { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
