/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-gray-50);
  overflow-x: hidden;
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

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

ul {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/* Image Containers */
.product-img-box {
  width: 100%;
  padding-top: 75%; /* 4:3 */
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-100);
}

.product-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-img-box {
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-100);
}

.case-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-box {
  width: 100%;
  margin: 16px 0;
}

.news-img-box {
  flex: 0 0 64px;
  height: 64px;
}

.hero-slide-img {
  position: relative;
  width: 100%;
  background-color: #0a1326;
}

.hero-slide-photo {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slide-img::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 46, 0.08) 0%, rgba(8, 20, 46, 0.22) 58%, rgba(6, 16, 38, 0.34) 100%),
    linear-gradient(120deg, rgba(9, 62, 137, 0.14) 0%, rgba(9, 62, 137, 0.04) 54%, rgba(10, 30, 72, 0.10) 100%);
}

.hero-slide-img::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  width: 100%;
  z-index: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(6, 16, 38, 0) 0%, rgba(6, 16, 38, 0.48) 100%);
}

.hero-slide-shell {
  position: relative;
  height: 100%;
  padding: 16px 16px 20px;
}

.hero-content-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 43, 91, 0.16);
  padding: 14px 14px 12px;
  backdrop-filter: blur(12px);
}

.hero-content-card--alt {
  background: rgba(247,250,255,0.96);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef4ff;
  color: #315ea5;
  font-size: 11px;
  font-weight: 600;
}

.hero-slide-img--preview {
  background-color: #0f2b5b;
}

.hero-slide-img--warm::before {
  background:
    linear-gradient(180deg, rgba(51, 30, 8, 0.06) 0%, rgba(51, 30, 8, 0.20) 58%, rgba(41, 23, 6, 0.30) 100%),
    linear-gradient(120deg, rgba(193, 94, 12, 0.10) 0%, rgba(193, 94, 12, 0.04) 54%, rgba(96, 41, 8, 0.08) 100%);
}

.hero-slide-img--cool::before {
  background:
    linear-gradient(180deg, rgba(7, 18, 46, 0.10) 0%, rgba(7, 18, 46, 0.24) 58%, rgba(7, 18, 46, 0.34) 100%),
    linear-gradient(120deg, rgba(23, 74, 158, 0.14) 0%, rgba(23, 74, 158, 0.05) 54%, rgba(10, 31, 72, 0.10) 100%);
}

/* Utilities */
.img-placeholder {
  background-color: var(--color-gray-300);
  position: relative;
  overflow: hidden;
}

.logo-placeholder {
  font-weight: 800;
  font-size: 20px;
  color: white;
}

.logo-placeholder.dark {
  color: var(--color-primary-900);
}

/* Nav Bar */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 8px;
  z-index: 100;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  flex-wrap: nowrap;
}

.nav-bar__left {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nav-bar__left img {
  display: block;
  max-width: none;
  max-height: 44px;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.nav-bar__right {
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  margin-left: 2px;
  justify-content: flex-end;
  gap: 2px;
}

.nav-bar .icon-btn {
  color: var(--color-gray-900);
  margin-left: 0;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.side-menu.active {
  visibility: visible;
  pointer-events: auto;
}

.side-menu__mask {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 56, 0.24);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.side-menu.active .side-menu__mask {
  opacity: 1;
}

.side-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 58vw;
  max-width: 248px;
  height: 100%;
  max-height: calc(100vh - 66px);
  background: linear-gradient(135deg, rgba(21,53,111,0.62) 0%, rgba(31,79,155,0.55) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 6px 24px rgba(0,0,0,0.18);
  border-radius: 0 0 0 12px;
}

.side-menu.active .side-menu__panel {
  transform: translateX(0);
}

/* Side Menu Refinement */
.side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: transparent;
}

.side-menu__header .close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
}

.side-menu__header > img {
  display: block;
  max-width: 180px;
  max-height: 34px;
  width: auto;
  height: auto;
}

.side-menu__logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #edf2f7;
}

.side-menu__logo-mark img {
  display: block;
  width: auto !important;
  height: 28px !important;
  max-width: none;
  max-height: none;
  transform: translateX(0);
}

.side-menu__nav {
  padding: 8px 0 18px;
}

