/*
Custom Css
*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap");

/* 容器留白和背景可按需调整 */
#pospanda-services { }

/* 卡片外观 */
.service-card{
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}

.product-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.product-service-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.product-service-card__desc {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.product-service-card__cta {
  margin-top: auto;
}

/* 大号淡色编号 */
.service-card .card-no{
  position: absolute;
  top: 18px; left: 24px;
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: rgba(0,0,0,.05);   /* 很淡的编号色 */
  pointer-events: none;
  user-select: none;
}

/* 渐变线性图标（与截图的彩色线条一致） */
.icon-xxl{ font-size: 84px; line-height: 1; }
.icon-gradient{
  background: linear-gradient(135deg, #78b3ff, #1b76ed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 渐变线性图标2（与截图的彩色线条一致） */
.icon-xxl2{ font-size: 84px; line-height: 1; }
.icon-gradient2{
  background: linear-gradient(135deg, #f8fbff 0%, #9fd6ff 52%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 按钮（橙色胶囊） */
.btn-orange{
  background: #1b76ed;
  color: #fff;
  border: none;
}
.btn-orange:hover{ background:#e2721b; color:#fff; }

/* 按钮2（橙色胶囊） */
.btn-orange-2{
  background: #000000;
  color: #fff;
  border: none;
}
.btn-orange:hover{ background:#e2721b; color:#fff; }

/* 按钮3（绿色胶囊） */
.btn-orange-3{
  background: #ff9317;
  color: #fff;
  border: none;
}
.btn-orange-3:hover{ background:#161616; color:#fff; }

.btn-outline-orange {
  border: 2px solid #1b76ed;
  color: #1b76ed;
  background-color: transparent;
  transition: all 0.3s;
}
.btn-outline-orange:hover {
  background-color: #1b76ed;
  color: #fff;
}

@media (min-width: 992px) {
  #pospanda_main_nav .navbar-nav {
    gap: 0.1rem;
  }

  #pospanda_main_nav .nav-item {
    flex-shrink: 0;
  }

  #pospanda_main_nav .nav-link,
  #pospanda_main_nav .dropdown-item {
    white-space: nowrap;
  }

  #pospanda_main_nav .nav-link {
    font-size: 15px !important;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .navbar .language-switcher {
    gap: 6px;
  }

  .navbar .language-switcher__label {
    display: none;
  }

  .navbar .language-switcher__control,
  .navbar .language-switcher__select {
    min-width: 112px;
  }
}


/*------------------------------------------------------------------------------------------------------------*/

/* Hero 图在小屏完整显示 */
.hero-img {
  width: 100%;
  height: auto;
}

/* 手机端：减小文字和内边距，限制图片最大高度，避免被“挤” */
@media (max-width: 676px) {
  #pospanda-hero-carousel2 .row {
    padding: 1.25rem 0 !important; /* 替代 p-5 的大内边距 */
  }
  .hero-img {
    max-height: 45vh;            /* 让整张图都能看到 */
    object-fit: contain;         /* 保持比例，完整展示 */
  }
  #pospanda-hero-carousel2 h1 { font-size: 1.25rem; }
  #pospanda-hero-carousel2 h3 { font-size: 0.95rem; }
  #pospanda-hero-carousel2 p  { font-size: 0.75rem; }
}

.cookie-consent {
  position: fixed;
  inset: auto 20px 20px 20px;
  z-index: 1080;
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(16, 22, 33, 0.96);
  color: #f4f7fb;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 22px;
}

.cookie-consent__text {
  max-width: 720px;
}

.cookie-consent__title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.cookie-consent__desc,
.cookie-consent__meta {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(244, 247, 251, 0.9);
}

.cookie-consent__meta {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(244, 247, 251, 0.72);
}

.cookie-consent__link {
  color: #8fc6ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: 260px;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--primary {
  background: #28a745;
  color: #fff;
}

.cookie-btn--secondary {
  background: #ffffff;
  color: #112136;
}

.cookie-btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-link-btn {
  position: static;
  z-index: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 20px auto 28px;
  padding: 11px 15px;
  border: 1px solid rgba(17, 33, 54, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #112136;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(17, 33, 54, 0.12);
}

.cookie-footer-row {
  position: relative;
  align-items: center;
}

.cookie-footer-copy {
  flex: 1 1 100%;
  max-width: 100%;
}

.cookie-footer-copy p {
  margin-bottom: 0;
  text-align: center !important;
  line-height: 1.4;
}

.cookie-footer-action {
  position: absolute;
  right: 12px;
  top: 50%;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  z-index: 2;
}

.cookie-footer-action .cookie-link-btn {
  position: relative;
  margin: 0;
  max-width: none;
  white-space: nowrap;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f8f9fa;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
}

.cookie-link-btn[hidden] {
  display: none !important;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: none;
}

.cookie-modal.is-visible {
  display: block;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.58);
}

.cookie-modal__dialog {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 5vh auto;
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  color: #152238;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.cookie-modal__header,
.cookie-modal__footer {
  padding: 22px 24px;
  border-bottom: 1px solid #e7edf4;
}

.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid #e7edf4;
  border-bottom: 0;
}

.cookie-modal__title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
}

.cookie-modal__subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #526176;
  line-height: 1.6;
}

.cookie-modal__body {
  padding: 8px 24px 0;
}

.cookie-option {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #edf2f7;
}

.cookie-option:last-child {
  border-bottom: 0;
}

.cookie-option__title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

.cookie-option__desc {
  margin: 0;
  color: #526176;
  line-height: 1.55;
  font-size: 0.88rem;
}

.cookie-switch {
  position: relative;
  width: 56px;
  height: 32px;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch__slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #b7c3d3;
  transition: background-color 0.2s ease;
}

.cookie-switch__slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: #28a745;
}

.cookie-switch input:checked + .cookie-switch__slider::after {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-switch__slider {
  background: #112136;
  opacity: 0.9;
}

.cookie-page {
  max-width: 960px;
}

.cookie-page h1 {
  font-size: 2rem;
}

.cookie-page .lead {
  font-size: 1rem;
}

.cookie-page h2 {
  font-size: 1.1rem;
}

.cookie-page p,
.cookie-page li,
.cookie-page th,
.cookie-page td {
  font-size: 0.94rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switcher__label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2d3d;
  white-space: nowrap;
}

.language-switcher__control {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.language-switcher__icon {
  position: absolute;
  left: 12px;
  color: #4f5f73;
  pointer-events: none;
}

.language-switcher__select {
  min-width: 150px;
  padding-left: 34px;
  padding-right: 34px;
  border-radius: 999px;
  border: 1px solid #d6e0ea;
  background-color: #ffffff;
  color: #1f2d3d;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: none;
}

.language-switcher__select:focus {
  border-color: #1b76ed;
  box-shadow: 0 0 0 0.18rem rgba(27, 118, 237, 0.15);
}

.language-switcher--mobile {
  width: 100%;
  align-items: stretch;
  flex-direction: column;
}

.language-switcher--mobile .language-switcher__label {
  color: #526176;
  font-size: 0.86rem;
}

.language-switcher--mobile .language-switcher__control,
.language-switcher--mobile .language-switcher__select {
  width: 100%;
}

@media (max-width: 767px) {
  .cookie-consent {
    inset: auto 12px 12px 12px;
  }

  .cookie-consent__inner,
  .cookie-option,
  .cookie-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: stretch;
    min-width: 0;
  }

  .cookie-btn,
  .cookie-link-btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-link-btn {
    width: auto;
    max-width: calc(100% - 24px);
    margin: 16px auto 24px;
  }

  .cookie-footer-copy,
  .cookie-footer-action {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cookie-footer-action {
    position: static;
    justify-content: center;
    transform: none;
    margin-top: 10px;
  }

  .cookie-footer-action .cookie-link-btn {
    width: auto;
    max-width: none;
    margin: 0 auto;
  }

  .cookie-switch {
    width: 100%;
    height: auto;
  }

  .language-switcher {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .language-switcher__control,
  .language-switcher__select {
    width: 100%;
  }
}

#tempaltemo_footer .footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

#tempaltemo_footer .footer-address-item .fa-map-marker-alt {
  flex-shrink: 0;
  margin-top: 0.28rem;
}
/* ========================================================================== */
/* OpenClaw-inspired dark redesign */
/* ========================================================================== */

:root {
  --pp-bg: #050810;
  --pp-bg-2: #0a0f1a;
  --pp-bg-3: #111827;
  --pp-text: #f0f4ff;
  --pp-text-2: #8892b0;
  --pp-text-3: #5a6480;
  --pp-line: rgba(136, 146, 176, 0.16);
  --pp-coral: #7ec8ff;
  --pp-coral-2: #2563eb;
  --pp-cyan: #dbeafe;
  --pp-cyan-2: #38bdf8;
  --pp-white-soft: rgba(255, 255, 255, 0.92);
  --pp-white-glass: rgba(255, 255, 255, 0.08);
  --pp-white-line: rgba(255, 255, 255, 0.28);
  --pp-ink: #07111f;
  --pp-surface: rgba(10, 15, 26, 0.72);
  --pp-surface-strong: rgba(10, 15, 26, 0.84);
  --pp-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.48);
  --pp-shadow-md: 0 16px 42px rgba(0, 0, 0, 0.34);
  --pp-radius-xl: 30px;
  --pp-radius-lg: 22px;
  --pp-radius-md: 16px;
  --pp-font-body: "IBM Plex Sans", sans-serif;
  --pp-font-display: "Space Grotesk", sans-serif;
}

@keyframes ppTwinkle {
  0% {
    opacity: 0.38;
  }

  100% {
    opacity: 0.72;
  }
}

@keyframes ppGradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

body {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% -6%, rgba(77, 163, 255, 0.12), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(56, 189, 248, 0.1), transparent 28%),
    linear-gradient(180deg, #050810 0%, #090f19 48%, #060912 100%);
  color: var(--pp-text);
  font-family: var(--pp-font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.48), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.68), transparent),
    radial-gradient(2px 2px at 200px 60px, rgba(125, 211, 252, 0.5), transparent),
    radial-gradient(1px 1px at 250px 150px, rgba(77, 163, 255, 0.4), transparent),
    radial-gradient(2px 2px at 310px 55px, rgba(255, 255, 255, 0.45), transparent);
  background-size: 360px 210px;
  animation: ppTwinkle 8s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 18%, rgba(77, 163, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 60% at 82% 26%, rgba(56, 189, 248, 0.08), transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% 92%, rgba(77, 163, 255, 0.05), transparent 50%);
}

