* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
body {
    background: #EEF4FF;
    color: #35405A;
    padding-top: 72px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.78;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 12% 14%, rgba(167,194,255,0.30), transparent 28%), radial-gradient(circle at 86% 12%, rgba(157,145,255,0.22), transparent 30%), linear-gradient(180deg, rgba(255,255,255,0.44), rgba(238,244,255,0.80)), url('bg.webp') center top / cover no-repeat;
    opacity: .55;
    z-index: -1;
}
a {
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(126,140,255,0.16);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    overflow: visible;
    padding: 0 22px;
}
main {
    position: relative;
    z-index: 1;
}
.brand-logo,
.drawer-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-logo img {
    width: 148px;
    max-height: 48px;
    object-fit: contain;
}
.nav-core {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
    justify-content: center;
    flex: 1 1 auto;
}
.nav-core a {
    white-space: nowrap;
    color: #35405A;
    text-decoration: none;
    font-weight: 650;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 999px;
}
.nav-core a:hover,
.nav-core a.active {
    color: #8A7CFF;
    background: rgba(138,124,255,0.09);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.more-menu {
    position: relative;
    flex-shrink: 0;
}
.more-trigger,
.mobile-menu-btn,
.drawer-close,
.slider-arrow {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
.more-trigger {
    height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    color: #35405A;
    background: #F4F8FF;
    border: 1px solid rgba(126,140,255,0.18);
    font-weight: 650;
}
.more-trigger:hover {
    color: #8A7CFF;
    background: #F2F0FF;
}
.more-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid rgba(126,140,255,0.18);
    box-shadow: 0 18px 42px rgba(126,140,255,0.18);
    z-index: 100000;
    border-radius: 18px;
    padding: 10px;
    display: none;
}
.more-menu:hover .more-dropdown,
.more-menu.open .more-dropdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}
.more-dropdown a {
    text-decoration: none;
    color: #35405A;
    padding: 9px 12px;
    border-radius: 12px;
    white-space: nowrap;
    font-size: 14px;
}
.more-dropdown a:hover,
.more-dropdown a.active {
    color: #8A7CFF;
    background: #F2F0FF;
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #A7C2FF 0%, #9D91FF 55%, #8B7BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 750;
    box-shadow: 0 10px 24px rgba(126,140,255,0.26);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(126,140,255,0.30);
}
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #F4F8FF;
    color: #8A7CFF;
    font-size: 22px;
}
.page-wrap,
.section,
.inner-hero,
.banner-slider,
.notice-bar {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.banner-slider {
    margin: 24px auto 30px;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 14px 36px rgba(126,140,255,0.16);
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: clamp(210px, 42vw, 520px);
}
.slider-track,
.slide {
    height: 100%;
}
.slide {
    display: none;
    align-items: center;
    justify-content: center;
    background: #EEF4FF;
}
.slide.active {
    display: flex;
}
.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #EEF4FF;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    color: #8A7CFF;
    font-size: 28px;
    box-shadow: 0 8px 22px rgba(126,140,255,0.18);
}
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 9px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.75);
    cursor: pointer;
}
.slider-dot.active {
    width: 26px;
    background: linear-gradient(135deg, #A7C2FF 0%, #9D91FF 55%, #8B7BFF 100%);
}
.notice-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(126,140,255,0.18);
    color: #68728A;
    box-shadow: 0 10px 28px rgba(126,140,255,0.12);
}
.notice-bar strong {
    color: #8A7CFF;
}
.section {
    padding: 24px 22px;
}
.section-title,
h1,
h2,
h3 {
    color: #7E8CFF;
    line-height: 1.35;
    margin: 0 0 14px;
}
h1 {
    font-size: clamp(30px, 5vw, 52px);
    letter-spacing: -1px;
}
h2,
.section-title {
    font-size: clamp(24px, 3vw, 34px);
}
h3 {
    font-size: 20px;
}
p {
    margin: 0 0 14px;
}
.lead {
    font-size: 18px;
    color: #68728A;
}
.muted {
    color: #8A94AA;
}
.text-link {
    color: #8A7CFF;
    text-decoration: none;
    font-weight: 750;
}
.text-link:hover {
    text-decoration: underline;
}
.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.hero-card,
.contact-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(126,140,255,0.18);
    box-shadow: 0 14px 36px rgba(126,140,255,0.16);
    border-radius: 22px;
}
.card,
.info-card,
.review-card,
.faq-card,
.contact-card {
    padding: 22px;
}
.hero-card {
    padding: 34px;
}
.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)); }
.brand-intro,
.inner-hero {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 26px;
    align-items: center;
}
.inner-hero {
    padding: 40px 22px 24px;
}
.brand-intro {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,248,255,.94));
    border: 1px solid rgba(126,140,255,0.18);
    box-shadow: 0 14px 36px rgba(126,140,255,0.16);
}
.content-img,
.zone-card img,
.app-section img,
.banner-slider img {
    max-width: 100%;
    height: auto;
}
.content-img,
.hero-image {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background: #F4F8FF;
    border-radius: 22px;
    padding: 8px;
    border: 1px solid rgba(126,140,255,0.14);
}
.zone-card {
    overflow: hidden;
}
.zone-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #F4F8FF;
    padding: 8px;
}
.zone-card .zone-body {
    padding: 20px;
}
.channel-card {
    min-height: 206px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pill-list,
.check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}
.pill-list li,
.check-list li {
    border-radius: 999px;
    padding: 8px 13px;
    background: #F2F0FF;
    color: #8A7CFF;
    font-weight: 650;
    font-size: 14px;
}
.info-strip {
    background: #EAF2FF;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(126,140,255,0.14);
}
.faq-list {
    display: grid;
    gap: 14px;
}
.faq-card h3 {
    color: #8A7CFF;
    font-size: 18px;
}
.review-card strong {
    display: block;
    color: #8A7CFF;
    margin-bottom: 8px;
}
.breadcrumb {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 0 22px;
    color: #8A94AA;
    font-size: 14px;
}
.breadcrumb a {
    color: #8A7CFF;
    text-decoration: none;
}
.page-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 22px 44px;
}
.content-flow {
    display: grid;
    gap: 22px;
}
.content-flow .card p:last-child,
.faq-card p:last-child,
.review-card p:last-child {
    margin-bottom: 0;
}
.service-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.service-points .info-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,255,0.95));
}
.site-footer {
    background: #27304A;
    color: #EEF4FF;
    padding: 42px 22px 22px;
    margin-top: 20px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    gap: 34px;
}
.footer-brand img {
    width: 150px;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}