.side-menu__nav > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.side-menu__nav > ul > li > a,
.menu-item-head {
  min-height: 50px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.menu-item-head {
  cursor: pointer;
}

.menu-item-link {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  min-height: 50px;
}

.menu-item-toggle {
  width: 36px;
  height: 36px;
  margin-right: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.menu-arrow {
  flex: 0 0 auto;
  color: #94a3b8;
  transition: transform 0.22s ease, color 0.22s ease;
}

.menu-item-head.open {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.side-menu__nav a.active,
.side-menu__nav a.is-current,
.menu-item-link.is-current {
  color: #fff;
}

.menu-item-head.open .menu-arrow {
  color: #fff;
  transform: rotate(180deg);
}

.sub-menu {
  display: none;
  padding: 6px 0 10px;
  background: rgba(0,0,0,0.15);
}

.sub-menu.active {
  display: block;
}

.sub-menu li a {
  display: block;
  padding: 9px 20px 9px 36px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
}

.sub-menu li a:hover,
.sub-menu li a:active,
.sub-menu li a.is-current {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Redesigned Best Sellers Card */
.product-card-vertical {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 43, 91, 0.08);
  margin-bottom: 24px;
  border: 1px solid var(--color-gray-100);
  position: relative;
  animation: productCardIn 0.55s ease both;
  transform-origin: center bottom;
}

.product-card-vertical:nth-child(2n) {
  animation-delay: 0.08s;
}

.product-card-vertical:nth-child(3n) {
  animation-delay: 0.14s;
}

@keyframes productCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card-vertical .img-box {
  width: 100%;
  height: 220px;
  position: relative;
  background-color: var(--color-gray-50);
  overflow: hidden;
  border-radius: 0;
}

.img-box-watermark {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 8px;
  color: rgba(255,255,255,0.48);
  pointer-events: none;
  z-index: 9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  letter-spacing: 0.1px;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.28s ease;
  border-radius: 0;
}

.product-main-image.is-switching {
  opacity: 0.72;
  transform: scale(1.03);
}

.product-card-vertical .img-box::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(9, 20, 42, 0) 0%, rgba(9, 20, 42, 0.14) 100%);
  pointer-events: none;
}

.product-gallery-thumbs {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 93px;
  padding: 3px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 20, 42, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(10, 28, 58, 0.22);
}

.product-gallery-thumb {
  width: 42px;
  height: 31px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  opacity: 0.76;
  position: relative;
  transition: transform 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
}

.product-gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 62%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.product-gallery-thumb:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.94;
  filter: saturate(1.08) brightness(1.04);
}

.product-gallery-thumb:hover::after {
  opacity: 1;
}

.product-gallery-thumb.active {
  transform: scale(1.03);
  opacity: 1;
  filter: saturate(1.08) brightness(1.03);
}

.product-gallery-thumb.active::after {
  opacity: 1;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-vertical .hot-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-cta);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.28);
}

.product-card-vertical .info-box {
  padding: 14px 14px 13px;
}

.product-card-vertical .title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 7px;
  color: var(--color-gray-900);
  line-height: 1.28;
}

.product-card-vertical .specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 10px;
  margin-bottom: 10px;
  background: var(--color-gray-50);
  padding: 9px 10px;
  border-radius: 12px;
}

.product-card-vertical .spec-item {
  font-size: 11px;
  color: var(--color-gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.35;
}

.product-card-vertical .spec-item span {
  font-weight: 500;
}

.product-card-vertical .user-feedback {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-gray-200);
  min-height: 68px;
}

.product-card-vertical .stars {
  color: var(--color-accent-500);
  display: flex;
  font-size: 12px;
  flex: 0 0 auto;
  padding-top: 3px;
}

.reviews-marquee {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  height: 56px;
  position: relative;
}

.reviews-marquee__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-marquee__track span {
  min-height: 56px;
  font-size: 11px;
  color: #7a8496;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-score {
  margin: 0 0 10px;
  padding: 8px 10px 7px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6fd 100%);
  border: 1px solid #e5eefb;
}

.product-score__head {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary-700);
  line-height: 1.2;
}

.product-score__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}

.product-score__item {
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.product-score__label {
  font-size: 2.6vw;
  color: var(--color-gray-600);
  white-space: nowrap;
}

.product-score__bar {
  position: relative;
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(31, 79, 155, 0.12);
  overflow: hidden;
}

.product-score__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 48%, #ef4444 100%);
}

.product-score__value {
  font-size: 2.6vw;
  color: #2a426f;
  text-align: right;
  font-weight: 700;
}

.product-card-vertical .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-vertical .price-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card-vertical .price-tag {
  font-size: 16px;
  color: #d97706;
  font-weight: 700;
  line-height: 1.15;
}

.product-card-vertical .price-sub {
  font-size: 2.6vw;
  color: #8a93a3;
  line-height: 1.32;
}

