﻿:root {
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --secondary: #0F172A;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --bg-main: #F8FAFC;
  --surface: #FFFFFF;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-dark: rgba(15, 23, 42, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  /* Design Tokens for cards */
  --card-radius: 12px;
  --card-padding: 1.5rem;
  --card-padding-sm: 1rem;
  --card-padding-lg: 2rem;
  --btn-radius: 9999px;
  --sm-radius: 8px;
  --card-glass-bg: rgba(255, 255, 255, 0.5);
  --card-glass-border: rgba(255, 255, 255, 0.4);
  --card-glass-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);

  /* 统一间距体系 */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;

  /* 统一字体层级 */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.75rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 3.5rem;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  background-color: var(--bg-main);
  color: var(--text-main);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
}


.global-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg-main);
}

.dot-pattern-overlay {
  background-image: radial-gradient(rgba(37, 99, 235, 0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.glow-blue {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 60%);
  filter: blur(80px);
  border-radius: 50%;
}

.glow-purple {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 60%);
  filter: blur(80px);
  border-radius: 50%;
}

.glow-lightblue {
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 60%);
  filter: blur(80px);
  border-radius: 50%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== 统一组件类 ===== */

/* Section主标题 - 用于"全链路数字化能力""行业深耕"等 */
.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

/* Section主标题（extrabold版本） */
.section-title-extrabold {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

/* Section描述文字 */
.section-desc {
  color: var(--text-muted);
  font-size: var(--text-lg);
  line-height: 1.6;
}

/* 卡片标题 - 统一所有卡片内的标题 */
.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.4;
  color: var(--text-main);
}

/* 卡片标题（小尺寸）- 用于模板卡片等较小卡片 */
.card-title-sm {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 卡片描述 - 统一所有卡片内的描述文字 */
.card-desc {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

/* 内容标题 - 用于内容页详情页等 */
.content-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.3;
  color: var(--text-main);
}

/* 页面通屏描述 */
.page-title {
  font-size: var(--text-5xl);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  color: white;
}

/* 页面通屏描述 */
.page-desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 600px;
}

/* 标签文字 - 小标签等用途 */
.label-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

/* 数据数值 */
.stat-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: var(--space-xs);
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.section.section-alt {
  background: #f8fafc;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.text-center { text-align: center; }
.relative { position: relative; }
.hidden { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
  background: rgba(255,255,255, 0.9);
  transform: translateY(-2px);
}

/* Glassmorphism Classes */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

/* Shared Glassmorphism Card Styles */
.home-feature-card,
.testimonial-card,
.solution-box,
.sidebar-box,
.news-detail-content-wrap-shadow,
.news-nav-link,
.contact-info-card,
.detail-white-card,
.info-card,
.feature-card,
.module-card,
.preview-panel,
.cases-filter-bar,
.solution-result-bar.blue,
.solution-result-bar.purple,
.result-box,
.case-card-v2,
.contact-form-card,
.contact-attrs-card,
.template-card,
.news-row-card,
.filter-bar,
.news-detail-header-light,
.card-micro-3d,
.feature-content-panel,
.solution-home-card,
.news-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-glass-border);
  box-shadow: var(--card-glass-shadow);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.liquid-glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.8);
  border-left: 1px solid rgba(255,255,255,0.8);
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  z-index: 50;
  transition: all 0.3s ease;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.mobile-menu-toggle { display: none; }
.mobile-nav { display: none; }

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  display: block;
}

.nav-item {
  position: relative;
  padding: 1rem 0;
  cursor: pointer;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.5rem;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
  list-style: none;
  margin: 0;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
  background: rgba(37,99,235,0.05);
  color: var(--primary);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
@keyframes meshBreathe {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, 2%) scale(1.02); }
  100% { transform: translate(0, 0) scale(1); }
}

.mesh-glow-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.mesh-glow-container::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  filter: blur(25px);
  animation: meshBreathe 10s ease-in-out infinite;
}

@keyframes slideAnim0 {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes visualAnim0 {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideAnim1 {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes visualAnim1 {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideAnim2 {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes visualAnim2 {
  from { opacity: 0; transform: scale(1.1) rotate(-5deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
}

.slider-dot {
  width: 2.5rem;
  height: 4px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slider-dot.active {
  background: rgba(37, 99, 235, 0.3);
}

.slider-dot.active .slider-dot-progress {
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

.slider-dot-progress {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: var(--primary);
  width: 0%;
  will-change: width;
}

.hero-logos-wrapper {
  position: relative;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero {
  padding-top: 8rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-tag i {
  display: inline;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -2px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
}

.hero-slide[data-index="0"].active {
  display: block;
  animation: slideAnim0 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-slide[data-index="1"].active {
  display: block;
  animation: slideAnim1 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-slide[data-index="2"].active {
  display: block;
  animation: slideAnim2 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-visual {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide-visual.active {
  display: block;
}
.slide-visual[data-index="0"].active {
  animation: visualAnim0 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide-visual[data-index="1"].active {
  animation: visualAnim1 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide-visual[data-index="2"].active {
  animation: visualAnim2 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.visual-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.force-reflow { --reflow: 1; }

.circle-main {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  width: 70%;
  height: 70%;
  animation: floatDown 6s ease-in-out infinite;
}
.circle-main::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), #8b5cf6, #3b82f6, var(--primary));
  opacity: 0.15;
  animation: spin 15s linear infinite;
  will-change: transform;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(359.99deg); }
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(15px); }
}

.circle-glass {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 65%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1), inset 0 0 20px rgba(255,255,255,0.5);
}

.circle-glass h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 800;
}

.circle-glass-inner {
  display: flex;
  gap: 1.5rem;
  opacity: 0.8;
  font-size: 0.95rem;
  font-weight: 500;
  flex-direction: column;
}

.circle-glass-inner span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-badge {
  position: absolute;
  padding: 1.25rem;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
  will-change: transform;
}

.badge-1 { top: 10%; right: 10%; animation-delay: 0s; }
.badge-2 { bottom: 20%; right: -5%; animation-delay: 2s; }
.badge-3 { top: 30%; left: -5%; animation-delay: 4s; }

.badge-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

.badge-value {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--primary);
}

/* Home Features Grid */
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.home-feature-card {
  padding: var(--card-padding-lg);
  cursor: pointer;
  border-radius: var(--card-radius);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.home-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(31, 38, 135, 0.06);
  background: rgba(255, 255, 255, 0.65);
}

.home-feature-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.5rem;
}

.home-feature-card:hover .home-feature-icon-wrapper {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.home-feature-icon-1 { color: var(--primary); }
.home-feature-icon-2 { color: #8b5cf6; }
.home-feature-icon-3 { color: #ec4899; }

.home-feature-link {
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
  text-decoration: none;
}

.home-feature-card:hover .home-feature-link {
  gap: 0.75rem;
}

/* New Features Row Card Layout */
.feature-row-card {
  display: flex;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  overflow: visible;
  min-height: 380px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 10;
}

.feature-row-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 38, 135, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.feature-row-card.img-left .feature-visual-panel {
  border-radius: 24px 0 0 24px;
}
.feature-row-card.img-right .feature-visual-panel {
  border-radius: 0 24px 24px 0;
}
.feature-row-card.img-left .feature-content-panel {
  border-radius: 0 24px 24px 0;
}
.feature-row-card.img-right .feature-content-panel {
  border-radius: 24px 0 0 24px;
}

.feature-visual-panel {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.feature-visual-panel .feature-visual-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.7);
  z-index: 0;
}

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

.feature-icon-badge {
  position: absolute;
  top: -1.25rem;
  background: #0066FF;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.25rem;
}

.feature-row-card:hover .feature-icon-badge {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.35);
}

.feature-icon-badge.left { left: 2.5rem; }
.feature-icon-badge.right { right: 2.5rem; }

.feature-content-panel {
  flex: 1;
  padding: 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.feature-number-watermark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  font-size: 16rem;
  font-weight: 900;
  color: rgba(241, 245, 249, 1);
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.feature-service-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.feature-content-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 85%;
}

.feature-content-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Services Page Glow and Textures */
.services-bg-wrapper {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.services-glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, rgba(255,255,255,0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.services-glow-2 {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, rgba(255,255,255,0) 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.services-glow-3 {
  position: absolute;
  bottom: -5%;
  left: 20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, rgba(255,255,255,0) 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.services-dots-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: -12px -12px;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.1) 100%);
}

/* Micro 3D Cards */
.card-micro-3d {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-micro-3d:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Animations Target */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Data Section */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.check-icon {
  color: white;
  background: var(--primary);
  border-radius: 50%;
  padding: 0.25rem;
  box-shadow: 0 4px 10px rgba(37,99,235,0.3);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Data Section Background */
.data-section {
  position: relative;
  overflow: hidden;
}
.data-section .container {
  position: relative;
  z-index: 1;
}
.data-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7ff 35%,
    #eef3ff 70%,
    #f8faff 100%
  );
  pointer-events: none;
}

/* 柔光遮罩 blur blob */
.data-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.data-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, rgba(59,130,246,0) 70%);
  top: -10%;
  right: 5%;
  opacity: 0.8;
}
.data-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, rgba(124,58,237,0) 70%);
  bottom: -5%;
  left: 10%;
  opacity: 0.6;
}
.data-glow-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34,211,238,0.2) 0%, rgba(34,211,238,0) 70%);
  top: 40%;
  left: 30%;
  opacity: 0.5;
}

/* 波浪曲线 */
.data-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
}
.data-wave-2 {
  bottom: 20px;
  height: 180px;
  opacity: 0.7;
}

/* 轻噪点 */
.data-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* 低透明度装饰圆环 */
.data-ghost-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1.5px solid rgba(59,130,246,0.08);
  border-radius: 50%;
  top: 15%;
  right: 20%;
  pointer-events: none;
}
.data-ghost-ring-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1.5px solid rgba(124,58,237,0.06);
  border-radius: 50%;
  bottom: 25%;
  left: 15%;
  pointer-events: none;
}

/* 右侧 fade overlay（营造空间感） */
.data-fade-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(244,247,255,0.4) 50%,
    rgba(238,243,255,0.6) 100%
  );
  pointer-events: none;
}