body nav,
body main,
body section,
body footer {
  position: relative;
  z-index: 1;
}

body,
body a,
body div,
body label,
body input,
body p,
body li {
  color: var(--pp-text);
}

body p,
body li,
body .text-muted {
  color: var(--pp-text-2) !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .h1,
body .h2,
body .h3 {
  color: var(--pp-text);
  font-family: var(--pp-font-display);
  font-weight: 700 !important;
  letter-spacing: -0.03em;
}

body .h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.6rem) !important;
  line-height: 1.04;
}

body .h2 {
  font-size: clamp(1.18rem, 1.9vw, 2rem) !important;
}

body a:hover {
  color: var(--pp-cyan);
}

::selection {
  background: var(--pp-coral);
  color: #050810;
}

.logo,
.navbar-brand.logo,
#tempaltemo_footer .logo {
  font-family: var(--pp-font-display) !important;
  letter-spacing: 0.08em;
}

.navbar-brand.logo {
  background: linear-gradient(135deg, #f0f4ff 0%, #9fd6ff 52%, #38bdf8 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ppGradientShift 8s ease infinite;
}

.text-success {
  color: var(--pp-cyan) !important;
}

body .text-dark,
body .navbar .text-dark {
  color: var(--pp-text) !important;
}

.bg-dark {
  background: rgba(5, 8, 16, 0.76) !important;
}

.bg-black {
  background: rgba(4, 6, 12, 0.92) !important;
}

.bg-light,
.feature-split-section,
.pospanda-feature-ring,
.ui-showcase,
section.bg-white.py-5,
section.bg-success.py-5 {
  background: transparent !important;
}

#pospanda_nav_top {
  background: rgba(5, 8, 16, 0.72) !important;
  border-bottom: 1px solid var(--pp-line);
  backdrop-filter: blur(14px);
}

#pospanda_nav_top .navbar-sm-brand,
#pospanda_nav_top .text-light,
#pospanda_nav_top i {
  color: var(--pp-text-2) !important;
}

body .navbar.navbar-light.shadow {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(10, 15, 26, 0.76) !important;
  border-bottom: 1px solid var(--pp-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(18px);
}

#pospanda_main_nav .nav-link,
#pospanda_main_nav .dropdown-item,
.navbar .dropdown-toggle::after,
.language-switcher__label,
.language-switcher__icon,
.language-switcher__select {
  color: var(--pp-text) !important;
}

#pospanda_main_nav .nav-link {
  position: relative;
  font-weight: 500 !important;
}

#pospanda_main_nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pp-coral), var(--pp-cyan));
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#pospanda_main_nav .nav-link:hover::after,
#pospanda_main_nav .nav-link.dropdown-toggle.show::after {
  opacity: 1;
  transform: scaleX(1);
}

#pospanda_main_nav .nav-link:hover,
#pospanda_main_nav .dropdown-item:hover,
#pospanda_main_nav .nav-link.dropdown-toggle.show {
  color: var(--pp-coral) !important;
}

.navbar-toggler {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pp-line) !important;
}

.navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.navbar .dropdown-toggle::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f0f4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
}

.dropdown-menu {
  background: rgba(10, 15, 26, 0.94);
  border: 1px solid var(--pp-line);
  border-radius: 18px;
  box-shadow: var(--pp-shadow-md);
  backdrop-filter: blur(18px);
}

.language-switcher__control,
.language-switcher__select,
.form-control,
.form-select,
.input-group-text {
  background: rgba(10, 15, 26, 0.82) !important;
  color: var(--pp-text) !important;
  border-color: var(--pp-line) !important;
}

.language-switcher__select:focus,
.form-control:focus,
.form-select:focus {
  border-color: rgba(77, 163, 255, 0.45) !important;
  box-shadow: 0 0 0 0.18rem rgba(77, 163, 255, 0.14) !important;
}

body .btn,
body .btn-close,
button.input-group-text,
.ui-btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

body .btn {
  border-radius: 999px;
  font-family: var(--pp-font-body);
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

.btn-orange,
.btn-success,
.btn-primary,
.btn-hero-primary,
.cta-btn,
button.input-group-text.bg-success {
  background: linear-gradient(135deg, var(--pp-coral) 0%, var(--pp-coral-2) 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(77, 163, 255, 0.22) !important;
  box-shadow: 0 12px 32px rgba(77, 163, 255, 0.24);
}

.btn-orange:hover,
.btn-success:hover,
.btn-primary:hover,
.btn-hero-primary:hover,
.cta-btn:hover,
button.input-group-text.bg-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(77, 163, 255, 0.32);
}

.btn-light,
.btn-dark,
.btn-outline-dark,
.btn-outline-light,
.btn-orange-2,
.pp-btn,
section.bg-success.py-5 .btn-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.92)) !important;
  color: var(--pp-ink) !important;
  border: 1px solid rgba(255, 255, 255, 0.84) !important;
  box-shadow:
    0 16px 34px rgba(3, 10, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-light:hover,
.btn-dark:hover,
.btn-outline-dark:hover,
.btn-outline-light:hover,
.btn-orange-2:hover,
.pp-btn:hover,
section.bg-success.py-5 .btn-light:hover {
  transform: translateY(-2px);
  background: #ffffff !important;
  color: #04101d !important;
  box-shadow:
    0 18px 38px rgba(3, 10, 20, 0.24),
    0 8px 24px rgba(126, 200, 255, 0.18);
}

.btn-orange-2 {
  box-shadow:
    0 16px 34px rgba(3, 10, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.btn-orange-3,
.btn-outline-orange,
.btn-outline-primary {
  background: rgba(126, 200, 255, 0.1) !important;
  border-color: rgba(126, 200, 255, 0.24) !important;
  color: var(--pp-cyan-2) !important;
  box-shadow: 0 10px 26px rgba(126, 200, 255, 0.12);
}

.btn-outline-orange:hover,
.btn-outline-primary:hover,
.btn-orange-3:hover {
  background: rgba(126, 200, 255, 0.18) !important;
  color: #ffffff !important;
}

.btn-close {
  filter: invert(1) brightness(2);
  opacity: 0.88;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

#pospanda-hero-carousel2 {
  margin: 28px 24px 0;
  border-radius: var(--pp-radius-xl);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow-lg);
  overflow: hidden;
}

#pospanda-hero-carousel2 .carousel-item {
  min-height: 720px;
  position: relative;
}

#pospanda-hero-carousel2 .carousel-item:nth-child(1) {
  background:
    radial-gradient(circle at 82% 22%, rgba(56, 189, 248, 0.12), transparent 20%),
    radial-gradient(circle at 14% 10%, rgba(77, 163, 255, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(5, 8, 16, 0.98) 0%, rgba(10, 15, 26, 0.94) 50%, rgba(8, 12, 22, 0.98) 100%);
}

#pospanda-hero-carousel2 .carousel-item:nth-child(2) {
  background:
    radial-gradient(circle at 78% 24%, rgba(77, 163, 255, 0.12), transparent 20%),
    radial-gradient(circle at 16% 12%, rgba(56, 189, 248, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(5, 8, 16, 0.98) 0%, rgba(10, 15, 26, 0.94) 50%, rgba(8, 12, 22, 0.98) 100%);
}

#pospanda-hero-carousel2 .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(77, 163, 255, 0.12), transparent 22%),
    radial-gradient(circle at 86% 20%, rgba(56, 189, 248, 0.1), transparent 22%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  opacity: 0.82;
}

#pospanda-hero-carousel2 .container,
#pospanda-hero-carousel2 .row {
  position: relative;
  z-index: 1;
  min-height: 720px;
  align-items: center;
}