.product-card-vertical .btn-action {
  background: var(--gradient-cta);
  color: white;
  padding: 9px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  border: none;
  white-space: nowrap;
}

.product-links {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--color-primary-700);
  font-size: 11px;
  font-weight: 700;
}

.product-link--manual {
  background: #fff7ed;
  color: #c2410c;
  border-color: rgba(194, 65, 12, 0.08);
}

.product-link,
.product-card-vertical .btn-action,
.product-gallery-thumb {
  touch-action: manipulation;
}

.products-more {
  padding: 0 16px 6px;
}

.products-more > summary {
  list-style: none;
}

.products-more > summary::-webkit-details-marker {
  display: none;
}

.products-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: var(--color-primary-600);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.products-list-vertical--extra {
  padding-top: 16px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 66px;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, rgba(21,53,111,0.62) 0%, rgba(31,79,155,0.55) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 500;
  transform: translateX(110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 10px 14px 12px;
  box-shadow: -4px 6px 24px rgba(0,0,0,0.18);
  border-radius: 0 0 0 12px;
}

.search-overlay.active {
  transform: translateX(0);
}

.search-overlay__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.search-overlay__tel {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 11px;
  color: rgba(255,255,255,0.95);
}

.search-overlay__tel a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 2px;
}

.search-input-wrapper {
  flex: 1;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 19px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.search-input-wrapper input {
  border: none;
  background: none;
  width: 100%;
  font-size: 13px;
  outline: none;
  margin-left: 6px;
  color: #fff;
}

.search-input-wrapper input::placeholder {
  color: rgba(255,255,255,0.6);
}

.close-search {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.search-history h4 {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
}

.history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  overflow: hidden;
  margin-top: 66px;
}

.hero-banner__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.hero-banner__track::-webkit-scrollbar {
  display: none;
}

.hero-banner__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
}

.hero-banner__slide::before {
  display: none;
}

/* ── Slide 内容层 ── */
.slide-content {
  position: absolute;
  z-index: 1;
  left: 0; right: 0; bottom: 0; height: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 16px;
  background: linear-gradient(to top, rgba(4,12,32,0.75) 0%, rgba(4,12,32,0.45) 70%, transparent 100%);
}

.slide-content--left {
  align-items: flex-start;
  text-align: left;
}

.slide-content--center {
  text-align: center;
  align-items: center;
}

.slide-content--side {
  left: 0; right: auto;
  width: 52%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 16px 0 20px;
  background: linear-gradient(to right, rgba(4,12,32,0.72) 0%, rgba(4,12,32,0.4) 70%, transparent 100%);
}

.slide-content--bar {
  left: 0; right: 0; bottom: 0;
  height: auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(4,12,32,0.72);
  backdrop-filter: blur(4px);
  gap: 12px;
}

.slide-bar__left {
  flex: 1;
  min-width: 0;
}

.slide-bar__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn--block {
  width: 80px;
  justify-content: center;
}

.slide-service-pills--col {
  flex-direction: column;
  gap: 4px;
}

/* 版权右上角 */
.slide-copyright {
  position: absolute;
  bottom: 6px;
  right: 10px;
  z-index: 2;
  font-size: 1.6vw;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 2.1vw;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
}

.slide-tag::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 13px;
  background: #ffd84d;
  border-radius: 2px;
  flex-shrink: 0;
}

.slide-title-lg {
  font-size: 6.5vw;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  letter-spacing: -1px;
}

.slide-title-accent {
  color: #ffd84d;
}

.slide-seo-summary {
  margin: 2px 0 10px;
  max-width: 280px;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-service-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
}

.slide-service-pills .pill-text {
  background: none;
  color: #ffd84d;
  padding: 0 4px;
  border-radius: 0;
  height: auto;
  font-weight: 600;
  font-size: 2vw;
  display: inline-flex;
  align-items: center;
}

.slide-service-pills span {
  background: none;
  color: #ffd84d;
  padding: 0 4px;
  border-radius: 0;
  height: auto;
  font-weight: 600;
  font-size: 2vw;
  display: inline-flex;
  align-items: center;
}

