/* ========================================
   MEMSEM - Modern Website Stylesheet
   深圳市名欣快速模型有限公司
   ======================================== */

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fb923c;
  
  /* Neutrals */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Semantics */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  
  /* Spacing */
  --container: 1050px;
  --section-padding: 36px 0;
  --section-padding-mobile: 32px 0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--gray-600); line-height: 1.7; }

/* --- Section Styles --- */
.section { padding: var(--section-padding); overflow-x: hidden; }
.section-alt { background: var(--gray-50); overflow-x: hidden; }
.section-dark { background: var(--gray-900); color: white; }
.section-dark p { color: var(--gray-300); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
}

.section-header .label {
  display: inline-block;
  background: rgba(26, 86, 219, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; }

.section-dark .section-header .label {
  background: rgba(255,255,255,0.1);
  color: var(--accent-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: white;
  color: var(--gray-900);
  border-color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 14px 28px; font-size: 0.9375rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* --- Grid --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* --- Cards --- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--gray-100);
}

.card-body { padding: 24px; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.navbar-logo img {
  filter: none !important;
  -webkit-filter: none !important;
}

.navbar-logo svg { flex-shrink: 0; }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-menu a {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--primary);
  background: rgba(26, 86, 219, 0.06);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Old lang-switch styles (kept for other pages compatibility) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.lang-switch button {
  padding: 5px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 4px;
  color: var(--gray-500);
  transition: var(--transition);
}

.lang-switch button.active {
  background: white;
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero (Compact Layout) --- */
.hero.hero-compact {
  min-height: auto;
  padding: 88px 0 40px;
  background: white;
}

.hero.hero-compact .hero-grid-pattern { display: none; }

.hero-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Left: Logo Zone */
.hero-logo-zone {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--gray-100);
}

.hero-logo-header h2 {
  font-size: 1.125rem;
  color: var(--gray-700);
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

/* Compact Stats */
.hero-stats-compact {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.hero-stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-num span {
  color: var(--accent);
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Right: Process Icon Grid */
.hero-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

.process-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.process-icon-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-icon-img {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.process-icon-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  line-height: 1.3;
}

.process-icon-card:hover .process-icon-label {
  color: var(--primary);
}

/* --- Hero Right: Process Icon Zone (square blue glass) --- */
.hero-process-zone {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 28px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.45) 0%, rgba(30, 58, 95, 0.55) 50%, rgba(26, 86, 219, 0.45) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.process-icon-card-dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: white;
  transition: var(--transition);
}

.process-icon-card-dark:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.process-icon-card-dark .process-icon-img {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-card-dark .process-icon-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.process-icon-card-dark .process-icon-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: white;
}

/* --- Hero styles --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
  overflow: hidden;
  padding: 88px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(16,185,129,0.1) 0%, transparent 50%);
}

.hero-grid-pattern {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 32px;
}

.hero-text h1 {
  color: white;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat .hero-counter {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: -1px;
}

.hero-stat .desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.badge-1 { top: 10%; right: -20px; animation-delay: 0s; }
.badge-2 { bottom: 15%; left: -30px; animation-delay: 2s; }
.badge-3 { bottom: 40%; right: -10px; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Trust Bar (Scrolling Logos) — embedded in Hero bottom --- */
.trust-bar {
  padding: 20px 0;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.2) 0%, rgba(30, 58, 95, 0.25) 50%, rgba(26, 86, 219, 0.2) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.trust-bar > .container > p,
.trust-bar > p {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.trust-logos-wrapper {
  overflow: hidden;
  width: 100%;
}

/* ===== Static Logo Grid (8 cols × 2 rows) ===== */
.trust-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  padding: 12px 8px;
  max-width: 100%;
  margin: 0 auto;
}

.trust-logos-grid .trust-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 44px;
  padding: 0;
  transition: opacity 0.3s ease;
}

.trust-logos-grid .trust-logo-item:hover {
  opacity: 0.7;
}

.trust-logos-grid .trust-logo-item img {
  max-height: 34px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.trust-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 8px;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.trust-logo-item:hover {
  opacity: 0.7;
}

.trust-logo-item img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: none !important;
  -webkit-filter: none !important;
}

/* When admin-bridge renders text-only logos (no image) */
.trust-logo-item:has(> :not(img)) {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
}

/* --- Service Cards --- */
.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: transparent;
  margin-left: auto;
  margin-right: auto;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.service-card h4 { margin-bottom: 10px; }
.service-card p { font-size: 0.9375rem; }

.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .arrow { gap: 10px; }

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--primary);
  color: white;
}

.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.875rem; }

