* {
  box-sizing: border-box;
}

:root {
  --primary: #8c6de6;
  --primary-dark: #7E5DDD;
  --main-bg: #DDE0F4;
  --soft-bg: #F7F7FC;
  --soft-bg-2: #EEF0FA;
  --white: #FFFFFF;
  --text: #2E2E3A;
  --muted: #66667A;
  --footer: #4B4A6B;
  --footer-text: #F3F2FB;
  --border: rgba(140,109,230,0.16);
  --shadow: 0 14px 36px rgba(140,109,230,0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #DDE0F4;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #DDE0F4;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(140,109,230,0.08);
}

.desktop-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-logo,
.drawer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #8c6de6;
  letter-spacing: 0.04em;
}

.brand img,
.drawer-logo img,
.footer-logo img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #554B7A;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 15px;
  transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #8c6de6;
  background: rgba(255,255,255,0.88);
  box-shadow: inset 0 0 0 1px rgba(140,109,230,0.12);
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: #8c6de6;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(140,109,230,0.22);
  transition: .2s ease;
  white-space: nowrap;
}

.main-btn:hover {
  background: #7E5DDD;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(140,109,230,0.27);
}

.header-btn {
  min-width: 112px;
}

.mobile-header {
  display: none;
  min-height: 66px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  background: #DDE0F4;
}

.mobile-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-logo img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.menu-toggle,
.drawer-close,
.slider-arrow {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(140,109,230,0.18);
  background: rgba(255,255,255,0.72);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #8c6de6;
  border-radius: 999px;
}

.mobile-reg {
  min-height: 38px;
  padding: 0 15px;
  font-size: 14px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(18,18,30,0.36);
  opacity: 0;
  pointer-events: none;
  transition: .24s ease;
}

.drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  width: 82vw;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7FC 100%);
  box-shadow: 18px 0 36px rgba(75,74,107,0.18);
  transform: translateX(-105%);
  transition: transform .28s ease;
  padding: 18px;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #EEF0FA;
  color: #8c6de6;
  font-size: 28px;
  line-height: 1;
}

.drawer-nav {
  display: grid;
  gap: 9px;
}

.drawer-nav a {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(238,240,250,0.74);
  color: #554B7A;
  font-weight: 700;
  border: 1px solid rgba(140,109,230,0.10);
}

.drawer-nav a.active {
  background: rgba(140,109,230,0.12);
  color: #8c6de6;
}

.drawer-note {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(140,109,230,0.16);
  color: var(--muted);
  box-shadow: 0 12px 26px rgba(140,109,230,0.10);
}

.drawer-note strong {
  color: #8c6de6;
}

.site-main {
  min-height: 60vh;
}

.page-hero,
.banner-slider,
.section-card,
.card,
.zone-card,
.info-card,
.soft-panel,
.faq-item,
.contact-card,
.text-panel {
  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);
}

.banner-slider {
  max-width: 1200px;
  height: 390px;
  margin: 28px auto 36px;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 18px 40px rgba(140,109,230,0.10);
  overflow: hidden;
  position: relative;
}

.slider-track {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .56s ease, transform .56s ease;
  background: linear-gradient(135deg, #F7F7FC, #EEF0FA);
  display: grid;
  place-items: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(140,109,230,0.18);
  color: #8c6de6;
  font-size: 28px;
  display: grid;
  place-items: center;
  transition: .2s ease;
}

.slider-arrow:hover {
  background: rgba(238,240,250,0.95);
}

.slider-arrow.prev {
  left: 18px;
}

.slider-arrow.next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(140,109,230,0.25);
  cursor: pointer;
  transition: .2s ease;
}

.slider-dots button.active {
  width: 26px;
  background: #8c6de6;
}

.section {
  padding: 34px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.section-title .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(140,109,230,0.10);
  color: #8c6de6;
  font-weight: 800;
  font-size: 13px;
}

h1,
h2,
h3 {
  color: #8c6de6;
  line-height: 1.35;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(30px, 5vw, 48px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 14px;
}

.text-link {
  color: #8c6de6;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
}

.quick-capsules {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 14px;
  scrollbar-width: thin;
}

.capsule {
  min-width: 206px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(140,109,230,0.16);
  box-shadow: 0 10px 24px rgba(140,109,230,0.08);
  transition: .2s ease;
}

.capsule:hover {
  border-color: rgba(140,109,230,0.44);
  transform: translateY(-2px);
}

.capsule b {
  color: #8c6de6;
  font-size: 13px;
}

.capsule strong {
  display: block;
  margin: 5px 0 3px;
  color: #2E2E3A;
}

.capsule span {
  color: #66667A;
  font-size: 14px;
}

.intro-ribbon {
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(238,240,250,0.88));
  border: 1px solid rgba(140,109,230,0.16);
  box-shadow: var(--shadow);
  color: #3F3E52;
}