#pospanda-hero-carousel2 .text-align-left {
  max-width: 620px;
  padding: 34px 36px;
  border-radius: 28px;
  background: rgba(10, 15, 26, 0.74);
  border: 1px solid var(--pp-line);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

#pospanda-hero-carousel2 .text-align-left .h1 {
  background: linear-gradient(135deg, #f0f4ff 0%, #9fd6ff 52%, #38bdf8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ppGradientShift 8s ease infinite;
}

#pospanda-hero-carousel2 .text-align-left .h2 {
  color: var(--pp-coral) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 1.4vw, 1.24rem) !important;
}

#pospanda-hero-carousel2 .text-align-left p,
#pospanda-hero-carousel2 .text-align-left li {
  color: var(--pp-text-2) !important;
}

.hero-img,
.partner-hero-img img,
.feature-center-img,
.phone-img,
.laptopmobile-img,
.download-card .card-img-top,
.shot {
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.4));
}

.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.18);
}

.carousel-indicators .active {
  background: linear-gradient(135deg, var(--pp-coral), var(--pp-cyan));
}

.carousel-control-prev,
.carousel-control-next {
  background: rgba(10, 15, 26, 0.72);
  border: 1px solid var(--pp-line);
  border-radius: 18px;
  color: var(--pp-text) !important;
}

.downloads-wrap,
.ui-rail,
.cta-banner,
.service-card,
.download-card,
.services-icon-wap,
.feature-item,
body .terms-card,
body .terms-toc,
body .cookie-page section,
body .cookie-page .table,
section.bg-white.py-5 .container,
#contact-form .shadow.p-4.h-100.text-center,
section.container.py-5 .p-3.shadow.rounded.h-100,
#contact-form .shadow.h-100 {
  background:
    linear-gradient(180deg, rgba(16, 22, 35, 0.92), rgba(8, 12, 22, 0.84)),
    linear-gradient(135deg, rgba(77, 163, 255, 0.06), transparent 42%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.05), transparent 42%);
  border: 1px solid var(--pp-line) !important;
  border-radius: var(--pp-radius-lg) !important;
  box-shadow: var(--pp-shadow-md);
  backdrop-filter: blur(12px);
}

.downloads-wrap,
.ui-rail,
.cta-banner {
  position: relative;
  overflow: hidden;
}

.downloads-wrap::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 0 0, rgba(77, 163, 255, 0.08), transparent 22%),
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.08), transparent 22%);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.downloads-wrap > *,
.cta-banner > * {
  position: relative;
  z-index: 1;
}

.service-card,
.download-card,
.feature-item,
.services-icon-wap,
body .terms-card,
body .terms-toc {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.download-card:hover,
.feature-item:hover,
.services-icon-wap:hover,
body .terms-card:hover,
body .terms-toc:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 163, 255, 0.28) !important;
  box-shadow: 0 18px 48px rgba(77, 163, 255, 0.14);
}

body .services-icon-wap:hover {
  background:
    linear-gradient(180deg, rgba(16, 22, 35, 0.94), rgba(8, 12, 22, 0.9)),
    linear-gradient(135deg, rgba(77, 163, 255, 0.08), transparent 42%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.06), transparent 42%) !important;
}

body .services-icon-wap:hover h3,
body .services-icon-wap:hover p,
body .services-icon-wap:hover i:not(.fa-phone):not(.fa-weixin):not(.fa-map-marker-alt):not(.fa-clock) {
  color: var(--pp-text) !important;
}

.feature-hover img.rounded-circle {
  width: min(240px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(13, 18, 30, 0.96), rgba(8, 12, 22, 0.9)),
    radial-gradient(circle at 30% 20%, rgba(77, 163, 255, 0.08), transparent 42%);
  border: 1px solid var(--pp-line) !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.service-card .card-no {
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.18), rgba(56, 189, 248, 0.08));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download-card .card-img-top {
  aspect-ratio: 1 / 0.9;
  object-fit: contain;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 18%, rgba(77, 163, 255, 0.08), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 21, 34, 0.96), rgba(8, 12, 22, 0.88));
}

.download-card .card-body a.h2,
.download-card .card-body .h2,
.service-card h3,
.feature-item h3,
.feature-item h5,
body .terms-card h3,
body .terms-toc a,
body .services-icon-wap h3 {
  color: var(--pp-text) !important;
}

.download-card .card-body p,
.download-card .card-body li,
.feature-item p,
body .terms-card p,
body .terms-card li,
body .services-icon-wap p {
  color: var(--pp-text-2) !important;
}

.download-card .card-body p a,
.download-card .card-body li a {
  color: var(--pp-coral) !important;
  text-decoration: none;
}

.download-card .card-body p a:hover,
.download-card .card-body li a:hover {
  color: var(--pp-cyan) !important;
}

.fi-icon,
body .services-icon-wap .h1 {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pp-coral), #1d4ed8);
  border: 1px solid rgba(77, 163, 255, 0.2);
  box-shadow: 0 14px 28px rgba(77, 163, 255, 0.22);
}

.feature-round {
  background: linear-gradient(135deg, var(--pp-cyan), var(--pp-cyan-2)) !important;
  border: 1px solid rgba(56, 189, 248, 0.16);
  box-shadow: 0 14px 28px rgba(56, 189, 248, 0.16);
}

.fi-icon i,
.feature-round i,
body .services-icon-wap .h1 i {
  color: #ffffff !important;
}

.phone-hero {
  max-width: 560px;
  padding: 26px 24px;
  isolation: isolate;
}

.phone-hero::before,
body .partner-hero-img,
.feature-center-img {
  background:
    linear-gradient(180deg, rgba(16, 22, 35, 0.9), rgba(8, 12, 22, 0.74)),
    linear-gradient(135deg, rgba(77, 163, 255, 0.06), transparent 48%);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow-md);
}

.phone-hero::before {
  content: "";
  position: absolute;
  inset: 12% 8% 14%;
  border-radius: 36px;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(77, 163, 255, 0.94), rgba(77, 163, 255, 0.18) 45%, rgba(56, 189, 248, 0.14) 100%);
  filter: blur(22px);
  z-index: 0;
}

.phone-img {
  max-width: 78%;
  transform: rotate(-10deg) translateY(10px);
}

.laptopmobile-img {
  max-width: 92%;
  transform: translateY(10px);
}

.feature-center-img {
  max-width: 360px;
  padding: 14px;
  border-radius: 30px;
}

.ui-rail {
  padding: 46px 70px;
}

.ui-track {
  gap: 28px;
  padding: 4px 2px;
}

.shot {
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(16, 22, 35, 0.96), rgba(8, 12, 22, 0.92)),
    radial-gradient(circle at 80% 0, rgba(56, 189, 248, 0.05), transparent 24%);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow-md);
}

.ui-btn {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(10, 15, 26, 0.88);
  border: 1px solid var(--pp-line);
  color: var(--pp-text);
}

.ui-btn:hover {
  color: var(--pp-coral);
  border-color: rgba(77, 163, 255, 0.28);
}

body .partner-hero,
.cta-banner,
section.bg-success.py-5 .container,
body[data-page="cookies"] .cookie-page > .mb-4:first-child {
  background:
    radial-gradient(circle at 0 0, rgba(77, 163, 255, 0.12), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(5, 8, 16, 0.98) 0%, rgba(10, 15, 26, 0.96) 100%) !important;
  border: 1px solid var(--pp-line) !important;
  box-shadow: var(--pp-shadow-lg);
}

body .partner-hero .hero-shape,
.cta-banner::after,
section.bg-success.py-5 .container::before,
body[data-page="cookies"] .cookie-page > .mb-4:first-child::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px, 38px 38px;
  opacity: 0.3;
}

body .partner-hero-title,
.cta-title,
.cta-banner h2,
section.bg-success.py-5 h2,
body[data-page="cookies"] .cookie-page > .mb-4:first-child h1 {
  color: var(--pp-text) !important;
}

body .partner-hero-sub,
.cta-banner p,
section.bg-success.py-5 p,
body[data-page="cookies"] .cookie-page > .mb-4:first-child .lead {
  color: var(--pp-text-2) !important;
}

body .partner-hero-badge,
body .meta-pill,
body[data-page="cookies"] .cookie-page > .mb-4:first-child .badge {
  background: rgba(77, 163, 255, 0.1) !important;
  border: 1px solid rgba(77, 163, 255, 0.22) !important;
  color: #9fd2ff !important;
  box-shadow: none;
}