/* --- Case Showcase --- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.case-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.case-card-body { padding: 20px; }

.case-card-tag {
  display: inline-block;
  background: rgba(26, 86, 219, 0.08);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-card h4 { font-size: 1rem; margin-bottom: 6px; }
.case-card p { font-size: 0.875rem; }

/* ===== Video Showcase ===== */
.video-showcase-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4ff 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.video-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1e3a5f;
  overflow: hidden;
}

.video-thumb img,
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(26, 86, 219, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-card:hover .video-play-btn {
  background: rgba(26, 86, 219, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card-body {
  padding: 20px 24px;
}

.video-card-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.video-card-body h4 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}

.video-card-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Playing state */
.video-card.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}
.video-card.playing .video-thumb video {
  pointer-events: auto;
}

/* --- About Page Carousel --- */
.about-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
  width: 100%;
}
.about-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
.about-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.about-carousel-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.about-carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.about-carousel-dots span.active {
  background: white;
  width: 24px;
  border-radius: 5px;
}

/* --- Quote / CTA Section --- */
.quote-section {
  background: linear-gradient(135deg, #1e3a5f, #1a56db);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(249,115,22,0.2), transparent 60%);
}

.quote-section > * { position: relative; z-index: 1; }

.quote-section h2 {
  color: white;
  margin-bottom: 16px;
}

.quote-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Inquiry Form --- */
.inquiry-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group { margin-bottom: 0; }

.form-group.full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--gray-50);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.form-input::placeholder { color: var(--gray-400); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-file {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.form-file:hover {
  border-color: var(--primary);
  background: rgba(26, 86, 219, 0.04);
}

.form-file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-file-icon { font-size: 2rem; margin-bottom: 8px; }
.form-file-text { font-size: 0.875rem; color: var(--gray-500); }
.form-file-text strong { color: var(--primary); }

.form-submit {
  margin-top: 24px;
  width: 100%;
}

/* --- Floating Contact Bar --- */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.floating-bar.visible { transform: translateY(0); }

.floating-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.floating-bar-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-700);
}

.floating-bar-text span { color: var(--accent); }

.floating-bar-actions { display: flex; gap: 12px; }

/* PC端隐藏致电条 */
@media (min-width: 769px) {
  .floating-bar { display: none; }
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3,
.footer-brand-name {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-col h4 {
  color: white;
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  font-size: 0.875rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: white; padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--gray-400);
  padding: 4px 0;
  white-space: nowrap;
}

.footer-contact li svg { flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--gray-300); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* 防止FAQ容器出现滚动条 */
#faq-container,
#faq-items {
  overflow: visible !important;
}

/* --- Page Header --- */
.page-header {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  padding: 100px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(249,115,22,0.1), transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(59,130,246,0.15), transparent 60%);
}

.page-header > * { position: relative; z-index: 1; }
.page-header h1 { color: white; margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.125rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  transition: var(--transition);
}

.tab-btn:hover { color: var(--gray-700); }

.tab-btn.active {
  background: white;
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
}