.slide-desc {
  font-size: 2.2vw;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* ── Slide 2: 居中 + 数据卡片 ── */
.slide-badge {
  display: inline-block;
  font-size: 2.1vw;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6b00, #ff3d00);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255,60,0,0.4);
}

.slide-stats-row {
  display: flex;
  gap: 0;
  margin-bottom: 10px;
  background: #ffd84d;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  backdrop-filter: blur(6px);
  overflow: hidden;
  width: 100%;
}

.slide-stats-row span {
  flex: 1;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 4px;
  line-height: 1.1;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.slide-stats-row span:last-child {
  border-right: none;
}

.slide-stats-row em {
  font-style: normal;
  font-size: 8px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}


.slide-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.slide-bottom-row--right {
  flex-direction: row-reverse;
}
.cta-group--left {
  justify-content: flex-start;
}

.cta-group--right {
  justify-content: flex-end;
}

.slide-content--right {
  align-items: flex-end;
  text-align: right;
}


.cta-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn {
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2vw;
  transition: transform 0.1s;
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}

.btn--outline {
  border: none;
  background: #ffd84d;
  color: #0d1f3c;
}

.hero-banner__indicators {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 3;
}

.hero-banner__indicators span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.26s ease;
}

.hero-banner__indicators span::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,216,77,0.92));
}

.hero-banner__indicators span.active {
  width: 18px;
  background: linear-gradient(90deg, #ffffff 0%, #ffd84d 100%);
  box-shadow: 0 3px 10px rgba(255, 216, 77, 0.36);
}

.hero-banner__indicators span.active::after {
  animation: heroIndicatorProgress 5s linear forwards;
}

@keyframes heroIndicatorProgress {
  from {
    width: 0;
    opacity: 0.55;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* Trust Stats */
.trust-stats {
  position: relative;
  overflow: hidden;
  background: var(--color-primary-50);
  min-height: 156px;
}

.trust-stats__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.38s ease;
}

.trust-stats__page {
  min-height: 156px;
  flex: 0 0 auto;
  padding: 16px var(--spacing-page) 26px;
}

.trust-stats__page--metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
  min-height: 100%;
  text-align: center;
}

.trust-stats__page--message {
  display: flex;
  align-items: center;
}

.trust-copy {
  width: 100%;
  text-align: center;
}

.trust-copy__eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-primary-700);
  margin-bottom: 6px;
  font-weight: 700;
}

.trust-copy h3 {
  font-size: 17px;
  line-height: 1.34;
  color: var(--color-primary-900);
  margin: 0 0 5px;
  font-weight: 800;
}

.trust-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.56;
  color: #667085;
}

.trust-stats__page--entry .trust-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-copy__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 28px;
  margin-top: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(31, 79, 155, 0.14);
}

.trust-copy__link::after {
  content: '>';
  margin-left: 6px;
  font-size: 2.6vw;
  opacity: 0.9;
}

.trust-stats__page--alert .trust-copy__eyebrow {
  color: var(--color-accent-500);
}

.trust-stats__dots {
  position: absolute;
  right: 14px;
  bottom: 12px;
  display: flex;
  gap: 6px;
}

.trust-stats__dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(31, 79, 155, 0.22);
  box-shadow: inset 0 0 0 1px rgba(31, 79, 155, 0.08);
  transition: all 0.22s ease;
}

.trust-stats__dots span.active {
  width: 18px;
  background: linear-gradient(90deg, var(--color-primary-500), var(--color-primary-700));
  box-shadow: 0 4px 10px rgba(31, 79, 155, 0.18);
  animation: trustDotPulse 1.8s ease-in-out infinite;
}

.faq-section {
  padding: 18px var(--spacing-page) 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.faq-list {
  display: grid;
  gap: 8px;
  padding-bottom: 2px;
}

.faq-card {
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #e3ecfb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  padding: 10px 12px 9px;
}

.faq-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 10px;
  font-weight: 800;
}

.faq-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 800;
  color: var(--color-gray-900);
}

.faq-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.56;
  color: var(--color-gray-600);
}

.faq-card a {
  color: var(--color-primary-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes trustDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(31, 79, 155, 0.18);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 6px 14px rgba(31, 79, 155, 0.24);
  }
}

.stat-item .number {
  font-size: 24px;
  font-weight: 700;
  color: #2a426f;
  line-height: 1.08;
}

.stat-item .label {
  font-size: 13px;
  color: #7a8496;
  margin-top: 4px;
  line-height: 1.28;
}

.hot-tags {
  display: flex;
  align-items: flex-start;
}

.hot-tags .prefix {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-top: 4px;
  flex-shrink: 0;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  color: var(--color-primary-600);
  background: var(--color-primary-100);
  padding: 4px 12px;
  border-radius: var(--radius-tag);
}

/* Product Quick Entry */
.product-quick-entry {
  padding: 22px 0 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.product-quick-entry__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 6px;
  padding: 14px var(--spacing-page) 0;
}