body .terms-toc {
  position: sticky;
  top: 104px;
  padding: 24px 22px;
}

body .terms-toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
}

body .terms-toc a:hover {
  background: rgba(77, 163, 255, 0.08);
  color: var(--pp-coral) !important;
}

body[data-page="cookies"] .cookie-page {
  max-width: 1100px;
}

body[data-page="cookies"] .cookie-page section {
  padding: 28px 30px;
}

body[data-page="cookies"] .table {
  margin-bottom: 0;
}

body[data-page="cookies"] .table thead th {
  background: rgba(77, 163, 255, 0.12);
  color: var(--pp-text);
  border-color: var(--pp-line) !important;
}

body[data-page="cookies"] .table tbody tr:hover {
  background: rgba(77, 163, 255, 0.06);
}

.cookie-consent {
  background: rgba(10, 15, 26, 0.96);
  color: var(--pp-text);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow-lg);
}

.cookie-consent__title,
.cookie-modal__title,
.cookie-option__title {
  color: var(--pp-text);
}

.cookie-consent__desc,
.cookie-consent__meta,
.cookie-option__desc,
.cookie-modal__subtitle {
  color: var(--pp-text-2);
}

.cookie-consent__link,
.cookie-link-btn,
.cookie-footer-action .cookie-link-btn {
  color: var(--pp-coral) !important;
}

.cookie-modal__dialog {
  background: rgba(10, 15, 26, 0.98);
  color: var(--pp-text);
  border: 1px solid var(--pp-line);
}

.cookie-modal__header,
.cookie-modal__footer,
.cookie-option {
  border-color: var(--pp-line);
}

.cookie-btn--primary {
  background: linear-gradient(135deg, var(--pp-coral), var(--pp-coral-2));
}

.cookie-btn--secondary {
  background: rgba(126, 200, 255, 0.12);
  color: var(--pp-cyan-2);
}

.cookie-btn--ghost {
  color: var(--pp-text);
  border-color: var(--pp-line);
}

.cookie-switch__slider {
  background: rgba(136, 146, 176, 0.28);
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: var(--pp-coral);
}

#tempaltemo_footer {
  border-top: 1px solid var(--pp-line);
}

#tempaltemo_footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0, rgba(77, 163, 255, 0.12), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.78) 0%, rgba(4, 6, 12, 0.98) 100%);
  pointer-events: none;
}

#tempaltemo_footer > * {
  position: relative;
  z-index: 1;
}

#tempaltemo_footer h2,
#tempaltemo_footer p,
#tempaltemo_footer li,
#tempaltemo_footer .text-light {
  color: var(--pp-text) !important;
}

#tempaltemo_footer a {
  color: var(--pp-coral) !important;
}

#tempaltemo_footer a:hover {
  color: var(--pp-cyan) !important;
}

#tempaltemo_footer .w-100.bg-black {
  background: rgba(4, 6, 12, 0.88) !important;
  border-top: 1px solid var(--pp-line);
}

#tempaltemo_footer .footer-link-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

#tempaltemo_footer .footer-icons a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--pp-line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 24px rgba(2, 10, 18, 0.14);
}

.web-service-panel {
  position: relative;
  overflow: hidden;
}

.web-service-panel .feature-item {
  align-items: center;
}

.web-service-panel .feature-item h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 0.4rem !important;
}

.web-service-panel .feature-item p {
  line-height: 1.7;
}

.web-service-panel .fi-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

#pospanda-pos1 .feature-item {
  align-items: center;
}

#pospanda-pos1 .feature-item h3 {
  font-size: 1.04rem;
  line-height: 1.35;
  margin-bottom: 0.38rem !important;
}

#pospanda-pos1 .feature-item > div:last-child {
  padding-top: 4px;
}

#web-design .feature-item,
#pospanda-pos1 .feature-item,
#pospanda-pos1-features .feature-item,
#pospanda-check .feature-item {
  display: flex;
  align-items: center !important;
  gap: 16px;
  min-height: 108px;
  padding: 18px 22px;
  border-radius: 26px !important;
}

#web-design .feature-item > div:last-child,
#pospanda-pos1 .feature-item > div:last-child,
#pospanda-pos1-features .feature-item > div:last-child,
#pospanda-check .feature-item > div:last-child {
  padding-top: 6px;
}

#web-design .feature-item h3,
#pospanda-pos1 .feature-item h3,
#pospanda-check .feature-item h3,
#pospanda-pos1-features .feature-item h5 {
  margin-bottom: 0.35rem !important;
  font-size: 1.04rem;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

#web-design .feature-item p,
#pospanda-pos1 .feature-item p,
#pospanda-check .feature-item p,
#pospanda-pos1-features .feature-item p {
  margin-bottom: 0 !important;
  line-height: 1.72;
}

#web-design .feature-item .fi-icon,
#pospanda-pos1 .feature-item .fi-icon,
#pospanda-check .feature-item .fi-icon,
#pospanda-pos1-features .feature-item .feature-round {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  margin-right: 0 !important;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pp-coral), #1d4ed8) !important;
  border: 1px solid rgba(77, 163, 255, 0.24);
  box-shadow: 0 14px 28px rgba(77, 163, 255, 0.22);
}

#web-design .feature-item .fi-icon i,
#pospanda-pos1 .feature-item .fi-icon i,
#pospanda-check .feature-item .fi-icon i,
#pospanda-pos1-features .feature-item .feature-round i {
  color: #ffffff !important;
}

.web-service-panel::before,
.web-preview-stage::before,
.demo-browser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.2;
  pointer-events: none;
}

.web-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(126, 200, 255, 0.1);
  border: 1px solid rgba(126, 200, 255, 0.18);
  color: var(--pp-coral);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-kicker i {
  color: var(--pp-cyan-2);
}

.web-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.web-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pp-line);
  color: var(--pp-text);
  font-size: 0.88rem;
  font-weight: 600;
}

.web-pill i {
  color: var(--pp-coral);
}

.web-service-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.web-metric-card {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pp-line);
  box-shadow: 0 12px 28px rgba(3, 10, 20, 0.12);
}

.web-metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pp-text);
  font-size: 1.35rem;
  font-family: var(--pp-font-display);
}

.web-metric-card span {
  color: var(--pp-text-2);
  font-size: 0.88rem;
}

.web-preview-stage {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(126, 200, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(56, 189, 248, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(12, 18, 30, 0.98), rgba(6, 10, 20, 0.96));
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow-md);
  overflow: hidden;
}

.web-preview-window {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 26, 42, 0.98), rgba(9, 14, 24, 0.94)),
    radial-gradient(circle at 100% 0, rgba(126, 200, 255, 0.08), transparent 24%);
  box-shadow: 0 20px 48px rgba(2, 8, 18, 0.28);
}

.web-preview-window--main {
  width: 100%;
}

.web-preview-window--floating {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(46%, 290px);
}

.web-preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.web-preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.web-preview-bar span:first-child {
  background: #7ec8ff;
}

.web-preview-bar span:nth-child(2) {
  background: #38bdf8;
}

.web-preview-hero {
  padding: 22px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(126, 200, 255, 0.18), rgba(37, 99, 235, 0.12)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 200, 255, 0.16);
}

.web-preview-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--pp-coral);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.web-preview-hero h3 {
  margin-bottom: 8px;
}

.web-preview-hero p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.web-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.web-preview-abstract,
.web-preview-orbit {
  position: relative;
  overflow: hidden;
}

.web-preview-abstract {
  min-height: 372px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(126, 200, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(56, 189, 248, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(53, 81, 119, 0.38), rgba(19, 32, 57, 0.18)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 200, 255, 0.14);
}

.web-preview-abstract__halo,
.web-preview-orbit__halo {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.web-preview-abstract__halo--one {
  top: 18px;
  left: 44%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(126, 200, 255, 0.12), transparent 72%);
}

.web-preview-abstract__halo--two {
  right: -26px;
  bottom: 12px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.12), transparent 72%);
}

.web-preview-abstract__toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.web-preview-abstract__tool {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(126, 200, 255, 0.2), rgba(37, 99, 235, 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(126, 200, 255, 0.14);
  box-shadow: 0 10px 26px rgba(8, 18, 36, 0.2);
}

.web-preview-abstract__tool i,
.web-preview-abstract__tile-icon i,
.web-preview-orbit__module i {
  color: rgba(246, 250, 255, 0.95);
}

.web-preview-abstract__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 76px;
  gap: 16px;
  align-items: stretch;
}

.web-preview-abstract__rail,
.web-preview-abstract__side {
  display: flex;
  flex-direction: column;
}

.web-preview-abstract__rail {
  gap: 12px;
  justify-content: center;
}