/* 低透明度装饰图表 ghost */
.data-ghost-chart {
  position: absolute;
  pointer-events: none;
  border-radius: 4px;
  opacity: 0.06;
}
.ghost-bar-1 {
  width: 60px;
  height: 120px;
  background: linear-gradient(180deg, #3b82f6 0%, transparent 100%);
  bottom: 25%;
  right: 8%;
  border-radius: 4px 4px 0 0;
}
.ghost-bar-2 {
  width: 40px;
  height: 80px;
  background: linear-gradient(180deg, #22d3ee 0%, transparent 100%);
  bottom: 25%;
  right: 14%;
  border-radius: 4px 4px 0 0;
}
.ghost-bar-3 {
  width: 50px;
  height: 100px;
  background: linear-gradient(180deg, #a78bfa 0%, transparent 100%);
  bottom: 25%;
  right: 19%;
  border-radius: 4px 4px 0 0;
}
.ghost-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
  top: 20%;
  left: 5%;
}

/* Data Dashboard */
.data-dashboard {
  position: relative;
  width: 100%;
  margin-left: -0.5rem;
}

/* 通用独立卡片 */
.dashboard-card {
  background: transparent;
  border-radius: 1rem;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 16px rgba(30,58,138,0.06);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  overflow: hidden;
  animation: cardFloat 4s ease-in-out infinite;
}
.dashboard-card:hover {
  box-shadow: 0 12px 32px rgba(30,58,138,0.12);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 主卡片（数据概览 + 流量趋势） */
.dashboard-main-card {
  position: relative;
  width: 88%;
  z-index: 1;
}

/* 数据概览区域 */
.dashboard-overview-section {
  padding-bottom: 0.5rem;
}
.dashboard-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}
.dashboard-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dashboard-stat-item {
  text-align: left;
}
.dashboard-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.dashboard-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}
.dashboard-stat-change {
  font-size: 0.65rem;
  margin-top: 0.2rem;
  font-weight: 600;
}
.dashboard-stat-change.up {
  color: #10b981;
}
.dashboard-stat-change.down {
  color: #ef4444;
}

/* 流量趋势区域 */
.dashboard-traffic-section {
  flex: 1;
  min-height: 0;
}

/* 渠道分析卡片（叠加在主卡片右侧） */
.dashboard-channel-card {
  position: absolute;
  top: 22%;
  right: 0;
  width: 38%;
  z-index: 2;
}

/* 底部卡片组 */
.dashboard-bottom-row {
  display: flex;
  gap: 1.25rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  width: calc(100% + 2.5rem);
  margin-left: -2rem;
  align-items: flex-start;
}

/* 地域分布卡片（向左超出一部分） */
.dashboard-region-card {
  width: 36%;
  flex-shrink: 0;
  height: 140px;
}

/* 市场趋势卡片（向右超出一小部分） */
.dashboard-market-card {
  width: 58%;
  flex: 1;
  margin-right: -0.5rem;
  height: 168px;
}

/* 看板图片 */
.dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}

/* 图表通用 */
.dashboard-chart-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.dashboard-chart-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}
.dashboard-chart-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.dashboard-chart-body {
  flex: 1;
  min-height: 100px;
}
.dashboard-main-card .dashboard-chart-body {
  min-height: 140px;
}
.dashboard-channel-card .dashboard-chart-body {
  min-height: 90px;
}
.dashboard-region-card .dashboard-chart-body {
  min-height: 110px;
}
.dashboard-market-card .dashboard-chart-body {
  min-height: 110px;
}

/* 卡片淡入动画 */
.data-dashboard .dashboard-card {
  opacity: 0;
  transform: translateY(20px);
  animation: dashboardCardFadeIn 0.6s ease forwards, cardFloat 4s ease-in-out 0.6s infinite;
}
.data-dashboard .dashboard-main-card {
  animation-delay: 0.1s, 0.7s;
}
.data-dashboard .dashboard-channel-card {
  animation-delay: 0.2s, 0.8s;
}
.data-dashboard .dashboard-region-card {
  animation-delay: 0.3s, 0.9s;
}
.data-dashboard .dashboard-market-card {
  animation-delay: 0.4s, 1s;
}
@keyframes dashboardCardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  color: white;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--card-padding);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-decoration: none;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.case-card-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  margin-top: 1.5rem;
  width: fit-content;
  color: white;
  text-decoration: none;
}

.case-card:hover .case-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.case-card-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  overflow: hidden;
  transition: transform 0.8s ease;
}

.case-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-card:hover .case-card-bg {
  transform: scale(1.1);
}

.case-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}

.case-green .case-overlay { background: linear-gradient(135deg, rgba(5,150,105,0.95), rgba(5,150,105,0.4)); }
.case-blue .case-overlay { background: linear-gradient(135deg, rgba(30,58,138,0.95), rgba(30,58,138,0.4)); }

.case-metrics {
  display: flex;
  gap: 3rem;
  margin-top: auto;
}

