:root {
  --violet: #7C6FF0;
  --cyan: #38E1C6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
}

/* ---------- Header brand logo（仅图片，无文字） ---------- */
.site-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.site-brand-logo {
  display: block;
  height: 1.5rem; /* 24px */
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .site-brand-logo {
    height: 1.75rem; /* 28px */
  }
}

.site-footer-logo {
  display: block;
  height: 1.75rem; /* 28px，与导航接近 */
  width: auto;
  max-width: 8rem;
  object-fit: contain;
}

/* ---------- Header ---------- */
#site-header {
  background: transparent;
}
/* Desktop: true horizontal center for nav (equal side columns) */
@media (min-width: 1024px) {
  #site-header .site-header-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  #site-header .site-header-bar .site-brand {
    justify-self: start;
  }
  #site-header .site-header-bar .nav-links {
    justify-self: center;
  }
  #site-header .site-header-bar .site-header-actions {
    justify-self: end;
  }
}
#site-header.scrolled {
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
#site-header .nav-links a,
#site-header a[href="#top"] span,
#site-header .nav-lang {
  color: rgba(255,255,255,0.85);
}
#site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
#site-header .nav-links a:hover { color: #fff; }
#site-header a[href="#top"] .flex.flex-col span:first-child { color: #fff; }
#site-header a[href="#top"] .flex.flex-col span:last-child { color: rgba(255,255,255,0.5); }
#site-header .nav-lang { border-color: rgba(255,255,255,0.18); color: #fff; }
#site-header #menu-toggle { color: #fff; border-color: rgba(255,255,255,0.2); }
#site-header .btn-primary { }

/* ---------- Gradient text & buttons ---------- */
.gradient-text {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-primary {
  display: inline-block;
  font-weight: 600;
  color: #08090D;
  background: linear-gradient(90deg, var(--cyan), #6EEBD7);
  box-shadow: 0 8px 24px -8px rgba(56, 225, 198, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(56, 225, 198, 0.55);
}

.btn-outline {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}
.btn-outline--dark {
  color: #0B0D14;
  border-color: rgba(11,13,20,0.15);
}
.btn-outline--dark:hover {
  border-color: rgba(11,13,20,0.4);
  background: rgba(11,13,20,0.04);
}
#contact .btn-outline--dark {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
#contact .btn-outline--dark:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

/* ---------- Home first screen：深色区强制撑满整屏 ---------- */
.home-first-screen {
  box-sizing: border-box;
  width: 100%;
  /* 依次兜底：小视口单位 → 动态视口 → 经典 vh */
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  background: #0B0D14;
}
.home-hero {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  /* 浮动卡片会伸出底部，不能用 overflow:hidden 裁切，否则视觉上会像被“压扁” */
  overflow: visible;
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 1024px) {
  .home-hero {
    padding-top: 7.5rem;
    padding-bottom: 5rem;
  }
}
.home-trust-bar {
  flex: 0 0 auto;
  margin-top: auto;
}

/* 矮屏时允许第一屏随内容增高，避免内容被强制裁切 */
@media (max-height: 760px) {
  .home-first-screen {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
  }
}

/* ---------- Hero backgrounds ---------- */
.hero-mesh {
  background:
    radial-gradient(45% 60% at 15% 20%, rgba(124,111,240,0.35), transparent 60%),
    radial-gradient(40% 50% at 85% 15%, rgba(56,225,198,0.25), transparent 60%),
    radial-gradient(60% 60% at 50% 100%, rgba(124,111,240,0.18), transparent 70%);
}
.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 60% at 50% 30%, black, transparent 80%);
}

/* ---------- Hero mock window / floating cards ---------- */
.mock-window {
  border-radius: 20px;
  overflow: hidden;
  background: #12141D;
  border: 1px solid rgba(255,255,255,0.08);
}
.mock-window-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #1A1D29;
}
.mock-window-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-window-bar span:nth-child(1) { background: #FF5F57; }
.mock-window-bar span:nth-child(2) { background: #FEBC2E; }
.mock-window-bar span:nth-child(3) { background: #28C840; }

.floating-card {
  position: absolute;
  width: 14rem;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  animation: floatY 5s ease-in-out infinite;
}
.pulse-card {
  animation: floatY 4.5s ease-in-out infinite reverse;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ---------- Hero mock UI (code-built product mockup, no stock photo) ---------- */
.mock-ui-body {
  background: #12141D;
  padding: 20px 20px 22px;
}
.mock-ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.mock-ui-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56,225,198,0.18);
  display: inline-block;
  flex-shrink: 0;
}
.mock-ui-pill {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.mock-ui-grid {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
}
.mock-ui-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-ui-rail span {
  display: block;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}
.mock-ui-rail span.is-active {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 0 16px -2px rgba(56,225,198,0.5);
}
.mock-chat-row { display: flex; margin-bottom: 9px; }
.mock-chat-row.is-user { justify-content: flex-end; }
.mock-chat-bubble {
  max-width: 82%;
  border-radius: 12px;
  padding: 8px 11px;
  font-size: 11px;
  line-height: 1.55;
}
.mock-chat-bubble.is-user {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.72);
  border-top-right-radius: 4px;
}
.mock-chat-bubble.is-ai {
  background: rgba(124,111,240,0.12);
  border: 1px solid rgba(124,111,240,0.25);
  color: rgba(255,255,255,0.85);
  border-top-left-radius: 4px;
}
.mock-skel-line {
  height: 6px;
  border-radius: 4px;
  margin-top: 7px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  background-size: 200% 100%;
  animation: mockShimmer 2.4s linear infinite;
}
@keyframes mockShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.mock-typing-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  margin-right: 3px;
  animation: mockBlink 1.2s infinite ease-in-out;
}
.mock-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.mock-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes mockBlink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}
.mock-bars-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 46px;
  margin-top: 10px;
}
.mock-bar {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--violet), var(--cyan));
  opacity: 0.9;
}

