* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
body {
    background: #F7F3EC;
    color: #3E4148;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.72;
}
a {
    color: #B98B5D;
    text-decoration: none;
}
a:hover {
    color: #8F6842;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(185,139,93,0.12);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 22px;
    overflow: visible;
}
.brand-logo {
    flex: 0 0 auto;
}
.brand-logo img {
    width: 142px;
    max-height: 46px;
    object-fit: contain;
}
.nav-core {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
    flex: 1;
}
.nav-core a {
    white-space: nowrap;
    color: #3E4148;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 15px;
}
.nav-core a:hover,
.nav-core a.active,
.more-dropdown a.active,
.drawer-nav a.active {
    color: #B98B5D;
    background: rgba(232,210,181,0.22);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.app-shortcut,
.more-toggle {
    border: 1px solid rgba(185,139,93,0.18);
    background: #FFFFFF;
    color: #B98B5D;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
}
.more-menu {
    position: relative;
    flex-shrink: 0;
}
.more-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(185,139,93,0.18);
    z-index: 10000;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}
.more-menu:hover .more-dropdown,
.more-menu.open .more-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.more-dropdown a {
    display: block;
    padding: 10px 12px;
    color: #3E4148;
    border-radius: 12px;
    white-space: nowrap;
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8C89A 0%, #D6A96F 55%, #B98B5D 100%);
    color: #FFFFFF;
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(185,139,93,0.23);
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease;
}
.main-btn:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(185,139,93,0.28);
}
.mobile-header {
    display: none;
}
.mobile-drawer,
.drawer-overlay {
    display: none;
}
main {
    position: relative;
    z-index: 1;
}
.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.banner-slider {
    max-width: 1280px;
    margin: 24px auto 30px;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 14px 36px rgba(185,139,93,0.14);
    overflow: hidden;
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 5.9;
    min-height: 220px;
}
.slider-track,
.slide {
    position: absolute;
    inset: 0;
}
.slide {
    opacity: 0;
    transition: opacity .45s ease;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #F7F3EC;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    color: #B98B5D;
    box-shadow: 0 8px 20px rgba(185,139,93,0.18);
    cursor: pointer;
    font-size: 24px;
}
.slider-prev {
    left: 16px;
}
.slider-next {
    right: 16px;
}
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.78);
    cursor: pointer;
}
.slider-dot.active {
    width: 24px;
    border-radius: 999px;
    background: #D6B48A;
}
.notice-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(185,139,93,0.18);
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(185,139,93,0.08);
    margin-bottom: 28px;
}
.notice-bar strong {
    color: #B98B5D;
}
.notice-bar p {
    margin: 0;
    color: #747A84;
}
.section {
    padding: 38px 0;
}
.section-title {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.25;
    margin: 0 0 14px;
    color: #3A332C;
}
.section-lead {
    max-width: 820px;
    margin: 0 0 26px;
    color: #747A84;
}
.split,
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
    gap: 28px;
    align-items: center;
}
.panel,
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.hero-card,
.compliance-box {
    background: #FFFFFF;
    border: 1px solid rgba(185,139,93,0.18);
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
    border-radius: 22px;
}
.panel,
.hero-card,
.compliance-box {
    padding: 28px;
}
.panel.soft,
.hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF6EF 62%, #EEF7FF 100%);
}
.content-img {
    border-radius: 22px;
    border: 1px solid rgba(185,139,93,0.18);
    box-shadow: 0 14px 36px rgba(185,139,93,0.12);
    width: 100%;
    object-fit: contain;
    background: #FFFFFF;
}
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 20px;
}
.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-item {
    padding: 22px;
}
.card h3,
.zone-card h3,
.info-card h3,
.review-card h3,
.faq-item h3 {
    margin: 0 0 10px;
    color: #3A332C;
}
.card p,
.zone-card p,
.info-card p,
.review-card p,
.faq-item p,
.panel p,
.hero-card p,
.compliance-box p {
    margin: 0 0 14px;
}
.card p:last-child,
.zone-card p:last-child,
.info-card p:last-child,
.review-card p:last-child,
.faq-item p:last-child,
.panel p:last-child,
.hero-card p:last-child,
.compliance-box p:last-child {
    margin-bottom: 0;
}
.zone-card img,
.info-card img,
.app-visual img {
    border-radius: 18px;
    margin-bottom: 16px;
    width: 100%;
    object-fit: contain;
    background: #FAF6EF;
}
.text-link {
    color: #B98B5D;
    font-weight: 700;
}
.text-link::after {
    content: " ›";
}
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.pill-list span {
    border: 1px solid rgba(185,139,93,0.20);
    background: #FAF6EF;
    color: #B98B5D;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 14px;
}
.hero-section {
    padding: 46px 0;
    border-bottom: 1px solid rgba(185,139,93,0.13);
}
.hero-card h1 {
    margin: 0 0 14px;
    color: #3A332C;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
}
.breadcrumb {
    color: #9A9FA8;
    font-size: 14px;
    margin-bottom: 10px;
}
.content-block {
    margin: 24px 0;
}
.callout {
    background: #EEF7FF;
    border: 1px solid rgba(185,139,93,0.16);
    border-radius: 20px;
    padding: 20px;
}
.review-name {
    color: #B98B5D;
    font-weight: 700;
    margin-bottom: 8px;
}
.faq-list {
    display: grid;
    gap: 16px;
}
.site-footer {
    background: #2F2B27;
    color: #F7F3EC;
    margin-top: 56px;
}
.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 28px;
}
.footer-brand img {
    width: 148px;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}