.footer-brand p,
.footer-note {
    color: rgba(238,244,255,.82);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.footer-links h3 {
    color: #EEF4FF;
    font-size: 17px;
}
.footer-links a {
    display: block;
    color: rgba(238,244,255,.82);
    text-decoration: none;
    margin: 7px 0;
}
.footer-links a:hover {
    color: #FFFFFF;
}
.footer-note {
    max-width: 1280px;
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(238,244,255,.18);
    font-size: 14px;
}
.drawer-mask,
.mobile-drawer,
.mobile-bottom-nav {
    display: none;
}
.mobile-drawer,
.drawer-mask {
    z-index: 100000;
}
@media (max-width: 1180px) {
    .nav-core { gap: 6px; }
    .nav-core a { padding: 8px 8px; font-size: 14px; }
}
@media (max-width: 1024px) {
    .nav-core { display: none; }
    .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
    .brand-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .header-inner { justify-content: space-between; }
    .more-menu { display: none; }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3,
    .service-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand-intro,
    .inner-hero,
    .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    body {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
    }
    .header-inner {
        min-height: 64px;
        padding: 0 12px;
        gap: 8px;
    }
    .brand-logo img { width: 128px; max-height: 42px; }
    .header-btn { min-height: 36px; padding: 8px 15px; }
    .banner-slider { margin: 14px 12px 18px; border-radius: 14px; height: clamp(170px, 58vw, 310px); }
    .slider-arrow { width: 34px; height: 34px; font-size: 22px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    .notice-bar { margin: 0 12px 16px; grid-template-columns: 1fr; }
    .section,
    .inner-hero,
    .page-content { padding-left: 12px; padding-right: 12px; }
    .hero-card,
    .brand-intro,
    .card,
    .info-card,
    .review-card,
    .faq-card,
    .contact-card { padding: 18px; border-radius: 18px; }
    .grid-2,
    .grid-3,
    .grid-4,
    .service-points,
    .footer-links { grid-template-columns: 1fr; }
    .zone-card img { height: 190px; }
    .drawer-mask {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(39,48,74,.34);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }
    .mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(86vw, 340px);
        background: #FFFFFF;
        box-shadow: 16px 0 38px rgba(39,48,74,.18);
        transform: translateX(-105%);
        transition: transform .22s ease;
        overflow-y: auto;
        padding: 16px;
    }
    .drawer-open .drawer-mask {
        opacity: 1;
        pointer-events: auto;
    }
    .drawer-open .mobile-drawer {
        transform: translateX(0);
    }
    .drawer-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(126,140,255,0.16);
    }
    .drawer-logo img { width: 132px; max-height: 44px; object-fit: contain; }
    .drawer-close {
        width: 38px;
        height: 38px;
        border-radius: 999px;
        color: #8A7CFF;
        background: #F2F0FF;
        font-size: 28px;
        line-height: 1;
    }
    .drawer-nav {
        display: grid;
        gap: 8px;
        padding-top: 14px;
    }
    .drawer-nav a {
        text-decoration: none;
        color: #35405A;
        padding: 11px 12px;
        border-radius: 14px;
        background: #F4F8FF;
        font-weight: 650;
    }
    .drawer-nav a.active,
    .drawer-nav a:hover {
        color: #8A7CFF;
        background: #F2F0FF;
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 10px;
        z-index: 99998;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 8px;
        border-radius: 20px;
        background: rgba(255,255,255,0.94);
        box-shadow: 0 12px 32px rgba(126,140,255,0.20);
        border: 1px solid rgba(126,140,255,0.16);
        backdrop-filter: blur(12px);
    }
    .mobile-bottom-nav a {
        text-decoration: none;
        color: #35405A;
        text-align: center;
        border-radius: 14px;
        padding: 7px 0;
        font-size: 13px;
        font-weight: 700;
    }
    .mobile-bottom-nav a:hover {
        color: #8A7CFF;
        background: #F2F0FF;
    }
}
@media (max-width: 420px) {
    .brand-logo img { width: 112px; }
    .header-btn { padding: 7px 12px; font-size: 14px; }
    .mobile-menu-btn { width: 36px; height: 36px; }
    h1 { font-size: 28px; }
}