/* ---------- Section headers ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
}
.section-label::before {
  content: "";
  width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
}
.section-label--dark { color: var(--cyan); }

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #0B0D14;
}
@media (min-width: 1024px) {
  .section-title { font-size: 2.3rem; }
}

/* ---------- Service cards ---------- */
.service-card {
  background: #fff;
  border: 1px solid rgba(11,13,20,0.07);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(11,13,20,0.18);
}
.service-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-tag {
  position: static;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(8,9,13,0.7);
  color: var(--cyan);
  backdrop-filter: blur(6px);
}
.service-card-img .service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
}
.service-tag--alt { color: var(--violet); }
.service-link {
  display: inline-block;
  font-weight: 600;
  font-size: 13.5px;
  color: #0B0D14;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.service-link:hover { border-color: currentColor; }
.service-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

/* ---------- Case cards (dark section) ---------- */
.case-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.05);
}
.case-card-img { height: 170px; overflow: hidden; }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.case-card:hover .case-card-img img { transform: scale(1.06); }
.case-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(124,111,240,0.15);
  color: var(--violet);
}
.case-badge--violet {
  background: rgba(124,111,240,0.15);
  color: var(--violet);
}
.case-badge--cyan {
  background: rgba(56,225,198,0.12);
  color: var(--cyan);
}
.case-badge--alt {
  background: rgba(56,225,198,0.12);
  color: var(--cyan);
}
.case-badge--green,
.case-badge--client {
  background: rgba(52, 211, 153, 0.16);
  color: #6EE7B7;
}
.case-badge--amber {
  background: rgba(245, 158, 11, 0.18);
  color: #FBBF24;
}