.quick-category-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-category-card:active {
  transform: scale(0.98);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.quick-category-card__media {
  position: relative;
  aspect-ratio: 1 / 0.78;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, #ffffff 0%, #eef5ff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.quick-category-card__media img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.quick-category-card__body {
  padding: 8px 6px 10px;
}

.quick-category-card__body h3 {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.2;
  color: var(--color-gray-900);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  padding: 0 var(--spacing-page);
  gap: 12px;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  left: var(--spacing-page);
  right: var(--spacing-page);
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 79, 155, 0.16) 0%, rgba(31, 79, 155, 0.06) 46%, rgba(31, 79, 155, 0) 100%);
}

.section-title {
  font-size: 20px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
  padding-left: 1px;
}

.more-link {
  margin-top: 22px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-primary-600);
  white-space: nowrap;
}

/* Entry Grid (4-box menu) */
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px var(--spacing-page);
  background: white;
  margin-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.entry-card {
  position: relative;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  color: white;
}

.entry-card .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.entry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 1;
}

.entry-card .title {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.entry-card .desc {
  position: relative;
  z-index: 2;
  font-size: 11px;
  opacity: 0.92;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.entry-card .desc--tight {
  font-size: 10px;
}

/* Enhanced Product Card */
.product-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-info {
  padding: 12px;
  flex: 1;
}

.product-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.spec-tag {
  font-size: 2.6vw;
  color: var(--color-gray-500);
  background: var(--color-gray-50);
  padding: 2px 6px;
  border-radius: 4px;
}

.product-badge {
  position: absolute;
  bottom: 6px;
  right: 8px;
  background: var(--color-primary-600);
  color: white;
  font-size: 2.6vw;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 1;
}

.product-badge.accent {
  background: var(--color-accent-500);
}

.product-card .img-placeholder {
  width: 100%;
  padding-top: 75%; /* 4:3 */
}

.product-info {
  padding: 12px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}

.product-params {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-bottom: 10px;
}

.btn-inquiry {
  width: 100%;
  height: 32px;
  background: var(--color-accent-500);
  color: white;
  border-radius: var(--radius-button-sm);
  font-size: 13px;
  font-weight: 500;
}

.btn-more-products {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-primary-600);
  color: var(--color-primary-600);
  border-radius: var(--radius-button-lg);
  font-weight: 600;
  background: white;
}

/* Cases Section */
.cases-section {
  padding: 26px var(--spacing-page);
  margin-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.cases-spotlight {
  display: grid;
  gap: 14px;
  align-items: start;
}

.case-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.case-card:active {
  transform: scale(0.985);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.09);
}

.case-card--hero .case-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe7ff 0%, #eef4ff 100%);
}

.case-card__media img,
.case-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(5, 16, 42, 0) 0%, rgba(5, 16, 42, 0.58) 100%);
}

.case-watermark {
  z-index: 3;
}

.case-watermark--small {
  right: 6px;
  bottom: 6px;
  font-size: 6.5px;
  color: rgba(255,255,255,0.44);
  letter-spacing: 0.1px;
}

.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 10px;
  font-weight: 800;
}

.case-card__body {
  padding: 14px 14px 15px;
}

.case-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-primary-600);
}

.case-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-gray-900);
}

.case-meta {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.42;
  color: #7a8496;
}

.case-summary {
  display: none;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 10px;
  font-weight: 700;
}

.cases-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.case-card--compact {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.case-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe7ff 0%, #eef4ff 100%);
  flex: 0 0 auto;
}

.case-card--compact .case-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  min-height: 118px;
  padding: 12px 14px 12px;
}

.case-card--compact .case-title {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card--compact .case-meta {
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.2;
  color: #8a93a3;
}

.case-card--compact .case-kicker,
.case-card--compact .case-summary {
  display: none;
}

.case-card--compact .case-card__thumb img,
.case-card--hero .case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card--video .case-card__thumb {
  position: relative;
}

.case-card--video .case-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card--video .case-card__thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f2b5b'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: 52% 50%;
}

.case-summary--compact {
  display: none;
}

/* About Section */
.about-section {
  padding: 26px var(--spacing-page);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  margin-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.about-hero-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.about-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef4ff;
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  display: block;
}

.about-img-box::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(10, 28, 58, 0) 0%, rgba(10, 28, 58, 0.26) 100%);
}

.about-content {
  padding: 14px 14px 16px;
}

.about-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary-600);
  letter-spacing: 0.04em;
}

.company-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-gray-900);
}