.info-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  border-radius: 22px;
  padding: 22px;
}

.number {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(140,109,230,0.12);
  color: #8c6de6;
  font-weight: 900;
  margin-bottom: 12px;
}

.alternating {
  display: grid;
  gap: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 30px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(140,109,230,0.16);
  box-shadow: var(--shadow);
}

.feature-row.reverse {
  grid-template-columns: 1.04fr 0.96fr;
}

.image-wrap {
  border-radius: 24px;
  background: linear-gradient(145deg, #F7F7FC, #EEF0FA);
  padding: 12px;
  min-height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.content-img,
.zone-card img,
.app-section img,
.banner-slider img,
.page-hero img {
  max-width: 100%;
  height: auto;
}

.content-img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  object-position: center;
}

.feature-content ul,
.check-list {
  margin: 15px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-content li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: #4A4A60;
}

.feature-content li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #8c6de6;
  box-shadow: 0 0 0 5px rgba(140,109,230,0.10);
}

.zone-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.zone-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.zone-card .zone-media {
  height: 178px;
  background: linear-gradient(145deg, #F7F7FC, #EEF0FA);
  padding: 12px;
  display: grid;
  place-items: center;
}

.zone-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zone-body {
  padding: 20px;
}

.zone-tag,
.soft-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(140,109,230,0.10);
  color: #8c6de6;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.text-visual {
  height: 178px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #F7F7FC, #EEF0FA);
  color: rgba(140,109,230,0.88);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .12em;
}

.app-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(247,247,252,0.88));
  border: 1px solid rgba(140,109,230,0.16);
  box-shadow: var(--shadow);
}

.app-section .image-wrap {
  min-height: 290px;
}

.app-section img {
  max-height: 360px;
  object-fit: contain;
}

.security-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
  align-items: start;
}

.security-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.security-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(140,109,230,0.16);
  box-shadow: var(--shadow);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  padding: 22px;
}

.faq-item h3 {
  color: #2E2E3A;
  font-size: 19px;
}

.notice-box {
  border-radius: 24px;
  padding: 24px;
  background: rgba(238,240,250,0.78);
  border: 1px solid rgba(140,109,230,0.16);
  color: #4A4A60;
}

.page-hero {
  margin: 30px auto 26px;
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(238,240,250,0.86));
}

.page-hero.no-image {
  display: block;
  max-width: 960px;
}

.page-hero p {
  color: #4A4A60;
}

.hero-img {
  border-radius: 26px;
  background: linear-gradient(145deg, #F7F7FC, #EEF0FA);
  padding: 14px;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.hero-img img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.text-panel,
.contact-card {
  padding: 24px;
  border-radius: 24px;
}

.article {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}

.article p {
  color: #444456;
}

.compliance-strip {
  margin-top: 18px;
  border-radius: 22px;
  padding: 20px;
  background: #EEF0FA;
  border: 1px solid rgba(140,109,230,0.16);
  color: #4A4A60;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.site-footer {
  background: #4B4A6B;
  color: #F3F2FB;
  margin-top: 46px;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand p,
.footer-bottom p {
  color: rgba(243,242,251,0.82);
}

.footer-logo {
  color: #F3F2FB;
  margin-bottom: 14px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 18px;
}

.footer-col a {
  color: rgba(243,242,251,0.82);
  transition: .2s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding: 18px 16px;
  text-align: center;
}

@media (max-width: 1080px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    position: relative;
  }

  .banner-slider {
    height: 300px;
    width: min(100% - 28px, 1200px);
    margin-top: 22px;
  }

  .info-board,
  .zone-wall,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .banner-slider {
    height: 218px;
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .slider-arrow.prev {
    left: 9px;
  }

  .slider-arrow.next {
    right: 9px;
  }

  .section {
    padding: 24px 0;
  }

  .info-board,
  .zone-wall,
  .content-grid,
  .content-grid.two,
  .contact-grid,
  .security-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row.reverse,
  .app-section,
  .security-layout {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 18px;
  }

  .feature-row.reverse .image-wrap {
    order: 2;
  }

  .feature-row.reverse .feature-content {
    order: 1;
  }

  .image-wrap,
  .app-section .image-wrap,
  .hero-img {
    min-height: 190px;
  }

  .content-img,
  .hero-img img {
    max-height: 260px;
  }

  .page-hero {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .intro-ribbon,
  .notice-box,
  .text-panel,
  .contact-card,
  .faq-item {
    padding: 20px;
  }

  .zone-card .zone-media,
  .text-visual {
    height: 150px;
  }
}