/* --- Contact Info Cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.contact-card h4 { margin-bottom: 8px; }
.contact-card p { font-size: 0.9375rem; }
.contact-card a { font-weight: 600; }

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  /* Show hero-visual below text instead of hiding it */
  .hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text p {
    max-width: 560px;
  }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Why Us section: force 2-col at tablet */
  .section-alt .grid.grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  /* Hero process zone on tablet */
  .hero-process-zone {
    max-width: 420px;
    gap: 14px;
    padding: 22px;
    margin-top: 12px;
  }
  .process-icon-card-dark .process-icon-img {
    width: 68px;
    height: 68px;
  }
  .process-icon-card-dark .process-icon-label {
    font-size: 0.75rem;
  }
  .process-icon-card-dark {
    padding: 10px 4px;
    gap: 8px;
  }

  /* Blog preview grid: 2-col on tablet */
  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
  .blog-preview-grid > .blog-card[style*="grid-row"] {
    grid-row: auto !important;
    grid-template-columns: 1fr !important;
  }
  .blog-preview-featured {
    grid-column: span 2;
  }

  /* Case grid: 2-col on tablet */
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Contact cards: 3-col stays ok on tablet but reduce gap */
  .contact-cards { gap: 16px; }

  /* Trust logos: more columns on tablet */
  .trust-logos-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px 16px;
    padding: 12px 8px;
  }

  /* Stats grid: 2x2 on tablet */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px;
  }

  /* CTA grid: allow more room */
  .cta-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root { --section-padding: 40px 0; }

  /* Mobile Navigation - compact panel below navbar */
  .navbar-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 0;
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 0 0 12px 12px;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    animation: slideDown 0.25s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .navbar-menu.open { display: flex; }

  .navbar-menu a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .navbar-menu a:last-child { border-bottom: none; }

  /* Mobile overlay backdrop */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.visible {
    display: block;
    opacity: 1;
  }

  .navbar-toggle { display: flex; z-index: 1002; }

  .navbar-logo { gap: 6px; }
  .navbar-logo img { height: 28px !important; }
  .navbar-logo span { font-size: 0.85rem; white-space: nowrap; }

  .navbar-actions .btn { display: none; }

  /* Compact hero mobile */
  .hero.hero-compact {
    padding: 76px 0 32px;
  }
  .hero-compact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-logo-zone {
    padding: 20px;
  }
  .hero-logo-header h2 {
    font-size: 1rem;
  }
  .hero-process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .process-icon-img {
    width: 44px;
    height: 44px;
  }
  .process-icon-label {
    font-size: 0.75rem;
  }
  .process-icon-card {
    padding: 12px 4px;
  }

  .hero { min-height: auto; padding: 76px 0 0; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Hero process zone mobile: show below text, full width */
  .hero-visual {
    display: flex;
  }
  .hero-process-zone {
    max-width: 100%;
    aspect-ratio: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
  }
  .process-icon-card-dark .process-icon-img {
    width: 56px;
    height: 56px;
  }
  .process-icon-card-dark .process-icon-label {
    font-size: 0.75rem;
  }
  .process-icon-card-dark {
    padding: 10px 4px;
    gap: 6px;
  }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .trust-logos-grid { grid-template-columns: repeat(4, 1fr); gap: 10px 12px; padding: 8px 4px; }
  .trust-logos-grid .trust-logo-item { height: 28px; }
  .trust-logos-grid .trust-logo-item img { max-height: 22px; }
  .trust-logo-item img { max-height: 32px; max-width: 90px; }

  .quote-section { padding: 40px 24px; }

  /* CTA section: stack vertically */
  #inquiry .container > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Why Choose Us - stats grid */
  .section-alt .grid.grid-4 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .section-alt > .container > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 24px !important;
  }

  /* 移动端简化footer：只显示备案号 */
  .footer { padding: 0; }
  .footer-grid { display: none !important; }
  .footer-bottom { 
    flex-direction: column; 
    gap: 8px; 
    text-align: center; 
    padding: 20px 16px 80px; 
    border-top: 1px solid rgba(255,255,255,0.08); 
  }

  .floating-bar-text { display: none; }
  .floating-bar-actions { width: 100%; justify-content: center; }

  .tabs { gap: 2px; }
  .tab-btn { padding: 8px 14px; font-size: 0.8125rem; }

  /* Blog preview grid */
  .blog-preview-grid {
    grid-template-columns: 1fr !important;
  }
  .blog-preview-grid > .blog-card[style*="grid-row"] {
    grid-row: auto !important;
    grid-template-columns: 1fr !important;
  }
  .blog-preview-grid .blog-card-img {
    min-height: 200px !important;
  }

  /* Video showcase mobile */
  .video-grid {
    max-width: 100%;
  }
  .video-card-body {
    padding: 16px 20px;
  }
  .video-card-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
}