.company-desc {
  font-size: 13px;
  color: #5b667a;
  line-height: 1.68;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 10px;
  font-weight: 700;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.about-mini-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.about-mini-stats strong {
  font-size: 16px;
  line-height: 1.08;
  color: #2a426f;
  font-weight: 700;
}

.about-mini-stats span {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.32;
  color: #7a8496;
}

.founder-card {
  display: block;
  margin-top: 14px;
}

.founder-card--portrait {
  --founder-visual-width: clamp(112px, 34vw, 136px);
  --founder-visual-height: clamp(142px, 42vw, 166px);
  --founder-frame-width: clamp(82px, 25vw, 100px);
  --founder-frame-height: clamp(116px, 35vw, 138px);
  --founder-portrait-width: clamp(104px, 31vw, 124px);
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 22px;
  padding: 14px 14px 12px;
  background:
    radial-gradient(circle at top right, rgba(120, 119, 255, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(150deg, #102b5f 0%, #163874 52%, #214b8e 100%);
  box-shadow: 0 14px 26px rgba(15, 43, 91, 0.13);
}

.founder-card--portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 21, 48, 0.08) 0%, rgba(8, 21, 48, 0) 30%, rgba(8, 21, 48, 0) 100%);
  pointer-events: none;
}

.founder-card__content {
  position: relative;
  z-index: 2;
  width: calc(100% - var(--founder-visual-width) + 6px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.founder-card__headline {
  max-width: 100%;
}

.founder-card__kicker {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-card__name {
  margin: 0 0 3px;
  font-size: 18px;
  line-height: 1.04;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.founder-card__role {
  margin: 0;
  font-size: 10px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}

.founder-card__quote {
  position: relative;
  margin: 4px 0 0;
  display: block;
  padding: 2px 20px 4px 18px;
  max-width: 100%;
  isolation: isolate;
}

.founder-card__quote-mark {
  position: absolute;
  font-size: 24px;
  line-height: 1;
  color: rgba(255, 214, 88, 0.9);
  font-weight: 900;
  pointer-events: none;
}

.founder-card__quote-mark--open {
  left: 0;
  top: 0;
}

.founder-card__quote-mark--close {
  right: 0;
  bottom: 0;
}

.founder-card__quote p {
  margin: 0;
  display: block;
  font-size: clamp(12px, 3.8vw, 13px);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  text-wrap: balance;
  word-break: break-word;
}

.founder-card__desc {
  margin: 1px 0 0;
  padding-right: 2px;
  font-size: clamp(9px, 2.9vw, 10px);
  line-height: 1.62;
  color: rgba(232, 240, 255, 0.8);
}

.founder-card__quote-source {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.56);
}

.founder-card__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}

.founder-card__footer--compact {
  align-items: center;
}

.founder-card__wechat-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.founder-card__wechat-trigger--icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 12px;
}

.founder-card__wechat-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.founder-card__wechat-meta strong {
  display: block;
  font-size: 11px;
  line-height: 1.25;
  color: #fff;
}

.founder-card__wechat-meta span {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}

.founder-card__more {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.founder-card__visual {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: var(--founder-visual-width);
  height: var(--founder-visual-height);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.founder-card__halo {
  position: absolute;
  right: -10px;
  bottom: 18px;
  width: calc(var(--founder-visual-width) - 18px);
  height: calc(var(--founder-visual-width) - 18px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 162, 255, 0.36) 0%, rgba(125, 162, 255, 0) 74%);
  filter: blur(5px);
}

.founder-card__frame {
  position: absolute;
  right: 14px;
  bottom: 0;
  width: var(--founder-frame-width);
  height: var(--founder-frame-height);
  border-radius: 18px 18px 10px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.founder-card__portrait {
  position: relative;
  z-index: 2;
  width: var(--founder-portrait-width);
  max-width: none;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(8, 16, 34, 0.2));
}

@media (max-width: 390px) {
  .founder-card--portrait {
    --founder-visual-width: clamp(104px, 31vw, 118px);
    --founder-visual-height: clamp(134px, 39vw, 150px);
    --founder-frame-width: clamp(78px, 23vw, 88px);
    --founder-frame-height: clamp(108px, 32vw, 126px);
    --founder-portrait-width: clamp(96px, 28vw, 110px);
    padding: 13px 12px 11px;
  }

  .founder-card__content {
    width: calc(100% - var(--founder-visual-width) + 2px);
    gap: 5px;
  }

  .founder-card__name {
    font-size: 16px;
  }

  .founder-card__role {
    font-size: 9px;
  }

  .founder-card__quote {
    padding: 1px 16px 3px 16px;
  }

  .founder-card__quote-mark {
    font-size: 22px;
  }

  .founder-card__quote-mark--open {
    top: 0;
  }

  .founder-card__quote-mark--close {
    bottom: 0;
  }

  .founder-card__quote p {
    font-size: 12px;
    line-height: 1.48;
  }

  .founder-card__desc {
    font-size: 9px;
    line-height: 1.56;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .founder-card__footer {
    gap: 4px;
    margin-top: 0;
  }

  .founder-card__wechat-trigger--icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    border-radius: 11px;
  }

  .founder-card__wechat-icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    font-size: 13px;
  }

  .founder-card__more {
    font-size: 9px;
    line-height: 1.1;
  }

  .founder-card__visual {
    right: -4px;
    bottom: -6px;
  }

  .founder-card__frame {
    right: 12px;
    bottom: 2px;
  }

  .founder-card__portrait {
    transform: translateY(6px);
  }
}

.founder-wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.founder-wechat-modal.active {
  display: block;
}

.founder-wechat-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 38, 0.62);
  backdrop-filter: blur(6px);
}

