* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(180deg, #DDE0F4 0%, #EEF0FA 54%, #DDE0F4 100%);
    color: #2E2E3A;
    line-height: 1.75;
    overflow-x: hidden;
}
a {
    color: #8c6de6;
    text-decoration: none;
    transition: all .22s ease;
}
img {
    display: block;
    max-width: 100%;
}
.no-scroll {
    overflow: hidden;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(221,224,244,0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(140,109,230,0.08);
}
.desktop-header,
.mobile-header {
    max-width: 1200px;
    margin: 0 auto;
    height: 78px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand-logo img,
.mobile-logo img {
    width: 154px;
    height: auto;
    object-fit: contain;
}
.nav-core {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
    justify-content: center;
}
.nav-core a {
    color: #554B7A;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(140,109,230,0.10);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 15px;
    white-space: nowrap;
}
.nav-core a:hover,
.nav-core a.active {
    color: #8c6de6;
    background: #FFFFFF;
    box-shadow: 0 8px 18px rgba(140,109,230,0.12);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.panel-open {
    border: 1px solid rgba(140,109,230,0.18);
    background: rgba(255,255,255,0.62);
    color: #554B7A;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 15px;
    transition: all .22s ease;
}
.panel-open:hover {
    color: #8c6de6;
    background: #fff;
    box-shadow: 0 8px 18px rgba(140,109,230,0.12);
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8c6de6;
    color: #FFFFFF;
    border-radius: 999px;
    padding: 11px 22px;
    box-shadow: 0 10px 22px rgba(140,109,230,0.22);
    font-weight: 700;
    border: 0;
    white-space: nowrap;
}
.main-btn:hover {
    color: #fff;
    background: #7E5DDD;
    transform: translateY(-1px);
}
.mobile-header {
    display: none;
}
.mobile-menu-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(140,109,230,0.16);
    background: rgba(255,255,255,0.70);
    border-radius: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 11px;
}
.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: #8c6de6;
    border-radius: 999px;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(40,38,66,0.34);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}
.overlay.show {
    opacity: 1;
    visibility: visible;
}
.category-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 92vw);
    height: 100vh;
    background: #FFFFFF;
    box-shadow: 0 18px 48px rgba(140,109,230,0.14);
    z-index: 10000;
    transform: translateX(105%);
    transition: transform .28s ease;
    padding: 28px;
    overflow-y: auto;
}
.category-panel.open {
    transform: translateX(0);
}
.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}
.panel-head h2 {
    margin: 0;
    color: #8c6de6;
    font-size: 28px;
}
.panel-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(140,109,230,0.16);
    background: #F7F7FC;
    color: #8c6de6;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.panel-group {
    margin: 20px 0;
}
.panel-group h3 {
    margin: 0 0 10px;
    color: #8c6de6;
    font-size: 18px;
}
.panel-links {
    display: grid;
    gap: 10px;
}
.panel-links a {
    border: 1px solid rgba(140,109,230,0.16);
    border-radius: 16px;
    padding: 13px 14px;
    background: #F7F7FC;
    color: #2E2E3A;
}
.panel-links a:hover {
    border-color: rgba(140,109,230,0.38);
    transform: translateX(-2px);
}
.panel-links strong {
    display: block;
    color: #554B7A;
    font-size: 15px;
}
.panel-links span {
    display: block;
    color: #66667A;
    font-size: 13px;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(84vw, 320px);
    height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F7FC 100%);
    z-index: 10000;
    transform: translateX(-105%);
    transition: transform .28s ease;
    padding: 22px;
    overflow-y: auto;
    box-shadow: 18px 0 42px rgba(140,109,230,0.14);
}
.mobile-drawer.open {
    transform: translateX(0);
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.drawer-head img {
    width: 138px;
    object-fit: contain;
}
.drawer-nav {
    display: grid;
    gap: 8px;
}
.drawer-nav a {
    padding: 12px 13px;
    border-radius: 14px;
    color: #554B7A;
    background: rgba(221,224,244,0.54);
    border: 1px solid rgba(140,109,230,0.12);
}
.drawer-nav a.active,
.drawer-nav a:hover {
    background: #fff;
    color: #8c6de6;
    box-shadow: 0 8px 16px rgba(140,109,230,0.10);
}
.mobile-bottom-nav {
    display: none;
}
.page-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 18px 72px;
}
.home-main {
    padding-top: 26px;
}
.hero-slider {
    max-width: 1200px;
    height: 380px;
    margin: 0 auto 36px;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(140,109,230,0.10);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(140,109,230,0.10);
}
.hero-slider .slide {
    display: none;
    height: 100%;
}
.hero-slider .slide.active {
    display: block;
}
.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(140,109,230,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    color: #8c6de6;
    box-shadow: 0 10px 22px rgba(140,109,230,0.12);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}