/* ========================================
   Phone Landscape — wider layout like PC
   ======================================== */
@media (max-width: 932px) and (orientation: landscape) {
  /* Grids: restore multi-column */
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }

  /* Hero: side-by-side layout */
  .hero-content { grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-text { text-align: left; }
  .hero-text p { margin-left: 0; margin-right: 0; }
  .hero-stats { flex-direction: row; gap: 20px; }
  .hero-buttons { flex-direction: row; }
  .hero-buttons .btn { width: auto; }

  .hero.hero-compact { padding: 80px 0 24px; }
  .hero-compact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Blog preview: 2-col */
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .blog-preview-grid > .blog-card[style*="grid-row"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats: 2x2 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why Us: 2x2 */
  .section-alt .grid.grid-4 { grid-template-columns: repeat(2, 1fr) !important; }

  /* Trust logos: 6-col */
  .trust-logos-grid { grid-template-columns: repeat(6, 1fr); }

  /* CTA: side-by-side */
  #inquiry .container > div {
    flex-direction: row !important;
    gap: 40px !important;
  }

  /* Footer: show full grid */
  .footer { padding: 48px 0 0; }
  .footer-grid { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { padding: 20px 16px; }

  /* Floating bar: show text */
  .floating-bar-text { display: block; }
  .floating-bar-actions { width: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { width: 100%; justify-content: center; }
  .inquiry-form { padding: 24px; }

  .section-alt .grid.grid-4 {
    grid-template-columns: 1fr !important;
  }
  .section-alt > .container > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
  .navbar-menu { padding: 8px 12px 16px; }
  .navbar-menu a { padding: 10px 12px; font-size: 0.9375rem; }

  .hero-stats-compact {
    gap: 16px;
  }
  .stat-num {
    font-size: 1.25rem;
  }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-4 { margin-top: 32px !important; }


/* ===== Extracted Inline Styles (Performance Optimization) ===== */

/* --- Advantage Cards (Why Choose Us) --- */
.advantage-card {
  text-align: center;
  padding: 32px 20px;
}
.advantage-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.advantage-card h4 { margin-bottom: 10px; }
.advantage-card p { font-size: 0.9rem; }

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.stats-item { text-align: center; }
.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stats-desc {
  color: var(--gray-500);
  margin-top: 8px;
  font-size: 0.875rem;
}

/* --- CTA Section --- */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.label-accent {
  background: rgba(249,115,22,0.2);
  color: #fb923c;
}
.cta-title {
  color: white;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cta-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.cta-intro-box {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.06);
}
.cta-intro-title {
  color: white;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}
.cta-intro-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- CTA Contact List --- */
.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cta-contact-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.cta-contact-value {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}
.cta-contact-value--small {
  font-weight: 600;
  font-size: inherit;
}
.cta-contact-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

/* --- QR Codes --- */
.cta-qr-wrapper {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cta-qr-card {
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  min-width: 140px;
}
.cta-qr-img {
  width: 130px;
  height: 130px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.15);
  object-fit: contain;
  margin-bottom: 6px;
}
.cta-qr-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* --- Form --- */
.form-title { margin-bottom: 6px; }
.form-subtitle { font-size: 0.875rem; margin-bottom: 24px; }
.form-submit-btn { width: 100%; justify-content: center; }

/* --- Blog Cards --- */
.blog-card-link { text-decoration: none; color: inherit; }
.blog-card-cover { object-fit: cover; }
.blog-card-footer--featured { margin-top: 12px; }
.section-header--compact { margin-bottom: 20px; }
.section-more { margin-top: 28px; }

/* --- Container Narrow --- */
.container-narrow { max-width: 800px; }

/* --- Responsive additions for extracted styles --- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
  .cta-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .section-more { margin-top: 24px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}