.web-preview-abstract__rail span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(202, 219, 243, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.web-preview-abstract__rail span:nth-child(2),
.web-preview-abstract__rail span:nth-child(4) {
  background: rgba(126, 200, 255, 0.46);
}

.web-preview-abstract__canvas {
  position: relative;
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
  min-height: 196px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(54, 81, 117, 0.3), rgba(17, 27, 46, 0.12)),
    rgba(8, 16, 32, 0.44);
  border: 1px solid rgba(126, 200, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.web-preview-abstract__glow {
  position: absolute;
  left: 30px;
  top: 24px;
  width: 210px;
  height: 150px;
  border-radius: 36px;
  background: radial-gradient(circle at 40% 40%, rgba(126, 200, 255, 0.16), transparent 70%);
  filter: blur(4px);
}

.web-preview-abstract__focus {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 152px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(17, 30, 52, 0.96), rgba(10, 18, 33, 0.96)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(126, 200, 255, 0.1);
  box-shadow: 0 18px 34px rgba(7, 15, 30, 0.22);
}

.web-preview-abstract__focus-ring {
  position: absolute;
  inset: 20px;
  border-radius: 26px;
  border: 1px solid rgba(126, 200, 255, 0.1);
  background: radial-gradient(circle at 36% 36%, rgba(126, 200, 255, 0.12), transparent 70%);
}

.web-preview-abstract__focus-core {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(126, 200, 255, 0.28), rgba(29, 78, 216, 0.18)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(126, 200, 255, 0.16);
}

.web-preview-abstract__focus-core i,
.web-preview-orbit__core i {
  color: rgba(248, 251, 255, 0.96);
  font-size: 1.65rem;
}

.web-preview-abstract__stream,
.web-preview-abstract__controls,
.web-preview-abstract__tile-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.web-preview-abstract__stream {
  align-self: end;
  padding-top: 10px;
}

.web-preview-abstract__line,
.web-preview-abstract__mini,
.web-preview-orbit__beam,
.web-preview-orbit__module span {
  display: block;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(238, 244, 255, 0.92), rgba(126, 200, 255, 0.4));
}

.web-preview-abstract__line {
  height: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.web-preview-abstract__line--xl {
  width: 94%;
}

.web-preview-abstract__line--lg {
  width: 82%;
}

.web-preview-abstract__line--md {
  width: 66%;
}

.web-preview-abstract__line--sm {
  width: 48%;
}

.web-preview-abstract__line--xs {
  width: 34%;
}

.web-preview-abstract__controls {
  align-self: end;
  gap: 10px;
}

.web-preview-abstract__pill {
  display: block;
  width: 58%;
  height: 12px;
  border-radius: 999px;
  background: rgba(193, 214, 235, 0.2);
}

.web-preview-abstract__pill--wide {
  width: 84%;
}

.web-preview-abstract__pill--short {
  width: 34%;
}

.web-preview-abstract__side {
  gap: 12px;
  align-items: stretch;
  justify-content: center;
}

.web-preview-abstract__orb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(223, 236, 255, 0.18);
}

.web-preview-abstract__orb--solid {
  background: linear-gradient(135deg, rgba(126, 200, 255, 1), rgba(29, 78, 216, 0.82));
}

.web-preview-abstract__mini {
  height: 10px;
  opacity: 0.9;
}

.web-preview-abstract__mini--long {
  width: 100%;
}

.web-preview-abstract__mini:not(.web-preview-abstract__mini--long):not(.web-preview-abstract__mini--short) {
  width: 72%;
}

.web-preview-abstract__mini--short {
  width: 42%;
}

.web-preview-abstract__tiles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.web-preview-abstract__tile {
  min-height: 108px;
  padding: 14px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 17, 29, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.web-preview-abstract__tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(126, 200, 255, 0.96), rgba(29, 78, 216, 0.82));
  box-shadow: 0 14px 28px rgba(35, 93, 201, 0.18);
}

.web-preview-abstract__tile-stack {
  gap: 10px;
}

.web-preview-orbit {
  min-height: 336px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 24%, rgba(126, 200, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(26, 36, 56, 0.96), rgba(10, 17, 30, 0.96));
  border: 1px solid rgba(126, 200, 255, 0.12);
}

.web-preview-orbit__halo {
  right: -40px;
  top: 18px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(126, 200, 255, 0.12), transparent 70%);
}