.case-metric-val { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.case-metric-label { font-size: 0.875rem; opacity: 0.9; }

/* Stats Dark Section */
.stats-section {
  background: linear-gradient(135deg, #0B1528 0%, #1a365d 50%, #0B1528 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.04)"/></svg>');
  z-index: 1;
}

.stats-section::after {
  display: none;
}

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

.stats-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #003e95 0%, #0f4899 50%, rgba(11, 21, 40, 0.85) 100%);
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 10;
}

.stats-section h2 {
  color: white;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon-box {
  width: 3.5rem; height: 3.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.stat-number { font-size: 2rem; font-weight: 800; color: white; }
.stat-text { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Testimonials */
.testimonials-section {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial-carousel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 0 2rem 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  padding: 0 1rem;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 33.333%;
}

.testimonial-card {
  border-radius: var(--card-radius);
  position: relative;
  height: auto;
  padding: var(--card-padding);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(31, 38, 135, 0.06);
  background: rgba(255, 255, 255, 0.65);
}

.quote-icon {
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-style: normal;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.125rem;
}

.author-company {
  color: var(--text-muted);
  font-size: 1rem;
}

.testimonial-index {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  width: 8px;
  height: 8px;
  transform: none;
}

.news-card {
  display: block;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 38, 135, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-content {
  padding: 1rem;
}
.news-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(37, 99, 235, 0.9);
  color: white;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(139, 92, 246, 0.05) 100%);
  background-color: #ffffff;
  color: var(--text-main);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-rocket {
  position: absolute;
  right: 15%;
  bottom: 10%;
  width: 150px;
  animation: float 5s ease-in-out infinite;
  z-index: 1;
  font-size: 8rem;
  color: white;
  opacity: 0.9;
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background: transparent;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem 4rem;
  margin-bottom: 4rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none; padding: 0; margin: 0;
}

.footer-links li { margin-bottom: 1rem; color: var(--text-muted); cursor: pointer; transition: color 0.2s; font-size: 0.95rem; }
.footer-links li:hover { color: var(--primary); }
.footer-links a { color: inherit; text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Animations Trigger */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 通用 Page Hero 组件 ===== */
.page-hero {
  position: relative;
  color: white;
  margin-top: 80px;
  overflow: hidden;
  background: #0B1528;
}
.page-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.3;
  z-index: 0;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.5), #0B1528);
  opacity: 0.88;
  z-index: 1;
}
.page-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  z-index: 2;
}
.page-hero-content--center {
  align-items: center;
  text-align: center;
}
.page-hero-content--left {
  align-items: flex-start;
  text-align: left;
}
.page-hero-subtitle {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.8);
}

/* Detail page hero: compact height, object-fit cover */
.page-hero--detail .page-hero-content {
  justify-content: flex-start;
}

/* --- Cases Routing Styles --- */

.cases-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 4rem;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  gap: 1rem;
}

.cases-filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.cases-filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
}
.filter-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.filter-tab:hover:not(.active) {
  background: rgba(37,99,235,0.05);
}

.cases-search {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.03);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  min-width: 200px;
  box-sizing: border-box;
}
.cases-search input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  padding: 0.25rem 0.5rem;
}

.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-btn:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.cases-search > i {
  color: var(--text-muted);
  margin-right: 0.5rem;
  order: -1;
  flex-shrink: 0;
}
.search-btn i {
  color: white;
}

.cases-grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.case-card-v2 {
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.case-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.case-card-img-wrap {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}
.case-card-img-wrap img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.case-card-v2:hover .case-card-img-wrap img {
  transform: scale(1.05);
}

.case-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  z-index: 2;
}

.case-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card .content-title { color: white; }
.case-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  flex: 1;
}
.case-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.case-card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); }
.stat-val { font-size: 1.25rem; font-weight: 800; color: var(--text-main); }
.case-card-arrow {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(37,99,235,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}
.case-card-v2:hover .case-card-arrow {
  background: var(--primary);
  color: white;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.page-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer; transition: all 0.3s ease;
  text-decoration: none;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.page-dots { color: var(--text-muted); padding: 0 0.5rem; }

/* Detail Page specific */
.case-detail-header {
  text-align: left;

}
.case-meta-grid {
  display: flex; gap: 4rem; margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.case-meta-item {
  display: flex; align-items: center; gap: 1rem;
}
.meta-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.875rem; }
.meta-text { display: flex; flex-direction: column; gap: 0.2rem; }
.meta-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.meta-val { font-size: 1rem; font-weight: 600; color: white; }

.case-detail-section {
  padding: 5rem 0;
  background: #f8fafc;
}
.back-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 2rem; text-decoration: none; cursor: pointer; transition: color 0.3s;
}
.back-btn:hover { color: white; }

.case-split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start;
}

.case-image-mockup {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-radius: 1.5rem;
  overflow: hidden;
}
.case-image-mockup img { width: 100%; height: auto; display: block; }
.case-link-bar {
  padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.05);
}
.case-link-bar a { text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 0.9rem; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; font-weight: 800; color: var(--text-main); margin-bottom: 2rem;
}
.section-label::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }

.solution-list { display: flex; flex-direction: column; gap: 1rem; }
.solution-card {
  background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: var(--card-padding-sm); border-radius: var(--card-radius); display: flex; align-items: center; gap: 1rem; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04); border: 1px solid rgba(255, 255, 255, 0.6); transition: transform 0.3s;
}
.solution-card:hover { transform: translateX(8px); }
.sol-icon { color: var(--primary); width: 40px; height: 40px; border-radius: 10px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.sol-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.sol-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.results-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem;
}

.result-box {
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.res-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary); color: white; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.25rem; }
.res-val { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.res-lbl { font-size: 1rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.25rem; }
.res-desc { font-size: 0.8rem; color: var(--text-muted); }

.case-nav {
  display: flex; justify-content: space-between; padding-top: 4rem; border-top: 1px solid rgba(0,0,0,0.1); margin-top: 6rem;
}

.case-nav-link { display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none; color: var(--text-main); }
.case-nav-link.prev { text-align: left; }
.case-nav-link.next { text-align: right; }
.nav-lbl { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.25rem; }
.nav-title { font-size: 1.1rem; font-weight: 700; transition: color 0.3s; }
.case-nav-link:hover .nav-title { color: var(--primary); }

/* --- News specific styles --- */
.news-list-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}
.news-row-card {
  display: flex;
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  gap: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.news-row-card > article {
  display: contents;
}
.news-row-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-glass-shadow);
}
.news-row-img {
  width: 300px;
  height: 200px;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.news-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-row-card:hover .news-row-img img {
  transform: scale(1.05);
}
.news-row-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  z-index: 2;
}