/* ---------- Filter tabs ---------- */
.filter-tab {
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s ease;
}
.filter-tab:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.filter-tab.is-active {
  color: #08090D;
  background: linear-gradient(90deg, var(--cyan), #6EEBD7);
  border-color: transparent;
}
.filter-tab--onlight {
  color: #5B5F6E;
  border-color: rgba(11,13,20,0.12);
}
.filter-tab--onlight:hover { color: #0B0D14; border-color: rgba(11,13,20,0.3); }
.filter-tab--onlight.is-active {
  color: #08090D;
  background: linear-gradient(90deg, var(--cyan), #6EEBD7);
  border-color: transparent;
}

/* ---------- News category label ---------- */
.news-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(124,111,240,0.15);
  color: var(--violet);
  letter-spacing: 0.02em;
}
.news-cat--violet {
  background: rgba(124,111,240,0.15);
  color: var(--violet);
}
.news-cat--cyan {
  background: rgba(56,225,198,0.14);
  color: var(--cyan);
}
.news-cat--green {
  background: rgba(62,207,142,0.16);
  color: #2db87a;
}
.news-cat--amber {
  background: rgba(240,180,41,0.16);
  color: #c4921a;
}
.news-card-img .news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: rgba(8,9,13,0.72);
  backdrop-filter: blur(6px);
  color: var(--violet);
}
.news-card-img .news-cat--violet { color: #9B8CFF; background: rgba(8,9,13,0.72); }
.news-card-img .news-cat--cyan { color: var(--cyan); background: rgba(8,9,13,0.72); }
.news-card-img .news-cat--green { color: #5EE9A8; background: rgba(8,9,13,0.72); }
.news-card-img .news-cat--amber { color: #F0C14B; background: rgba(8,9,13,0.72); }

.news-cat--light {
  background: rgba(56,225,198,0.12);
  color: var(--cyan);
}
.news-card--bordered {
  border: 1px solid rgba(11,13,20,0.06);
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
}
.social-icon--light {
  color: rgba(11,13,20,0.5);
  border-color: rgba(11,13,20,0.15);
}
.social-icon--light:hover { color: #0B0D14; border-color: rgba(11,13,20,0.4); }

/* ---------- Contact form ---------- */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4A4E5E;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 0.75rem;
  border: 1px solid rgba(11,13,20,0.14);
  font-size: 14.5px;
  color: #0B0D14;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,111,240,0.15);
}
textarea.form-input { resize: vertical; }

.success-box {
  background: #F1F0FB;
  border-radius: 1.25rem;
  padding: 2.25rem;
}

.contact-info-card {
  background: #fff;
  border: 1px solid rgba(11,13,20,0.07);
  border-radius: 1.25rem;
  padding: 2rem;
}
.contact-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #F1F0FB;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.quick-link {
  display: inline-block;
  font-weight: 600;
  color: #0B0D14;
  transition: color 0.2s ease;
}
.quick-link:hover { color: var(--violet); }

/* ---------- Article body typography ---------- */
.article-body {
  font-size: 16px;
  line-height: 1.9;
  color: #333744;
}
.article-body p { margin-bottom: 1.5em; }
.article-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0B0D14;
  margin-top: 2em;
  margin-bottom: 0.8em;
}
.article-body blockquote {
  border-left: 3px solid var(--violet);
  padding: 0.5em 0 0.5em 1.25em;
  margin: 2em 0;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #0B0D14;
}

/* ---------- Pagination ---------- */
.pagination-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 13.5px;
  font-weight: 600;
  color: #4A4E5E;
  border: 1px solid rgba(11,13,20,0.1);
  transition: all 0.2s ease;
}
.pagination-btn:hover:not(:disabled) { border-color: rgba(11,13,20,0.3); }
.pagination-btn.is-active {
  background: #0B0D14;
  color: #fff;
  border-color: transparent;
}
.pagination-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ---------- Process ---------- */
.process-step { position: relative; padding-top: 4px; }
.process-num {
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.25rem;
  border: 1px solid rgba(11,13,20,0.06);
  display: flex;
  flex-direction: column;
  min-height: 240px; /* 提高卡片整体高度，给内容与客户信息留白 */
}
.testimonial-quote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 最多展示四行，超出省略号 */
  overflow: hidden;
  padding-bottom: 10px; /* 评价内容与客户信息之间预留间距 */
  /* 兼容：长英文/无空格内容时也能正确换行并裁切 */
  word-break: break-word;
}
.testimonial-meta {
  margin-top: auto; /* 客户信息模块固定在卡片底部，不随文案上下浮动 */
}
.testimonial-quote {
  flex: 1 1 auto; /* 给 meta 留出“被撑到底部”的弹性空间 */
}
.testimonials-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  /* 隐藏滚动条（仅滚动区域本身） */
  scrollbar-width: none; /* Firefox */
}
.testimonials-scroll::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}
.testimonial-item {
  scroll-snap-align: start;
}
.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}
.testimonials-scroll::-webkit-scrollbar-thumb {
  background: rgba(124,111,240,0.35);
  border-radius: 999px;
}
.avatar-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.avatar-initial {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, var(--violet), #9B8CFF);
}
.avatar-initial--alt {
  background: linear-gradient(135deg, var(--cyan), #6EEBD7);
  color: #08090D;
}

/* ---------- News ---------- */
.news-card { display: block; }
.news-card-img {
  position: relative;
  height: 190px;
  border-radius: 1rem;
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-date {
  font-size: 12px; font-weight: 600;
  color: var(--violet);
  margin-top: 14px;
}

/* ---------- Footer ---------- */
.footer-title {
  color: #fff; font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.02em;
}
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s ease;
}
.social-icon:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* ---------- Nav active state ---------- */
.nav-links .nav-active {
  position: relative;
  color: #fff;
}
.nav-links .nav-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -20px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}
#site-header.scrolled .nav-links .nav-active::after { bottom: -28px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.7); font-weight: 600; }
.breadcrumb a:hover { color: #fff; }

/* Light breadcrumb under dark hero, above main content */
.breadcrumb--light {
  color: rgba(11, 13, 20, 0.35);
}
.breadcrumb--light a {
  color: rgba(11, 13, 20, 0.55);
  font-weight: 600;
}
.breadcrumb--light a:hover {
  color: #0B0D14;
}

/* ---------- Quick sub-nav ---------- */
.quicknav-link {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.quicknav-link:hover, .quicknav-link.is-active {
  color: #0B0D14;
}
.quicknav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -18px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

/* ---------- Dark button variant (for light sections) ---------- */
.btn-dark {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  background: #0B0D14;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(11,13,20,0.4);
}

/* ---------- On-light service tag ---------- */
.service-tag--onlight {
  position: static;
  display: inline-flex;
  background: rgba(124,111,240,0.1);
  color: var(--violet);
  backdrop-filter: none;
}
.service-tag--onlight.service-tag--alt {
  background: rgba(56,225,198,0.12);
  color: #0EA895;
}

/* ---------- Check list / pills ---------- */
.check-dot {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(124,111,240,0.12);
  position: relative;
}
.check-dot::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
  transform: translate(-50%, -50%);
}
.check-dot--dark { background: rgba(56,225,198,0.15); }
.check-dot--dark::after { background: var(--cyan); }

.pill {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: #F1F0FB;
  color: #4A4470;
}
.pill--dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}

