:root {
    --bg: #FFF8F0;
    --header: rgba(38,20,12,0.94);
    --title: #24130C;
    --brand: #FF6B35;
    --deep: #2B1A3F;
    --cyan: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --soft-cyan: #E9FFF8;
    --soft-gold: #FFF1C7;
    --text: #2A1F1A;
    --muted: #75645A;
    --faint: #A9978C;
    --card: #FFFFFF;
    --border: rgba(255,107,53,0.18);
    --shadow: 0 20px 46px rgba(97,45,16,0.14);
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
    --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; line-height: 1.75; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--rose); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 12000; background: #fff; color: var(--title); padding: 10px 16px; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; width: 100%; z-index: 9999; background: var(--header); backdrop-filter: blur(12px); box-shadow: 0 8px 26px rgba(97,45,16,0.16); }
.header-inner { width: min(var(--max), calc(100% - 36px)); min-height: 72px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.site-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 22px; font-weight: 900; letter-spacing: .03em; white-space: nowrap; }
.site-logo img { width: auto; max-height: 44px; object-fit: contain; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; }
.nav-core a { color: #FFF3E8; padding: 8px 12px; border-radius: 999px; white-space: nowrap; font-size: 15px; }
.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; }
.main-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border-radius: 999px; background: var(--gradient); color: #fff; font-weight: 800; box-shadow: 0 14px 32px rgba(255,107,53,0.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,0.27); }
.secondary-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border-radius: 999px; border: 1px solid rgba(43,26,63,.18); background: #fff; color: var(--deep); font-weight: 750; }
.menu-toggle, .drawer-close { border: 0; border-radius: 12px; color: #fff; background: rgba(255,255,255,.10); padding: 9px 13px; }
.mobile-menu-toggle { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 10020; background: rgba(26,15,10,.54); opacity: 0; transition: opacity .22s ease; }
.drawer-overlay.visible { opacity: 1; }
.site-drawer { position: fixed; top: 0; right: 0; z-index: 10030; width: min(390px, 92vw); height: 100dvh; padding: 24px; background: #fffaf5; box-shadow: -20px 0 50px rgba(42,31,26,.22); transform: translateX(104%); transition: transform .25s ease; overflow-y: auto; }
.site-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.drawer-brand { display: flex; align-items: center; gap: 9px; color: var(--title); font-size: 20px; font-weight: 900; }
.drawer-brand img { max-height: 40px; width: auto; }
.drawer-close { color: var(--title); background: #fff; border: 1px solid var(--border); font-size: 28px; line-height: 1; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 22px 0; }
.drawer-nav a { padding: 11px 12px; border-radius: 13px; color: var(--text); background: #fff; border: 1px solid rgba(255,107,53,.14); }
.drawer-nav a:hover, .drawer-nav a.active { color: var(--rose); background: var(--soft-cyan); }
.drawer-note { padding: 18px; border-radius: 18px; background: linear-gradient(135deg, var(--soft-gold), var(--soft-cyan)); color: var(--muted); }
.drawer-note strong { color: var(--title); }
main { min-height: 60vh; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-sm { padding: 52px 0; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: #9a6500; font-size: 14px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--gradient); }
h1, h2, h3, .section-title { margin-top: 0; color: var(--title); line-height: 1.25; }
h1 { font-size: clamp(38px, 6vw, 72px); letter-spacing: -.035em; }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.02em; }
h3 { font-size: 22px; }
p { margin: 0 0 1.05em; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); }
.muted { color: var(--muted); }
.hero { position: relative; overflow: hidden; padding: 88px 0 74px; background: radial-gradient(circle at 15% 8%, rgba(255,209,102,.42), transparent 34%), radial-gradient(circle at 86% 24%, rgba(0,229,176,.22), transparent 34%), linear-gradient(135deg, #fff5f0 0%, #f1f0ff 48%, #eafffa 100%); }
.hero::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; right: -110px; bottom: -130px; background: rgba(184,51,106,.10); filter: blur(2px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: 58px; }
.hero-copy .eyebrow { display: inline-flex; padding: 7px 13px; border-radius: 999px; color: var(--rose); background: rgba(184,51,106,.10); font-weight: 800; margin-bottom: 20px; }
.hero-copy h1 span { display: block; font-size: .44em; margin-top: 14px; color: var(--deep); letter-spacing: -.02em; }
.hero-copy p { max-width: 760px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-points li { padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.84); border: 1px solid var(--border); color: var(--title); font-weight: 700; }
.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-visual img { max-height: 540px; width: 100%; object-fit: contain; filter: drop-shadow(0 30px 36px rgba(43,26,63,.18)); }
.floating-card { position: absolute; padding: 13px 17px; border-radius: 16px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.75); box-shadow: var(--shadow); font-weight: 800; color: var(--deep); backdrop-filter: blur(10px); }
.floating-one { left: -20px; top: 22%; }
.floating-two { right: -10px; bottom: 18%; }
.highlight-strip { margin-top: -20px; position: relative; z-index: 4; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.highlight-item { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.highlight-item strong { display: block; color: var(--title); font-size: 19px; margin-bottom: 7px; }
.highlight-item p { margin: 0; color: var(--muted); font-size: 14px; }
.channel-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.channel-pill { flex: 1 1 200px; padding: 15px 17px; border-radius: 18px; background: #fff; border: 1px solid var(--border); }
.channel-pill strong { display: block; color: var(--title); }
.channel-pill span { display: block; color: var(--muted); font-size: 14px; margin: 4px 0 7px; }
.text-link { font-weight: 800; color: var(--brand); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.media-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); gap: 44px; align-items: center; }
.media-split.reverse { grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr); }
.media-split.reverse .media-copy { order: 2; }
.media-split.reverse .media-visual { order: 1; }
.media-visual { padding: 18px; border-radius: 28px; background: linear-gradient(135deg, rgba(255,209,102,.38), rgba(0,229,176,.18)); }
.media-visual img { width: 100%; max-height: 520px; object-fit: contain; border-radius: 22px; }
.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 { width: 100%; height: 290px; object-fit: contain; background: linear-gradient(135deg, #fff1e8, #ecfffa); }
.zone-body { padding: 28px; }
.feature-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.feature-list li { position: relative; padding-left: 26px; color: var(--muted); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }
.triple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { padding: 28px; }
.info-card img { width: 100%; height: 210px; object-fit: contain; border-radius: 18px; background: linear-gradient(135deg, #fff3e8, #eafffa); margin-bottom: 18px; }
.security-band { border-radius: 32px; padding: 50px; background: linear-gradient(135deg, var(--deep), #503069 56%, #145d5a); color: #fff; }
.security-band h2, .security-band h3 { color: #fff; }
.security-band p { color: rgba(255,255,255,.82); }
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.security-card { display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: center; padding: 20px; border-radius: 22px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); }
.security-card img { width: 150px; height: 150px; object-fit: contain; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 24px; }
.review-card p { color: var(--muted); }
.review-card strong { color: var(--deep); }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 22px 24px; border-radius: 18px; background: #fff; border: 1px solid var(--border); }
.faq-item h3 { margin-bottom: 8px; font-size: 19px; }
.faq-item p { margin: 0; color: var(--muted); }
.notice { padding: 28px; border-radius: 24px; background: linear-gradient(135deg, var(--soft-gold), var(--soft-cyan)); border: 1px solid rgba(255,183,3,.25); }
.page-hero { padding: 72px 0 58px; background: radial-gradient(circle at 82% 18%, rgba(0,229,176,.20), transparent 30%), radial-gradient(circle at 12% 16%, rgba(255,107,53,.16), transparent 34%), linear-gradient(135deg, #fff5ef, #f3f0ff 55%, #effffb); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); align-items: center; gap: 44px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); margin-bottom: 18px; }
.page-hero img { width: 100%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(43,26,63,.15)); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--brand); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; align-items: start; }
.article-card { padding: 34px; }
.article-card h2 { margin-top: 36px; font-size: 30px; }
.article-card h2:first-child { margin-top: 0; }
.article-card p { color: #574943; }
.article-card .content-img { width: 100%; max-height: 470px; object-fit: contain; border-radius: 24px; background: linear-gradient(135deg, #fff2e8, #edfff9); margin: 22px 0 30px; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 18px; }
.sidebar-card { padding: 24px; }
.sidebar-card h2 { font-size: 21px; }
.sidebar-links { display: grid; gap: 9px; }
.sidebar-links a { padding: 10px 12px; border-radius: 12px; background: #fff8f2; color: var(--text); }
.sidebar-links a:hover { background: var(--soft-cyan); color: var(--rose); }
.steps { counter-reset: step; display: grid; gap: 14px; margin: 18px 0; }
.step { position: relative; padding: 18px 18px 18px 64px; border-radius: 16px; background: #fff9f5; border: 1px solid rgba(255,107,53,.14); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 18px; top: 18px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--gradient); color: #fff; font-weight: 900; }
.quote { margin: 24px 0; padding: 22px 24px; border-left: 4px solid var(--brand); border-radius: 0 16px 16px 0; background: var(--soft-cyan); color: var(--muted); }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 62px 0 0; }
.footer-inner { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 2fr; gap: 52px; }
.footer-logo { margin-bottom: 18px; }
.footer-brand p { color: rgba(255,243,232,.70); max-width: 420px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.footer-links h2 { color: #fff; font-size: 17px; margin-bottom: 13px; }
.footer-links a { display: block; color: rgba(255,243,232,.72); margin: 7px 0; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 42px; padding: 18px; border-top: 1px solid rgba(255,255,255,.10); text-align: center; color: rgba(255,243,232,.60); font-size: 14px; }
.footer-bottom p { margin: 0; }
.mobile-quick-nav { display: none; }
@media (max-width: 1050px) {
    .nav-core { display: none; }
    .header-inner { gap: 14px; }
    .hero-grid, .page-hero-grid, .media-split, .media-split.reverse { grid-template-columns: 1fr; }
    .media-split.reverse .media-copy, .media-split.reverse .media-visual { order: initial; }
    .hero-visual { min-height: 380px; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .triple, .reviews { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    body { padding-bottom: 72px; }
    .header-inner { width: calc(100% - 20px); min-height: 64px; }
    .mobile-menu-toggle { display: inline-flex; }
    .desktop-menu-toggle { display: none; }
    .site-logo span { display: none; }
    .site-logo img { max-width: 98px; }
    .header-cta { min-height: 38px; padding: 0 14px; font-size: 14px; }
    .section { padding: 58px 0; }
    .section-sm { padding: 38px 0; }
    .container { width: min(100% - 24px, var(--max)); }
    .hero { padding: 58px 0 44px; }
    .hero-grid { gap: 26px; }
    .hero-visual { min-height: 300px; }
    .floating-card { font-size: 12px; padding: 9px 12px; }
    .floating-one { left: 0; }
    .floating-two { right: 0; }
    .highlight-grid, .split, .triple, .reviews, .security-grid, .sidebar { grid-template-columns: 1fr; }
    .highlight-item { padding: 20px; }
    .security-band { padding: 30px 22px; border-radius: 24px; }
    .security-card { grid-template-columns: 95px 1fr; gap: 14px; }
    .security-card img { width: 95px; height: 95px; }
    .page-hero { padding: 48px 0 40px; }
    .article-card { padding: 24px 20px; }
    .article-card h2 { font-size: 26px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .mobile-quick-nav { position: fixed; left: 10px; right: 10px; bottom: 8px; z-index: 9900; display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 20px; background: rgba(36,19,12,.94); backdrop-filter: blur(12px); box-shadow: 0 12px 30px rgba(36,19,12,.28); overflow: hidden; }
    .mobile-quick-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 58px; color: rgba(255,243,232,.75); font-size: 12px; }
    .mobile-quick-nav a span { font-size: 18px; line-height: 1.1; }
    .mobile-quick-nav a.active { color: #fff; background: rgba(0,229,176,.13); }
}
@media (max-width: 420px) {
    .drawer-nav { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .hero-actions { display: grid; }
    .hero-actions a { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