.news-row-content {
  flex: 1;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.news-row-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.news-row-date .day {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.news-row-date .ym {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.news-row-text {
  flex: 1;
}
.news-row-card:hover .news-row-text h3 {
  color: var(--primary);
}
.news-row-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-row-arrow {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(37,99,235,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.news-row-card:hover .news-row-arrow {
  background: var(--primary);
  color: white;
}

/* Detail Header */
.news-detail-header-light {
  padding: 8rem 0 0 0;
}
.news-breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-breadcrumb a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.news-breadcrumb a:hover {
  color: var(--primary);
}
.news-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 900px;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.news-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-detail-content-wrap {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  padding: 3rem 4rem;
  border-radius: 0 0 1.5rem 1.5rem;
}

/* About Page */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(59, 130, 246, 0.2);
  transform: translateX(-50%);
}

.timeline-node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #f8fafc;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

/* Contact Page */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  box-sizing: border-box;
  background: white;
  color: var(--text-main);
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form .required {
  color: #ef4444;
}

/* Templates Page */
.template-card-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}
.template-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.template-card:hover {
  transform: translateY(-5px);
}

.template-card-img {
  position: relative;
  padding-top: 65%;
  background-color: #f1f5f9;
  overflow: hidden;
}
.template-card-img img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.template-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  text-decoration: none;
}
.template-card:hover .template-card-overlay {
  opacity: 1;
}

.template-preview-btn {
  background: white;
  color: var(--text-main);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.template-card-body {
  padding: 0.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.template-card-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.template-card-tag {
  background: #f1f5f9;
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.template-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.template-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Template Detail */
.template-detail-hero {
  padding: 8rem 0 5rem;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
}

.template-detail-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(23, 37, 84, 0.95));
}



/* Filter Bar */
.filter-bar {
  margin-bottom: 3rem;
  padding: var(--card-padding);
  border-radius: var(--card-radius);
}

.filter-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.filter-search-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.filter-search-row .search-box {
  flex: 1 1 auto;
  max-width: 250px;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  flex: 1;
  max-width: calc(100% - 380px);
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 0.95rem;
}

.filter-tab-btn.active {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.search-box {
  position: relative;
}
.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.search-box input {
  padding: 0.6rem 1rem 0.6rem 2.75rem;
  border-radius: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
  outline: none;
  width: 100%;
  max-width: 250px;
  background: #f8fafc;
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: white;
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  touch-action: manipulation;
}

.filter-toggle.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.filter-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.filter-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.filter-option-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.filter-option-label:hover {
  color: var(--primary);
}
.filter-option-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.expanded-filters {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  animation: fadeIn 0.3s ease-out;
}

.expanded-filters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.expanded-filter-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  transition: all 0.2s;
  border-radius: 0.5rem;
  font-family: inherit;
  text-decoration: none;
}

.expanded-filter-btn:hover,
.expanded-filter-btn.active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.expanded-filter-btn.active {
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Solutions List Page */
.solution-section {
  padding: 5rem 0;
}

.solution-section.bg-white {
  background: white;
}

.solution-row {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.solution-row.reverse {
  flex-direction: row-reverse;
}

.solution-content {
  flex: 1;
}

.solution-image {
  flex: 1;
}

.solution-image-inner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.solution-image-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  z-index: 1;
}

.solution-image-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.solution-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(59,130,246,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.solution-icon-box.purple {
  background: rgba(139,92,246,0.1);
  color: #8b5cf6;
}

.solution-box-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.solution-box {
  flex: 1;
  padding: var(--card-padding);
  border-radius: var(--card-radius);
}

.solution-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution-box.red h4 { color: #ef4444; }
.solution-box.blue h4 { color: var(--primary); }
.solution-box.purple h4 { color: #8b5cf6; }

.solution-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.solution-box .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.solution-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 12px;
}

.solution-result-bar.blue {
  border-left: 4px solid var(--primary);
}

.solution-result-bar.purple {
  border-left: 4px solid #8b5cf6;
}

.solution-tag {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: white;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 700;
}

/* Page transition helper */
.page-content {
  padding-top: 5rem;
  min-height: 100vh;
}

/* Logo section */
.client-logos {
  padding: 2rem 0 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}

.client-logos p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.logos-row {
  overflow: hidden;
  opacity: 0.5;
  filter: grayscale(100%);
}

.logos-track {
  display: flex;
  animation: scrollLogos 40s linear infinite;
  width: max-content;
}

.logos-row:hover .logos-track {
  animation-play-state: paused;
}

.logos-row h3 {
  font-size: 1.5rem;
  margin: 0 2rem;
  font-weight: 800;
  font-family: monospace;
  opacity: 0.8;
  white-space: nowrap;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Solutions grid on homepage */
.solutions-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.solution-home-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--card-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.solution-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(31,38,135,0.08);
}

.solution-home-card-img {
  height: 200px;
  overflow: hidden;
}

.solution-home-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-home-card-body {
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.solution-home-card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-home-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* CTA Bottom on homepage */
.cta-bottom-section {
  position: relative;
  overflow: hidden;
}

.cta-bottom-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-bottom-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.cta-bottom-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.cta-bottom-text {
  text-align: left;
  max-width: 700px;
  flex: 1;
}

.cta-bottom-text h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
}

.cta-bottom-text p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  color: #e0e7ff;
}

.cta-bottom-actions {
  display: flex;
  gap: 1rem;
}

.cta-btn-white {
  background: #fff;
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
}

/* News content */
.news-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  color: #1e293b;
}

.news-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  color: #334155;
}

.news-content p {
  margin-bottom: 0.1rem;
}

.news-content ul, .news-content ol {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.news-content li {
  margin-bottom: 0.5rem;
}

.news-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.news-content th,
.news-content td {
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.news-content th {
  background: #f3f4f6;
  font-weight: 700;
  color: #1f2937;
}

.news-content tr:nth-child(even) td {
  background: #f9fafb;
}

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

/* Related articles sidebar */
.sidebar-box {
  padding: var(--card-padding);
  border-radius: var(--card-radius);
}

.sidebar-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-box h4::before {
  content: "";
  width: 4px;
  height: 16px;
  background: var(--primary);
  border-radius: 2px;
}

/* Sticky sidebar */
.sticky-sidebar {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* News Detail Hero */
.news-detail-meta-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.news-detail-category-tag {
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.news-detail-meta-item-white {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* News detail layout */
.news-detail-section-z {
  padding-bottom: 6rem;
  padding-top: 3rem;
  position: relative;
  z-index: 10;
}
.news-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.news-detail-main {
  flex: 1 1 700px;
  min-width: 0;
}
.news-detail-sidebar {
  flex: 0 0 350px;
}
.news-detail-content-wrap-shadow {
  padding: 3rem 4rem;
  border-radius: var(--card-radius);
}

/* Prev/Next nav in news detail */
.news-nav {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.news-nav-link {
  flex: 1;
  padding: var(--card-padding);
  border-radius: var(--card-radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: block;
}
.news-nav-link:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.news-nav-link.next {
  text-align: right;
}
.news-nav-lbl {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.news-nav-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sidebar components */
.sidebar-related-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-related-item {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.sidebar-related-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.sidebar-related-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-related-category {
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(37,99,235,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}
.sidebar-related-title {
  font-size: 0.95rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  color: var(--text-main);
}
.sidebar-related-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag-item {
  padding: 0.4rem 1rem;
  background: #f1f5f9;
  color: var(--text-main);
  border-radius: 2rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.tag-item.active {
  background: var(--primary);
  color: white;
}

/* Subscribe */
.subscribe-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  outline: none;
  font-size: 0.9rem;
  font-family: inherit;
  box-sizing: border-box;
}
.subscribe-btn {
  width: 100%;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
}
.subscribe-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.subscribe-agree input {
  margin-top: 0.2rem;
}
.subscribe-agree a {
  color: var(--primary);
  text-decoration: none;
}

/* Header helpers for no inline styles */
.nav-link-flex {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link-flex-sm {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.dropdown-chevron {
  font-size: 0.75rem;
}
.nav-link-active {
  color: var(--primary);
}

/* Breadcrumb white variant */
.news-breadcrumb-white {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-breadcrumb-white a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.news-breadcrumb-white .current {
  color: white;
}
.news-breadcrumb-white ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Misc helpers */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.bg-white { background: white; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 2px; }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.max-w-xl { max-width: 600px; }
.mt-24 { margin-top: 6rem; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; }

/* Case detail typography */
.case-detail-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; color: white; }
.case-detail-header > p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 0; }
.case-desc { font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.link-bar-label { font-size: 0.85rem; color: var(--text-muted); }

.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }
.shadow-sm { box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.items-start { align-items: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.z-10 { position: relative; z-index: 10; }
.z-20 { position: relative; z-index: 20; }
.leading-relaxed { line-height: 1.8; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }
.text-4xl { font-size: 2.5rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.5rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-white { color: white; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.border-t { border-top: 1px solid rgba(0,0,0,0.05); }
.border-b { border-bottom: 1px solid rgba(0,0,0,0.05); }
.divider { width: 60px; height: 4px; background: var(--primary); margin: 0 auto; border-radius: 2px; }
.inline-block { display: inline-block; }
.bg-primary-light { background: rgba(59,130,246,0.1); }

/* --- Templates Page Additional Styles --- */
.text-xs { font-size: 0.75rem; }
.gap-1 { gap: 0.25rem; }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-5 { margin-bottom: 1.25rem; }
.ml-auto { margin-left: auto; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-normal { line-height: 1.6; }
.tracking-wide { letter-spacing: 1px; }
.text-muted { color: var(--text-muted); }
.bg-white { background: white; }
.bg-transparent { background: transparent; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-sm { border-radius: 4px; }
.shadow-sm { box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.border-none { border: none; }
.border { border: 1px solid rgba(0,0,0,0.1); }
.border-t-light { border-top: 1px solid rgba(0,0,0,0.05); }
.border-b-light { border-bottom: 1px solid rgba(0,0,0,0.05); }
.absolute { position: absolute; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.object-cover { object-fit: cover; }
.no-underline { text-decoration: none; }
.cursor-pointer { cursor: pointer; }
.transition { transition: all 0.3s ease; }
.opacity-50 { opacity: 0.5; }
.opacity-20 { opacity: 0.2; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.max-w-600 { max-width: 600px; }
.max-w-900 { max-width: 900px; }
.max-w-700 { max-width: 700px; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

/* Header helpers */
.nav-link-primary { color: var(--primary); }
.nav-link.has-dropdown { display: flex; align-items: center; gap: 4px; }
.nav-chevron { font-size: 0.75rem; }

/* Templates hero */
.hero-features-row { display: flex; gap: 2rem; color: rgba(255,255,255,0.9); }
.page-hero-content--center .hero-features-row { justify-content: center; }
.hero-feature-item { display: flex; align-items: center; gap: 0.5rem; }
.page-hero-content--center .hero-feature-item {
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}
.page-hero-content--center .hero-feature-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.hero-feature-label { font-weight: 600; }
.hero-feature-sublabel { font-size: 0.85rem; opacity: 0.8; }

/* Template card extras */
.template-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Detail Page */
.detail-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(23, 37, 84, 0.95));
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.back-link:hover { color: white; }
.page-hero .back-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  margin-bottom: 0;
  z-index: 20;
}
.template-detail-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.detail-hero-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.detail-hero-tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.detail-hero-code { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.detail-hero-actions { display: flex; align-items: center; gap: 1rem; }
.tag-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
}

/* Preview Area */
.detail-main-grid { display: grid; grid-template-columns: 1fr 400px; gap: 2rem; align-items: start; }

.preview-panel { border-radius: var(--card-radius); padding: var(--card-padding); }
.preview-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.preview-counter { font-size: 0.9rem; color: var(--text-muted); }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.preview-grid-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
}
.preview-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.preview-grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.preview-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 1.5rem;
}
.preview-grid-item:hover .preview-grid-overlay { opacity: 1; }

/* Image Lightbox */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.img-lightbox.active { opacity: 1; visibility: visible; }
.img-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.img-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 85vw;
  max-height: 82vh;
  z-index: 1;
}
.img-lightbox-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-lightbox-img {
  max-width: 85vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.1s ease;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}
.img-lightbox-img:active { cursor: grabbing; }
.img-lightbox-toolbar {
  position: absolute;
  top: -3rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}
.img-lightbox-toolbar button {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.img-lightbox-toolbar button:hover { background: rgba(255,255,255,0.3); }
.img-lightbox-close-inline {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.img-lightbox-close-inline:hover { background: rgba(255,255,255,0.3); }
.img-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.img-lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.img-lightbox-nav.prev { left: -3.5rem; }
.img-lightbox-nav.next { right: -3.5rem; }
.img-lightbox-counter {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  background: rgba(0,0,0,0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
}


/* Info Sidebar */
.info-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { border-radius: var(--card-radius); padding: var(--card-padding); }
.info-card .card-title { display: flex; align-items: center; gap: 0.5rem; }
.title-bar { width: 4px; height: 16px; background: var(--primary); border-radius: 2px; }
.template-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.info-row { display: flex; gap: 1rem; }
.info-label { color: var(--text-muted); width: 70px; flex-shrink: 0; }
.info-value { font-weight: 500; }
.info-includes-box { background: rgba(59,130,246,0.05); padding: 1.5rem; border-radius: 0.75rem; margin-bottom: 1.5rem; }
.info-includes-title { font-weight: 600; margin-bottom: 1rem; color: var(--primary); }
.includes-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.include-tag { display: flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; color: var(--text-main); background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 0.4rem 0.8rem; border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.6); }
.btn-group-col { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.btn-group-col > .btn,
.btn-group-col > .btn-outline-primary,
.btn-group-col > .btn-primary { width: 100%; }
.btn-outline-primary { padding: 1rem 1.5rem; font-size: 1rem; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--primary); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 9999px; cursor: pointer; font-family: inherit; font-weight: 500; transition: all 0.3s ease; white-space: nowrap; }

/* Detail Features & Modules */
.detail-sections { margin-top: 5rem; display: flex; flex-direction: column; gap: 4rem; }
.detail-section-header { text-align: center; margin-bottom: 3rem; }
.detail-section-header-alt { text-align: center; margin-bottom: -1rem; }
.detail-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start; }

.feature-card { padding: var(--card-padding-sm); border-radius: var(--card-radius); display: flex; align-items: flex-start; gap: 1.25rem; }
.feature-icon-box { width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.25rem; }
.feature-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-main); }
.feature-card-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.detail-modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }

.module-card { padding: var(--card-padding-sm); border-radius: var(--card-radius); display: flex; align-items: flex-start; gap: 1.25rem; }
.module-icon-box { width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.25rem; }
.module-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text-main); }
.module-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* Footer helpers for inline-style-free HTML */
.footer-logo-wrap { margin-bottom: 1.5rem; }
.footer-logo-icon { font-size: 1.5rem; }
.footer-logo-text { color: var(--primary); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 2rem; }
.footer-socials { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.footer-socials a { color: var(--text-muted); }
.footer-socials i { font-size: 1.25rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list ul { padding: 0; list-style: none; margin: 0; }
.footer-contact-icon { margin-top: 2px; color: var(--text-muted); font-size: 1rem; }
.footer-contact-icon-center { color: var(--text-muted); font-size: 1rem; }
.footer-contact-text { font-size: 0.9rem; }
.footer-qr-area { margin-top: 1.5rem; display: flex; gap: 1rem; align-items: center; }
.footer-qr-box { width: 100px; height: 100px; background: var(--text-main); color: white; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.footer-qr-label { font-weight: 600; color: var(--text-main); font-size: 0.9rem; margin-bottom: 0.2rem; }
.footer-qr-sublabel { color: var(--text-muted); font-size: 0.85rem; }
.footer-link-muted { color: var(--text-muted); text-decoration: none; }
.footer-template-link { color: var(--primary); font-weight: 600; }
.pb-24 { padding-bottom: 6rem; }

/* === Services Page === */
.services-badge-wrap {
  position: relative;
  text-align: center;
  margin-top: -2rem;
  z-index: 20;
}
.services-badge {
  display: inline-block;
  padding: 1rem 3.5rem;
  background: #fff;
  color: var(--text-main);
  border-radius: 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.services-section {
  background: transparent;
  padding: 0 0 6rem 0;
  position: relative;
  z-index: 10;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}
.services-container {
  position: relative;
  z-index: 10;
  margin-top: 7rem;
}

.feature-row-card.img-left { flex-direction: row; }
.feature-row-card.img-right { flex-direction: row-reverse; }
.feature-content-inner { position: relative; z-index: 1; }

/* === About Page === */
.about-intro-section { padding: 6rem 0; }
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) 1.2fr;
  gap: 5rem;
  align-items: stretch;
}
.about-team-img-wrap { position: relative; height: 100%; }
.about-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-team-stats {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  gap: 1.5rem;
}
.about-stat-value-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
}
.about-stat-value-green {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 700;
  font-size: 1.5rem;
}
.about-stat-label-small {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.about-stat-divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
}
.about-intro-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.about-intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-main);
  line-height: 1.3;
}
.about-intro-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-data-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.about-data-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.about-values-section { padding: 5rem 0; }
.about-values-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.25rem;
  font-weight: 800;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.about-values-grid .home-feature-card {
  padding: var(--card-padding);
}
.about-timeline-section { padding: 6rem 0; }
.about-timeline-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.25rem;
  font-weight: 800;
}
.timeline-wrapper { position: relative; }
.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.timeline-row-reverse { flex-direction: row-reverse; }
.timeline-side { width: 45%; }
.timeline-card { padding: var(--card-padding); margin: 0; flex-direction: column; align-items: flex-start; }
.timeline-year {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.timeline-dot-small {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.timeline-card-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
/* timeline-line and timeline-node responsive rules are in the @media 768px block at file end */

/* === Contact Page === */
.contact-main-section {
  padding: 6rem 0;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  padding: var(--card-padding-lg);
  border-radius: var(--card-radius);
}
.contact-info-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.contact-info-section {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-info-section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.contact-info-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
}
.contact-qr-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.contact-qr-box {
  width: 100px;
  height: 100px;
  background: var(--text-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.contact-qr-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.contact-qr-sublabel {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.contact-form-card {
  padding: var(--card-padding);
  border-radius: var(--card-radius);
}
.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.contact-form-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.contact-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-form-group { margin-bottom: 1.5rem; }
.contact-attrs-section { padding: 0 0 6rem 0; }
.contact-attrs-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: var(--card-padding);
  border-radius: var(--card-radius);
}
.contact-attr-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-attr-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-attr-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.contact-attr-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* === Solutions Page Additional Styles === */
.hero-tag-white {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.15);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  display: inline-block;
}
.bullet-red { background: #ef4444; }
.bullet-purple { background: #8b5cf6; }

.btn-outline-blue {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.btn-outline-blue:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-purple {
  background: transparent;
  border: 1px solid #8b5cf6;
  color: #8b5cf6;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.btn-outline-purple:hover {
  background: #8b5cf6;
  color: white;
}

.bg-purple { background: #8b5cf6; }

/* Detail White Card */
.detail-white-card {
  border-radius: var(--card-radius);
  padding: var(--card-padding-lg);
}

/* Detail List */
.detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
}
.detail-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  display: inline-block;
}

/* Detail Content Section */
.detail-content-section {
  padding: 5rem 0;
}

/* Border left purple */
.border-l-purple {
  border-left: 4px solid #8b5cf6;
}

/* Result Highlights */
.result-highlight-purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.05) 0%, rgba(139,92,246,0.02) 100%);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 1.5rem;
  padding: 4rem;
  text-align: center;
}
.result-highlight-blue {
  background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(37,99,235,0.02) 100%);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 1.5rem;
  padding: 4rem;
  text-align: center;
}
.result-highlight-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

/* Purple Button */
.btn-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-decoration: none;
}
.btn-purple:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Detail Case Image */
.detail-case-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* === Inline styles migration from index.html === */
.delay-50 { transition-delay: 50ms; }
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-250 { transition-delay: 250ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
.delay-700 { transition-delay: 700ms; }
.delay-800 { transition-delay: 800ms; }

.relative-z1 { position: relative; z-index: 1; }
.relative-z10 { position: relative; z-index: 10; }

.text-green { color: #10b981; }
.text-pink { color: #ec4899; }
.text-purple-500 { color: #8b5cf6; }

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.glass-white { padding: 1.5rem; border-radius: 2rem; background: rgba(255,255,255,0.8); }

.img-dashboard { width: 100%; border-radius: 1.25rem; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.flex-between-items-end-mb-12 { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.text-muted-text-lg { color: var(--text-muted); font-size: 1.125rem; }
.no-underline-inline-flex { text-decoration: none; display: inline-flex; align-items: center; }

.badge-glass { padding: 0.5rem 1rem; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); display: inline-block; border-radius: 99px; margin-bottom: 1.5rem; font-size: 0.875rem; }
.opacity-90-text-lg { opacity: 0.9; font-size: 1.125rem; }

.text-center-mb-20-z1 { text-align: center; margin-bottom: 5rem; position: relative; z-index: 1; }

.text-center-mb-16 { text-align: center; margin-bottom: 4rem; }
.tag-primary { display: inline-block; background: rgba(59,130,246,0.1); color: var(--primary); padding: 0.25rem 1rem; border-radius: 1rem; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.text-muted-text-1_1 { color: var(--text-muted); font-size: 1.1rem; }

.py-24-bg-white { padding: 6rem 0; background: white; }
.text-left-mb-12 { text-align: left; margin-bottom: 2rem; }
.text-3xl-bold-mb-3 { font-size: 2.25rem; margin-bottom: 0.75rem; font-weight: 700; }
.text-muted-text-sm { color: var(--text-muted); font-size: 0.875rem; }

.link-primary-flex { font-weight: 600; display: flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; }
.flex-1-flex-end-relative { flex: 1; display: flex; justify-content: flex-end; position: relative; }

.ml-1 { margin-left: 4px; }

.pb-32-bg-transparent { padding-bottom: 4rem; background: transparent; }

.flex-gap-4 { display: flex; gap: 1rem; }
.flex-col-gap-4 { display: flex; flex-direction: column; gap: 1rem; }
.flex-col-gap-3 { display: flex; flex-direction: column; gap: 0.75rem; }
.mt-0_5-text-muted { margin-top: 2px; color: var(--text-muted); font-size: 1rem; }
.text-2xs { font-size: 0.7rem; }
.font-semibold-text-main-text-sm-mb-0_5 { font-weight: 600; color: var(--text-main); font-size: 0.9rem; margin-bottom: 0.2rem; }
.text-muted-text-sm-0_85 { color: var(--text-muted); font-size: 0.85rem; }
.text-muted-no-underline { color: var(--text-muted); text-decoration: none; }

/* Mock UI elements */
.mesh-glow-abs { position: absolute; top: 5%; left: 10%; width: 80%; height: 90%; border-radius: 50%; z-index: 0; }
.mock-browser-panel { position: absolute; top: 48%; left: 50%; transform: translate(-50%, -50%); width: 85%; height: auto; padding: 1.5rem; z-index: 2; display: flex; flex-direction: column; gap: 1rem; border-radius: 12px; }
.mock-browser-header { display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 0.75rem; }
.mock-dot-red { width: 12px; height: 12px; border-radius: 50%; background: #ef4444; }
.mock-dot-yellow { width: 12px; height: 12px; border-radius: 50%; background: #f59e0b; }
.mock-dot-green { width: 12px; height: 12px; border-radius: 50%; background: #10b981; }
.mock-browser-addressbar { margin-left: 1rem; background: rgba(0,0,0,0.05); border-radius: 4px; height: 24px; flex: 1; }
.mock-grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 1rem; }
.mock-block-lg { background: rgba(0,0,0,0.03); height: 120px; border-radius: 8px; }
.mock-bar-sm { background: rgba(0,0,0,0.03); height: 24px; border-radius: 4px; width: 80%; }
.mock-bar-xs { background: rgba(0,0,0,0.03); height: 16px; border-radius: 4px; width: 100%; }
.mock-bar-xs-90 { background: rgba(0,0,0,0.03); height: 16px; border-radius: 4px; width: 90%; }
.mock-btn-primary { background: var(--primary); opacity: 0.1; height: 32px; border-radius: 4px; width: 40%; margin-top: auto; }

.circle-main-reverse::before {
  animation-direction: reverse;
  background: conic-gradient(from 0deg, #ec4899, #8b5cf6, #3b82f6, #ec4899);
  opacity: 0.1;
}
.mock-devices-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 2rem; z-index: 2; display: flex; gap: 1.5rem; align-items: center; border-radius: 16px; }
.icon-3xl-block { font-size: 3rem; margin-bottom: 1rem; display: block; }
.text-xs-semibold-muted-mt-2 { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-top: 0.5rem; }
.divider-v { height: 40px; width: 2px; background: rgba(0,0,0,0.1); }

.text-center-mb-1_5 { text-align: center; margin-bottom: 1.5rem; }

/* Testimonial helpers */
.testimonial-avatar-sm { width: 48px; height: 48px; box-shadow: none; border: none; }
.author-name-sm { font-size: 0.95rem; }
.author-company-xs { font-size: 0.8rem; }

.carousel-dots-mt-12 { margin-top: 3rem; }

/* === Search Page === */
.search-hero-input-wrap {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  gap: 0.75rem;
}
.search-hero-input-wrap i {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.search-hero-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.05rem;
  color: var(--text-main);
  font-family: inherit;
}
.search-hero-input-wrap input::placeholder {
  color: var(--text-muted);
}
.search-hero-categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.search-hero-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.search-hero-cat:hover {
  background: rgba(255,255,255,0.3);
  color: white;
}
.search-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.search-solution-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.search-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(37,99,235,0.15);
}
.search-solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.search-solution-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}
.search-solution-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.search-solution-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.search-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.search-service-card {
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.search-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(37,99,235,0.15);
}
.search-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.search-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.search-service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.search-service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* === Responsive for selectors without base definitions in this file === */

/* === Floating Buttons & Mobile Bottom Bar === */
.floating-buttons {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}
.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  position: relative;
}
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}
.floating-btn-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.floating-btn-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-btn-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
  font-size: 0.9rem;
  color: var(--text-main);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}
.floating-btn-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: white;
}
.floating-btn:hover .floating-btn-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.qr-placeholder {
  width: 120px;
  height: 120px;
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.75rem;
  text-align: center;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  z-index: 998;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  height: 100%;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-bar-item i {
  font-size: 1.15rem;
}
.mobile-bar-item:hover,
.mobile-bar-item:active {
  color: var(--primary);
}

/* WeChat Modal */
.wechat-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.wechat-modal.active {
  opacity: 1;
  visibility: visible;
}
.wechat-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}
.wechat-modal-content {
  position: relative;
  background: white;
  padding: 1.5rem;
  border-radius: var(--card-radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  text-align: center;
  min-width: 240px;
  z-index: 1;
}
.wechat-modal-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-main);
}
.wechat-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.wechat-modal-close:hover {
  color: var(--text-main);
}

/* ============================================
   Responsive: Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.5rem; }
  .visual-container { max-width: 500px; margin: 0 auto; }
  .data-dashboard { display: flex; flex-direction: column; gap: 0.75rem; }
  .dashboard-main-card { position: relative; width: 100%; }
  .dashboard-stats-row { grid-template-columns: repeat(2, 1fr); }
  .dashboard-channel-card { position: relative; width: 100%; top: auto; right: auto; }
  .dashboard-bottom-row { margin-top: 0; flex-direction: column; }
  .dashboard-region-card { width: 100%; }
  .dashboard-market-card { width: 100%; }
  .hero-grid, .data-grid, .cases-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-features-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slide { width: 50%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid-list { grid-template-columns: repeat(2, 1fr); }
  .case-split-layout { grid-template-columns: 1fr; }
  .filter-tabs { max-width: 100%; }
  .detail-main-grid { grid-template-columns: 1fr; }
  .detail-features-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-modules-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-attrs-card { grid-template-columns: repeat(2, 1fr); }
  .search-solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .search-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Responsive: Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* 统一覆盖 - 移动端覆盖 */
  .section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
  }
  .section-title-extrabold {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
  }
  .page-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
  }
  .page-desc {
    font-size: var(--text-sm);
  }
  .card-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
  }
  .card-title-sm {
    font-size: var(--text-base);
  }
  .content-title {
    font-size: var(--text-xl);
  }

  .nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 9999;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.35s ease;
    overflow-y: auto;
  }
  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .mobile-nav-link {
    display: block;
    padding: 0.9rem 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: color 0.2s;
  }
  .mobile-nav-link:hover {
    color: var(--primary);
  }
  .mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .mobile-nav-group {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
  }
  .mobile-nav-chevron {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
  }
  .mobile-nav-group.open .mobile-nav-chevron {
    transform: rotate(180deg);
  }
  .mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 1rem;
    list-style: none;
    margin: 0;
  }
  .mobile-nav-group.open .mobile-nav-submenu {
    max-height: 500px;
    padding-bottom: 0.5rem;
  }
  .mobile-nav-submenu .mobile-nav-link {
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0.6rem 0;
    border-bottom: none;
    font-weight: 400;
  }
  .mobile-nav-submenu .mobile-nav-link:hover {
    color: var(--primary);
  }
  body.mobile-nav-open {
    overflow: hidden;
  }
  .hero { min-height: auto; padding-top: 6rem; padding-bottom: 3rem; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .slide-visual { display: none !important; }
  .visual-container { display: none !important; }
  .hero-stats { flex-direction: column; gap: 1.5rem; border-top: none; }
  .feature-row-card { flex-direction: column !important; min-height: auto; }
  .feature-visual-panel, .feature-content-panel { flex: none; width: 100%; }
  .feature-visual-panel { height: 240px; }
  .feature-content-panel { padding: 3rem 2rem; }
  .feature-number-watermark { right: 1rem; font-size: 8rem; }
  .case-metrics { flex-direction: row; gap: 0.75rem; justify-content: space-between; }
  .case-metric-val { font-size: 1.5rem; }
  .case-metric-label { font-size: 0.75rem; }
  .case-card { padding: var(--card-padding-sm); min-height: auto; }
  .case-card .opacity-90-text-lg { font-size: 0.875rem; margin-bottom: 0.25rem; }
  .case-card-btn { padding: 0.4rem 1rem; font-size: 0.8rem; margin-top: 0.25rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .home-features-grid, .news-grid { grid-template-columns: 1fr; }
  .testimonial-slide { width: 100%; }
  .cta-rocket { font-size: 4rem; right: 5%; bottom: 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .page-hero {
    min-height: 220px;
  }
  .page-hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .page-hero--detail .page-hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .cases-grid-list { grid-template-columns: 1fr; }
  .cases-filter-bar { border-radius: 1rem; padding: 1rem; flex-direction: column; align-items: stretch; }
  .cases-search { width: 100%; min-width: 0; }
  .case-meta-grid { flex-direction: row; gap: 1rem; }
  .case-meta-item { gap: 0.5rem; }
  .meta-icon { width: 28px; height: 28px; font-size: 0.75rem; }
  .meta-val { font-size: 0.875rem; }
  .case-detail-header h1 { font-size: 1.75rem; }
  .case-detail-header > p { font-size: 0.9rem; }
  .news-detail-content-wrap-shadow { padding: 1.5rem 1rem; }
  .news-content h3 { font-size: 1.25rem; margin-top: 1.5rem; }
  .news-content h4 { font-size: 1.1rem; margin-top: 1rem; }
  .results-grid-3 { grid-template-columns: 1fr; }
  .case-nav { flex-direction: column; gap: 2rem; }
  .case-nav-link.next { text-align: left; }
  .case-nav-link.prev { text-align: right; }
  .news-row-card {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1.5rem;
  }
  .news-row-img {
    width: 100%;
    height: 220px;
  }
  .news-row-content {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  .news-row-date {
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    min-width: 55px;
    padding-right: 0.75rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: none;
    padding-bottom: 0;
    width: auto;
  }
  .news-row-date .day { font-size: 1.75rem; margin-bottom: 0; }
  .news-row-date .ym { font-size: 0.7rem; }
  .news-row-text p { font-size: 0.8rem; -webkit-line-clamp: 1; }
  .news-row-arrow { display: none; }
  .news-detail-content-wrap { padding: 2rem 1.5rem; }
  .news-detail-meta { flex-wrap: wrap; gap: 1rem; }
  .news-detail-title { font-size: 2rem; border-radius: 1.5rem; }
  .timeline-line { display: none; }
  .timeline-node { display: none; }
  .template-card-body {
    padding: 1rem;
  }
  .template-card-tags {
    gap: 0.35rem;
    margin-bottom: 0.5rem;
  }
  .template-card-tag {
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
  }
  .template-card-desc {
    font-size: 0.8rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    -webkit-line-clamp: 1;
  }
  .template-card-footer {
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
  }
  .template-card-footer .btn,
  .template-card-footer a {
    flex: 1 1 0;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
    justify-content: center;
  }
  .filter-tabs {
    gap: 0.35rem;
    padding: 0.35rem 0;
    max-width: 100%;
    order: 2;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }
  .filter-bar {
    padding: 1rem;
  }
  .filter-bar-inner {
    gap: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .filter-search-row {
    order: 1;
    width: 100%;
    justify-content: flex-end;
    gap: 0.75rem;
  }
  .filter-search-row .search-box,
  .filter-search-row .search-box input {
    width: 100%;
  }
  .filter-search-row .search-box {
    flex: 1 1 auto;
    max-width: none;
  }
  .filter-search-row .search-box i {
    left: 0.75rem;
  }
  .search-box input {
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    font-size: 0.8rem;
  }
  .filter-toggle {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    flex: 0 0 auto;
    min-height: 44px;
    min-width: 64px;
    position: relative;
    z-index: 1;
  }
  .filter-section-title {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  .filter-options {
    gap: 0.5rem 1rem;
  }
  .filter-option-label {
    font-size: 0.8rem;
  }
  .expanded-filters-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .expanded-filter-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }
  .cta-bottom-section { min-height: auto; display: flex; align-items: center; justify-content: center; }
  .cta-bottom-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
  .cta-bottom-inner { position: relative; width: 100%; padding: 1.5rem 0; }
  .cta-bottom-content { justify-content: center; text-align: center; padding: 0 1.5rem; box-sizing: border-box; }
  .cta-bottom-text { text-align: center; max-width: 100%; }
  .cta-bottom-text h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
  .cta-bottom-text p { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .cta-bottom-actions { flex-direction: row; gap: 0.75rem; }
  .cta-btn-white, .cta-btn-outline { padding: 0.5rem 1rem; font-size: 0.8rem; justify-content: center; flex: 1; box-sizing: border-box; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; align-items: center; }
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero-features-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .hero-feature-item {
    flex: 1 1 0;
    min-width: 0;
    gap: 0.35rem;
  }
  .hero-feature-label {
    font-size: 0.75rem;
  }
  .hero-feature-sublabel {
    font-size: 0.7rem;
  }
  .hero-feature-item i {
    font-size: 0.9rem !important;
    flex-shrink: 0;
  }
  .template-detail-hero { padding: 5rem 0 3rem; }
  .template-detail-hero h1 { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .template-detail-hero p { font-size: 0.9rem; margin-bottom: 1rem; }
  .detail-hero-meta { flex-wrap: wrap; gap: 0.5rem; }
  .tag-pill { font-size: 0.75rem; padding: 0.25rem 0.6rem; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .preview-panel { padding: var(--card-padding-sm); }
  .img-lightbox-stage { max-width: 100vw; max-height: 70vh; padding: 0 1rem; }
  .img-lightbox-img { max-width: 100%; max-height: 70vh; }
  .img-lightbox-toolbar { top: auto; bottom: -3rem; right: 50%; transform: translateX(50%); }
  .img-lightbox-nav { width: 36px; height: 36px; }
  .img-lightbox-nav.prev { left: -0.25rem; }
  .img-lightbox-nav.next { right: -0.25rem; }
  .img-lightbox-counter { bottom: -5.5rem; }
  .info-row { gap: 0.5rem; }
  .info-value { word-break: break-word; }
  .include-tag { white-space: normal; max-width: 100%; }
  .detail-sections { margin-top: 2rem; gap: 2rem; }
  
  .detail-section-header-alt h2 { font-size: 1.5rem; }
  .detail-section-header h2 { font-size: 1.25rem; }
  .container { padding: 0 1.5rem; box-sizing: border-box; }
  .grid-2 { grid-template-columns: 1fr; }
  .detail-white-card.grid-2.gap-16 { display: flex; flex-direction: column-reverse; gap: 1.5rem; }
  .detail-white-card { padding: 1.25rem; }
  .detail-content-section { padding: 2.5rem 1.25rem; }
  .text-4xl { font-size: 1.75rem; }
  .detail-content-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }
  .detail-white-card h3.text-3xl { font-size: 1.25rem; margin-bottom: 0.75rem; }
  .detail-white-card h3.text-2xl { font-size: 1.1rem; margin-bottom: 0.75rem; }
  .detail-list-item { font-size: 0.9rem; gap: 0.5rem; }
  .detail-white-card p.text-lg { font-size: 0.9rem; margin-bottom: 0.75rem; }
  .detail-features-grid { grid-template-columns: 1fr; }
  .detail-modules-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .timeline-row, .timeline-row-reverse { flex-direction: column !important; gap: 1rem; }
  .timeline-side { width: 100%; }
  .contact-form-grid-2 { grid-template-columns: 1fr; }
  .contact-attrs-card { grid-template-columns: 1fr; }
  .search-hero-input-wrap { border-radius: 1rem; padding: 0.75rem 1rem; }
  .search-hero-cat { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
  .search-solutions-grid { grid-template-columns: 1fr; }
  .search-solution-card { flex-direction: column; }
  .search-services-grid { grid-template-columns: 1fr; }
  .cta-dark-buttons { flex-direction: column; align-items: center; }
  .detail-cta-banner { flex-direction: column; gap: 2rem; text-align: center; }
  .floating-buttons { display: none; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 60px; }
  .data-dashboard { display: none; }
  
  .section { padding: 3rem 0; }
  .stats-section { padding: 4rem 0; }
  .testimonials-section { padding: 3rem 0; }
}