.founder-wechat-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 56px);
  max-width: 320px;
  transform: translate(-50%, -50%);
  padding: 22px 18px 18px;
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 43, 91, 0.2);
}

.founder-wechat-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #5b6475;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.founder-wechat-modal__panel h3 {
  margin: 0;
  font-size: 18px;
  color: #173e7b;
}

.founder-wechat-modal__panel p {
  margin: 8px 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

.founder-wechat-modal__panel img {
  width: 188px;
  height: 188px;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 43, 91, 0.08);
}

.about-content .more-btn,
.about-links .more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.16);
}

.about-links .more-btn--ghost {
  background: #eef4ff;
  color: var(--color-primary-600);
  box-shadow: none;
}

/* News Section */
.news-section {
  padding: 24px var(--spacing-page);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  margin-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.section-kicker {
  margin: 0 0 6px;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  color: rgba(77, 111, 174, 0.66);
}

.news-brief {
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.news-brief__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.news-brief__brand {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary-700);
}

.news-brief__desc {
  font-size: 11px;
  color: var(--color-gray-500);
}

.news-focus-card {
  display: block;
  padding: 12px 12px 11px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #e3ecfb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.news-focus-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.news-focus-card__tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: #1f4f9b;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.news-focus-card__date {
  font-size: 11px;
  color: #7a8496;
  font-weight: 700;
}

.news-focus-card__title {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--color-gray-900);
}

.news-focus-card__summary {
  margin: 0;
  font-size: 12px;
  line-height: 1.62;
  color: var(--color-gray-600);
}

.news-compact-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.news-compact-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.news-compact-item:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.news-compact-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: var(--color-primary-700);
  font-size: 10px;
  font-weight: 800;
}

.news-compact-item__body h3 {
  margin: 0 0 4px;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-gray-900);
}

.news-compact-item__body p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--color-gray-500);
}

.news-compact-item__date {
  font-size: 11px;
  font-weight: 700;
  color: #7a8496;
  text-align: right;
  white-space: nowrap;
}

.news-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.news-channel-card {
  display: block;
  padding: 12px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #123a78 0%, #1f4f9b 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 43, 91, 0.12);
}

.news-channel-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.news-channel-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.86);
}

.news-channel-card__arrow {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.34);
}

.news-channel-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.news-channel-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.news-channel-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.news-channel-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  color: var(--color-gray-900);
  padding: 18px var(--spacing-page) 20px;
}

.site-footer__card {
  border: 1px solid rgba(207, 224, 245, 0.95);
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,255,0.98) 100%);
  box-shadow: 0 10px 20px rgba(28, 73, 136, 0.06);
}

.site-footer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.site-footer__cta {
  min-height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-footer__cta--primary {
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(31, 79, 155, 0.22);
}

.site-footer__cta--ghost {
  border: 1px solid #cfdef4;
  background: #f2f7ff;
  color: #1f4f9b;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
  margin-bottom: 8px;
}

.site-footer__qr-trigger,
.site-footer__contact {
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbe7f7;
  padding: 10px;
  min-height: 56px;
}

.site-footer__qr-trigger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #07c160;
}

.site-footer__qr-trigger svg {
  width: 26px;
  height: 26px;
}

.site-footer__qr-trigger span {
  font-size: 10px;
  line-height: 1;
  color: #7c8da6;
}

.site-footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__contact .tel {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  color: #1f4f9b;
}