.footer-brand p,
.footer-note p {
    color: rgba(247,243,236,0.78);
    margin: 0;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}
.footer-links a {
    color: #F7F3EC;
}
.footer-links a:hover {
    color: #D6B48A;
}
.drawer-open {
    overflow: hidden;
}
@media (max-width: 1100px) {
    .nav-core {
        display: none;
    }
    .header-inner {
        max-width: 100%;
    }
    .grid-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 820px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: grid;
        grid-template-columns: 54px 1fr auto;
        align-items: center;
        min-height: 66px;
        padding: 0 14px;
        gap: 10px;
        width: 100%;
    }
    .mobile-logo {
        justify-self: center;
    }
    .mobile-logo img {
        width: 132px;
        max-height: 42px;
        object-fit: contain;
    }
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(185,139,93,0.18);
        border-radius: 14px;
        background: #FFFFFF;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
        background: #B98B5D;
        border-radius: 99px;
    }
    .mobile-register {
        padding: 9px 16px;
    }
    .mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: -340px;
        width: min(84vw, 330px);
        height: 100vh;
        background: #FFFFFF;
        z-index: 10050;
        box-shadow: 18px 0 42px rgba(47,43,39,0.22);
        transition: left .24s ease;
        overflow-y: auto;
    }
    .mobile-drawer.active {
        left: 0;
    }
    .drawer-overlay {
        position: fixed;
        inset: 0;
        z-index: 10040;
        background: rgba(47,43,39,0.38);
    }
    .drawer-overlay.active {
        display: block;
    }
    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 18px;
        border-bottom: 1px solid rgba(185,139,93,0.14);
    }
    .drawer-logo img {
        width: 136px;
        max-height: 44px;
        object-fit: contain;
    }
    .drawer-close {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(185,139,93,0.18);
        background: #FAF6EF;
        color: #B98B5D;
        font-size: 24px;
        line-height: 1;
    }
    .drawer-nav {
        padding: 12px;
        display: grid;
        gap: 4px;
    }
    .drawer-nav a {
        color: #3E4148;
        border-radius: 14px;
        padding: 12px 14px;
        white-space: nowrap;
    }
    .banner-slider {
        margin: 16px auto 22px;
        width: calc(100% - 22px);
        min-height: 170px;
        border-radius: 16px;
        aspect-ratio: 16 / 7.2;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .split,
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .notice-bar {
        align-items: flex-start;
        flex-direction: column;
    }
    .section {
        padding: 28px 0;
    }
    .panel,
    .hero-card,
    .compliance-box {
        padding: 22px;
    }
}
@media (max-width: 420px) {
    .container {
        width: calc(100% - 24px);
    }
    .mobile-header {
        grid-template-columns: 48px 1fr auto;
        padding: 0 10px;
    }
    .mobile-logo img {
        width: 118px;
    }
    .mobile-register {
        padding: 8px 13px;
    }
    .card,
    .zone-card,
    .info-card,
    .review-card,
    .faq-item {
        padding: 18px;
    }
}