.web-preview-orbit__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.web-preview-orbit__lens {
  position: relative;
  min-height: 176px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(14, 24, 42, 0.96), rgba(9, 15, 28, 0.98)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(126, 200, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.web-preview-orbit__ring {
  position: absolute;
  border-radius: 32px;
  border: 1px solid rgba(126, 200, 255, 0.1);
}

.web-preview-orbit__ring--outer {
  inset: 24px;
}

.web-preview-orbit__ring--inner {
  inset: 42px;
  background: radial-gradient(circle at 40% 36%, rgba(126, 200, 255, 0.12), transparent 70%);
}

.web-preview-orbit__core {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(126, 200, 255, 0.28), rgba(29, 78, 216, 0.18)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 200, 255, 0.16);
  box-shadow: 0 18px 30px rgba(10, 22, 44, 0.3);
}

.web-preview-orbit__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.web-preview-orbit__beam {
  height: 14px;
}

.web-preview-orbit__beam--a {
  width: 58%;
}

.web-preview-orbit__beam--b {
  width: 42%;
}

.web-preview-orbit__beam--c {
  width: 28%;
}

.web-preview-orbit__dots {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.web-preview-orbit__dots span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(223, 236, 255, 0.16);
}

.web-preview-orbit__dots span:first-child {
  background: linear-gradient(135deg, rgba(126, 200, 255, 1), rgba(29, 78, 216, 0.82));
}

.web-preview-orbit__modules {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.web-preview-orbit__module {
  min-height: 78px;
  padding: 14px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.web-preview-orbit__module span {
  width: 72%;
  height: 10px;
}

.web-preview-scene,
.web-preview-scene-mini {
  position: relative;
}

.web-preview-scene {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.web-preview-scene__frame {
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 22%, rgba(126, 200, 255, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(56, 79, 112, 0.28), rgba(18, 30, 52, 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(126, 200, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.web-preview-scene__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #f8fbff;
}

.web-preview-scene__dock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-preview-scene__dock-item,
.web-preview-scene-mini__badge,
.web-preview-scene-mini__module {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(126, 200, 255, 0.26), rgba(29, 78, 216, 0.14)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 200, 255, 0.16);
  box-shadow: 0 12px 24px rgba(9, 18, 34, 0.18);
}

.web-preview-scene__dock-item i,
.web-preview-scene-mini__badge i,
.web-preview-scene-mini__module i,
.web-preview-scene-mini__card--accent i {
  color: rgba(247, 251, 255, 0.96);
}

.web-preview-scene-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.web-preview-scene-mini__top,
.web-preview-scene-mini__modules {
  display: flex;
  gap: 10px;
}

.web-preview-scene-mini__canvas {
  min-height: 158px;
  padding: 16px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 12px;
  align-items: stretch;
  background:
    radial-gradient(circle at 26% 22%, rgba(126, 200, 255, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(48, 70, 104, 0.24), rgba(13, 24, 42, 0.14)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(126, 200, 255, 0.12);
}

.web-preview-scene-mini__card {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 28, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.web-preview-scene-mini__card:first-child {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.web-preview-scene-mini__card:first-child span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(239, 245, 255, 0.92), rgba(126, 200, 255, 0.4));
}

.web-preview-scene-mini__card:first-child span:nth-child(1) {
  width: 84%;
}

.web-preview-scene-mini__card:first-child span:nth-child(2) {
  width: 62%;
}

.web-preview-scene-mini__card:first-child span:nth-child(3) {
  width: 44%;
}

.web-preview-scene-mini__card--accent {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 40% 30%, rgba(126, 200, 255, 0.18), transparent 56%),
    linear-gradient(180deg, rgba(17, 28, 48, 0.96), rgba(10, 16, 28, 0.96));
}

.web-preview-scene-mini__card--accent i {
  font-size: 1.4rem;
}

.web-preview-direct {
  padding: 10px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 16% 16%, rgba(126, 200, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 200, 255, 0.14);
}

.web-preview-direct__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  background: #ffffff;
}

.web-preview-direct--mini .web-preview-direct__image {
  aspect-ratio: 4 / 3;
}

@media (max-width: 991px) {
  .web-preview-scene__frame {
    padding: 12px;
  }

  .web-preview-scene-mini__canvas {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .web-preview-direct {
    padding: 8px;
  }
}

.web-demo-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pp-line);
  color: var(--pp-text-2);
}

.shop-demo-card {
  height: 100%;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.shop-demo-card__preview {
  margin-bottom: 22px;
}

.demo-browser {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 22, 36, 0.98), rgba(8, 12, 20, 0.96)),
    radial-gradient(circle at 100% 0, var(--demo-accent-soft, rgba(126, 200, 255, 0.16)), transparent 25%);
  box-shadow: 0 18px 40px rgba(2, 8, 18, 0.24);
}

.demo-browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.demo-browser__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.demo-browser__bar span:first-child {
  background: var(--demo-accent, #7ec8ff);
}

.demo-browser__bar span:nth-child(2) {
  background: rgba(255, 255, 255, 0.78);
}

.demo-browser__body {
  padding: 18px;
}

.demo-browser__hero {
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, var(--demo-accent-soft, rgba(126, 200, 255, 0.16)), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-browser__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--demo-accent, #7ec8ff);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-browser__hero h3 {
  margin-bottom: 6px;
}

.demo-browser__hero p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

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

.demo-browser__cards span {
  display: block;
  min-height: 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-demo-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.shop-demo-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--demo-accent-soft, rgba(126, 200, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--pp-text);
  font-size: 0.8rem;
  font-weight: 600;
}

.shop-demo-card__tag i {
  color: var(--demo-accent, #7ec8ff);
}

.shop-demo-card__title {
  margin-bottom: 10px;
}

.shop-demo-card__desc {
  min-height: 72px;
  margin-bottom: 16px;
}

.shop-demo-card__list {
  padding-left: 0;
  margin: 0 0 20px;
  list-style: none;
}

.shop-demo-card__list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--pp-text-2);
  font-size: 0.9rem;
}

.shop-demo-card__list li i {
  margin-top: 4px;
  color: var(--demo-accent, #7ec8ff);
}

.shop-demo-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.web-service-steps .service-card {
  padding: 28px 24px !important;
}

.web-service-steps .service-card h3 {
  font-size: 1.15rem;
}

@media (max-width: 991px) {
  #pospanda-hero-carousel2 {
    margin: 16px 12px 0;
  }

  #pospanda-hero-carousel2 .carousel-item,
  #pospanda-hero-carousel2 .container,
  #pospanda-hero-carousel2 .row {
    min-height: 620px;
  }

  #pospanda-hero-carousel2 .text-align-left {
    padding: 24px 22px;
    background: rgba(10, 15, 26, 0.84);
  }

  body .terms-toc {
    position: static;
  }

  .ui-rail {
    padding: 32px 56px;
  }

  .web-service-metrics {
    grid-template-columns: 1fr;
  }

  .web-preview-window--main,
  .web-preview-window--floating {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .web-preview-window--floating {
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  body::before {
    background-size: 280px 180px;
  }

  body .h1 {
    font-size: 2rem !important;
  }

  body .h2 {
    font-size: 1.15rem !important;
  }

  #pospanda-hero-carousel2 .carousel-item,
  #pospanda-hero-carousel2 .container,
  #pospanda-hero-carousel2 .row {
    min-height: auto;
  }

  .feature-hover img.rounded-circle {
    width: min(210px, 100%);
    padding: 14px;
  }

  .phone-hero {
    padding: 18px 10px;
  }

  .hero-blob {
    width: 320px;
    height: 320px;
  }

  .phone-img {
    max-width: 84%;
  }

  .feature-center-img {
    max-width: 280px;
  }

  .ui-rail {
    padding: 22px 46px;
  }

  .ui-track {
    gap: 20px;
  }

  .shot {
    padding: 8px;
  }

  .web-preview-stage {
    min-height: auto;
    padding: 18px;
  }

  .web-preview-grid,
  .demo-browser__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-preview-abstract,
  .web-preview-orbit {
    min-height: auto;
    padding: 16px;
  }

  .web-preview-abstract__hero,
  .web-preview-orbit__top,
  .web-preview-abstract__canvas {
    grid-template-columns: 1fr;
  }

  .web-preview-abstract__hero {
    gap: 12px;
  }

  .web-preview-abstract__rail,
  .web-preview-abstract__side {
    flex-direction: row;
    align-items: center;
  }

  .web-preview-abstract__rail {
    justify-content: flex-start;
  }

  .web-preview-abstract__side {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .web-preview-abstract__canvas,
  .web-preview-orbit__lens {
    min-height: 160px;
  }

  .web-preview-abstract__focus {
    grid-row: auto;
    min-height: 126px;
  }

  .web-preview-abstract__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.shop-demo-card {
  padding: 22px;
  }
}

.demo-page {
  --demo-page-accent: #7ec8ff;
  --demo-page-accent-2: #8ff4d2;
  --demo-page-soft: rgba(126, 200, 255, 0.16);
}

.demo-page--store {
  --demo-page-accent: #7ec8ff;
  --demo-page-accent-2: #8ff4d2;
  --demo-page-soft: rgba(126, 200, 255, 0.16);
}

.demo-page--mall {
  --demo-page-accent: #68b6ff;
  --demo-page-accent-2: #ffd36a;
  --demo-page-soft: rgba(104, 182, 255, 0.18);
}

.demo-page--brand {
  --demo-page-accent: #8fd3ff;
  --demo-page-accent-2: #9edfb5;
  --demo-page-soft: rgba(143, 211, 255, 0.16);
}

.demo-page--restaurant {
  --demo-page-accent: #57b4ff;
  --demo-page-accent-2: #ffb468;
  --demo-page-soft: rgba(87, 180, 255, 0.16);
}

.demo-hub-card .shop-demo-card__desc {
  min-height: 88px;
}

.demo-site-shell {
  position: relative;
}

.demo-site-wrap {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 32px;
  border: 1px solid var(--pp-line);
  background:
    radial-gradient(circle at top right, rgba(126, 200, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(10, 15, 26, 0.94), rgba(6, 10, 18, 0.96));
  box-shadow: var(--pp-shadow-lg);
}

.demo-site-wrap::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--demo-page-soft), transparent 70%);
  pointer-events: none;
}

.demo-site-crumb {
  margin-bottom: 18px;
  color: var(--demo-page-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.demo-site-crumb a {
  color: inherit;
  text-decoration: none;
}

.demo-site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.demo-site-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--demo-page-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-site-title {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.94;
}

.demo-site-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--pp-text-2);
  font-size: 1rem;
  line-height: 1.8;
}

.demo-site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.demo-site-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.demo-site-stat {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.demo-site-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pp-text);
  font-size: 0.96rem;
}

.demo-site-stat span {
  color: var(--pp-text-2);
  font-size: 0.88rem;
  line-height: 1.6;
}

.demo-site-preview {
  position: relative;
  padding: 18px;
  min-height: 390px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(9, 15, 25, 0.96), rgba(6, 10, 18, 0.98)),
    radial-gradient(circle at top right, var(--demo-page-soft), transparent 24%);
  box-shadow: 0 24px 64px rgba(2, 8, 18, 0.34);
}

.demo-site-preview::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
  pointer-events: none;
}

.demo-site-browser {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.demo-site-browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.demo-site-browser__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.demo-site-browser__bar span:first-child {
  background: var(--demo-page-accent);
}

.demo-site-browser__body {
  padding: 16px;
}

.demo-site-browser__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--demo-page-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-site-browser__hero {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, var(--demo-page-soft), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.demo-site-browser__hero h3 {
  margin-bottom: 8px;
}

.demo-site-browser__hero p {
  margin-bottom: 0;
  color: var(--pp-text-2);
  font-size: 0.9rem;
}

.demo-site-browser__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.demo-site-browser__chips span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pp-text);
  font-size: 0.78rem;
  font-weight: 600;
}

.demo-site-browser__grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.demo-site-browser__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-site-browser__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.demo-site-browser__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-site-browser__card {
  min-height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.demo-site-browser__split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
  margin-top: 16px;
}

.demo-site-browser__stack {
  display: grid;
  gap: 12px;
}

.demo-site-browser__stack .demo-site-browser__card {
  min-height: 86px;
}

.demo-site-section {
  margin-top: 22px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--pp-line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--pp-shadow-md);
}

.demo-site-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.demo-site-section__head p {
  margin-bottom: 0;
  color: var(--pp-text-2);
}

.demo-site-section__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--demo-page-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.demo-site-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.demo-site-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-site-card {
  height: 100%;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.demo-site-card--highlight {
  background:
    linear-gradient(145deg, var(--demo-page-soft), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.demo-site-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--demo-page-accent), var(--demo-page-accent-2));
  color: #07111f;
  font-size: 1.2rem;
}

.demo-site-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--demo-page-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-site-card h3 {
  margin-bottom: 10px;
}

.demo-site-card p {
  margin-bottom: 0;
  color: var(--pp-text-2);
  line-height: 1.7;
}

.demo-site-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-site-list li {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.demo-site-list li i {
  margin-top: 4px;
  color: var(--demo-page-accent);
}

.demo-site-list li span {
  color: var(--pp-text-2);
  line-height: 1.7;
}

.demo-site-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, var(--demo-page-soft), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.demo-site-banner p {
  margin-bottom: 0;
  color: var(--pp-text-2);
}

.demo-site-banner__box {
  min-height: 150px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 22, 0.62);
  display: grid;
  place-items: center;
  color: var(--demo-page-accent);
  font-size: 1.8rem;
}

.demo-site-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.demo-site-menu__item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.demo-site-menu__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pp-text);
}