.slider-arrow.prev {
    left: 18px;
}
.slider-arrow.next {
    right: 18px;
}
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: rgba(140,109,230,0.25);
    cursor: pointer;
}
.slider-dots button.active {
    background: #8c6de6;
}
.section {
    margin: 36px 0;
}
.card,
.zone-card,
.info-card,
.glass-card,
.page-hero,
.content-panel,
.faq-item,
.review-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(140,109,230,0.16);
    box-shadow: 0 14px 36px rgba(140,109,230,0.10);
    border-radius: 24px;
}
.page-hero {
    padding: 38px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
    align-items: center;
}
.page-hero h1,
.brand-intro h1 {
    margin: 8px 0 16px;
    color: #8c6de6;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
}
.page-hero p,
.brand-intro p,
.content-panel p,
.card p,
.zone-card p,
.info-card p,
.review-card p,
.faq-item p {
    color: #55556E;
    margin: 0 0 14px;
}
.section-kicker,
.tag,
.label,
.num,
.badge {
    color: #8c6de6;
    font-weight: 700;
    letter-spacing: .03em;
}
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}
.tag-row span {
    color: #8c6de6;
    background: #EEF0FA;
    border: 1px solid rgba(140,109,230,0.16);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 14px;
}
.hero-visual {
    background: #F7F7FC;
    border-radius: 22px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.hero-visual img,
.content-img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    object-fit: contain;
}
.section-title {
    color: #8c6de6;
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 16px;
}
.section-lead {
    color: #66667A;
    max-width: 820px;
    margin: -4px 0 22px;
}
.quick-pills {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-width: thin;
}
.quick-pill {
    flex: 1 0 132px;
    min-width: 132px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(140,109,230,0.16);
    border-radius: 999px;
    padding: 13px 16px;
}
.quick-pill:hover {
    border-color: rgba(140,109,230,0.38);
    box-shadow: 0 10px 24px rgba(140,109,230,0.10);
}
.quick-pill strong {
    display: block;
    color: #554B7A;
    font-size: 15px;
}
.quick-pill span {
    color: #66667A;
    font-size: 13px;
}
.notice-strip {
    padding: 24px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(238,240,250,0.94));
    border: 1px solid rgba(140,109,230,0.14);
    box-shadow: 0 14px 36px rgba(140,109,230,0.09);
}
.notice-strip p {
    margin: 0;
    color: #4C4C67;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.info-card {
    padding: 22px;
}
.info-card h3,
.card h3,
.zone-card h3,
.content-panel h3,
.faq-item h3,
.review-card h3 {
    color: #8c6de6;
    margin: 6px 0 10px;
    line-height: 1.35;
}
.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.card {
    overflow: hidden;
}
.card-body {
    padding: 24px;
}
.card-media {
    background: #F7F7FC;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 16px;
    padding: 0;
    list-style: none;
}
.service-list li {
    color: #55556E;
    padding-left: 18px;
    position: relative;
}
.service-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8c6de6;
    position: absolute;
    left: 0;
    top: .75em;
}
.text-link {
    color: #8c6de6;
    font-weight: 700;
}
.zone-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.zone-card {
    padding: 18px;
}
.zone-card .zone-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F7FC;
    border-radius: 18px;
    padding: 10px;
    margin-bottom: 16px;
}
.zone-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.app-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    align-items: center;
    padding: 30px;
}
.app-section .app-visual {
    min-height: 260px;
    background: #F7F7FC;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.app-section img {
    max-height: 300px;
    object-fit: contain;
}
.two-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.content-panel {
    padding: 24px;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.review-card {
    padding: 20px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.faq-item {
    padding: 20px;
}
.page-content {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}
.content-panel .cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.soft-list {
    margin: 0;
    padding-left: 20px;
    color: #55556E;
}
.soft-list li {
    margin: 7px 0;
}
.image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.image-row figure {
    margin: 0;
    border-radius: 20px;
    background: #F7F7FC;
    padding: 12px;
    border: 1px solid rgba(140,109,230,0.12);
}
.image-row img {
    width: 100%;
    height: 170px;
    object-fit: contain;
}
.image-row figcaption {
    color: #66667A;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}
.site-footer {
    background: #4B4A6B;
    color: #F3F2FB;
    padding: 46px 18px 28px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 26px;
}
.footer-brand img {
    width: 150px;
    margin-bottom: 14px;
    object-fit: contain;
}
.footer-brand p,
.footer-note p {
    color: rgba(243,242,251,0.82);
    margin: 0;
}
.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}
.footer-links h3 {
    margin: 0 0 8px;
    color: #fff;
}
.footer-links a {
    color: rgba(243,242,251,0.82);
}
.footer-links a:hover {
    color: #fff;
}
.footer-note {
    max-width: 1200px;
    margin: 28px auto 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 18px;
}
@media (max-width: 1024px) {
    .nav-core a {
        padding: 9px 12px;
        font-size: 14px;
    }
    .brand-logo img {
        width: 136px;
    }
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-slider {
        height: 300px;
    }
}
@media (max-width: 860px) {
    body {
        padding-bottom: 72px;
    }
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
        height: 66px;
    }
    .mobile-logo img {
        width: 128px;
    }
    .mobile-register {
        padding: 9px 14px;
        font-size: 13px;
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9997;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: rgba(255,255,255,0.96);
        border-top: 1px solid rgba(140,109,230,0.16);
        box-shadow: 0 -8px 24px rgba(140,109,230,0.10);
    }
    .mobile-bottom-nav a {
        color: #66667A;
        text-align: center;
        padding: 8px 2px 7px;
        font-size: 12px;
    }
    .mobile-bottom-nav span {
        display: block;
        line-height: 1;
        font-size: 17px;
    }
    .mobile-bottom-nav a.active {
        color: #8c6de6;
        font-weight: 700;
    }
    .page-main {
        padding: 18px 14px 54px;
    }
    .hero-slider {
        height: 220px;
        border-radius: 18px;
        margin-bottom: 24px;
    }
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }
    .slider-arrow.prev {
        left: 10px;
    }
    .slider-arrow.next {
        right: 10px;
    }
    .page-hero,
    .app-section {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .hero-visual {
        min-height: 190px;
    }
    .split-grid,
    .two-panel,
    .faq-grid,
    .content-panel .cols {
        grid-template-columns: 1fr;
    }
    .zone-wall,
    .review-grid,
    .image-row {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .card-media {
        height: 180px;
    }
    .zone-card .zone-img,
    .image-row img {
        height: 150px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 420px) {
    .hero-slider {
        height: 190px;
    }
    .mobile-logo img {
        width: 112px;
    }
    .mobile-register {
        padding: 8px 11px;
    }
    .page-hero h1,
    .brand-intro h1 {
        font-size: 28px;
    }
}