.copyright {
  padding-top: 8px;
  border-top: 1px solid #e3edf9;
  font-size: 10px;
  color: #7c8da6;
  text-align: center;
  line-height: 1.55;
}

.copyright p + p {
  margin-top: 2px;
}

/* Bottom Bar */
.bottom-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 58px;
  background: rgba(255,255,255,0.96);
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 18px;
  border: 1px solid rgba(207, 224, 245, 0.95);
  box-shadow: 0 10px 22px rgba(28, 73, 136, 0.1);
  z-index: 150;
  padding: 5px 5px calc(5px + env(safe-area-inset-bottom));
  backdrop-filter: blur(12px);
}

.bar-item {
  flex: 0 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #6d7f98;
  gap: 2px;
  border-radius: 12px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.bar-item svg {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
}

.bar-item span {
  font-size: 10px;
  font-weight: 600;
}

.bar-item.active {
  color: #1f4f9b;
  background: #edf4ff;
}

.bar-item--phone {
  color: #1f4f9b;
}

.bar-cta {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(31, 79, 155, 0.22);
}

.bar-cta__badge {
  min-width: 34px;
  height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}

.bar-cta__title {
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  visibility: hidden;
}

.qr-modal.active {
  visibility: visible;
}

.qr-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 46, 0.52);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.qr-modal.active .qr-modal__mask {
  opacity: 1;
}

.qr-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 228px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dbe7f7;
  transform: translate(-50%, -46%);
  opacity: 0;
  box-shadow: 0 18px 40px rgba(28, 73, 136, 0.18);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.qr-modal.active .qr-modal__panel {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.qr-modal__panel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e6eef9;
}

.qr-modal__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #7c8da6;
  font-size: 20px;
  line-height: 28px;
}

.floating-consult {
  position: fixed;
  right: 12px;
  bottom: 108px;
  z-index: 420;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  display: none;
}

.floating-consult__panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(207, 224, 245, 0.95);
  box-shadow: 0 12px 26px rgba(28, 73, 136, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-consult.active .floating-consult__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-consult__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 112px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid rgba(31, 79, 155, 0.08);
  color: #1f4f9b;
  font-size: 12px;
  font-weight: 700;
}

.floating-consult__item--wechat {
  background: linear-gradient(180deg, #f5fffa 0%, #eefbf4 100%);
  border-color: rgba(34, 197, 94, 0.14);
  color: #166534;
}

.floating-consult__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex: 0 0 22px;
}

.floating-consult__item--wechat .floating-consult__icon,
.floating-consult__toggle--wechat {
  background: linear-gradient(135deg, #19c15f 0%, #14a34a 100%);
}

.floating-consult__text {
  line-height: 1;
  white-space: nowrap;
}

.floating-consult__toggle {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f4f9b 0%, #2a67c7 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(31, 79, 155, 0.28);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.floating-consult__toggle-badge {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.floating-consult__toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.site-footer__cta:active,
.bar-item:active,
.bar-cta:active {
  transform: translateY(1px);
}

@media (hover: hover) {
  .site-footer__cta:hover,
  .bar-item:hover,
  .bar-cta:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 360px) {
  .site-footer__actions {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .bottom-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 4px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .bar-item {
    flex-basis: 46px;
  }

  .bar-cta {
    padding: 0 10px;
    gap: 6px;
  }

  .bar-cta__title {
    font-size: 14px;
  }
}

/* Inquiry Modal */
.inquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  visibility: hidden;
}

.inquiry-modal.active {
  visibility: visible;
}

.modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inquiry-modal.active .modal-mask {
  opacity: 1;
}

.modal-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-radius: var(--radius-modal) var(--radius-modal) 0 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 20px calc(24px + env(safe-area-inset-bottom));
}

.inquiry-modal.active .modal-panel {
  transform: translateY(0);
}

.modal-drag-bar {
  width: 40px;
  height: 4px;
  background: var(--color-gray-300);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--color-gray-500);
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--color-gray-500);
}

.inquiry-form .form-group {
  margin-bottom: 12px;
}

.form-group--wechat {
  display: none;
}

.inquiry-form.is-manual .form-group--wechat {
  display: block;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  height: 48px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.inquiry-form input:focus {
  border-color: var(--color-primary-600);
  background: white;
}

.btn-submit {
  width: 100%;
  height: 48px;
  background: var(--gradient-cta);
  color: white;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.form-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-gray-500);
}

.form-footer a {
  color: var(--color-accent-500);
  font-weight: 600;
}

@media (max-width: 360px) {
  .floating-consult {
    right: 10px;
    bottom: 104px;
  }
}