.demo-site-menu__item span {
  display: block;
  color: var(--pp-text-2);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .demo-site-hero,
  .demo-site-banner {
    grid-template-columns: 1fr;
  }

  .demo-site-stats,
  .demo-site-grid,
  .demo-site-grid--3,
  .demo-site-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-site-browser__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .demo-site-wrap,
  .demo-site-section {
    padding: 22px;
  }

  .demo-site-title {
    font-size: 2.5rem;
  }

  .demo-site-stats,
  .demo-site-grid,
  .demo-site-grid--3,
  .demo-site-menu,
  .demo-site-browser__grid--3,
  .demo-site-browser__grid--4,
  .demo-site-browser__grid--2,
  .demo-site-browser__split {
    grid-template-columns: 1fr;
  }
}

.web-solutions-page {
  position: relative;
}

.web-solutions-page .container {
  position: relative;
  z-index: 1;
}

.web-solutions-hero {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--pp-line);
  background:
    radial-gradient(circle at top right, rgba(126, 200, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(8, 14, 24, 0.96), rgba(6, 11, 20, 0.88));
  box-shadow: var(--pp-shadow-lg);
}

.web-solutions-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -42% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 200, 255, 0.2), transparent 72%);
  pointer-events: none;
}

.web-solutions-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--pp-cyan);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-solutions-badge i {
  color: var(--pp-coral);
}

.web-solutions-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.web-solutions-stat {
  height: 100%;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.web-solutions-stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--pp-text);
  font-family: var(--pp-font-display);
  font-size: 1rem;
}

.web-solutions-stat span {
  display: block;
  color: var(--pp-text-2);
  line-height: 1.7;
}

.web-solutions-hero-visual {
  position: relative;
  padding-left: 34px;
}

.web-solutions-browser {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 13, 22, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.web-solutions-browser__bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.web-solutions-browser__bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.web-solutions-browser__bar span:first-child {
  background: #7ec8ff;
}

.web-solutions-browser__body {
  padding: 24px;
}

.web-solutions-browser__hero {
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(126, 200, 255, 0.2), rgba(37, 99, 235, 0.16)),
    rgba(255, 255, 255, 0.04);
}

.web-solutions-browser__hero h3 {
  margin-bottom: 10px;
  color: var(--pp-text);
  font-family: var(--pp-font-display);
}

.web-solutions-browser__hero p {
  margin-bottom: 0;
  color: var(--pp-text-2);
  line-height: 1.7;
}

.web-solutions-browser__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pp-cyan);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.web-solutions-browser__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.web-solutions-browser__chips span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pp-text);
  font-size: 0.82rem;
}

.web-solutions-browser__grid {
  display: grid;
  gap: 14px;
}

.web-solutions-browser__grid + .web-solutions-browser__grid {
  margin-top: 14px;
}

.web-solutions-browser__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-solutions-browser__grid--2 {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
}

.web-solutions-browser__card {
  min-height: 88px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.web-solutions-browser__card--wide {
  min-height: 132px;
  padding-right: 18px;
}

.web-solutions-browser__card i {
  color: rgba(116, 193, 255, 0.95);
  font-size: 0.86rem;
}

.web-solutions-browser__card strong {
  color: rgba(246, 250, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.web-solutions-browser__card span {
  color: rgba(193, 210, 231, 0.82);
  font-size: 0.66rem;
  line-height: 1.46;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-solutions-browser__card--wide span {
  -webkit-line-clamp: 3;
}

.web-solutions-mini-panel {
  position: absolute;
  right: -6px;
  bottom: 24px;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 16, 28, 0.86);
  box-shadow: var(--pp-shadow-md);
}

.web-solutions-mini-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pp-text);
}

.web-solutions-mini-panel span {
  display: block;
  color: var(--pp-text-2);
  line-height: 1.7;
}

.web-solutions-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.web-solutions-overview-card,
.web-solutions-grid-card,
.web-plan-card,
.web-solutions-faq__item {
  height: 100%;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--pp-line);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 22, 0.84);
  box-shadow: var(--pp-shadow-md);
}

.web-solutions-overview-card__icon,
.web-solutions-grid-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pp-coral), var(--pp-coral-2));
  color: #07111f;
  font-size: 1.3rem;
}

.web-solutions-overview-card h3,
.web-solutions-grid-card h3,
.web-plan-card h3,
.web-solutions-faq__item h3 {
  margin-bottom: 12px;
  color: var(--pp-text);
  font-family: var(--pp-font-display);
}

.web-solutions-overview-card p,
.web-solutions-grid-card p,
.web-plan-card p,
.web-solutions-faq__item p {
  margin-bottom: 0;
  color: var(--pp-text-2);
  line-height: 1.75;
}

.web-solutions-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid var(--pp-line);
  background:
    radial-gradient(circle at top left, rgba(126, 200, 255, 0.12), transparent 34%),
    rgba(8, 13, 22, 0.76);
  box-shadow: var(--pp-shadow-md);
}

.web-solutions-feature--reverse .web-solutions-feature__content {
  order: 2;
}

.web-solutions-feature--reverse .web-solutions-feature__visual {
  order: 1;
}

.web-solutions-title-locale {
  margin-bottom: 0.8rem !important;
}

html[lang^="zh"] .web-solutions-title-locale {
  white-space: nowrap;
  font-size: clamp(1.32rem, 1.65vw, 1.62rem) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.01em;
}

html:not([lang^="zh"]) .web-solutions-title-locale {
  max-width: none;
  white-space: normal;
  font-size: clamp(1.42rem, 1.92vw, 1.72rem) !important;
  line-height: 1.18 !important;
  overflow: visible;
}

.web-solutions-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pp-coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.web-solutions-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.web-solutions-checklist li {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.web-solutions-checklist li i {
  margin-top: 4px;
  color: var(--pp-coral);
}

.web-solutions-checklist li span {
  color: var(--pp-text-2);
  line-height: 1.7;
}

.web-solutions-showcase,
.web-solutions-stack {
  height: 100%;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.web-solutions-showcase__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.web-solutions-showcase__top span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--pp-cyan);
  font-size: 0.76rem;
  text-align: center;
}

.web-solutions-showcase__hero {
  min-height: 182px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(126, 200, 255, 0.22), rgba(37, 99, 235, 0.16)),
    rgba(255, 255, 255, 0.04);
}

.web-solutions-showcase__hero-tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(232, 244, 255, 0.92);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.web-solutions-showcase__hero h4 {
  margin: 0;
  color: var(--pp-text);
  font-size: 1.02rem;
  line-height: 1.4;
}

.web-solutions-showcase__hero p {
  margin: 0;
  color: rgba(209, 224, 243, 0.84);
  font-size: 0.74rem;
  line-height: 1.6;
}

.web-solutions-showcase__kpi {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.web-solutions-showcase__kpi span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(7, 15, 30, 0.32);
  color: rgba(232, 245, 255, 0.88);
  font-size: 0.66rem;
  line-height: 1.4;
}

.web-solutions-showcase__kpi i {
  color: var(--pp-cyan);
  font-size: 0.68rem;
}