/* ---------- Compare cards ---------- */
.compare-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(11,13,20,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11,13,20,0.15);
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border: 1px solid rgba(11,13,20,0.08);
  border-radius: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  cursor: pointer;
}
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--violet);
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: #5B5F6E;
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item.is-open .faq-answer {
  padding: 0 1.5rem 1.25rem;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(11,13,20,0.08);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--violet);
}
.timeline-dot--active {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-color: transparent;
  box-shadow: 0 0 0 5px rgba(56,225,198,0.15);
}
.timeline-year {
  font-weight: 800;
  font-size: 15px;
  color: var(--violet);
}
.timeline-text {
  margin-top: 6px;
  font-size: 14.5px;
  color: #4A4E5E;
  line-height: 1.7;
  max-width: 32rem;
}

/* ---------- Value cards ---------- */
.value-card {
  background: #fff;
  border: 1px solid rgba(11,13,20,0.07);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(11,13,20,0.15);
}
.value-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(124,111,240,0.35);
}

/* ---------- Team cards ---------- */
.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(15%);
}

/* ---------- Stat box ---------- */
.stat-box {
  background: #fff;
  border: 1px solid rgba(11,13,20,0.06);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scrollbar polish (optional) ---------- */
::selection {
  background: rgba(124,111,240,0.25);
}