.web-solutions-showcase__row,
.web-solutions-showcase__bottom {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.web-solutions-showcase__row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-solutions-showcase__bottom {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.web-solutions-showcase__row div,
.web-solutions-showcase__bottom div {
  min-height: 84px;
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.web-solutions-showcase__tile i {
  color: rgba(128, 208, 255, 0.92);
  font-size: 0.74rem;
}

.web-solutions-showcase__tile strong {
  color: rgba(245, 250, 255, 0.95);
  font-size: 0.75rem;
  line-height: 1.3;
}

.web-solutions-showcase__tile span {
  color: rgba(197, 214, 235, 0.82);
  font-size: 0.65rem;
  line-height: 1.5;
}

.web-solutions-showcase__tile--wide span {
  max-width: 95%;
}

.web-solutions-stack {
  display: grid;
  gap: 14px;
}

.web-solutions-stack__card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(126, 200, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.web-solutions-stack__card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--pp-text);
}

.web-solutions-stack__card span {
  display: block;
  color: var(--pp-text-2);
  line-height: 1.7;
}

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

.web-solutions-grid--commerce {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* WEBDEMO support cards: reduce icon size for better visual balance */
.web-solutions-page .service-card .icon-xxl {
  font-size: 62px;
  line-height: 1;
}

/* WEBDEMO support cards: add inner spacing and keep copy readable */
.web-solutions-page .service-card:not(.web-plan-card) {
  padding: 30px 24px 22px;
}

.web-solutions-page .service-card:not(.web-plan-card) p {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.web-plan-card {
  position: relative;
}

.web-plan-card--featured {
  background:
    radial-gradient(circle at top, rgba(126, 200, 255, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 22, 0.9);
}

.web-solutions-plan-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.web-solutions-plan-list li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pp-text-2);
}

.web-solutions-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1199px) {
  .web-solutions-stats,
  .web-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-solutions-grid--commerce {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .web-solutions-hero,
  .web-solutions-feature {
    padding: 28px;
  }

  .web-solutions-hero-visual {
    padding-left: 0;
  }

  .web-solutions-mini-panel {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .web-solutions-overview,
  .web-solutions-feature,
  .web-solutions-faq {
    grid-template-columns: 1fr;
  }

  .web-solutions-grid--commerce {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .web-solutions-hero {
    padding: 24px;
    border-radius: 28px;
  }

  html[lang^="zh"] .web-solutions-title-locale {
    white-space: nowrap;
    font-size: clamp(1.08rem, 4.3vw, 1.26rem) !important;
  }

  .web-solutions-feature,
  .web-solutions-showcase,
  .web-solutions-stack,
  .web-solutions-overview-card,
  .web-solutions-grid-card,
  .web-plan-card,
  .web-solutions-faq__item {
    padding: 22px;
  }

  .web-solutions-stats,
  .web-solutions-grid,
  .web-solutions-grid--commerce,
  .web-solutions-showcase__top,
  .web-solutions-showcase__row,
  .web-solutions-showcase__bottom,
  .web-solutions-browser__grid--3,
  .web-solutions-browser__grid--2 {
    grid-template-columns: 1fr;
  }

  .web-solutions-showcase__kpi {
    grid-template-columns: 1fr;
  }

  .web-solutions-browser__body {
    padding: 18px;
  }

  .web-solutions-page .service-card .icon-xxl {
    font-size: 54px;
  }

  .web-solutions-page .service-card:not(.web-plan-card) {
    padding: 24px 18px 18px;
  }
}

/* 首页手机适配补强 */
body {
  overflow-x: hidden;
}

@media (max-width: 991px) {
  body .navbar.navbar-light.shadow {
    padding: 0;
  }

  body .navbar.navbar-light.shadow .container {
    flex-wrap: wrap;
    row-gap: 12px;
    padding: 12px 16px;
  }

  .navbar-brand.logo {
    font-size: clamp(2rem, 6.8vw, 2.8rem) !important;
    line-height: 0.96;
    letter-spacing: 0.05em;
  }

  .navbar-toggler {
    width: 52px;
    height: 52px;
    margin-left: auto;
    padding: 0 !important;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #pospanda_main_nav {
    width: 100%;
  }

  #pospanda_main_nav.navbar-collapse.show,
  #pospanda_main_nav.navbar-collapse.collapsing {
    margin-top: 4px;
    padding: 12px;
    border: 1px solid var(--pp-line);
    border-radius: 20px;
    background: rgba(10, 15, 26, 0.94);
    box-shadow: var(--pp-shadow-md);
  }

  #pospanda_main_nav .navbar-nav {
    gap: 6px;
    align-items: stretch !important;
  }

  #pospanda_main_nav .nav-item {
    width: 100%;
  }

  #pospanda_main_nav .nav-link {
    padding: 0.9rem 1rem !important;
    border-radius: 14px;
    line-height: 1.35;
  }

  #pospanda_main_nav .nav-link::after {
    display: none;
  }

  #pospanda_main_nav .nav-link:hover,
  #pospanda_main_nav .nav-link.dropdown-toggle.show {
    background: rgba(126, 200, 255, 0.1);
  }

  #pospanda_main_nav .dropdown-menu {
    position: static !important;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    box-shadow: none;
  }

  #pospanda_main_nav .dropdown-item {
    padding: 0.8rem 0.95rem;
    white-space: normal;
    border-radius: 12px;
  }

  #pospanda-hero-carousel2 {
    margin: 16px 12px 0;
    border-radius: 24px;
  }

  #pospanda-hero-carousel2 .row {
    gap: 24px;
    padding: 28px 10px 76px !important;
  }

  #pospanda-hero-carousel2 .text-align-left {
    max-width: none;
    padding: 26px 22px;
  }

  #pospanda-hero-carousel2 .carousel-control-prev,
  #pospanda-hero-carousel2 .carousel-control-next {
    top: 50%;
    bottom: auto;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    transform: translateY(-50%);
  }

  #pospanda-hero-carousel2 .carousel-control-prev {
    left: 12px;
  }

  #pospanda-hero-carousel2 .carousel-control-next {
    right: 12px;
  }

  #pospanda-hero-carousel2 .carousel-control-prev i,
  #pospanda-hero-carousel2 .carousel-control-next i {
    font-size: 1rem !important;
  }
}

@media (max-width: 767px) {
  body .navbar.navbar-light.shadow .container {
    padding: 10px 14px;
  }

  .navbar-brand.logo {
    font-size: clamp(1.8rem, 7.8vw, 2.35rem) !important;
    letter-spacing: 0.04em;
  }

  #pospanda-hero-carousel2 {
    margin: 12px 10px 0;
    border-radius: 22px;
  }

  #pospanda-hero-carousel2 .row {
    gap: 18px;
    padding: 18px 6px 72px !important;
  }

  #pospanda-hero-carousel2 .text-align-left {
    padding: 20px 18px;
    border-radius: 22px;
  }

  #pospanda-hero-carousel2 .text-align-left .h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem) !important;
    line-height: 1.08;
    word-break: break-word;
  }

  #pospanda-hero-carousel2 .text-align-left .h2 {
    font-size: 0.9rem !important;
    letter-spacing: 0.04em;
    line-height: 1.45;
  }

  #pospanda-hero-carousel2 .text-align-left p,
  #pospanda-hero-carousel2 .text-align-left li {
    font-size: 0.94rem !important;
    line-height: 1.72;
  }

  #pospanda-hero-carousel2 .hero-img {
    max-width: min(82vw, 360px);
    max-height: 50vh;
    object-fit: contain;
  }

  #pospanda-hero-carousel2 .carousel-item:nth-child(2) .hero-img {
    max-width: min(70vw, 300px);
  }

  #pospanda-hero-carousel2 .carousel-indicators {
    bottom: 18px;
    margin-bottom: 0;
  }

  #pospanda-hero-carousel2 .carousel-control-prev,
  #pospanda-hero-carousel2 .carousel-control-next {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .home-quick-links {
    padding-top: 3.25rem !important;
    padding-bottom: 3rem !important;
  }

  .home-quick-links .row.text-center.pt-3 {
    padding-top: 0.25rem !important;
  }

  .home-quick-links p {
    font-size: 0.98rem !important;
    line-height: 1.68;
  }

  .home-quick-links .row:last-child {
    row-gap: 0.9rem;
  }

  .home-quick-link {
    padding: 1rem 0.65rem 0.5rem !important;
    margin-top: 0 !important;
  }

  .home-quick-link .feature-hover {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .home-quick-link .feature-hover img.rounded-circle {
    width: min(36vw, 140px);
    padding: 12px;
  }

  .home-quick-link h5,
  .home-quick-link h2.h5 {
    min-height: 2.8em;
    margin-top: 0.9rem !important;
    margin-bottom: 0.85rem !important;
    font-size: 0.95rem !important;
    line-height: 1.38;
  }

  .home-quick-link p.text-center {
    margin-bottom: 0;
  }

  .home-quick-link .btn {
    width: 100%;
    max-width: 128px;
    padding: 0.7rem 0.85rem !important;
    font-size: 0.84rem !important;
  }

  #downloads .downloads-wrap {
    padding: 2rem 1rem !important;
  }

  #downloads .download-card .card-body {
    padding: 16px 16px 18px;
  }

  #downloads .download-card .card-body a.h2,
  #downloads .download-card .card-body .h2 {
    font-size: 1.08rem !important;
    line-height: 1.38;
  }

  #downloads .download-card .card-body p {
    font-size: 0.9rem !important;
    line-height: 1.62;
  }

  #pospanda-products .product-service-card {
    padding: 24px 18px !important;
  }

  #pospanda-products .service-card h3 {
    font-size: 1.2rem !important;
  }

  #pospanda-products .product-service-card__desc {
    font-size: 0.94rem !important;
    line-height: 1.68;
  }

  #pospanda-products .service-card .card-no {
    top: 14px;
    left: 18px;
    font-size: 92px;
  }

  #pospanda-products .icon-xxl,
  #pospanda-products .icon-xxl2 {
    font-size: 60px;
  }
}

@media (max-width: 420px) {
  .navbar-brand.logo {
    font-size: 1.95rem !important;
  }

  #pospanda-hero-carousel2 .text-align-left {
    padding: 18px 16px;
  }

  #pospanda-hero-carousel2 .text-align-left .h1 {
    font-size: 1.6rem !important;
  }

  #pospanda-hero-carousel2 .carousel-control-prev,
  #pospanda-hero-carousel2 .carousel-control-next {
    width: 36px;
    height: 36px;
  }

  .home-quick-link .feature-hover img.rounded-circle {
    width: min(34vw, 124px);
  }

  .home-quick-link .btn {
    max-width: 118px;
    font-size: 0.8rem !important;
  }
}
