/* ============================================
   CloudFlow SaaS - Modern Design System
   鐜颁唬涓撲笟 SaaS 椋庢牸
   ============================================ */

:root {
  /* Primary palette */
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --primary-dark: #4338ca;
  --primary-bg: #eef2ff;

  /* Accent / Secondary */
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --accent-bg: #ecfeff;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Functional */
  --success: #32e6b9;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Surfaces */
  --bg-page: #ffffff;
  --bg-section: #f8fafc;
  --bg-dark: #0f172a;
  --bg-darker: #020617;

  /* Typography */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --text-inverse: #f8fafc;

  /* Spacing & Layout */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 6px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.03);
  --shadow-md: 0 10px 15px rgba(0,0,0,.06), 0 4px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.08), 0 8px 16px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px rgba(0,0,0,.12);
  --shadow-glow: 0 0 40px rgba(79,70,229,.15);
  --shadow-card: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.04);

  /* Transitions */
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.4s cubic-bezier(.4,0,.2,1);

  /* Font */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Iconify inline icons */
iconify-icon[inline] { vertical-align: -0.125em; }
.fc-icon iconify-icon { font-size: 2.5rem; }
.feature-icon iconify-icon { font-size: 1.8rem; }
.fi-icon iconify-icon { font-size: 2rem; }
.floating-icon iconify-icon { font-size: 2rem; }
.ci-icon iconify-icon { font-size: 1.5rem; }
.stat-icon iconify-icon { font-size: 2rem; }
.dd-icon iconify-icon { font-size: 1rem; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-page);
  -moz-osx-font-smoothing: grayscale;
}

/* === Site Background Styles === */
body.bg-dark { background: #0a0a0f; color: rgba(255,255,255,0.85); --text-primary: rgba(255,255,255,0.85); }
body.bg-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
body.bg-dark-gradient { background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%); color: rgba(255,255,255,0.85); --text-primary: rgba(255,255,255,0.85); }
body.bg-dot { background: #f8fafc; background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px); background-size: 20px 20px; }
body.bg-grid { background: #f8fafc; background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px); background-size: 40px 40px; }

/* Dark backgrounds 鈥?sections match body */
body.bg-dark .section, body.bg-dark-gradient .section,
body.bg-dark .section-alt, body.bg-dark-gradient .section-alt,
body.bg-dark .section-gradient, body.bg-dark-gradient .section-gradient,
body.bg-dark section, body.bg-dark-gradient section { background: #0a0a0f; }
body.bg-dark-gradient .section, body.bg-dark-gradient .section-alt,
body.bg-dark-gradient .section-gradient, body.bg-dark-gradient section { background: transparent; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection { background: var(--primary); color: white; }

/* ============================================
   Layout
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-section);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-gradient {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-dark .section-title {
  color: var(--text-inverse);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: var(--gray-400);
}

/* ============================================
   Featured Pages (Homepage 鈥?show_on_home=1)
   ============================================ */
.featured-pages-section {
  padding: 100px 0 80px;
  background: var(--white);
}

.featured-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.featured-page-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.featured-page-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.featured-page-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 32px rgba(79,70,229,.12);
  transform: translateY(-4px);
}
.featured-page-card:hover::before { transform: scaleX(1); }

.featured-page-card .fp-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
  transition: color .3s ease;
}
.featured-page-card:hover .fp-icon {
  color: var(--accent);
}

.featured-page-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.featured-page-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}

.featured-page-card .fp-link {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all .3s;
}
.featured-page-card:hover .fp-link {
  color: var(--accent);
  transform: translateX(4px);
}

/* ============================================
   Feature Card Module 鈥?鍔熻兘浠嬬粛鍗＄墖 (7 variants)
   ============================================ */

/* ===== Shared ===== */
.fc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1; margin-bottom: 16px;
  color: var(--primary);
}

/* ===== Shared Buttons ===== */
.fc-buttons { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.fc-buttons-left { justify-content: flex-start; }
.fc-buttons-center { justify-content: center; }
.fc-buttons-right { justify-content: flex-end; }

.fc-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; border-radius: 10px; transition: all .25s ease; cursor: pointer; border: none; }
.fc-btn-sm { padding: 8px 20px; font-size: 13px; border-radius: 8px; }
.fc-btn-md { padding: 12px 28px; font-size: 15px; border-radius: 10px; }
/* Card style variants */
.fc-card-bordered { border: 2px solid rgba(0,0,0,.06); border-radius: 20px; box-shadow: none; padding: 24px; }
.fc-card-flat { border-radius: 0; box-shadow: none; }
.section-dark .fc-card-bordered { border-color: rgba(255,255,255,.1); }

<!-- Theme variants moved to end of dark section for CSS priority -->

.fc-btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 12px; }

/* 1. primary 鈥?瀹炲績鍝佺墝钃?+ 鎶曞奖 */
.fc-btn-primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(79,70,229,.25); }
.fc-btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79,70,229,.35); }

/* 2. outline 鈥?绌哄績鎻忚竟锛宧over瀹炲績濉厖 */
.fc-btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.fc-btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79,70,229,.25); }

/* 3. gradient 鈥?娓愬彉濉厖锛堣摑鈫掔矇锛?*/
.fc-btn-gradient { background: linear-gradient(135deg, var(--primary), #ec4899); color: #fff; box-shadow: 0 4px 14px rgba(79,70,229,.3); }
.fc-btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,.4); }

/* 4. underline 鈥?绾枃瀛椾笅鍒掔嚎閾炬帴锛屾渶杞婚噺 */
.fc-btn-underline { background: transparent; color: var(--primary); padding: 10px 4px; border-radius: 0; border-bottom: 2px solid var(--primary); font-weight: 600; }
.fc-btn-underline:hover { color: var(--primary-dark); border-bottom-color: var(--primary-dark); padding-bottom: 6px; border-bottom-width: 3px; }

/* 5. neon 鈥?闇撹櫣鍙戝厜锛屾繁鑹插簳+绱厜杈规+鍏夋檿 */
.fc-btn-neon { background: #0f0f1a; color: #a78bfa; border: 1.5px solid #a78bfa; box-shadow: 0 0 8px rgba(167,139,250,.3), 0 0 20px rgba(167,139,250,.1), inset 0 0 8px rgba(167,139,250,.05); }
.fc-btn-neon:hover { color: #c4b5fd; border-color: #c4b5fd; box-shadow: 0 0 14px rgba(167,139,250,.5), 0 0 32px rgba(167,139,250,.25), 0 0 60px rgba(167,139,250,.1); transform: translateY(-1px); }

/* 6. dark 鈥?娣辫壊瀹炲績锛岀畝娲佹矇绋?*/
.fc-btn-dark { background: #1f2937; color: #fff; }
.fc-btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ===== Video Protection Wrapper ===== */
.fc-video-wrap { position: relative; width: 100%; overflow: hidden; border-radius: inherit; }
.fc-video-wrap video { width: 100%; display: block; }
.fc-video-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35); cursor: pointer; transition: background .3s;
}
.fc-video-overlay:hover { background: rgba(0,0,0,.25); }
.fc-play-btn {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  transition: all .25s; border: 2px solid rgba(255,255,255,.3);
}
.fc-video-overlay:hover .fc-play-btn { transform: scale(1.1); background: rgba(255,255,255,.35); }
.fc-fs-btn {
  position: absolute; bottom: 16px; left: 16px; padding: 8px 14px; background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px); color: #fff; border-radius: 8px; font-size: 13px; cursor: pointer;
  display: flex; align-items: center; gap: 6px; z-index: 2; transition: background .2s;
}
.fc-fs-btn:hover { background: rgba(0,0,0,.8); }
.fc-fullscreen-btn {
  position: absolute; bottom: 16px; right: 16px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px); border: none; border-radius: 8px;
  cursor: pointer; z-index: 2; transition: background .2s;
}
.fc-fullscreen-btn:hover { background: rgba(0,0,0,.8); }

/* ===== 1. image-left: 宸﹀浘/瑙嗛 + 鍙虫枃瀛?===== */

/* ===== Text Alignment & Title Size ===== */
.fc-text-left { text-align: left; }
.fc-text-center { text-align: center; }
.fc-text-right { text-align: right; }

.fc-title-sm { font-size: 1.3rem !important; line-height: 1.3 !important; }
.fc-title-md { font-size: 1.8rem !important; line-height: 1.25 !important; }
.fc-title-lg { font-size: 2.4rem !important; line-height: 1.2 !important; }
.fc-title-xl { font-size: 3rem !important; line-height: 1.15 !important; }

.fc-desc-sm { font-size: .85rem !important; line-height: 1.65 !important; }
.fc-desc-md { font-size: 1.02rem !important; line-height: 1.8 !important; }
.fc-desc-lg { font-size: 1.18rem !important; line-height: 1.85 !important; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .fc-buttons { gap: 10px; }
}

/* ============================================
   Navigation - Glass Morphism
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  --nav-h: 68px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(15,23,42,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* ============================================
   Logo Style Variants (10 绉?
   Applied via `.logo-XXX` class on <a>, modifies
   the <span> (first letter) and text decoration.
   ============================================ */

/* 1. default 鈥?gradient first letter (鐜版湁琛屼负) */
.nav-logo.logo-default {} /* uses base .nav-logo span */

/* 2. badge 鈥?寰界珷鏍囩 */
.nav-logo.logo-badge span {
  background: var(--primary) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  padding: 2px 9px 3px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 800;
}
.nav-logo.logo-badge { gap: 6px; }

/* 3. bracket 鈥?[鏂规嫭鍙穄 */
.nav-logo.logo-bracket::before { content: '['; color: var(--gray-300); font-weight: 600; letter-spacing: 2px; }
.nav-logo.logo-bracket::after  { content: ']'; color: var(--gray-300); font-weight: 600; letter-spacing: 2px; }
.nav-logo.logo-bracket span { color: var(--primary); -webkit-text-fill-color: var(--primary); -webkit-background-clip: unset; background-clip: unset; }

/* 4. dot 鈥?鍦嗙偣鍒嗛殧 C 路 loudFlow */
.nav-logo.logo-dot span { color: var(--primary); -webkit-text-fill-color: var(--primary); -webkit-background-clip: unset; background-clip: unset; font-weight: 800; }
.nav-logo.logo-dot span::after { content: ' 路'; color: var(--primary); font-weight: 800; }
.nav-logo.logo-dot { font-weight: 600; }

/* 5. underline 鈥?涓嬪垝绾?*/
.nav-logo.logo-underline { border-bottom: 3px solid var(--primary); padding-bottom: 3px; }
.nav-logo.logo-underline span { background: none; -webkit-text-fill-color: var(--primary); -webkit-background-clip: unset; background-clip: unset; color: var(--primary); }

/* 6. outline 鈥?鎻忚竟闀傜┖ */
.nav-logo.logo-outline { font-weight: 800; }
.nav-logo.logo-outline span {
  -webkit-text-stroke: 1.5px var(--primary);
  -webkit-text-fill-color: transparent;
  background: none !important;
  color: transparent !important;
}
.nav-logo.logo-outline { color: var(--primary); -webkit-text-stroke: 0.5px var(--primary); -webkit-text-fill-color: transparent; }

/* 7. shadow 鈥?绔嬩綋娴洉 */
.nav-logo.logo-shadow span {
  background: none !important;
  -webkit-text-fill-color: var(--primary) !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--primary) !important;
  text-shadow: 2px 2px 0 rgba(79,70,229,.25);
}
.nav-logo.logo-shadow { text-shadow: 1px 1px 0 rgba(0,0,0,.06); }

/* 8. slash 鈥?鏂滄潬鍒嗛殧 C/LOGO */
.nav-logo.logo-slash span { color: var(--primary); -webkit-text-fill-color: var(--primary); -webkit-background-clip: unset; background-clip: unset; font-weight: 800; }
.nav-logo.logo-slash span::after { content: ' /'; color: var(--gray-400); font-weight: 400; font-style: italic; }
.nav-logo.logo-slash { font-weight: 700; color: var(--gray-800); }

/* 9. glow 鈥?娓愬彉鍙戝厜 */
.nav-logo.logo-glow span {
  background: linear-gradient(135deg, var(--primary), var(--accent, #06b6d4)) !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  filter: drop-shadow(0 0 6px rgba(79,70,229,.35));
}
.nav-logo.logo-glow { color: var(--gray-700); }

/* 10. neon 鈥?闇撹櫣鐏晥 */
.nav-logo.logo-neon span {
  background: none !important;
  -webkit-text-fill-color: var(--accent, #06b6d4) !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--accent, #06b6d4) !important;
  text-shadow: 0 0 8px var(--accent, #06b6d4), 0 0 20px rgba(6,182,212,.4);
}
.nav-logo.logo-neon { color: var(--gray-300); }

/* === Logo hover effects === */
.nav-logo { transition: transform 0.3s cubic-bezier(.4,0,.2,1), filter 0.3s ease; }
/* pulse */
.nav-logo.logo-effect-pulse:hover { transform: scale(1.08); }
/* bounce */
.nav-logo.logo-effect-bounce:hover { animation: logoBounce 0.5s cubic-bezier(.4,0,.2,1); }
@keyframes logoBounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
/* glow */
.nav-logo.logo-effect-glow:hover { filter: drop-shadow(0 0 12px rgba(79,70,229,.5)); }
/* spin */
.nav-logo.logo-effect-spin:hover span { animation: logoSpin 0.6s ease; display: inline-block; }
@keyframes logoSpin { 0% { transform: rotateY(0); } 100% { transform: rotateY(360deg); } }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  color: var(--gray-300);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  display: block;
  cursor: pointer;
}

.nav-links > li > a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  font-weight: 600 !important;
  margin-left: 12px;
  transition: all .25s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* CTA size variants */
.nav-cta.cta-size-sm { padding: 8px 18px !important; font-size: 0.85rem !important; }
.nav-cta.cta-size-md { padding: 11px 26px !important; font-size: 0.92rem !important; }
.nav-cta.cta-size-lg { padding: 14px 34px !important; font-size: 1rem !important; }

/* CTA radius variants */
.nav-cta.cta-radius-sharp { border-radius: 2px !important; }
.nav-cta.cta-radius-sm  { border-radius: 6px !important; }
.nav-cta.cta-radius-md  { border-radius: 10px !important; }
.nav-cta.cta-radius-pill { border-radius: 50px !important; }

/* CTA hover effects */
/* roll — text scrolls up, clone scrolls in (uses cta-roll classes, NOT nav-roll) */
.nav-cta.cta-effect-roll { position: relative; }
.nav-cta.cta-effect-roll .cta-roll { display: inline-block; overflow: hidden; vertical-align: middle; position: relative; line-height: 1.4; }
.nav-cta.cta-effect-roll .cta-roll-inner { display: block; transition: transform 0.35s cubic-bezier(.4,0,.2,1); }
.nav-cta.cta-effect-roll .cta-roll-clone { display: block; position: absolute; top: 100%; left: 0; transition: transform 0.35s cubic-bezier(.4,0,.2,1); }
.nav-cta.cta-effect-roll:hover .cta-roll-inner { transform: translateY(-100%); }
.nav-cta.cta-effect-roll:hover .cta-roll-clone { transform: translateY(-100%); }

/* pulse 鈥?button scales up slightly */
.nav-cta.cta-effect-pulse { transition: transform 0.3s cubic-bezier(.4,0,.2,1); }
.nav-cta.cta-effect-pulse:hover { transform: scale(1.06) !important; }

/* shine 鈥?light sweep from left to right */
.nav-cta.cta-effect-shine { position: relative; overflow: hidden; }
.nav-cta.cta-effect-shine::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.nav-cta.cta-effect-shine:hover::before { left: 120%; }

/* CTA 鎸夐挳鏍峰紡 鈥?6 濂楀叏灞€鍙€?*/
/* solid-brand 鈥?鍝佺墝鑹插疄蹇冿紝閫傚悎娴呰壊瀵艰埅 */
.nav-cta.c-solid-brand {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(79,70,229,.4) !important;
}
.nav-cta.c-solid-brand:hover { box-shadow: 0 6px 20px rgba(79,70,229,.5) !important; }

/* solid-white 鈥?鐧借壊瀹炲績锛岄€傚悎娣辫壊/娓愬彉瀵艰埅 */
.nav-cta.c-solid-white {
  background: #fff !important;
  color: var(--primary) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.12) !important;
}
.nav-cta.c-solid-white:hover { background: #f0f0ff !important; box-shadow: 0 4px 14px rgba(0,0,0,.18) !important; }

/* outline-brand 鈥?鍝佺墝鑹叉弿杈癸紝閫傚悎娴呰壊瀵艰埅 */
.nav-cta.c-outline-brand {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  box-shadow: none !important;
}
.nav-cta.c-outline-brand:hover { background: var(--primary) !important; color: #fff !important; }

/* outline-white 鈥?鐧借壊鎻忚竟锛岄€傚悎娣辫壊瀵艰埅 */
.nav-cta.c-outline-white {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.7) !important;
  box-shadow: none !important;
}
.nav-cta.c-outline-white:hover { background: rgba(255,255,255,.15) !important; border-color: #fff !important; }

/* ghost-brand 鈥?鍝佺墝鑹插菇鐏碉紝閫傚悎娴呰壊瀵艰埅 */
.nav-cta.c-ghost-brand {
  background: rgba(79,70,229,.1) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}
.nav-cta.c-ghost-brand:hover { background: rgba(79,70,229,.18) !important; }

/* ghost-white 鈥?鐧借壊骞界伒锛岄€傚悎娣辫壊瀵艰埅 */
.nav-cta.c-ghost-white {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.nav-cta.c-ghost-white:hover { background: rgba(255,255,255,.25) !important; }

/* solid-accent 鈥?闈掕壊寮鸿皟瀹炲績 */
.nav-cta.c-solid-accent {
  background: linear-gradient(135deg, #06b6d4, #3b82f6) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(6,182,212,.4) !important;
}
.nav-cta.c-solid-accent:hover { box-shadow: 0 6px 22px rgba(6,182,212,.55) !important; transform: translateY(-1px); }

/* solid-dark 鈥?娣辫壊瀹炲績 */
.nav-cta.c-solid-dark {
  background: #1e293b !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.2) !important;
}
.nav-cta.c-solid-dark:hover { background: #334155 !important; box-shadow: 0 6px 18px rgba(0,0,0,.3) !important; }

/* solid-gold 鈥?閲戣壊瀹炲績 */
.nav-cta.c-solid-gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  color: #78350f !important;
  box-shadow: 0 4px 14px rgba(245,158,11,.4) !important;
}
.nav-cta.c-solid-gold:hover { box-shadow: 0 6px 22px rgba(245,158,11,.55) !important; transform: translateY(-1px); }

/* solid-cyan 鈥?闈掕壊瀹炲績 */
.nav-cta.c-solid-cyan {
  background: linear-gradient(135deg, #06b6d4, #22d3ee) !important;
  color: #164e63 !important;
  box-shadow: 0 4px 14px rgba(6,182,212,.35) !important;
}
.nav-cta.c-solid-cyan:hover { box-shadow: 0 6px 22px rgba(6,182,212,.5) !important; }

/* solid-rose 鈥?鐜孩瀹炲績 */
.nav-cta.c-solid-rose {
  background: linear-gradient(135deg, #e11d48, #f43f5e) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(225,29,72,.4) !important;
}
.nav-cta.c-solid-rose:hover { box-shadow: 0 6px 22px rgba(225,29,72,.55) !important; transform: translateY(-1px); }

/* solid-emerald 鈥?缈犵豢瀹炲績 */
.nav-cta.c-solid-emerald {
  background: linear-gradient(135deg, #28b894, #32e6b9) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(5,150,105,.35) !important;
}
.nav-cta.c-solid-emerald:hover { box-shadow: 0 6px 22px rgba(5,150,105,.5) !important; }

/* gradient-purple 鈥?绱壊娓愬彉 */
.nav-cta.c-gradient-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.45) !important;
  border-radius: 10px !important;
}
.nav-cta.c-gradient-purple:hover { box-shadow: 0 6px 24px rgba(124,58,237,.6) !important; transform: scale(1.03); }

/* gradient-sunset 鈥?鏃ヨ惤娓愬彉 */
.nav-cta.c-gradient-sunset {
  background: linear-gradient(135deg, #f97316, #ef4444) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(249,115,22,.4) !important;
  border-radius: 10px !important;
}
.nav-cta.c-gradient-sunset:hover { box-shadow: 0 6px 24px rgba(249,115,22,.55) !important; transform: scale(1.03); }

/* gradient-ocean 鈥?娴锋磱娓愬彉 */
.nav-cta.c-gradient-ocean {
  background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37,99,235,.4) !important;
  border-radius: 10px !important;
}
.nav-cta.c-gradient-ocean:hover { box-shadow: 0 6px 24px rgba(37,99,235,.55) !important; transform: scale(1.03); }

/* outline-accent 鈥?闈掕壊鎻忚竟 */
.nav-cta.c-outline-accent {
  background: transparent !important;
  color: #06b6d4 !important;
  border: 2px solid #06b6d4 !important;
  box-shadow: none !important;
}
.nav-cta.c-outline-accent:hover { background: #06b6d4 !important; color: #fff !important; }

/* outline-dark 鈥?娣辫壊鎻忚竟 */
.nav-cta.c-outline-dark {
  background: transparent !important;
  color: #1e293b !important;
  border: 2px solid #1e293b !important;
  box-shadow: none !important;
}
.nav-cta.c-outline-dark:hover { background: #1e293b !important; color: #fff !important; }

/* outline-glow 鈥?鑽у厜鎻忚竟鍙戝厜 */
.nav-cta.c-outline-glow {
  background: transparent !important;
  color: #a78bfa !important;
  border: 2px solid #a78bfa !important;
  box-shadow: 0 0 12px rgba(167,139,250,.3), 0 0 24px rgba(167,139,250,.1) !important;
  text-shadow: 0 0 8px rgba(167,139,250,.4);
}
.nav-cta.c-outline-glow:hover { background: rgba(167,139,250,.15) !important; box-shadow: 0 0 20px rgba(167,139,250,.5), 0 0 40px rgba(167,139,250,.2) !important; }

/* ghost-accent 鈥?闈掕壊骞界伒 */
.nav-cta.c-ghost-accent {
  background: rgba(6,182,212,.12) !important;
  color: #06b6d4 !important;
  box-shadow: none !important;
}
.nav-cta.c-ghost-accent:hover { background: rgba(6,182,212,.2) !important; }

/* ghost-dark 鈥?娣辫壊骞界伒 */
.nav-cta.c-ghost-dark {
  background: rgba(0,0,0,.06) !important;
  color: #374151 !important;
  box-shadow: none !important;
}
.nav-cta.c-ghost-dark:hover { background: rgba(0,0,0,.1) !important; }

/* pill-brand 鈥?鍝佺墝鑹茶兌鍥?*/
.nav-cta.c-pill-brand {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 9px 26px !important;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(79,70,229,.35) !important;
}
.nav-cta.c-pill-brand:hover { background: var(--primary-hover) !important; box-shadow: 0 6px 24px rgba(79,70,229,.5) !important; transform: translateY(-1px); }

/* pill-white 鈥?鐧借壊鑳跺泭 */
.nav-cta.c-pill-white {
  background: #fff !important;
  color: var(--primary) !important;
  border-radius: 100px !important;
  padding: 9px 26px !important;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,.1) !important;
}
.nav-cta.c-pill-white:hover { background: #f0f0ff !important; box-shadow: 0 4px 18px rgba(0,0,0,.18) !important; }

/* pill-dark 鈥?娣辫壊鑳跺泭 */
.nav-cta.c-pill-dark {
  background: #1e293b !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 9px 26px !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,.2) !important;
}
.nav-cta.c-pill-dark:hover { background: #334155 !important; box-shadow: 0 6px 20px rgba(0,0,0,.35) !important; }

/* underline-brand 鈥?鍝佺墝鑹蹭笅鍒掔嚎 */
.nav-cta.c-underline-brand {
  background: transparent !important;
  color: var(--primary) !important;
  padding: 6px 4px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 2px solid var(--primary) !important;
  margin-left: 16px !important;
}
.nav-cta.c-underline-brand:hover { color: var(--primary-hover) !important; border-bottom-width: 3px !important; }

/* underline-white 鈥?鐧借壊涓嬪垝绾?*/
.nav-cta.c-underline-white {
  background: transparent !important;
  color: #fff !important;
  padding: 6px 4px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 2px solid rgba(255,255,255,.6) !important;
  margin-left: 16px !important;
}
.nav-cta.c-underline-white:hover { border-bottom-color: #fff !important; border-bottom-width: 3px !important; }

/* raised-brand 鈥?鍝佺墝鑹叉诞璧?*/
.nav-cta.c-raised-brand {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 6px 0 var(--primary-hover), 0 8px 20px rgba(79,70,229,.3) !important;
  transform: translateY(0);
  transition: all .15s;
}
.nav-cta.c-raised-brand:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--primary-hover), 0 6px 14px rgba(79,70,229,.25) !important; }

/* raised-white 鈥?鐧借壊娴捣 */
.nav-cta.c-raised-white {
  background: #fff !important;
  color: var(--primary) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 0 #e2e8f0, 0 6px 16px rgba(0,0,0,.1) !important;
  transform: translateY(0);
  transition: all .15s;
}
.nav-cta.c-raised-white:hover { transform: translateY(2px); box-shadow: 0 2px 0 #e2e8f0, 0 4px 10px rgba(0,0,0,.08) !important; }

/* Mega Menu */
.nav-links > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  border: 1px solid var(--gray-200);
}

.mega-cat h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-bg);
}

.mega-cat a {
  display: block;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  margin: 0 -10px;
}

.mega-cat a:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

.mega-cat p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  padding: 0 10px;
}

/* ===== 浜岀骇涓嬫媺鑿滃崟 鈥?5 绉嶆埅鐒朵笉鍚岀殑寮瑰嚭褰㈡€?=====
   1. mega       鈫?鍏ㄥ瓒呯骇瀹牸锛氬鍒楃綉鏍硷紝鍥炬爣+鏍囬+鎻忚堪锛屽唴瀹逛赴瀵?   2. drawer     鈫?鍙充晶婊戝嚭鎶藉眽锛氫粠鍙充晶婊戝叆锛屽瀭鐩村叏楂樺垪琛紝宸︿晶鑹叉潯
   3. spotlight  鈫?鍏ㄥ睆鑱氬厜閬僵锛氭繁鑹插叏灞忚挋鐗堬紝灞呬腑澶ф寜閽紝鑱氬厜鐏晥鏋?   4. tooltip    鈫?娣辫壊绠ご姘旀场锛氬皬鍨嬫繁鑹叉皵娉★紝椤堕儴涓夎绠ご鎸囧悜鑿滃崟
   5. ribbon     鈫?鍏ㄥ娓愬彉褰╁甫锛氬搧鐗岃壊娓愬彉鏉★紝鍐呰仈鏂囧瓧+鍒嗛殧绾匡紝鎵佸钩
*/
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; }

/* ---- Base: 涓嬫媺瀹瑰櫒鍏叡灞炴€?---- */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 200px;
  max-width: calc(100vw - 32px);
  list-style: none;
  background: var(--white);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s;
  z-index: 1001;
}

.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 400;
  white-space: nowrap;
  border-radius: 0;
  transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--primary-bg); color: var(--primary); }
.nav-dropdown .dd-icon { font-size: 1rem; flex-shrink: 0; }

/* ============================================
   Dropdown styles 鈥?6 clean variants
   ============================================ */
/* 1. card 鈥?centered card grid with icons */
.nav-dropdown.dd-card {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 16px; padding: 16px; min-width: 320px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .25s ease;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.has-dropdown:hover .nav-dropdown.dd-card { opacity: 1; transform: translateX(-50%) translateY(4px); pointer-events: auto; }
.nav-dropdown.dd-card a { padding: 12px 14px; border-radius: 10px; color: #374151; font-size: .88rem; font-weight: 500; transition: all .15s; display: flex; align-items: center; gap: 8px; }
.nav-dropdown.dd-card a:hover { background: #f3f4f6; color: #1f2937; }

/* 2. line 鈥?simple list with left accent border */
.nav-dropdown.dd-line {
  position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: 10px; padding: 6px; min-width: 160px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  opacity: 0; transform: translateY(6px); pointer-events: none; transition: all .2s;
}
.has-dropdown:hover .nav-dropdown.dd-line { opacity: 1; transform: translateY(2px); pointer-events: auto; }
.nav-dropdown.dd-line a { padding: 9px 14px; border-radius: 6px; color: #4b5563; font-size: .88rem; display: block; transition: all .15s; border-left: 2px solid transparent; }
.nav-dropdown.dd-line a:hover { background: #f5f3ff; color: #4f46e5; border-left-color: #4f46e5; }

/* 3. panel 鈥?wide panel with sections */
.nav-dropdown.dd-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 14px; padding: 20px; min-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  opacity: 0; pointer-events: none; transition: all .2s;
}
.has-dropdown:hover .nav-dropdown.dd-panel { opacity: 1; transform: translateX(-50%) translateY(4px); pointer-events: auto; }
.nav-dropdown.dd-panel li { margin-bottom: 2px; }
.nav-dropdown.dd-panel a { padding: 8px 12px; border-radius: 8px; color: #374151; font-size: .88rem; display: block; transition: all .15s; }
.nav-dropdown.dd-panel a:hover { background: #f9fafb; color: #111827; }

/* 4. bubble 鈥?small popup bubble with scale */
.nav-dropdown.dd-bubble {
  position: absolute; top: 100%; left: 0;
  background: #1f2937; border-radius: 10px; padding: 6px; min-width: 140px;
  opacity: 0; transform: scale(.9) translateY(8px); pointer-events: none; transition: all .2s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.has-dropdown:hover .nav-dropdown.dd-bubble { opacity: 1; transform: scale(1) translateY(4px); pointer-events: auto; }
.nav-dropdown.dd-bubble a { padding: 8px 14px; border-radius: 6px; color: rgba(255,255,255,.7); font-size: .85rem; display: block; transition: all .15s; }
.nav-dropdown.dd-bubble a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* 5. stripe 鈥?full-width stripe slides down */
.nav-dropdown.dd-stripe {
  position: fixed; top: 60px; left: 0; right: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding: 24px 0; display: flex; justify-content: center; gap: 48px;
  transform: translateY(-100%); opacity: 0; pointer-events: none; transition: all .3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.has-dropdown:hover .nav-dropdown.dd-stripe { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-dropdown.dd-stripe li { padding: 0; }
.nav-dropdown.dd-stripe a { padding: 8px 0; color: #4b5563; font-size: .88rem; font-weight: 500; transition: color .15s; display: flex; align-items: center; gap: 8px; }
.nav-dropdown.dd-stripe a:hover { color: #4f46e5; background: none; }

/* 6. ghost 鈥?transparent border, text-only */
.nav-dropdown.dd-ghost {
  position: absolute; top: 100%; left: 0;
  background: rgba(255,255,255,.95); border: 1px solid rgba(0,0,0,.06); border-radius: 10px; padding: 4px; min-width: 150px;
  opacity: 0; pointer-events: none; transition: opacity .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.has-dropdown:hover .nav-dropdown.dd-ghost { opacity: 1; pointer-events: auto; }
.nav-dropdown.dd-ghost a { padding: 8px 14px; border-radius: 6px; color: #4b5563; font-size: .85rem; display: block; transition: all .12s; }
.nav-dropdown.dd-ghost a:hover { background: #f3f4f6; color: #111827; }

/* dark backgrounds override */
body.bg-dark .nav-dropdown.dd-card,
body.bg-dark .nav-dropdown.dd-line,
body.bg-dark .nav-dropdown.dd-panel,
body.bg-dark .nav-dropdown.dd-ghost, body.bg-dark-gradient .nav-dropdown.dd-ghost { background: rgba(20,20,30,.98); }
body.bg-dark .nav-dropdown.dd-card a,
body.bg-dark .nav-dropdown.dd-line a,
body.bg-dark .nav-dropdown.dd-panel a,
body.bg-dark .nav-dropdown.dd-ghost a { color: rgba(255,255,255,.65); }
body.bg-dark .nav-dropdown.dd-card a:hover,
body.bg-dark .nav-dropdown.dd-line a:hover,
body.bg-dark .nav-dropdown.dd-panel a:hover,
body.bg-dark .nav-dropdown.dd-ghost a:hover { background: rgba(255,255,255,.08); color: #32e6b9; }
body.bg-dark .nav-dropdown.dd-line a:hover { border-left-color: #32e6b9; }
body.bg-dark .nav-dropdown.dd-stripe, body.bg-dark-gradient .nav-dropdown.dd-stripe { background: rgba(10,10,15,.96); border-color: rgba(255,255,255,.06); }
body.bg-dark .nav-dropdown.dd-stripe a { color: rgba(255,255,255,.55); }
body.bg-dark .nav-dropdown.dd-stripe a:hover { color: #32e6b9; }

  position: fixed;
  top: var(--nav-h, 68px);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
body.bg-dark .nav-dropdown.dd-stripe a:hover { color: #32e6b9; }

/* ============================================

/* ============================================
   Dark Section 鈥?matches dark nav themes
   ============================================ */
.section-dark {
  background: #0a0a0f;
  color: rgba(255,255,255,0.85) !important;
}
.section-dark .section-title { color: #fff !important; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55) !important; }
.section-dark .card, .section-dark .feature-card, .section-dark .pricing-card,
.section-dark .plan-card, .section-dark .team-card, .section-dark .contact-card,
.section-dark .fp-card, .section-dark .fc-card-inner, .section-dark .faq-item {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.85) !important;
}
.section-dark .card:hover, .section-dark .feature-card:hover, .section-dark .team-card:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.14) !important;
}
.section-dark h3, .section-dark h4, .section-dark .card h3, .section-dark .card h4 { color: #fff !important; }
.section-dark p, .section-dark .card p { color: rgba(255,255,255,0.6) !important; }
.section-dark .btn-outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.section-dark .btn-outline:hover { border-color: #32e6b9; color: #32e6b9; background: rgba(50,230,185,0.08); }
.section-dark .btn-primary, .section-dark .btn,
.section-dark .fc-btn-primary, .section-dark .fc-btn,
.section-dark .tabs-btn-primary, .section-dark .tabs-btn-gradient {
  background: linear-gradient(135deg, #28b894, #32e6b9) !important; color: #0a0a0f !important; border: none !important;
}
.section-dark .fc-btn-outline, .section-dark .tabs-btn-outline { border-color: #32e6b9 !important; color: #32e6b9 !important; background: rgba(50,230,185,0.08) !important; }
.section-dark .fc-btn-outline:hover, .section-dark .tabs-btn-outline:hover { background: rgba(50,230,185,.1) !important; }
.section-dark .fc-btn-dark, .section-dark .tabs-btn-dark { background: #32e6b9 !important; color: #0a0a0f !important; }
.section-dark .fc-btn-gradient, .section-dark .tabs-btn-gradient { background: linear-gradient(135deg, #28b894, #32e6b9) !important; color: #0a0a0f !important; }
.section-dark .placeholder { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3); }
.section-dark .feature-row .feature-text { color: rgba(255,255,255,0.85); }
.section-dark .fi-icon, .section-dark .fc-icon, .section-dark .feature-icon { color: #32e6b9 !important; }
.section-dark .plan-features li { color: rgba(255,255,255,0.65); }
.section-dark .plan-features li.feature-included { color: rgba(255,255,255,0.9); }
.section-dark .plan-features li.feature-excluded { color: rgba(255,255,255,0.25); }
.section-dark .pricing-card.featured { border-color: #32e6b9 !important; background: rgba(50,230,185,0.05) !important; }
.section-dark .plan-card.featured { border-color: #32e6b9 !important; background: rgba(50,230,185,0.05) !important; }
.section-dark .stat-value { color: #32e6b9 !important; }
.section-dark .stat-label { color: rgba(255,255,255,0.5) !important; }
.section-dark .cta-section { background: linear-gradient(135deg, #1a1a2e, #16213e) !important; }
.section-dark .split-form input, .section-dark .split-form textarea {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #fff;
}

/* ===== FAQ dark ===== */
.section-dark .faq-item { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.08) !important; }
.section-dark .faq-item.open { border-color: #32e6b9 !important; box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important; }
.section-dark .faq-item:hover { border-color: rgba(255,255,255,0.14) !important; }
.section-dark .faq-item summary { color: rgba(255,255,255,0.9) !important; padding: 18px 24px !important; cursor: pointer; outline: none; }
.section-dark .faq-item summary::-webkit-details-marker { display: none; }
.section-dark .faq-item summary::marker { display: none; content: none; }
.section-dark .faq-question { color: #fff !important; font-weight: 600; }
.section-dark .faq-answer { color: rgba(255,255,255,0.65) !important; padding: 0 24px 20px; }
.section-dark .faq-chevron { color: rgba(255,255,255,0.3) !important; font-size: 0.75rem; transition: transform .3s; }
.section-dark .faq-item[open] .faq-chevron { transform: rotate(90deg); color: #32e6b9 !important; }
.section-dark .faq-num { color: #32e6b9 !important; }

/* ===== Stats dark ===== */
.section-dark .stat-item .stat-number { background: none !important; -webkit-text-fill-color: initial !important; color: #32e6b9 !important; }
.section-dark .stat-label { color: rgba(255,255,255,0.55) !important; }
.section-dark .stat-icon { color: #32e6b9 !important; }

/* ===== Pricing dark ===== */
.section-dark .plan-price { color: #32e6b9 !important; }
.section-dark .plan-name { color: #fff !important; }
.section-dark .plan-desc { color: rgba(255,255,255,0.5) !important; }
.section-dark .plan-period { color: rgba(255,255,255,0.5) !important; }
.section-dark .plan-seats { color: rgba(255,255,255,0.45) !important; }
.section-dark .plan-price .amount { color: #32e6b9 !important; }
.section-dark .plan-badge { background: linear-gradient(135deg, #28b894, #32e6b9) !important; color: #0a0a0f !important; }
.section-dark .plan-features li.feature-excluded { color: rgba(255,255,255,0.25) !important; }

/* ===== Client Logos dark ===== */
.section-dark .logo-item { opacity: 0.8; }
.section-dark .logo-item:hover { opacity: 1; }
.section-dark .logo-name { color: rgba(255,255,255,0.6) !important; }

/* ===== Tabs dark ===== */
.section-dark .tabs-nav { border-color: rgba(255,255,255,0.08) !important; }
.section-dark .tabs-nav-btn { color: rgba(255,255,255,0.45) !important; }
.section-dark .tabs-nav-btn.active { color: #32e6b9 !important; }
.section-dark .tabs-line { background: #32e6b9 !important; }
.section-dark .tabs-desc { color: #fff !important; }
.section-dark .tabs-card { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.08) !important; }
.section-dark .tabs-card h4 { color: #fff !important; }
.section-dark .tabs-card p { color: rgba(255,255,255,0.55) !important; }
.section-dark .tabs-btn-link { color: #0a0a0f !important; }
.section-dark .tabs-btn-primary { background: #32e6b9 !important; color: #0a0a0f !important; }
.section-dark .tabs-btn-outline { border-color: #32e6b9 !important; color: #32e6b9 !important; background: transparent !important; }
.section-dark .tabs-btn-gradient { background: linear-gradient(135deg, #28b894, #32e6b9) !important; color: #0a0a0f !important; }
.section-dark .tabs-btn-dark { background: #32e6b9 !important; color: #0a0a0f !important; }
.section-dark .tabs-btn-link:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(50,230,185,0.3); }

/* ===== Slideshow dark ===== */
.section-dark .slide-overlay { background: rgba(10,10,15,0.6) !important; }
.section-dark .slide-title { color: #fff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.section-dark .slide-subtitle { color: rgba(255,255,255,0.8) !important; }
.section-dark .slide-btn { background: linear-gradient(135deg, #28b894, #32e6b9) !important; color: #0a0a0f !important; border: none !important; }
.section-dark .slide-btn:hover { box-shadow: 0 4px 20px rgba(50,230,185,0.4); transform: translateY(-2px); }

/* ===== CTA dark ===== */
.section-dark .cta-banner { background: linear-gradient(135deg, #0f172a, #1e1b4b) !important; }
.section-dark .cta-banner h2 { color: #fff !important; }
.section-dark .cta-banner p { color: rgba(255,255,255,0.65) !important; }

/* ===== Footer dark accent ===== */
.footer-dark-accent { background: #0a0a0f !important; border-top: 1px solid rgba(50,230,185,0.2); position: relative; overflow: hidden; }
.footer-dark-accent .ft-watermark { position: absolute; bottom: -40px; right: -40px; font-size: 14rem; font-weight: 900; color: rgba(255,255,255,0.02); line-height: 0.8; pointer-events: none; user-select: none; white-space: nowrap; letter-spacing: -8px; }
.footer-dark-accent .footer-inner { position: relative; z-index: 1; }
.footer-dark-accent .ft-col-title { color: rgba(255,255,255,0.8) !important; }
.footer-dark-accent .ft-col-links a { color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-dark-accent .ft-col-links a:hover { color: #32e6b9; }
.footer-dark-accent .footer-brand { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer-dark-accent .footer-copy { color: rgba(255,255,255,0.3); }
.footer-dark-accent .footer-bottom { border-color: rgba(255,255,255,0.06); }

/* ===== Feature-card dark ===== */
.section-dark .fc-title-md, .section-dark .fc-title-lg { color: #fff !important; }
.section-dark .fc-desc-md, .section-dark .fc-desc-lg { color: rgba(255,255,255,0.6) !important; }
.section-dark .fc-text { color: rgba(255,255,255,0.85); }

/* ===== Plan card price dark ===== */
.section-dark .pricing-card .plan-price { color: #32e6b9 !important; }
.section-dark .pricing-card .plan-name { color: #fff !important; }

/* ===== Stats card dark ===== */
.section-dark .stats-card { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.08) !important; }

/* ===== Feature-card theme variants (after section-dark for CSS priority) ===== */
.fc-theme-dark { background: #0a0a0f; }
.fc-theme-green { background: linear-gradient(135deg, #0a0a0f 0%, #0d1f17 40%, #0f2a1e 100%); }
.fc-theme-purple { background: linear-gradient(135deg, #0a0a0f 0%, #1a1228 40%, #1e1a2e 100%); }
.fc-theme-blue { background: linear-gradient(135deg, #0a0a0f 0%, #0f172a 40%, #1a1a2e 100%); }
.fc-theme-pink { background: linear-gradient(135deg, #0a0a0f 0%, #1f1120 40%, #2e1a2e 100%); }

/* Mobile: dropdowns become inline vertical */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: none !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 0 20px !important;
    backdrop-filter: none !important;
    gap: 2px !important;
  }
  .nav-dropdown::before { display: none !important; }
  .nav-dropdown a {
    flex-direction: row !important;
    text-align: left !important;
    padding: 6px 12px !important;
    font-size: 0.85rem;
    margin: 0 !important;
    border-radius: 4px !important;
    min-width: auto !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
  }
  .nav-dropdown a::after,
  .nav-dropdown a::before { display: none !important; }
  .nav-dropdown a:hover {
    transform: none !important;
    background: var(--primary-bg) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
    border-color: transparent !important;
    padding-left: 12px !important;
  }
  .nav-dropdown .dd-icon { font-size: 1rem !important; }
  .nav-dropdown li:not(:last-child)::after { display: none !important; }
  .has-dropdown:hover .nav-dropdown { transform: none !important; }
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   Slideshow - Hero
   ============================================ */
.slideshow {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 68px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.75) 50%, rgba(15,23,42,.6) 100%);
}

.slide.active { opacity: 1; }

.slide-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  color: #fff;
  z-index: 2;
}

.slide-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 680px;
}

.slide-content h1 span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-content p {
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
  color: var(--gray-300);
}

.slide-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.slide-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,.45);
}

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.slideshow-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   Slideshow Video Backgrounds 鈥?瑙嗛鑳屾櫙閫氱敤鏍峰紡+淇濇姢
   ============================================ */
.slideshow-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
}

/* Default variant video */
.slide-video-bg { z-index: 0; }

/* Cinema variant video */
.cinema-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Parallax variant video */
.parallax-bg-video {
  position: absolute;
  inset: -5%;
  width: 105%;
  height: 110%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Cards variant video */
.card-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 20px;
}

/* Reveal variant video */
.reveal-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Gradient variant video */
.gradient-video {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 24px;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 2;
}

/* Showcase variant video */
.showcase-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Diagonal variant video */
.diag-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Split variant video */
.split-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Split video shield 鈥?transparent overlay to block all interaction */
.split-video-shield {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  cursor: default;
}

/* Minimal variant video */
.minimal-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.minimal-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(30,58,138,0.75));
  z-index: 1;
}

/* Responsive video adjustments */
@media (max-width: 768px) {
  .gradient-video { display: none; }
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.cat-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cat-card:hover::before { opacity: 1; }

.cat-card .cat-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--primary);
  transition: color .3s ease;
}

.cat-card:hover .cat-icon { color: var(--accent); }

.cat-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cat-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cat-card .cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.cat-card:hover .cat-arrow { gap: 10px; }

/* Category icon-list variant */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cat-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.cat-list-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.cat-list-item .cat-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.cat-list-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cat-list-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cat-list-item .cat-arrow {
  margin-left: auto;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ============================================
   Features - Default: Grid Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card .feature-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: color .3s ease;
}

.feature-card:hover .feature-icon { color: var(--accent); }

.feature-card .feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card .feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-card .feature-category {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Features - Alternating rows */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 0;
}

.feature-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-text .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.feature-text .btn-outline:hover {
  background: var(--primary);
  color: white;
}

.feature-media {
  flex: 1;
  min-width: 0;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.feature-media img,
.feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media .placeholder {
  text-align: center;
  color: var(--text-tertiary);
  padding: 40px;
}

.feature-media .placeholder .icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.5;
}

.feature-media .placeholder span {
  font-size: 0.85rem;
}

/* Features - Icon grid variant */
.features-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.features-icon-grid .fi-item {
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.features-icon-grid .fi-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.features-icon-grid .fi-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
  transition: color .3s ease;
}

.features-icon-grid .fi-item:hover .fi-icon { color: var(--accent); }

.features-icon-grid .fi-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-icon-grid .fi-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   Pricing - Default: Three Cards
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  background: var(--white);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 6px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

/* Text alignment */
.plan-text-left { text-align: left; }
.plan-text-left .plan-name,
.plan-text-left .plan-desc { text-align: left; }
.plan-text-center { text-align: center; }
.plan-text-center .plan-name,
.plan-text-center .plan-desc { text-align: center; }
.plan-text-right { text-align: right; }
.plan-text-right .plan-name,
.plan-text-right .plan-desc { text-align: right; }

/* Title sizes */
.plan-title-sm { font-size: 1rem !important; }
.plan-title-md { font-size: 1.2rem !important; }
.plan-title-lg { font-size: 1.6rem !important; }
.plan-title-xl { font-size: 2rem !important; }

/* Description sizes */
.plan-desc-sm { font-size: 0.78rem !important; }
.plan-desc-md { font-size: 0.85rem !important; }
.plan-desc-lg { font-size: 0.95rem !important; }

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.plan-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.plan-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.plan-price .original {
  text-decoration: line-through;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-left: 10px;
}

.plan-seats {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.plan-seats::before {
  content: '馃懃';
  font-size: 0.85rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-features li .cross {
  color: var(--gray-300);
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  background: var(--bg-section);
  color: var(--text-primary);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.plan-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(79,70,229,.3);
}

.plan-card.featured .plan-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(79,70,229,.35);
}

.plan-card.featured .plan-btn:hover {
  box-shadow: 0 8px 24px rgba(79,70,229,.45);
  transform: translateY(-1px);
}

/* Plan button alignment */
.plan-buttons-left { justify-content: flex-start; }
.plan-buttons-center { justify-content: center; }
.plan-buttons-right { justify-content: flex-end; }

/* Inline plan-btn inside fc-buttons - keep full width but allow alignment */
.plan-card .fc-buttons { margin-top: auto; }
.plan-card-h .fc-buttons { margin-top: 12px; }
.pricing-table .btn-cell .fc-buttons { justify-content: center; }

/* Pricing - Table variant */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.pricing-table thead th {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  border-bottom: 2px solid var(--gray-200);
  background: var(--bg-section);
}

.pricing-table thead th:first-child {
  text-align: left;
}

.pricing-table thead th.featured-col {
  background: var(--primary-bg);
  color: var(--primary);
}

.pricing-table tbody td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-table tbody td.featured-col {
  background: rgba(238,242,255,.5);
}

.pricing-table .price-row td {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  padding: 24px;
}

.pricing-table .btn-cell {
  padding: 24px !important;
}

/* Pricing - Toggle variant */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-wrap span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-toggle-wrap span.active {
  color: var(--text-primary);
  font-weight: 700;
}

.pricing-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 14px;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.pricing-toggle.on {
  background: var(--primary);
}

.pricing-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.pricing-toggle.on::after {
  transform: translateX(24px);
}

.pricing-toggle .save-badge {
  position: absolute;
  right: -44px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--success);
  white-space: nowrap;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ============================================
   Stats
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 500;
}

/* Stats - Inline variant */
.stats-inline {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stats-inline .stat-item {
  padding: 0;
}

.stats-inline .stat-item + .stat-item {
  padding-left: 80px;
  border-left: 1px solid var(--gray-200);
}

/* Stats - Icon variant */
.stats-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.stat-card .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.stat-card .stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ============================================
   CTA
   ============================================ */
.cta-banner {
  text-align: center;
  padding: 80px 48px;
  border-radius: var(--radius-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* white radial glow 鈥?disabled for dark sections */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.section-dark .cta-banner::before { display: none; }

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: #fff;
  color: var(--text-primary);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-banner .btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  margin-left: 14px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.cta-banner .btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* CTA - Split variant */
.cta-split {
  display: flex;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-split .cta-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-split .cta-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-split .cta-text p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.7;
}

.cta-split .cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-split .btn {
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.cta-split .btn-primary {
  background: #fff;
  color: var(--primary);
}

.cta-split .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-split .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.cta-split .btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* CTA - Gradient variant */
.cta-gradient {
  text-align: center;
  padding: 80px 48px;
  border-radius: var(--radius-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #312e81 60%, #4338ca 100%);
}

.cta-gradient::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.cta-gradient::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,.2) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
}

.cta-gradient h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-gradient p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-gradient .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  border: none;
  box-shadow: 0 4px 16px rgba(79,70,229,.4);
}

.cta-gradient .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,.5);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-q {
  padding: 20px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: var(--white);
  transition: all var(--transition);
  gap: 16px;
}

.faq-q:hover { color: var(--primary); }

.faq-q .arrow {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  transition: transform var(--transition);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
}

.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
  background: var(--primary-bg);
  color: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* FAQ - Grid variant */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.faq-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  padding-left: 20px;
  position: relative;
}

.faq-card h4::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-bg);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.faq-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ - empty state */
.faq-empty {
  text-align: center;
  color: var(--text-tertiary);
  padding: 48px 24px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}

/* FAQ - Grid variant: question badge */
.faq-card-q {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-card-q .q-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.faq-card-a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* FAQ - Timeline variant */
.faq-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.faq-tl-item {
  position: relative;
  padding: 0 0 30px 58px;
}
.faq-tl-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.faq-tl-item:last-child::before { display: none; }
.faq-tl-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
.faq-tl-q {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 8px 0 10px;
  color: var(--text-primary);
}
.faq-tl-a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* FAQ - Sidebar variant (sticky question nav + content) */
.faq-sidebar {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.faq-side-nav {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.faq-side-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.faq-side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-side-link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.faq-side-link:hover,
.faq-side-link.active {
  background: var(--primary-bg);
  color: var(--primary);
  border-left-color: var(--primary);
}
.faq-side-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-side-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  scroll-margin-top: 100px;
}
.faq-side-block h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.faq-side-block p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.92rem;
}

/* FAQ - Bento variant (masonry-like irregular grid) */
.faq-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: 1fr;
}
.faq-bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-bento-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.faq-bento-card.bento-lg {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-bento-card.bento-lg h4,
.faq-bento-card.bento-lg p { color: #fff; }
.faq-bento-card.bento-lg .bento-num { color: rgba(255, 255, 255, 0.5); }
.bento-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.5;
  display: block;
  margin-bottom: 12px;
}
.faq-bento-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.faq-bento-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ - Split variant (left numbered tabs + right answer) */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.faq-split-q {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-split-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  width: 100%;
}
.faq-split-tab:hover { border-color: var(--primary-light); }
.faq-split-tab.active {
  border-color: var(--primary);
  background: var(--primary-bg);
  box-shadow: var(--shadow-sm);
}
.split-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gray-100);
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.faq-split-tab.active .split-num {
  background: var(--primary);
  color: #fff;
}
.faq-split-a {
  position: sticky;
  top: 100px;
}
.faq-split-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  animation: faqFade 0.4s ease;
}
.faq-split-panel.active { display: block; }
.faq-split-panel h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--text-primary);
}
.faq-split-panel p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-sidebar { grid-template-columns: 1fr; gap: 20px; }
  .faq-side-nav { position: static; }
  .faq-bento { grid-template-columns: 1fr; }
  .faq-bento-card.bento-lg { grid-column: auto; grid-row: auto; }
  .faq-split { grid-template-columns: 1fr; gap: 24px; }
  .faq-split-a { position: static; }
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-item {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: var(--white);
}

.contact-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-item .ci-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact - Inline variant */
.contact-inline {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-inline .contact-item {
  border: none;
  padding: 24px;
  background: transparent;
}

.contact-inline .contact-item:hover {
  transform: none;
  box-shadow: none;
}

.contact-inline .contact-item + .contact-item {
  border-left: 1px solid var(--gray-200);
  padding-left: 48px;
}

/* Contact - Split variant */
.contact-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-split .contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-split .contact-info .contact-item {
  text-align: left;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.contact-split .contact-info .contact-item .ci-icon {
  margin: 0;
  flex-shrink: 0;
}

.contact-split .contact-form-area {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-area h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-form-area .form-group {
  margin-bottom: 16px;
}

.contact-form-area label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact-form-area input,
.contact-form-area textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  resize: vertical;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

.contact-form-area .btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
}

.contact-form-area .btn-submit:hover {
  box-shadow: 0 4px 16px rgba(79,70,229,.4);
  transform: translateY(-1px);
}

/* ============================================
   Team
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: var(--white);
}

.team-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bg), #dbeafe);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team - Horizontal variant */
.team-horizontal {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.team-horizontal::-webkit-scrollbar { height: 6px; }
.team-horizontal::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.team-horizontal::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

.team-horizontal .team-card {
  min-width: 280px;
  scroll-snap-align: start;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand h3 span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.4;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  padding: 5px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 32px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  opacity: 0.35;
  text-align: center;
}

/* ============================================
   Category Page Header
   ============================================ */
.cat-page-header {
  background: var(--bg-dark);
  padding: 130px 0 72px;
  margin-top: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cat-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(79,70,229,.15) 0%, transparent 60%);
}

.cat-page-header .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cat-page-header .cat-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,.08);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  backdrop-filter: blur(4px);
}

.cat-page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cat-page-header p {
  font-size: 1.15rem;
  opacity: 0.65;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Global Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary {
  background: var(--bg-section);
  color: var(--text-primary);
  border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gray-100);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ============================================
   Slideshow - Split variant
   ============================================ */
.slideshow-split {
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 100px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.slideshow-split::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
}

.split-text {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.split-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1.15;
  max-width: 560px;
}

.split-text p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}

.split-media img {
  max-width: 90%;
  max-height: 450px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.split-placeholder {
  width: 90%;
  height: 350px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-split-rev { flex-direction: row-reverse; }
.slideshow-split-rev::before { left: -100px; right: auto; }

/* slide-side layout 鈥?polished image card + text */
.slideshow-slide-side { 
  display: flex; align-items: center; min-height: 580px; 
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #111827 40%, #0f172a 100%);
}
.slideshow-slide-side::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(50,230,185,.08) 0%, transparent 70%);
  top: -100px; left: -120px; border-radius: 50%; pointer-events: none;
}
.slideshow-slide-side::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,.06) 0%, transparent 70%);
  bottom: -80px; right: -60px; border-radius: 50%; pointer-events: none;
}
.slide-side-media { 
  flex: 0 0 42%; position: relative; z-index: 1;
  border-radius: 24px; overflow: visible;
  margin: 0 48px;
}
.slide-side-media::before {
  content: ''; position: absolute; inset: -12px; border-radius: 30px;
  background: linear-gradient(135deg, rgba(50,230,185,.15), rgba(79,70,229,.1));
  z-index: -1;
}
.slide-side-media img { 
  width: 100%; display: block; border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.2);
}
.slide-side-content { flex: 1; position: relative; z-index: 1; padding-right: 32px; }
.slide-side-title { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.slide-side-desc { font-size: 1.15rem; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 28px; max-width: 520px; }
.slide-side-img-left { flex-direction: row-reverse; }
.slide-side-img-left .slide-side-content { padding-right: 0; padding-left: 32px; }

@media (max-width: 768px) {
  .slideshow-slide-side { flex-direction: column; gap: 40px; padding: 48px 20px; }
  .slide-side-media { flex: none; width: 80%; margin: 0 auto; }
  .slide-side-content { padding: 0 !important; text-align: center; }
  .slide-side-title { font-size: 2rem; }
}

/* ============================================
   Slideshow - Minimal variant
   ============================================ */
.slideshow-minimal {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.slideshow-minimal::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  border-radius: 50%;
}

.slideshow-minimal::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
}

.minimal-content {
  max-width: 720px;
  padding: 0 32px 60px;
  position: relative;
  z-index: 1;
}

.minimal-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.minimal-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.7;
}

.minimal-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
}

.minimal-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   Slideshow - Cinema variant
   Full-screen cinematic with Ken Burns zoom + progress bar
   ============================================ */
.slideshow-cinema {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 0;
  background: #0a0a0a;
}

.cinema-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s;
  z-index: 1;
}

.cinema-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Ken Burns zoom effect on background */
.cinema-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.cinema-slide.active .cinema-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1.18); }
}

/* Gradient fallback when no image */
.cinema-bg-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 30%, #312e81 60%, #1e1b4b 100%);
}

.cinema-bg-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(79,70,229,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(6,182,212,0.2) 0%, transparent 50%);
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.6) 100%);
}

.cinema-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 100px 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cinema-slide.active .cinema-content {
  animation: cinemaSlideUp 1s ease 0.3s both;
}

@keyframes cinemaSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cinema-content > * {
  max-width: 800px;
  padding: 0 32px;
}

.cinema-eyebrow {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cinema-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.cinema-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cinema-content .slide-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 14px 36px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

/* Progress bar */
.cinema-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 5;
}

.cinema-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 2px 2px 0;
}

/* Dot navigation */
.cinema-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.cinema-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.cinema-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Arrow navigation */
.cinema-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.cinema-arrow:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.cinema-prev { left: 24px; }
.cinema-next { right: 24px; }

/* Cinema responsive */
@media (max-width: 768px) {
  .slideshow-cinema { min-height: 500px; }
  .cinema-content { padding-bottom: 80px; }
  .cinema-content h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .cinema-content p { font-size: 1rem; }
  .cinema-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .cinema-prev { left: 12px; }
  .cinema-next { right: 12px; }
  .btn-lg { padding: 12px 24px !important; font-size: 0.9rem !important; }
}

@media (max-width: 480px) {
  .cinema-content h1 { font-size: 1.7rem; }
  .cinema-content .slide-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   Slideshow Variant: Parallax 鈥?瑙嗗樊灞傚彔
   ============================================ */
.slideshow-parallax {
  position: relative;
  height: 620px;
  overflow: hidden;
  margin-top: 68px;
  background: #0f172a;
}

.parallax-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.parallax-slide.active { opacity: 1; }

.parallax-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.parallax-bg-solid {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #4c1d95 100%);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.85) 100%);
}

.parallax-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.parallax-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.parallax-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: 20px;
  background: rgba(79,70,229,0.12);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.parallax-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.parallax-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.parallax-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 5;
}

.parallax-tab {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.parallax-tab.active {
  width: 80px;
  background: rgba(255,255,255,0.4);
}

.parallax-tab.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: tabFill 6s linear forwards;
}

@keyframes tabFill {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.parallax-tab-num { display: none; }

/* Parallax responsive */
@media (max-width: 768px) {
  .slideshow-parallax { height: 500px; }
  .parallax-content h1 { font-size: 2.2rem; }
  .parallax-content p { font-size: 1rem; }
}

/* ============================================
   Slideshow Variant: Cards 鈥?3D 閫忚鍗＄墖杞挱
   ============================================ */
.slideshow-cards {
  position: relative;
  height: 560px;
  overflow: hidden;
  margin-top: 68px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  perspective: 1400px;
}

.cards-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.card-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  max-width: 80%;
  height: 380px;
  margin-top: -190px;
  margin-left: -320px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  cursor: pointer;
}

.card-slide.active {
  transform: translateZ(0) scale(1);
  opacity: 1;
  z-index: 5;
}

.card-slide.prev {
  transform: translateX(-55%) translateZ(-120px) rotateY(25deg) scale(0.85);
  opacity: 0.6;
  z-index: 3;
  filter: brightness(0.6);
}

.card-slide.next {
  transform: translateX(55%) translateZ(-120px) rotateY(-25deg) scale(0.85);
  opacity: 0.6;
  z-index: 3;
  filter: brightness(0.6);
}

.card-slide.far-left {
  transform: translateX(-90%) translateZ(-250px) rotateY(35deg) scale(0.65);
  opacity: 0;
  z-index: 1;
}

.card-slide.far-right {
  transform: translateX(90%) translateZ(-250px) rotateY(-35deg) scale(0.65);
  opacity: 0;
  z-index: 1;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.2) 0%, rgba(15,23,42,0.5) 60%, rgba(15,23,42,0.9) 100%);
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
  color: #fff;
  z-index: 2;
}

.card-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.card-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  line-height: 1.6;
}

.cards-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.cards-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cards-arrow:hover {
  background: rgba(79,70,229,0.5);
  border-color: var(--primary);
  transform: scale(1.1);
}

.cards-dots {
  display: flex;
  gap: 8px;
}

.cards-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cards-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* Cards responsive */
@media (max-width: 768px) {
  .slideshow-cards { height: 480px; }
  .card-slide { width: 420px; height: 320px; margin-top: -160px; margin-left: -210px; }
  .card-body h2 { font-size: 1.4rem; }
  .card-body p { font-size: 0.85rem; }
  .card-body { padding: 24px; }
}

/* ============================================
   Slideshow Variant: Reveal 鈥?骞曞竷鎻箷
   ============================================ */
.slideshow-reveal {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 68px;
  background: #0f172a;
}

.reveal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.reveal-slide.active {
  opacity: 1;
  z-index: 2;
  animation: revealIn 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes revealIn {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.reveal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.reveal-bg-gradient {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 40%, #831843 100%);
}

.reveal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.6) 50%, rgba(76,29,149,0.4) 100%);
}

.reveal-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.reveal-slide.active .reveal-eyebrow {
  animation: slideUp 0.8s ease 0.3s both;
}

.reveal-slide.active .reveal-content h1 {
  animation: slideUp 0.8s ease 0.5s both;
}

.reveal-slide.active .reveal-content p {
  animation: slideUp 0.8s ease 0.7s both;
}

.reveal-slide.active .reveal-content .slide-buttons {
  animation: slideUp 0.8s ease 0.9s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 16px;
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid #fbbf24;
}

.reveal-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 680px;
}

.reveal-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.reveal-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 4px;
  padding: 0 32px 20px;
  z-index: 5;
}

.reveal-segment {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
}

.reveal-segment span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.reveal-segment.active span {
  animation: segFill 6s linear forwards;
}

@keyframes segFill {
  from { width: 0; }
  to { width: 100%; }
}

/* Reveal responsive */
@media (max-width: 768px) {
  .slideshow-reveal { height: 500px; }
  .reveal-content h1 { font-size: 2.2rem; }
  .reveal-content p { font-size: 1rem; }
}

/* ============================================
   Slideshow Variant: Gradient 鈥?鍔ㄦ€佹笎鍙樺厜鏅?   ============================================ */
.slideshow-gradient {
  position: relative;
  height: 560px;
  overflow: hidden;
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: orbFloat 20s ease-in-out infinite;
}

.gradient-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary, #4f46e5), transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent, #06b6d4), transparent 70%);
  bottom: -200px;
  right: -150px;
  animation-delay: -5s;
}

.gradient-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light, #6366f1), transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, -60px) scale(1.1); }
  50% { transform: translate(-50px, 80px) scale(0.9); }
  75% { transform: translate(60px, 40px) scale(1.05); }
}

.gradient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.gradient-image {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}

.gradient-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  color: #fff;
  text-align: left;
}

.gradient-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  width: fit-content;
}

.gradient-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 580px;
  letter-spacing: -1.5px;
}

.gradient-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* Gradient responsive */
@media (max-width: 768px) {
  .slideshow-gradient { height: 500px; }
  .gradient-image { display: none; }
  .gradient-content h1 { font-size: 2.2rem; }
  .gradient-content p { font-size: 1rem; }
  .gradient-orb-1 { width: 300px; height: 300px; }
  .gradient-orb-2 { width: 350px; height: 350px; }
  .gradient-orb-3 { width: 250px; height: 250px; }
}

/* ============================================
   Slideshow Variant: Showcase 鈥?鑳剁墖缂╃暐鍥?   ============================================ */
.slideshow-showcase {
  position: relative;
  margin-top: 68px;
  background: #0f172a;
}

.showcase-main {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.showcase-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
}

.showcase-panel.active {
  opacity: 1;
  transform: scale(1);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.7) 60%, rgba(15,23,42,0.95) 100%);
}

.showcase-text {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  color: #fff;
  z-index: 2;
}

.showcase-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 4px;
  background: rgba(56,189,248,0.1);
  border-left: 3px solid #38bdf8;
}

.showcase-text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.showcase-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.showcase-thumbs {
  display: flex;
  gap: 0;
  height: 100px;
  background: #1e293b;
}

.showcase-thumb {
  flex: 1;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: flex 0.5s ease;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.showcase-thumb:last-child { border-right: none; }

.showcase-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.7);
  transition: background 0.3s ease;
}

.showcase-thumb.active {
  flex: 2.5;
}

.showcase-thumb.active::after {
  background: rgba(15,23,42,0.3);
}

.showcase-thumb.active {
  border-bottom: 3px solid #38bdf8;
}

.showcase-thumb-label {
  position: absolute;
  bottom: 10px;
  left: 14px;
  right: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.showcase-thumb.active .showcase-thumb-label { opacity: 1; }

.showcase-thumb:hover::after { background: rgba(15,23,42,0.4); }

/* Showcase responsive */
@media (max-width: 768px) {
  .showcase-main { height: 380px; }
  .showcase-text h1 { font-size: 1.8rem; }
  .showcase-text p { font-size: 0.9rem; }
  .showcase-thumbs { height: 70px; }
  .showcase-thumb-label { font-size: 0.7rem; }
}

/* ============================================
   Slideshow Variant: Diagonal 鈥?瀵硅鍒囧壊
   ============================================ */
.slideshow-diagonal {
  position: relative;
  height: 560px;
  overflow: hidden;
  margin-top: 68px;
  background: #f8fafc;
  display: flex;
  align-items: center;
}

.diag-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.diag-media-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 50%, #818cf8 100%);
}

.diag-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  z-index: 2;
}

.diag-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 48%, rgba(255,255,255,0.08) 50%, transparent 52%);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  z-index: 3;
  pointer-events: none;
}

.diag-content {
  position: relative;
  z-index: 5;
  max-width: 500px;
  padding: 0 32px 0 48px;
  color: #fff;
}

.diag-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.diag-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.diag-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.8;
}

.diag-content .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.diag-content .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* Diagonal responsive */
@media (max-width: 768px) {
  .slideshow-diagonal { height: 460px; }
  .diag-media { width: 70%; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }
  .diag-shape { width: 60%; clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); }
  .diag-corner { width: 60%; clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); }
  .diag-content { padding: 0 24px; }
  .diag-content h1 { font-size: 1.8rem; }
  .diag-content p { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .diag-content h1 { font-size: 1.5rem; }
  .diag-content .slide-buttons { flex-direction: column; }
}

/* ============================================
   Navigation - Centered variant
   ============================================ */
.nav-centered {
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-centered .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-centered .nav-side {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-centered .nav-logo {
  font-size: 1.5rem;
  margin: 0 32px;
}

.nav-centered .nav-links {
  display: flex;
  gap: 4px;
}

/* ============================================
   Navigation - Minimal variant
   ============================================ */
.nav-minimal {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: none;
}

.nav-minimal .nav-logo {
  color: var(--text-primary);
}

.nav-minimal .nav-logo span {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.nav-minimal .nav-links a {
  color: var(--text-secondary);
  position: relative;
}

.nav-minimal .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-minimal .nav-links a:hover {
  color: var(--primary);
}

.nav-minimal .nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-minimal .nav-toggle span {
  background: var(--text-primary);
}

/* ============================================
   Navigation - Dark variant (娣辫壊涓撲笟鍥哄畾瀵艰埅)
   ============================================ */
.nav-dark {
  --nav-h: 72px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-dark.scrolled {
  background: #0f172a;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border-bottom-color: rgba(255,255,255,0.12);
}

.nav-dark .nav-inner {
  height: 72px;
}

.nav-dark .nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.nav-dark .nav-logo span {
  background: linear-gradient(135deg, #818cf8, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-dark .nav-links a {
  color: #cbd5e1;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-dark .nav-links a:hover {
  color: #fff;
  background: rgba(99,102,241,0.18);
}

.nav-dark .nav-arrow {
  font-size: 0.7rem;
  margin-left: 4px;
  color: #818cf8;
}

.nav-dark .nav-toggle span {
  background: #e2e8f0;
}

/* ============================================
   Navigation - Pill variant (鍦嗘鼎鑳跺泭鏍囩)
   ============================================ */
.nav-pill {
  --nav-h: 70px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.nav-pill.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-pill .nav-inner {
  height: 70px;
  gap: 20px;
}

.nav-pill .nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.nav-pill .nav-logo span {
  background: none;
  -webkit-text-fill-color: var(--text-primary);
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--text-primary);
  font-weight: 600;
}

.nav-pill .nav-links {
  background: var(--gray-100);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}

.nav-pill .nav-links > li > a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-pill .nav-links > li > a:hover {
  color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-pill .nav-toggle span {
  background: var(--text-primary);
}

/* Pill mega menu override */
.nav-pill .nav-links > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.nav-pill .mega-menu {
  top: calc(100% + 12px);
}

/* ============================================
   Nav variant: border-accent 鈥?搴曢儴鍝佺墝鑹茬矖绾?   ============================================ */
.nav-border-accent {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-border-accent .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.nav-border-accent .nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-border-accent .nav-logo:hover { opacity: 0.8; }

.nav-border-accent .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-border-accent .nav-links a {
  display: block;
  padding: 8px 16px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-border-accent .nav-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--primary-bg);
}

.nav-border-accent .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   Nav variant: floating 鈥?鎮诞鍦嗚鍗＄墖
   ============================================ */
.nav-floating {
  --nav-h: 74px;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1180px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.nav-floating.scrolled {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.96);
}

.nav-floating .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
}

.nav-floating .nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-floating .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-floating .nav-links a {
  display: block;
  padding: 7px 14px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-floating .nav-links a:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

.nav-floating .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   Nav variant: split-bar 鈥?宸︿晶褰╄壊绔栨潯鍒嗛殧
   ============================================ */
.nav-split-bar {
  background: var(--white);
  border-left: 4px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.nav-split-bar .nav-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.nav-split-bar .nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--gray-200);
}
.nav-split-bar .nav-logo:hover { opacity: 0.85; }

.nav-split-bar .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-split-bar .nav-links a {
  display: block;
  padding: 8px 16px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

.nav-split-bar .nav-links a:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

.nav-split-bar .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   Nav variant: gradient-brand 鈥?鍝佺墝鑹叉笎鍙樺叏瀹?   ============================================ */
.nav-gradient-brand {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 40%, #06b6d4 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-gradient-brand .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.nav-gradient-brand .nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.nav-gradient-brand .nav-logo:hover { opacity: 0.9; }

.nav-gradient-brand .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-gradient-brand .nav-links a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-gradient-brand .nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.nav-gradient-brand .nav-arrow {
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  margin-left: 4px;
}

.nav-gradient-brand .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   Nav variant: compact 鈥?绱у噾杩蜂綘瀵艰埅
   ============================================ */
.nav-compact {
  background: #fafbfc;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-compact .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 48px;
}

.nav-compact .nav-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
}
.nav-compact .nav-logo:hover { color: var(--primary); }

.nav-compact .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-compact .nav-links a {
  display: block;
  padding: 5px 12px;
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.15s;
}

.nav-compact .nav-links a:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.nav-compact .nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-600);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   Navigation - Retro 澶嶅彜鑹插潡
   ============================================ */
.nav-retro {
  background: #fef3c7;
  border-bottom: 2px solid #d97706;
}
.nav-retro .nav-links a {
  color: #78350f;
  font-weight: 600;
  font-family: Georgia, serif;
  letter-spacing: 0.3px;
  padding: 8px 14px !important;
  border-radius: 3px;
}
.nav-retro .nav-links a:hover {
  background: #d97706;
  color: #fff !important;
}
.nav-retro .nav-logo { color: #78350f; }
.nav-retro .nav-logo span { color: #d97706; }
.nav-retro .nav-toggle span { background: #78350f; }

/* ============================================
   Navigation - Neon 闇撹櫣鐏晥
   ============================================ */
.nav-neon {
  background: #0a0a0f;
  border-bottom: 1px solid rgba(0,255,255,0.25);
  box-shadow: 0 1px 20px rgba(0,255,255,0.08);
}
.nav-neon .nav-links a {
  color: rgba(0,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  padding: 8px 14px !important;
  border-radius: 4px;
  transition: all .3s;
}
.nav-neon .nav-links a:hover {
  color: #00ffff;
  background: rgba(0,255,255,0.08);
  text-shadow: 0 0 10px rgba(0,255,255,0.6);
}
.nav-neon .nav-logo { color: #00ffff; text-shadow: 0 0 12px rgba(0,255,255,0.5); }
.nav-neon .nav-logo span { color: #ff00ff; text-shadow: 0 0 12px rgba(255,0,255,0.4); }
.nav-neon .nav-toggle span { background: #00ffff; }

/* ============================================
   Navigation - Soft Gradient 鏌旇壊娓愬彉
   ============================================ */
.nav-soft-gradient {
  background: linear-gradient(135deg, #fce4ec 0%, #e8eaf6 40%, #e0f7fa 100%);
  border-bottom: 1px solid rgba(156,39,176,0.1);
}
.nav-soft-gradient .nav-links a {
  color: #6a1b9a;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 20px;
  transition: all .3s;
}
.nav-soft-gradient .nav-links a:hover {
  background: rgba(156,39,176,0.12);
  color: #4a148c;
}
.nav-soft-gradient .nav-logo { color: #4a148c; }
.nav-soft-gradient .nav-logo span { color: #e91e63; }
.nav-soft-gradient .nav-toggle span { background: #6a1b9a; }

/* ============================================
   Navigation - Side Dots 渚ц竟鍦嗙偣鎸囩ず
   ============================================ */
.nav-side-dots {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}
.nav-side-dots::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 12px;
}
.nav-side-dots .nav-links a {
  color: #4b5563;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 6px;
  position: relative;
}
.nav-side-dots .nav-links a::after {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #d1d5db;
  border-radius: 50%;
  transition: all .3s;
}
.nav-side-dots .nav-links a:hover { color: var(--primary); }
.nav-side-dots .nav-links a:hover::after { background: var(--primary); width: 8px; height: 8px; }
.nav-side-dots .nav-logo { color: var(--gray-900); }
.nav-side-dots .nav-logo span { color: var(--primary); }
.nav-side-dots .nav-toggle span { background: var(--gray-600); }

/* ============================================
   Navigation - Tabbed 鏍囩椤甸鏍?   ============================================ */
.nav-tabbed {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 1px 0 #e5e7eb;
}
.nav-tabbed .nav-links a {
  color: #6b7280;
  font-weight: 500;
  padding: 12px 18px !important;
  border-radius: 8px 8px 0 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.nav-tabbed .nav-links a:hover {
  color: var(--primary);
  background: #f5f3ff;
  border-bottom-color: #c4b5fd;
}
.nav-tabbed .nav-logo { color: var(--gray-900); }
.nav-tabbed .nav-logo span { color: var(--primary); }
.nav-tabbed .nav-toggle span { background: var(--gray-600); }

/* ============================================
   Navigation - Glass Light 娴呰壊姣涚幓鐠?   ============================================ */
.nav-glass-light {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-glass-light .nav-links a {
  color: #374151;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
}
.nav-glass-light .nav-links a:hover {
  background: rgba(79,70,229,0.08);
  color: var(--primary);
}
.nav-glass-light .nav-logo { color: var(--gray-900); }
.nav-glass-light .nav-logo span { color: var(--primary); }
.nav-glass-light .nav-toggle span { background: var(--gray-600); }

/* ============================================
   Navigation - Carbon 纰崇氦绾圭悊
   ============================================ */
.nav-carbon {
  background: #1a1a2e;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-carbon .nav-links a {
  color: #a0aec0;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  border-radius: 4px;
  transition: all .3s;
}
.nav-carbon .nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.nav-carbon .nav-logo { color: #e2e8f0; font-family: 'Courier New', monospace; }
.nav-carbon .nav-logo span { color: #f6e05e; }
.nav-carbon .nav-toggle span { background: #a0aec0; }

/* ============================================
   Navigation - Stroked 鍙岀嚎鎻忚竟
   ============================================ */
.nav-stroked {
  background: #fff;
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  box-shadow: none;
}
.nav-stroked .nav-links a {
  color: #4b5563;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 0;
  transition: all .2s;
}
.nav-stroked .nav-links a:hover {
  color: var(--primary);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--primary);
}
.nav-stroked .nav-logo { color: var(--gray-900); }
.nav-stroked .nav-logo span { color: var(--primary); }
.nav-stroked .nav-toggle span { background: var(--gray-600); }

/* ============================================
   Navigation - 3D Layered 灞傚彔闃村奖
   ============================================ */
.nav-3d-layered {
  background: #fff;
  border: none;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 2px 4px rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.04),
    0 8px 16px rgba(0,0,0,0.04),
    0 16px 32px rgba(0,0,0,0.04);
  border-radius: 0 0 16px 16px;
}
.nav-3d-layered .nav-inner { padding: 0 20px; }
.nav-3d-layered .nav-links a {
  color: #4b5563;
  font-weight: 500;
  padding: 10px 16px !important;
  border-radius: 8px;
  transition: all .25s;
}
.nav-3d-layered .nav-links a:hover {
  color: var(--primary);
  background: var(--primary-bg);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(79,70,229,0.12);
}
.nav-3d-layered .nav-logo { color: var(--gray-900); }
.nav-3d-layered .nav-logo span { color: var(--primary); }
.nav-3d-layered .nav-toggle span { background: var(--gray-600); }

/* ============================================
   Navigation - Striped 鏂滅汗鑳跺泭
   ============================================ */
.nav-striped {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border-bottom: 1px solid #bfdbfe;
}
.nav-striped .nav-links { gap: 2px; }
.nav-striped .nav-links a {
  color: #1e40af;
  font-weight: 600;
  padding: 8px 18px !important;
  border-radius: 100px;
  background: rgba(59,130,246,0.06);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.nav-striped .nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 4px,
    rgba(59,130,246,0.05) 4px, rgba(59,130,246,0.05) 8px
  );
  opacity: 0;
  transition: opacity .3s;
}
.nav-striped .nav-links a:hover::before { opacity: 1; }
.nav-striped .nav-links a:hover {
  background: rgba(59,130,246,0.15);
  color: #1e3a8a;
  box-shadow: 0 2px 8px rgba(59,130,246,0.15);
}
.nav-striped .nav-logo { color: #1e3a8a; font-weight: 800; }
.nav-striped .nav-logo span { color: #2563eb; }
.nav-striped .nav-toggle span { background: #1e40af; }

/* ============================================
   Navigation 鈥?Scrolled Glass 婊氬姩鏆楅粦
   ============================================ */
.nav-scrolled-glass {
  background: rgba(10,10,15,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-scrolled-glass.scrolled {
  background: rgba(10,10,15,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* wider spacing between menu items */
.nav-scrolled-glass .nav-links {
  gap: 28px;
}

/* links 鈥?white text, no color change on hover */
.nav-scrolled-glass .nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
}

/* ============================================
   Nav text hover effects 鈥?11 styles
   ============================================ */
/* base roll wrapper */
.nav-links a .nav-roll { display: inline-block; }

/* 1. roll-up */
body.nav-effect-roll .nav-links a .nav-roll { overflow: hidden; vertical-align: middle; position: relative; }
body.nav-effect-roll .nav-links a .nav-roll-inner { display: block; transition: transform .35s cubic-bezier(.4,0,.2,1); }
body.nav-effect-roll .nav-links a .nav-roll-clone { display: block; position: absolute; top: 100%; left: 0; color: #32e6b9; transition: transform .35s cubic-bezier(.4,0,.2,1); }
body.nav-effect-roll .nav-links a:hover .nav-roll-inner { transform: translateY(-100%); }
body.nav-effect-roll .nav-links a:hover .nav-roll-clone { transform: translateY(-100%); }

/* 2. slide-up */
body.nav-effect-slide .nav-links a { transition: transform .25s, color .25s; display: inline-block; }
body.nav-effect-slide .nav-links a:hover { transform: translateY(-4px); color: #32e6b9; }

/* 3. glow */
body.nav-effect-glow .nav-links a { transition: color .3s, text-shadow .3s; }
body.nav-effect-glow .nav-links a:hover { color: #32e6b9; text-shadow: 0 0 12px rgba(50,230,185,0.5); }

/* 4. underline-expand */
body.nav-effect-line .nav-links a { position: relative; }
body.nav-effect-line .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: #32e6b9; transition: all .3s ease; transform: translateX(-50%); }
body.nav-effect-line .nav-links a:hover::after { width: 100%; }
body.nav-effect-line .nav-links a:hover { color: #32e6b9; }

/* 5. scale */
body.nav-effect-scale .nav-links a { transition: transform .25s, color .25s; display: inline-block; }
body.nav-effect-scale .nav-links a:hover { transform: scale(1.1); color: #32e6b9; }

/* 6. bounce */
body.nav-effect-bounce .nav-links a { display: inline-block; transition: color .2s; }
body.nav-effect-bounce .nav-links a:hover { animation: navBounce .5s ease; color: #32e6b9; }
@keyframes navBounce { 0%,100%{transform:translateY(0)} 30%{transform:translateY(-8px)} 60%{transform:translateY(-3px)} }

/* 7. flip-3d 鈥?text flips vertically */
body.nav-effect-flip .nav-links a { display: inline-block; transition: transform .4s ease; }
body.nav-effect-flip .nav-links a:hover { transform: rotateX(180deg); color: #32e6b9; }

/* 8. spotlight */
body.nav-effect-spot .nav-links a { position: relative; overflow: hidden; }
body.nav-effect-spot .nav-links a::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(50,230,185,0.15), transparent); transition: left .5s; }
body.nav-effect-spot .nav-links a:hover::before { left: 100%; }
body.nav-effect-spot .nav-links a:hover { color: #32e6b9; }

/* 10. pulse-dot */
body.nav-effect-dot .nav-links a { position: relative; transition: color .25s; }
body.nav-effect-dot .nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: #32e6b9; transform: translateX(-50%) scale(0); transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
body.nav-effect-dot .nav-links a:hover::after { transform: translateX(-50%) scale(1); }
body.nav-effect-dot .nav-links a:hover { color: #32e6b9; }

/* 11. none */
body.nav-effect-none .nav-links a .nav-roll-clone { display: none; }
body.nav-effect-none .nav-links a:hover .nav-roll-inner { transform: none; }

/* green underline 鈥?scrolled-glass only */
.nav-scrolled-glass .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #32e6b9;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
}
.nav-scrolled-glass .nav-links a:hover::after {
  transform: translateY(0);
  opacity: 1;
}

/* CTA button and dropdowns 鈥?no rolling text */
.nav-cta::after { display: none; }
.nav-cta .nav-roll, .nav-cta .nav-roll-inner, .nav-cta .nav-roll-clone,
.nav-dropdown .nav-roll, .nav-dropdown .nav-roll-inner, .nav-dropdown .nav-roll-clone { display: none !important; }

/* dark logo */
.nav-scrolled-glass .nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}
.nav-scrolled-glass .nav-logo span {
  color: #32e6b9;
}

/* CTA button 鈥?green brand */
.nav-scrolled-glass .nav-cta.c-solid-brand {
  background: linear-gradient(135deg, #28b894, #32e6b9);
  color: #0a0a0f;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.nav-scrolled-glass .nav-cta.c-solid-brand:hover {
  background: linear-gradient(135deg, #22a683, #28b894);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(40,184,148,.3);
}

/* mobile hamburger */
.nav-scrolled-glass .nav-toggle span {
  background: rgba(255,255,255,0.8);
}

/* dropdown menus 鈥?dark card */
.nav-scrolled-glass .nav-dropdown {
  background: rgba(30,30,40,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  padding: 8px;
}
.nav-scrolled-glass .nav-dropdown a {
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  padding: 10px 16px;
  transition: all 0.2s ease;
}
.nav-scrolled-glass .nav-dropdown a:hover {
  background: rgba(50,230,185,0.1);
  color: #32e6b9;
}
.nav-scrolled-glass .nav-dropdown a::after {
  display: none;
}
.nav-scrolled-glass .nav-arrow {
  opacity: 0.5;
  font-size: 0.6rem;
  margin-left: 4px;
}

/* ============================================
   Features - Floating variant
   ============================================ */
.features-floating {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  perspective: 800px;
}

.floating-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(79,70,229,.12), 0 8px 16px rgba(0,0,0,.04);
  border-color: var(--primary-light);
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.floating-card:hover::before {
  transform: scaleX(1);
}

.floating-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  width: 64px;
  height: 64px;
  background: var(--primary-bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.floating-card:hover .floating-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: translateY(-4px);
  border-radius: 20px;
}

.floating-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.floating-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.floating-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 4px 14px;
  border-radius: 100px;
}

.floating-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(79,70,229,.06) 0%, transparent 70%);
  bottom: -40px;
  right: -40px;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.floating-card:hover .floating-glow {
  opacity: 1;
}

/* ============================================
   Pricing - Horizontal variant
   ============================================ */
.pricing-horizontal {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 12px 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pricing-horizontal::-webkit-scrollbar { height: 6px; }
.pricing-horizontal::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.pricing-horizontal::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

.plan-card-h {
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.plan-card-h:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.plan-card-h.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, #fff 0%, var(--primary-bg) 100%);
}

.plan-card-h .plan-name {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.plan-card-h .plan-price-inline {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.plan-card-h .plan-price-inline .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.plan-card-h .plan-price-inline .period {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.plan-card-h .plan-price-inline .original {
  text-decoration: line-through;
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-left: 8px;
}

.plan-features-inline {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.plan-features-inline li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features-inline li .check {
  color: var(--success);
  font-weight: 700;
}

.plan-features-inline li .cross {
  color: var(--gray-300);
}

/* ============================================
   Team - Cards (large profile) variant
   ============================================ */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card-lg {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.team-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(79,70,229,.1);
  border-color: var(--primary-light);
}

.team-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-bg), #e0e7ff);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: all var(--transition);
}

.team-card-lg:hover .team-card-bg {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.team-avatar-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  overflow: hidden;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-lg h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.team-card-lg .role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-lg p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-socials {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.social-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all var(--transition);
}

.social-dot:nth-child(1) { background: #6366f1; }
.social-dot:nth-child(2) { background: #06b6d4; }
.social-dot:nth-child(3) { background: #8b5cf6; }

.team-card-lg:hover .social-dot {
  transform: scale(1.4);
}

/* ============================================
   Categories - Tabs variant
   ============================================ */
.cat-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 800px;
  margin: 0 auto;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.cat-tab:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  background: linear-gradient(90deg, var(--primary-bg) 0%, #fff 60%);
}

.cat-tab-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cat-tab:hover .cat-tab-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.cat-tab h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cat-tab p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cat-tab-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ============================================
   Footer - Minimal variant
   ============================================ */
.footer-minimal {
  background: var(--white);
  color: var(--text-secondary);
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
}

.footer-minimal-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-minimal-inner p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.footer-minimal-inner strong {
  color: var(--text-primary);
}

.footer-minimal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-minimal-links a {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  transition: color var(--transition);
}

.footer-minimal-links a:hover {
  color: var(--primary);
}

.footer-minimal-links span {
  color: var(--gray-300);
  font-weight: 300;
}

/* ============================================
   Footer - Dark variant
   ============================================ */
.footer-dark {
  background: #0a0e1a;
  color: var(--text-inverse);
  padding: 72px 0 40px;
  position: relative;
}

.footer-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,70,229,.3), transparent);
}

.footer-dark .footer-brand h3 span {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-dark .footer-col h4 {
  color: rgba(255,255,255,.25);
}

.footer-dark .footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-dark .footer-social-icons span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
  transition: all var(--transition);
  cursor: pointer;
}

.footer-dark .footer-social-icons span:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .feature-row,
  .feature-row.reverse {
    gap: 48px;
  }

  .cta-split {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .contact-split {
    flex-direction: column;
  }

  .slideshow-split {
    flex-direction: column;
    min-height: auto;
    text-align: center;
    padding: 80px 0 60px;
  }

  .split-text h1 { max-width: 100%; }
  .split-text p { max-width: 100%; }
  .split-media { min-height: 300px; }

  .nav-centered .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-centered .nav-side { flex: 1 1 100%; justify-content: center; }

  .footer-minimal-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .section-title { font-size: 1.8rem; }

  .section-header { margin-bottom: 40px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 4px;
  }

  /* Dark nav mobile */
  .nav-dark .nav-links.open {
    background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-dark .nav-links.open a { color: #cbd5e1; }
  .nav-dark .nav-links.open a:hover { color: #fff; background: rgba(99,102,241,0.15); }

  /* Pill nav mobile */
  .nav-pill .nav-links {
    background: transparent;
    border-radius: 0;
    padding: 0;
    gap: 0;
  }
  .nav-pill .nav-links.open {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 12px 20px;
    gap: 2px;
  }
  .nav-pill .nav-links.open a {
    border-radius: var(--radius);
    color: var(--text-secondary);
    padding: 10px 14px;
  }
  .nav-pill .nav-links.open a:hover {
    background: var(--gray-100);
  }

  /* Border accent nav mobile */
  .nav-border-accent .nav-links.open {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--primary);
  }
  .nav-border-accent .nav-links.open a { color: var(--gray-600); }
  .nav-border-accent .nav-links.open a:hover { color: var(--primary); background: var(--primary-bg); }

  /* Floating nav mobile */
  .nav-floating {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-floating .nav-links.open {
    background: #fff;
    box-shadow: var(--shadow-xl);
  }
  .nav-floating .nav-links.open a { color: var(--gray-600); }
  .nav-floating .nav-links.open a:hover { color: var(--primary); }

  /* Split bar nav mobile */
  .nav-split-bar {
    border-left: none;
    border-bottom: 3px solid var(--primary);
  }
  .nav-split-bar .nav-logo {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
  .nav-split-bar .nav-links.open {
    background: var(--white);
    box-shadow: var(--shadow-xl);
  }
  .nav-split-bar .nav-links.open a { color: var(--gray-600); }
  .nav-split-bar .nav-links.open .nav-cta { margin-left: 0; }

  /* Gradient brand nav mobile */
  .nav-gradient-brand .nav-links.open {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    box-shadow: var(--shadow-xl);
  }
  .nav-gradient-brand .nav-links.open a { color: rgba(255,255,255,0.85); }
  .nav-gradient-brand .nav-links.open a:hover { color: #fff; background: rgba(255,255,255,0.15); }

  /* Compact nav mobile */
  .nav-compact .nav-links.open {
    background: #fff;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
  }
  .nav-compact .nav-links.open a { color: var(--gray-600); font-size: 0.85rem; padding: 8px 16px; }

  /* Minimal nav mobile */
  .nav-minimal .nav-links.open {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-minimal .nav-links.open a { color: var(--text-secondary); }

  /* Retro nav mobile */
  .nav-retro .nav-links.open { background: #fef3c7; border-bottom: 2px solid #d97706; }
  .nav-retro .nav-links.open a { color: #78350f; }
  .nav-retro .nav-links.open a:hover { background: #fde68a; }
  /* Neon nav mobile */
  .nav-neon .nav-links.open { background: #0a0a0f; border: 1px solid rgba(0,255,255,.2); }
  .nav-neon .nav-links.open a { color: rgba(0,255,255,.75); font-size: .8rem; }
  /* Soft gradient nav mobile */
  .nav-soft-gradient .nav-links.open { background: linear-gradient(135deg, #fce4ec, #e8eaf6); box-shadow: var(--shadow-xl); }
  .nav-soft-gradient .nav-links.open a { color: #6a1b9a; }
  /* Side dots nav mobile */
  .nav-side-dots .nav-links.open { background: #fff; box-shadow: var(--shadow-xl); }
  .nav-side-dots .nav-links.open a { color: #4b5563; }
  .nav-side-dots .nav-links.open a::after { display: none; }
  /* Tabbed nav mobile */
  .nav-tabbed { box-shadow: 0 1px 0 #e5e7eb; }
  .nav-tabbed .nav-links.open { background: #fff; box-shadow: var(--shadow-xl); border-top: 3px solid var(--primary); }
  .nav-tabbed .nav-links.open a { color: #6b7280; border-radius: 6px; margin-bottom: 0; }
  /* Glass light nav mobile */
  .nav-glass-light .nav-links.open { background: rgba(255,255,255,.96); backdrop-filter: blur(20px); box-shadow: var(--shadow-xl); }
  .nav-glass-light .nav-links.open a { color: #374151; }
  /* Carbon nav mobile */
  .nav-carbon .nav-links.open { background: #1a1a2e; border: 1px solid rgba(255,255,255,.08); }
  .nav-carbon .nav-links.open a { color: #a0aec0; }
  /* Stroked nav mobile */
  .nav-stroked { border-top: 2px solid var(--primary); border-bottom: 2px solid var(--primary); }
  .nav-stroked .nav-links.open { background: #fff; box-shadow: var(--shadow-xl); }
  .nav-stroked .nav-links.open a { color: #4b5563; }
  /* 3D nav mobile */
  .nav-3d-layered { border-radius: 0; }
  .nav-3d-layered .nav-links.open { background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
  .nav-3d-layered .nav-links.open a { color: #4b5563; }
  /* Striped nav mobile */
  .nav-striped .nav-links.open { background: #f8fafc; box-shadow: var(--shadow-xl); }
  .nav-striped .nav-links.open a { color: #1e40af; border-radius: 8px; }

  .nav-links.open .nav-cta { margin-left: 0; margin-top: 8px; }

  .nav-toggle { display: block; }

  .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: unset;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 12px 0;
    display: none;
    background: transparent;
  }

  .nav-links > li:hover .mega-menu { display: grid; }
  .mega-cat h4 { color: var(--gray-400); }
  .mega-cat a { color: var(--gray-300); }

  .slideshow { height: 450px; }
  .slide-content h1 { font-size: 2rem; }
  .slide-content p { font-size: 0.95rem; }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
  }

  .feature-media { min-height: 240px; }
  .feature-text h3 { font-size: 1.4rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .cat-page-header h1 { font-size: 2rem; }

  .cta-banner h2 { font-size: 1.6rem; }
  .cta-split { padding: 40px 28px; }
  .cta-split .cta-text h2 { font-size: 1.5rem; }
  .cta-gradient h2 { font-size: 1.6rem; }

  .pricing-table { font-size: 0.8rem; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 12px; }

  .stats-inline { gap: 40px; }
  .stats-inline .stat-item + .stat-item {
    padding-left: 40px;
  }

  .contact-inline { flex-direction: column; gap: 24px; }
  .contact-inline .contact-item + .contact-item {
    border-left: none;
    padding-left: 24px;
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section-title { font-size: 1.5rem; }
  .slide-content h1 { font-size: 1.6rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .slide-buttons { flex-direction: column; }
  .slide-buttons .btn { justify-content: center; }
  .slide-buttons .btn-outline-white { margin-left: 0; }

  .stats-inline { flex-direction: column; gap: 24px; align-items: center; }
  .stats-inline .stat-item + .stat-item {
    border-left: none;
    padding-left: 0;
  }
}

/* ================ Customer Service Widget ================ */
.cs-widget { position: fixed; z-index: 9999; }
.cs-widget.cs-right-bottom { right: 24px; bottom: 24px; }
.cs-widget.cs-left-bottom { left: 24px; bottom: 24px; }
.cs-widget.cs-right-center { right: 24px; top: 50%; transform: translateY(-50%); }
.cs-widget.cs-overlay { right: 24px; bottom: 24px; } /* same position as default but popup is centered */

/* Trigger Button 鈥?base */
.cs-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary, #4f46e5); color: #fff;
  border: none; cursor: pointer;
  font-size: .92rem; font-weight: 600;
  padding: 12px 20px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(79,70,229,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.cs-trigger:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,70,229,.45); }
.cs-trigger:active { transform: translateY(0); }
.cs-trigger-icon { display: flex; align-items: center; justify-content: center; }
.cs-trigger-text { line-height: 1; }

/* == Style: pill (rounded full) == */
.cs-style-pill .cs-trigger { border-radius: 100px; padding: 14px 24px; }

/* == Style: circle (icon only, no text) == */
.cs-style-circle .cs-trigger {
  width: 56px; height: 56px; padding: 0; border-radius: 50%;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(79,70,229,.4);
}
.cs-style-circle .cs-trigger:hover { box-shadow: 0 10px 34px rgba(79,70,229,.55); }

/* == Style: gradient == */
.cs-style-gradient .cs-trigger {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #32e6b9 100%);
  border-radius: 100px; padding: 14px 24px;
  box-shadow: 0 4px 20px rgba(79,70,229,.3);
}

/* == Style: glass == */
.cs-style-glass .cs-trigger {
  background: rgba(255,255,255,.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  color: var(--primary, #4f46e5); border: 1px solid rgba(255,255,255,.5);
  border-radius: 100px; padding: 14px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* == Popup == */
.cs-popup {
  display: none; position: fixed; inset: 0; z-index: 99999;
}
.cs-popup.open { display: flex; align-items: center; justify-content: center; }

.cs-popup-card {
  background: #fff; border-radius: 20px; padding: 32px 28px 24px;
  max-width: 320px; width: 90vw; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  position: relative;
}

/* ====== 5 绉嶆埅鐒朵笉鍚岀殑寮瑰嚭鏁堟灉 ====== */

/* 1. default 鈥?搴曢儴婊戝叆锛坕OS Action Sheet 椋庢牸锛?*/
.cs-style-default .cs-popup.open {
  align-items: flex-end; justify-content: center;
  background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
}
.cs-style-default .cs-popup-card {
  animation: csSlideUp .35s cubic-bezier(.32,.72,0,1);
  border-radius: 20px 20px 0 0;
  max-width: 420px; width: 100vw;
  margin-bottom: 0;
}
@keyframes csSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* 2. pill 鈥?寮规€у脊绨х缉鏀惧叆鍦?*/
.cs-style-pill .cs-popup.open {
  background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
}
.cs-style-pill .cs-popup-card {
  animation: csBounceIn .5s cubic-bezier(.21,1.12,.58,1.3);
}
@keyframes csBounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* 3. circle 鈥?鍙充晶婊戝叆鎶藉眽 */
.cs-style-circle .cs-popup.open {
  align-items: stretch; justify-content: flex-end;
  background: rgba(0,0,0,.3);
}
.cs-style-circle .cs-popup-card {
  animation: csSlideRight .35s cubic-bezier(.16,1,.3,1);
  border-radius: 20px 0 0 20px;
  max-width: 340px; width: 85vw; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}
@keyframes csSlideRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* 4. gradient 鈥?鏃嬭浆鐖嗚灞曞紑 + 娣辫壊钂欑増 */
.cs-style-gradient .cs-popup.open {
  background: rgba(0,0,0,.75); backdrop-filter: blur(12px);
}
.cs-style-gradient .cs-popup-card {
  animation: csExplodeIn .5s cubic-bezier(.22,.61,.36,1);
}
@keyframes csExplodeIn {
  0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
  70%  { transform: scale(1.05) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* 5. glass 鈥?浼橀泤鎮仠娓愭樉锛堜粠涓婃柟椋樿惤锛?*/
.cs-style-glass .cs-popup.open {
  background: rgba(255,255,255,.6); backdrop-filter: blur(16px);
}
.cs-style-glass .cs-popup-card {
  animation: csFloatDown .7s cubic-bezier(.23,1,.32,1);
}
@keyframes csFloatDown {
  from { transform: translateY(-60px); opacity: 0; filter: blur(8px); }
  to   { transform: translateY(0); opacity: 1; filter: blur(0); }
}

/* dark 鈥?matches dark nav, green brand accent */
.cs-style-dark .cs-trigger {
  background: linear-gradient(135deg, #28b894, #32e6b9); color: #0a0a0f;
  box-shadow: 0 4px 16px rgba(40,184,148,.35);
}
.cs-style-dark .cs-trigger:hover { box-shadow: 0 8px 24px rgba(40,184,148,.5); }
.cs-style-dark .cs-popup-card {
  background: #1a1a24; color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.cs-style-dark .cs-popup-title { color: #fff; }
.cs-style-dark .cs-popup-desc { color: rgba(255,255,255,.55); }
.cs-style-dark .cs-popup-hint { color: rgba(255,255,255,.35); }
.cs-style-dark .cs-qr-img { border-color: rgba(255,255,255,.1); }
.cs-style-dark .cs-close { color: rgba(255,255,255,.4); }
.cs-style-dark .cs-close:hover { color: rgba(255,255,255,.7); }

/* ===== animated 鈥?pulsing ring + bounce ===== */
.cs-style-animated .cs-trigger {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #28b894, #32e6b9);
  color: #0a0a0f; border: none; padding: 0;
  display: flex; align-items: center; justify-content: center;
  animation: csPulse 2s infinite;
  position: relative;
}
.cs-style-animated .cs-trigger::before,
.cs-style-animated .cs-trigger::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(50,230,185,0.4);
  animation: csRipple 2s infinite;
}
.cs-style-animated .cs-trigger::after { animation-delay: .6s; }
.cs-style-animated .cs-trigger:hover {
  transform: scale(1.1); animation: none;
}
.cs-style-animated .cs-trigger:hover::before,
.cs-style-animated .cs-trigger:hover::after { animation: none; display: none; }
.cs-style-animated .cs-trigger-text { display: none; }
@keyframes csPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes csRipple {
  0% { inset: -6px; opacity: 0.8; }
  100% { inset: -20px; opacity: 0; }
}
.cs-style-animated .cs-popup { transition: all .4s cubic-bezier(.34,1.56,.64,1); }
.cs-style-animated .cs-popup-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 32px 24px;
}

.cs-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; font-size: 1.4rem; color: var(--gray-400);
  cursor: pointer; line-height: 1; padding: 4px;
}
.cs-close:hover { color: var(--gray-600); }

.cs-popup-title {
  font-size: 1.15rem; font-weight: 700; color: var(--gray-800);
  margin-bottom: 6px;
}
.cs-popup-desc {
  font-size: .88rem; color: var(--gray-500); margin-bottom: 16px;
}
.cs-qr-wrap {
  display: flex; justify-content: center; margin-bottom: 12px;
}
.cs-qr-img {
  max-width: 180px; width: 100%; height: auto; border-radius: 12px;
  border: 1px solid var(--gray-100); box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.cs-popup-hint {
  font-size: .78rem; color: var(--gray-400);
  margin-top: 8px;
}

/* == Popup Card Style Variants == */

/* Style: pill 鈥?soft top accent bar + extra rounded */
.cs-card-pill {
  border-radius: 28px !important;
  background: linear-gradient(180deg, #eef2ff 0%, #fff 20%);
  border-top: 3px solid #4f46e5;
}

/* Style: circle 鈥?compact card */
.cs-card-circle {
  border-radius: 20px 0 0 20px !important;
  padding: 28px 24px 20px;
  background: #f8fafc;
  border-left: 3px solid #4f46e5;
}

/* Style: gradient 鈥?vibrant gradient card, white text */
.cs-card-gradient {
  background: linear-gradient(145deg, #4f46e5 0%, #7c3aed 40%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 24px 80px rgba(79,70,229,.5), 0 0 120px rgba(6,182,212,.25);
}
.cs-card-gradient .cs-popup-title { color: #fff; }
.cs-card-gradient .cs-popup-desc { color: rgba(255,255,255,.8); }
.cs-card-gradient .cs-popup-hint { color: rgba(255,255,255,.65); }
.cs-card-gradient .cs-close { color: rgba(255,255,255,.6); }
.cs-card-gradient .cs-close:hover { color: #fff; }

/* Style: glass 鈥?frosted glass + subtle border */
.cs-card-glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 24px 80px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.6);
}

/* =============================================
   Articles / 鏂囩珷妯″潡
   ============================================= */
.articles-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Article Card ---- */
.article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.article-cover-wrap {
  display: block;
  overflow: hidden;
}
.article-cover-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
}
.article-card:hover .article-cover-img {
  transform: scale(1.05);
}
.article-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-meta {
  display: flex;
  gap: 12px;
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.article-author {
  font-weight: 500;
  color: var(--primary);
}
.article-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 8px;
  line-height: 1.4;
}
.article-title a {
  color: inherit;
  text-decoration: none;
}
.article-title a:hover {
  color: var(--primary);
}
.article-excerpt {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-read-more {
  margin-top: 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.article-read-more:hover {
  text-decoration: underline;
}

/* ---- Variant: list (horizontal rows) ---- */
.articles-list .articles-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.articles-list .article-card {
  flex-direction: row;
}
.articles-list .article-cover-wrap {
  width: 240px;
  flex-shrink: 0;
}
.articles-list .article-cover-img {
  height: 100%;
  min-height: 160px;
}

/* ---- Variant: minimal (no cover image, clean text cards) ---- */
.articles-minimal .article-card {
  box-shadow: none;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
}
.articles-minimal .article-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(79,70,229,.12);
}
.articles-minimal .article-body {
  padding: 24px;
}

/* ---- Variant: masonry (column layout via CSS columns) ---- */
.articles-masonry .articles-grid {
  display: block;
  columns: 3;
  column-gap: 20px;
}
.articles-masonry .article-card {
  break-inside: avoid;
  margin-bottom: 20px;
}
.articles-masonry .article-cover-img {
  height: auto;
  max-height: 300px;
}

/* ---- Variant: featured-first (first card spans full width) ---- */
.articles-featured-first .article-featured {
  grid-column: 1 / -1;
}
.articles-featured-first .article-featured .article-cover-img {
  height: 320px;
}

/* ---- Article Detail Page ---- */
.article-detail-page {
  max-width: 800px;
  margin: 60px auto 40px;
  padding: 0 24px;
}
.article-detail-header {
  text-align: center;
  margin-bottom: 32px;
}
.article-detail-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: 12px;
}
.article-detail-meta {
  font-size: .85rem;
  color: var(--gray-400);
  display: flex;
  gap: 16px;
  justify-content: center;
}
.article-detail-author {
  color: var(--primary);
  font-weight: 600;
}
.article-detail-cover {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.article-detail-cover img {
  width: 100%;
  display: block;
}
.article-detail-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-700);
}
.article-detail-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 32px 0 12px;
}
.article-detail-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 24px 0 8px;
}
.article-detail-content p {
  margin-bottom: 16px;
}
.article-detail-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}
.article-detail-content ul, .article-detail-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.article-detail-content li {
  margin-bottom: 6px;
}
.article-detail-content pre {
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  font-size: .88rem;
  margin-bottom: 16px;
}
.article-detail-content code {
  background: #f1f5f9;
  color: #e11d48;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
}
.article-detail-content pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
}
.article-detail-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

/* == 鏂囩珷鍒楄〃/鍒嗙被褰掓。椤碉紙鐙珛 CMS锛?== */
.articles-hero {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
  color: #fff;
  padding: 60px 0 48px;
  text-align: center;
}
.articles-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.articles-hero p {
  font-size: 1rem;
  opacity: .85;
}
.articles-layout {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
  max-width: 1100px;
}
.articles-sidebar {
  flex: 0 0 200px;
}
.articles-sidebar h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.articles-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.articles-cat-list li {
  margin-bottom: 2px;
}
.articles-cat-list a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: .88rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: all .15s;
}
.articles-cat-list a:hover {
  background: #f3f4f6;
  color: var(--gray-800);
}
.articles-cat-list a.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.articles-main {
  flex: 1;
  min-width: 0;
}
.articles-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-400);
  font-size: 1rem;
}
/* Article card 鈥?horizontal layout */
.article-card-h {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  padding: 20px;
  transition: box-shadow .2s, transform .2s;
}
.article-card-h:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.article-card-h-cover {
  flex: 0 0 200px;
  border-radius: 8px;
  overflow: hidden;
}
.article-card-h-cover img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.article-card-h-body {
  flex: 1;
  min-width: 0;
}
.article-card-h-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.article-card-h-author {
  font-weight: 500;
  color: var(--gray-500);
}
.article-card-h-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
}
.article-card-h-body h3 a {
  color: var(--gray-800);
  text-decoration: none;
}
.article-card-h-body h3 a:hover {
  color: var(--primary);
}
.article-card-h-body p {
  font-size: .85rem;
  color: var(--gray-500);
  margin: 0 0 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-h-more {
  font-size: .82rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.article-card-h-more:hover {
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-list .article-card { flex-direction: column; }
  .articles-list .article-cover-wrap { width: 100%; }
  .articles-layout { flex-direction: column; }
  .articles-sidebar { flex: none; }
  .articles-cat-list { display: flex; gap: 6px; flex-wrap: wrap; }
  .articles-cat-list li { margin-bottom: 0; }
}
@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
  .articles-masonry .articles-grid { columns: 1; }
  .article-detail-header h1 { font-size: 1.5rem; }
  .article-card-h { flex-direction: column; }
  .article-card-h-cover { flex: none; }
}

/* ============================================
   Tabs Module 鈥?5 distinct styles
   ============================================ */
.tabs-main-title { font-size: 2rem; font-weight: 800; margin: 0 0 56px; }
.tabs-title-left { text-align: left; }
.tabs-title-center { text-align: center; }
.tabs-main-title .tq-red { color: #ef4444; }
.tabs-body { display: flex; gap: 56px; align-items: stretch; }
.tabs-rev { flex-direction: row-reverse; }
.tabs-phone { flex: 0 0 28%; margin-top: -4px; }
.tabs-phone img { width: 100%; display: block; border-radius: 20px; cursor: pointer; transition: transform .2s; }
.tabs-phone img:hover { transform: scale(1.02); }
.tabs-ratio-portrait img { aspect-ratio: 9/16; object-fit: cover; }
.tabs-ratio-landscape { flex: 0 0 50% !important; }
.tabs-ratio-landscape img { aspect-ratio: 16/9; object-fit: cover; }
.tabs-ratio-square { flex: 0 0 40% !important; }
.tabs-ratio-square img { aspect-ratio: 1/1; object-fit: cover; }
.tabs-phone-empty { background: var(--gray-100); aspect-ratio: 9/18; max-width: 280px; margin: 0 auto; display: flex; align-items: center; justify-content: center; color: var(--gray-400); border-radius: 28px; }
.tabs-info { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.tabs-nav { display: flex; gap: 0; margin-bottom: 20px; position: relative; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); flex-shrink: 0; }
.tabs-nav-btn { padding: 8px 24px; border: none; background: none; font-size: 1.05rem; font-weight: 600; color: var(--gray-500); cursor: pointer; transition: color .25s; }
.tabs-nav-btn.active { color: var(--text-primary); }
.tabs-line { position: absolute; bottom: -1px; left: 0; height: 2px; background: var(--primary); transition: left .4s cubic-bezier(.4,0,.2,1), width .4s cubic-bezier(.4,0,.2,1); border-radius: 2px; }
.tabs-btn-text { display: inline-block; overflow: hidden; vertical-align: top; position: relative; }
.tr-inner, .tr-clone { display: block; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.tr-clone { position: absolute; top: 100%; left: 0; }
.tabs-nav-btn:hover .tr-inner { transform: translateY(-100%); }
.tabs-nav-btn:hover .tr-clone { transform: translateY(-100%); }
.tabs-panel { display: none; }
.tabs-panel.active { display: block; animation: tabsIn .3s ease; }
.tabs-desc { font-size: 1.6rem; font-weight: 800; margin: 0 0 20px; line-height: 1.4; flex-shrink: 0; }
.tabs-cards { display: flex; gap: 14px; flex: 1; min-height: 0; }
.tabs-card { flex: 1; background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px 28px; transition: all .3s; }
.tabs-card-mid { transform: translateY(-12px); box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.tabs-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.tabs-card p { color: var(--gray-500); font-size: .92rem; line-height: 1.7; }
.tabs-btn-link { display: inline-block; margin-top: 28px; padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: all .2s; }
.tabs-btn-primary { background: var(--primary); color: #fff; }
.tabs-btn-outline { border: 2px solid var(--primary); color: var(--primary); background: none; }
.tabs-btn-dark { background: #1e293b; color: #fff; }
.tabs-btn-gradient { background: linear-gradient(135deg, #4f46e5, #7c3aed); color: #fff; }
.tabs-btn-primary:hover, .tabs-btn-dark:hover, .tabs-btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
@keyframes tabsIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* lightbox */
.tabs-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 9999; align-items: center; justify-content: center; cursor: zoom-out; }
.tabs-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; }

/* === Variant: shadow 鈥?cards lift on hover === */
.tabs-cards-shadow .tabs-card { transition: all .35s; box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.tabs-cards-shadow .tabs-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }

/* === Variant: clean 鈥?border-light, scale hover === */
.tabs-nav-clean .tabs-line { background: #32e6b9; }
.tabs-cards-clean .tabs-card { border-color: var(--gray-100); transition: all .35s; }
.tabs-cards-clean .tabs-card:hover { border-color: #32e6b9; transform: scale(1.02); }

/* === Variant: pill 鈥?capsule buttons === */
.tabs-pill-body { display: block; }
.tabs-nav-pill { justify-content: center; gap: 8px; border-bottom: none; padding-bottom: 0; margin-bottom: 28px; }
.tabs-nav-pill .tabs-nav-btn { border-radius: 50px; padding: 10px 24px; background: var(--gray-100); font-size: .95rem; transition: all .3s; }
.tabs-nav-pill .tabs-nav-btn:hover { background: var(--gray-200); }
.tabs-nav-pill .tabs-nav-btn.active { background: var(--primary); color: #fff; }
.tabs-nav-pill .tabs-nav-btn.active:hover { background: var(--primary-dark); }
.tabs-nav-pill .tabs-line { display: none; }
.tabs-pill-body .tabs-phone { margin: 24px auto 0; max-width: 280px; }
.tabs-pill-body .tabs-desc { text-align: center; }
.tabs-cards-pill .tabs-card { transition: all .35s; }
.tabs-cards-pill .tabs-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(79,70,229,.1); }

/* === dark === */
body.bg-dark .tabs-nav, body.bg-dark-gradient .tabs-nav { border-color: rgba(255,255,255,.08); }
body.bg-dark .tabs-nav-btn, body.bg-dark-gradient .tabs-nav-btn { color: rgba(255,255,255,.4); }
body.bg-dark .tabs-nav-btn.active, body.bg-dark-gradient .tabs-nav-btn.active { color: #fff; }
body.bg-dark .tabs-line, body.bg-dark-gradient .tabs-line { background: #32e6b9; }
body.bg-dark .tabs-card, body.bg-dark-gradient .tabs-card { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
body.bg-dark .tabs-desc, body.bg-dark-gradient .tabs-desc { color: #fff; }
body.bg-dark .tabs-card h4 { color: #fff; }
body.bg-dark .tabs-nav-pill .tabs-nav-btn { background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); }
body.bg-dark .tabs-nav-pill .tabs-nav-btn.active { background: #32e6b9; color: #0a0a0f; }
body.bg-dark .tabs-cards-clean .tabs-card:hover { border-color: #32e6b9; }

/* tab text roll 鈥?all styles */
.tabs-btn-text { display: inline-block; overflow: hidden; vertical-align: top; position: relative; }
.tr-inner, .tr-clone { display: block; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.tr-clone { position: absolute; top: 100%; left: 0; }
.tabs-nav-btn:hover .tr-inner { transform: translateY(-100%); }
.tabs-nav-btn:hover .tr-clone { transform: translateY(-100%); }

.tabs-panel { display: none; }
.tabs-panel.active { display: block; animation: tabsIn .3s ease; }
.tabs-desc { font-size: 1.4rem; font-weight: 700; margin: 0 0 32px; line-height: 1.5; }
.tabs-cards { display: flex; gap: 14px; flex: 1; min-height: 0; }
.tabs-card { flex: 1; background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px 24px; transition: all .3s; }
.tabs-card-mid { transform: translateY(-12px); box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.tabs-card-shadow { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.tabs-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.tabs-card p { color: var(--gray-500); font-size: .88rem; line-height: 1.7; }
.tabs-btn-link { display: inline-block; margin-top: 24px; padding: 12px 32px; border-radius: 8px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: all .2s; }
.tabs-btn-primary { background: var(--primary); color: #fff; }
.tabs-btn-outline { border: 2px solid var(--primary); color: var(--primary); background: none; }
.tabs-btn-dark { background: #1e293b; color: #fff; }
.tabs-btn-gradient { background: linear-gradient(135deg, #4f46e5, #7c3aed); color: #fff; }
.tabs-btn-primary:hover, .tabs-btn-dark:hover, .tabs-btn-gradient:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
@keyframes tabsIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* pill */
.tabs-pill-layout { display: block; }
.tabs-pill-layout .tabs-phone { margin: 24px auto 0; max-width: 320px; }
.tabs-pill-layout .tabs-nav { justify-content: center; gap: 8px; margin-top: 0; }
.tabs-nav-pill .tabs-nav-btn { border-radius: 50px; padding: 8px 20px; background: var(--gray-100); }
.tabs-nav-pill .tabs-nav-btn.active { background: var(--primary); color: #fff; }
.tabs-nav-pill .tabs-nav-btn::after { display: none; }

/* clean */
.tabs-cards-clean { gap: 12px; }
.tabs-card-clean { border: 1px solid var(--gray-100) !important; }
.tabs-card-clean.tabs-card-mid { transform: none !important; box-shadow: none !important; }

body.bg-dark .tabs-phone-empty, body.bg-dark-gradient .tabs-phone-empty { background: rgba(255,255,255,.04); }
body.bg-dark .tabs-nav, body.bg-dark-gradient .tabs-nav { border-color: rgba(255,255,255,.08); }
body.bg-dark .tabs-nav-btn, body.bg-dark-gradient .tabs-nav-btn { color: rgba(255,255,255,.4); }
body.bg-dark .tabs-nav-btn.active, body.bg-dark-gradient .tabs-nav-btn.active { color: #fff; }
body.bg-dark .tabs-card, body.bg-dark-gradient .tabs-card { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
body.bg-dark .tabs-desc, body.bg-dark-gradient .tabs-desc { color: #fff; }
body.bg-dark .tabs-card h4 { color: #fff; }
body.bg-dark .tabs-nav-pill .tabs-nav-btn { background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); }
body.bg-dark .tabs-nav-pill .tabs-nav-btn.active { background: #32e6b9; color: #0a0a0f; }

/* ============================================
   Client Logos 鈥?Logo Wall Module
   ============================================ */
/* grid */
.logos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px;
  align-items: center; justify-items: center; padding: 20px 0;
}
.logo-item { display: flex; align-items: center; justify-content: center; }
.logo-item img { max-height: 48px; max-width: 140px; opacity: 0.65; transition: opacity 0.3s; filter: grayscale(30%); }
.logo-item img:hover { opacity: 1; filter: grayscale(0); }
.logo-item a { display: flex; align-items: center; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: var(--gray-400); letter-spacing: 0.5px; }
.logo-text-lg { font-size: 1.3rem; font-weight: 700; color: var(--gray-500); letter-spacing: 1px; }

/* carousel */
.logos-carousel-track {
  display: flex; overflow: hidden; gap: 40px; padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logos-carousel-track .logo-item { flex-shrink: 0; }
@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
#client-logos .logos-carousel-track { animation: logoScroll 20s linear infinite; }

/* centered 鈥?larger logos with name */
.logos-centered { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 20px 0; }
.logo-item-centered { text-align: center; }
.logo-item-centered img { max-height: 56px; max-width: 150px; opacity: 0.7; transition: opacity 0.3s; }
.logo-item-centered img:hover { opacity: 1; }
.logo-item-centered .logo-name { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--gray-500); }

/* dark sections override */
body.bg-dark .logo-item img, body.bg-dark-gradient .logo-item img { filter: grayscale(20%) brightness(0.9); opacity: 0.5; }
body.bg-dark .logo-item img:hover, body.bg-dark-gradient .logo-item img:hover { filter: grayscale(0) brightness(1.2); opacity: 0.9; }
body.bg-dark .logo-item-centered .logo-name, body.bg-dark-gradient .logo-item-centered .logo-name { color: rgba(255,255,255,0.4); }

/* =============================================
   FOOTER SYSTEM 鈥?5 fresh styles
   ============================================= */
.ft-container { max-width: var(--max-width); margin: 0 auto; padding: 60px 32px 32px; }
.ft-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin: 0; }
.ft-logo { font-size: 1.2rem; font-weight: 800; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.ft-logo-letter { background: linear-gradient(135deg, var(--primary-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.4rem; }
.ft-logo-lg { font-size: 1.4rem; }
.ft-logo-badge .ft-logo-letter { background: var(--primary); color: #fff; -webkit-text-fill-color: #fff; padding: 2px 9px; border-radius: 6px; font-size: 1rem; }
.ft-logo-bracket::before { content: '['; color: rgba(255,255,255,0.3); margin-right: 4px; }
.ft-logo-bracket::after { content: ']'; color: rgba(255,255,255,0.3); margin-left: 4px; }
.ft-logo-dot .ft-logo-letter::after { content: ' 路'; color: var(--primary); }
.ft-logo-underline { border-bottom: 3px solid var(--primary); padding-bottom: 2px; }
.ft-logo-pill .ft-logo-letter { background: var(--primary); color: #fff; -webkit-text-fill-color: #fff; padding: 2px 12px; border-radius: 20px; font-size: 0.9rem; }
.ft-logo-gradient .ft-logo-letter { background: linear-gradient(135deg, #f59e0b, #ef4444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ft-logo-outline .ft-logo-letter { border: 2px solid var(--primary); padding: 1px 8px; border-radius: 6px; background: transparent; -webkit-text-fill-color: var(--primary-light); }
.ft-logo-neon .ft-logo-letter { background: #32e6b9; color: #0a0a0f; -webkit-text-fill-color: #0a0a0f; text-shadow: 0 0 12px rgba(50,230,185,0.5); }

/* 1. branded 鈥?left brand + right columns (Stripe-like) */
.ft-branded { background: #0a0a0f; }
.ft-branded-top { display: flex; gap: 80px; margin-bottom: 48px; }
.ft-branded-about { flex: 1; min-width: 240px; }
.ft-branded-desc { color: rgba(255,255,255,0.35); font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.ft-branded-cols { display: flex; gap: 60px; flex: 2; }
.ft-bcol-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.ft-bcol-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-bcol-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-bcol-links a:hover { color: #32e6b9; }
.ft-branded-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }

/* 2. clean 鈥?centered everything */
.ft-clean { background: #0a0a0f; }
.ft-clean-inner { text-align: center; max-width: 640px; }
.ft-clean-nav { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 28px 0; }
.ft-clean-nav a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-clean-nav a:hover { color: #32e6b9; }

/* 3. carded 鈥?card grid */
.ft-carded { background: #0a0a0f; }
.ft-carded-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 40px; }
.ft-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; transition: border-color .2s; }
.ft-card:hover { border-color: rgba(50,230,185,0.2); }
.ft-card-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.ft-card-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-card-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color .2s; }
.ft-card-links a:hover { color: #32e6b9; }
.ft-carded-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }

/* 4. watermark 鈥?big bg logo */
.ft-watermark { background: #0a0a0f; position: relative; overflow: hidden; }
.ft-wm-bg { position: absolute; bottom: -50px; right: -30px; font-size: 16rem; font-weight: 900; color: rgba(255,255,255,0.015); line-height: 0.7; pointer-events: none; user-select: none; white-space: nowrap; letter-spacing: -10px; }
.ft-wm-inner { position: relative; z-index: 1; }
.ft-wm-brand { margin-bottom: 36px; }
.ft-wm-grid { display: flex; gap: 60px; margin-bottom: 40px; }
.ft-wm-title { font-size: 0.85rem; font-weight: 700; color: #32e6b9; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.ft-wm-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-wm-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-wm-links a:hover { color: #32e6b9; }
.ft-wm-bottom { padding-top: 20px; border-top: 1px solid rgba(50,230,185,0.1); }

/* 5. striped 鈥?thin green top accent */
.ft-striped { background: #0a0a0f; border-top: 2px solid rgba(50,230,185,0.15); }
.ft-striped-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; margin-bottom: 40px; }
.ft-scol-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.ft-scol-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-scol-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-scol-links a:hover { color: #32e6b9; }
.ft-striped-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }

@media (max-width: 768px) {
  .ft-branded-top { flex-direction: column; gap: 32px; }
  .ft-branded-cols { flex-wrap: wrap; gap: 32px; }
  .ft-bcol { min-width: 140px; }
  .ft-wm-grid { flex-wrap: wrap; gap: 32px; }
}


/* --- Base footer --- */
.footer {
  --ft-pad: 60px;
  padding: var(--ft-pad) 32px 32px;
  color: var(--gray-300);
  font-size: 0.9rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; margin-bottom: 40px; }

/* --- Column --- */
.ft-col-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; margin-bottom: 14px; }
.ft-col-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-col-links a { color: var(--gray-400); text-decoration: none; transition: color .2s; font-size: 0.88rem; }
.ft-col-links a:hover { color: #fff; }

/* --- Bottom bar --- */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-copy { color: var(--gray-500); font-size: 0.78rem; margin: 0; }

/* --- Logo --- */
.ft-logo { font-size: 1.2rem; font-weight: 800; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.ft-logo-letter { 
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
}
.ft-logo-xl { font-size: 1.8rem; }
.ft-logo-lg { font-size: 1.4rem; }

/* Logo style variants */
.ft-logo-badge .ft-logo-letter { background: var(--primary) !important; color: #fff !important; -webkit-text-fill-color: #fff; padding: 2px 9px; border-radius: 6px; font-size: 1rem; }
.ft-logo-bracket::before { content: '['; color: var(--gray-300); margin-right: 4px; }
.ft-logo-bracket::after { content: ']'; color: var(--gray-300); margin-left: 4px; }
.ft-logo-dot .ft-logo-letter::after { content: ' 路'; color: var(--primary); }
.ft-logo-underline { border-bottom: 3px solid var(--primary); padding-bottom: 2px; }
.ft-logo-pill .ft-logo-letter { background: var(--primary) !important; color: #fff !important; -webkit-text-fill-color: #fff; padding: 2px 12px; border-radius: 20px; font-size: 0.9rem; }
.ft-logo-gradient .ft-logo-letter { background: linear-gradient(135deg, #f59e0b, #ef4444) !important; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ft-logo-outline .ft-logo-letter { border: 2px solid var(--primary); padding: 1px 8px; border-radius: 6px; background: transparent !important; -webkit-text-fill-color: var(--primary-light); }
.ft-logo-neon .ft-logo-letter { background: #32e6b9; color: #0a0a0f; -webkit-text-fill-color: #0a0a0f; text-shadow: 0 0 12px rgba(50,230,185,0.5); }

/* =============================================
   FOOTER 鈥?5 styles
   ============================================= */
.ft-container { max-width: var(--max-width); margin: 0 auto; padding: 60px 32px 32px; }
.ft-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin: 0; }

/* 1. branded */
.ft-branded { background: #0a0a0f; }
.ft-branded-top { display: flex; gap: 80px; margin-bottom: 48px; }
.ft-branded-about { flex: 1; min-width: 240px; }
.ft-branded-desc { color: rgba(255,255,255,0.35); font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.ft-branded-cols { display: flex; gap: 60px; flex: 2; }
.ft-bcol-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.ft-bcol-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-bcol-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-bcol-links a:hover { color: #32e6b9; }
.ft-branded-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }

/* 2. clean */
.ft-clean { background: #0a0a0f; }
.ft-clean-inner { text-align: center; max-width: 640px; }
.ft-clean-nav { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 28px 0; }
.ft-clean-nav a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-clean-nav a:hover { color: #32e6b9; }

/* 3. carded */
.ft-carded { background: #0a0a0f; }
.ft-carded-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 40px; }
.ft-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; transition: border-color .2s; }
.ft-card:hover { border-color: rgba(50,230,185,0.2); }
.ft-card-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.ft-card-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-card-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color .2s; }
.ft-card-links a:hover { color: #32e6b9; }
.ft-carded-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }

/* 4. watermark */
.ft-watermark { background: #0a0a0f; position: relative; overflow: hidden; }
.ft-wm-bg { position: absolute; bottom: -50px; right: -30px; font-size: 16rem; font-weight: 900; color: rgba(255,255,255,0.015); line-height: .7; pointer-events: none; user-select: none; white-space: nowrap; letter-spacing: -10px; }
.ft-wm-inner { position: relative; z-index: 1; }
.ft-wm-brand { margin-bottom: 36px; }
.ft-wm-grid { display: flex; gap: 60px; margin-bottom: 40px; }
.ft-wm-title { font-size: 0.85rem; font-weight: 700; color: #32e6b9; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.ft-wm-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-wm-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-wm-links a:hover { color: #32e6b9; }
.ft-wm-bottom { padding-top: 20px; border-top: 1px solid rgba(50,230,185,0.1); }

/* 5. striped */
.ft-striped { background: #0a0a0f; border-top: 2px solid rgba(50,230,185,0.15); }
.ft-striped-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; margin-bottom: 40px; }
.ft-scol-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.ft-scol-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ft-scol-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.ft-scol-links a:hover { color: #32e6b9; }
.ft-striped-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }

@media (max-width: 768px) {
  .ft-branded-top { flex-direction: column; gap: 32px; }
  .ft-branded-cols { flex-wrap: wrap; gap: 32px; }
  .ft-wm-grid { flex-wrap: wrap; gap: 32px; }
}.ft-logo-gradient .ft-logo-letter { background: linear-gradient(135deg, #f59e0b, #ef4444) !important; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ft-logo-outline .ft-logo-letter { border: 2px solid var(--primary); padding: 1px 8px; border-radius: 6px; background: transparent !important; -webkit-text-fill-color: var(--primary-light); }

/* ============================================
   功能介绍卡片 — 5 种新排版 (2026-07-16)
   ============================================ */

/* 共享: 按钮容器/对齐 */
.fc-btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.fc-btns-left { justify-content: flex-start; }
.fc-btns-center { justify-content: center; }
.fc-btns-right { justify-content: flex-end; }
.fc-text-center { text-align: center; }
.fc-text-right { text-align: right; }
.fc-split-media img, .fc-showcase-media img, .fc-centered-media img { width: 100%; display: block; border-radius: 16px; }
.fc-split-media video, .fc-showcase-media video, .fc-centered-media video { width: 100%; display: block; border-radius: 16px; }

/* ---- 1. split: 左右分屏 ---- */
.fc-split { padding: 100px 0; }
.fc-split-row { display: flex; align-items: center; gap: 72px; }
.fc-split-text { flex: 1; min-width: 0; }
.fc-split-text h2 { font-size: 2.2rem; font-weight: 800; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 18px; }
.fc-split-text p { font-size: 1.08rem; line-height: 1.85; max-width: 520px; }
.fc-split-media { flex: 0 0 46%; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); }

/* ---- 2. showcase: 上图下文 ---- */
.fc-showcase { padding: 80px 0; }
.fc-showcase-wrap { max-width: 900px; margin: 0 auto; }
.fc-showcase-media { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.12); margin-bottom: 40px; }
.fc-showcase-body h2 { font-size: 2rem; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.fc-showcase-body p { font-size: 1.08rem; line-height: 1.85; }

/* ---- 3. centered: 居中卡片 ---- */
.fc-centered { padding: 80px 0; }
.fc-centered-card { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 24px; box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04); overflow: hidden; }
.fc-centered-media { width: 100%; }
.fc-centered-media img, .fc-centered-media video { border-radius: 0; }
.fc-centered-body { padding: 44px 48px; }
.fc-centered-body h2 { font-size: 1.8rem; font-weight: 800; line-height: 1.25; margin-bottom: 12px; }
.fc-centered-body p { font-size: 1.02rem; line-height: 1.8; }

/* ---- 4. minimal: 极简文字 + 左侧渐变竖线 ---- */
.fc-minimal { padding: 80px 0; }
.fc-minimal-inner { max-width: 680px; margin: 0 auto; display: flex; gap: 32px; align-items: flex-start; }
.fc-minimal-bar { flex: 0 0 4px; height: 64px; background: linear-gradient(180deg, var(--primary), #32e6b9); border-radius: 2px; margin-top: 6px; }
.fc-minimal-text { flex: 1; }
.fc-minimal-text h2 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.fc-minimal-text p { font-size: 1.06rem; line-height: 1.85; }

/* ---- 5. overlay: 全宽图片背景 + 深色遮罩 + 居中文字 ---- */
.fc-overlay { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.fc-overlay-bg { position: absolute; inset: 0; z-index: 0; }
.fc-overlay-bg img, .fc-overlay-bg video { width: 100%; height: 100%; object-fit: cover; }
.fc-overlay-mask { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.7) 100%); }
.fc-overlay-content { position: relative; z-index: 2; max-width: 640px; padding: 60px 0; }
.fc-overlay-content h2 { font-size: 2.6rem; font-weight: 800; line-height: 1.2; color: #fff; margin-bottom: 18px; }
.fc-overlay-content p { font-size: 1.15rem; line-height: 1.8; color: rgba(255,255,255,.8); }
.fc-overlay-content .fc-icon { color: rgba(255,255,255,.9); }

/* ---- 色彩主题 ---- */
.fc-theme-dark { background: #0a0a0f; }
.fc-theme-dark h2, .fc-theme-dark .fc-title-lg, .fc-theme-dark .fc-title-xl { color: #fff !important; }
.fc-theme-dark p, .fc-theme-dark .fc-desc-md { color: rgba(255,255,255,.6) !important; }
.fc-theme-dark .fc-centered-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.fc-theme-dark .fc-minimal-bar { background: linear-gradient(180deg, #32e6b9, #28b894); }

.fc-theme-green { background: linear-gradient(135deg, #0a1f15 0%, #0d2a1e 40%, #0a1f18 100%); }
.fc-theme-green h2, .fc-theme-green .fc-title-lg, .fc-theme-green .fc-title-xl { color: #fff !important; }
.fc-theme-green p, .fc-theme-green .fc-desc-md { color: rgba(255,255,255,.6) !important; }
.fc-theme-green .fc-centered-card { background: rgba(255,255,255,.05); border: 1px solid rgba(50,230,185,.15); }
.fc-theme-green .fc-minimal-bar { background: linear-gradient(180deg, #32e6b9, #1a8a6a); }

/* 暗色主题按钮 → 统一绿色 */
.fc-theme-dark .fc-btn-primary, .fc-theme-green .fc-btn-primary,
.fc-theme-dark .fc-btn-gradient, .fc-theme-green .fc-btn-gradient,
.fc-theme-dark .fc-btn-dark, .fc-theme-green .fc-btn-dark { background: linear-gradient(135deg, #28b894, #32e6b9); color: #0a0a0f; border: none; }
.fc-theme-dark .fc-btn-outline, .fc-theme-green .fc-btn-outline { border-color: #32e6b9; color: #32e6b9; background: transparent; }
.fc-theme-dark .fc-btn-outline:hover, .fc-theme-green .fc-btn-outline:hover { background: rgba(50,230,185,.1); color: #32e6b9; }
.fc-theme-dark .fc-icon, .fc-theme-green .fc-icon { color: #32e6b9; }

/* 响应式 */
@media (max-width: 768px) {
  .fc-split-row { flex-direction: column; gap: 40px; }
  .fc-split-media { flex: none; width: 100%; }
  .fc-split-text h2 { font-size: 1.6rem; }
  .fc-overlay { min-height: 400px; }
  .fc-overlay-content h2 { font-size: 1.8rem; }
  .fc-centered-body { padding: 28px 24px; }
  .fc-minimal-inner { flex-direction: column; }
  .fc-minimal-bar { width: 100%; height: 3px; flex: none; }
}

/* ============================================
   客户评价 / 案例展示 (testimonials)
   ============================================ */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tm-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px 24px 24px; transition: all .3s; display: flex; flex-direction: column; }
.tm-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.tm-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.tm-content { flex: 1; font-size: .95rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 20px; font-style: italic; }
.tm-author { display: flex; align-items: center; gap: 12px; }
.tm-author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #32e6b9); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.tm-author-name { font-size: .92rem; font-weight: 700; color: var(--gray-800); }
.tm-author-role { font-size: .78rem; color: var(--gray-400); margin-top: 2px; }

/* highlight */
.tm-highlight-wrap { max-width: 720px; margin: 0 auto; }
.tm-highlight-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 40px 44px; text-align: center; }
.tm-highlight-quote { font-size: 1.15rem; line-height: 1.85; color: var(--gray-700); font-style: italic; margin-bottom: 24px; }
.tm-highlight-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tm-avatar-lg { width: 52px; height: 52px; font-size: 1.3rem; }

/* carousel */
.tm-carousel { max-width: 600px; margin: 0 auto; position: relative; }
.tm-carousel-track { position: relative; min-height: 220px; }
.tm-carousel .tm-card { position: absolute; inset: 0; opacity: 0; transform: translateX(40px); transition: all .5s ease; }
.tm-carousel .tm-card.active { opacity: 1; transform: translateX(0); }
.tm-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.tm-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--gray-300); cursor: pointer; transition: all .3s; }
.tm-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* dark theme */
.section-dark .tm-card, .section-dark .tm-highlight-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.section-dark .tm-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section-dark .tm-content { color: rgba(255,255,255,.65); }
.section-dark .tm-author-name { color: #fff; }
.section-dark .tm-author-role { color: rgba(255,255,255,.4); }
.section-dark .tm-author-avatar { background: linear-gradient(135deg, #32e6b9, #28b894); color: #0a0a0f; }
.section-dark .tm-highlight-quote { color: rgba(255,255,255,.75); }
.section-dark .tm-stars { color: #fbbf24; }
.section-dark .tm-dot { background: rgba(255,255,255,.2); }
.section-dark .tm-dot.active { background: #32e6b9; }

/* dark-green 专属绿色强化 */
.section-dark .tm-card.tm-green { border-color: rgba(50,230,185,.15); }

@media (max-width: 768px) {
  .tm-grid { grid-template-columns: 1fr; }
  .tm-highlight-card { padding: 28px 24px; }
}

/* ============================================
   整站一键换肤 — site-theme-* 全局覆盖
   ============================================ */

/* ---- 暗黑绿色 ---- */
.site-theme-dark-green .section,
.site-theme-dark-green .section-alt,
.site-theme-dark-green .section-gradient {
  background: #0a0a0f !important;
  color: rgba(255,255,255,.85) !important;
}
.site-theme-dark-green .section-title { color: #fff !important; }
.site-theme-dark-green .section-subtitle { color: rgba(255,255,255,.55) !important; }
.site-theme-dark-green h2, .site-theme-dark-green h3, .site-theme-dark-green h4 { color: #fff !important; }
.site-theme-dark-green p, .site-theme-dark-green .card p { color: rgba(255,255,255,.6) !important; }
.site-theme-dark-green .card,
.site-theme-dark-green .feature-card,
.site-theme-dark-green .plan-card,
.site-theme-dark-green .pricing-card,
.site-theme-dark-green .team-card,
.site-theme-dark-green .faq-item,
.site-theme-dark-green .stat-card,
.site-theme-dark-green .fc-centered-card {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.08) !important;
}
.site-theme-dark-green .btn-primary, .site-theme-dark-green .btn,
.site-theme-dark-green .fc-btn-primary, .site-theme-dark-green .fc-btn-gradient, .site-theme-dark-green .fc-btn-dark {
  background: linear-gradient(135deg, #28b894, #32e6b9) !important;
  color: #0a0a0f !important;
  border: none !important;
}
.site-theme-dark-green .btn-outline,
.site-theme-dark-green .fc-btn-outline {
  border-color: #32e6b9 !important;
  color: #32e6b9 !important;
  background: transparent !important;
}
.site-theme-dark-green .nav,
.site-theme-dark-green nav.nav-dark,
.site-theme-dark-green nav.nav-minimal,
.site-theme-dark-green nav.nav-pill,
.site-theme-dark-green nav.nav-centered {
  background: #0a0a0f !important;
  border-color: rgba(255,255,255,.08) !important;
}
.site-theme-dark-green .nav-links a { color: rgba(255,255,255,.7) !important; }
.site-theme-dark-green .nav-links a:hover { color: #32e6b9 !important; }
.site-theme-dark-green .nav-logo { color: #fff !important; }
.site-theme-dark-green .nav-dropdown { background: #111 !important; border-color: rgba(255,255,255,.08) !important; }
.site-theme-dark-green .nav-dropdown a { color: rgba(255,255,255,.65) !important; }
.site-theme-dark-green .nav-dropdown a:hover { color: #32e6b9 !important; }

/* 暗黑绿色 — 幻灯片 */
.site-theme-dark-green .slideshow-minimal,
.site-theme-dark-green .slideshow-cinema,
.site-theme-dark-green .slideshow-default { background: #0a0a0f !important; }
.site-theme-dark-green .slide-title { color: #fff !important; }
.site-theme-dark-green .slide-subtitle { color: rgba(255,255,255,.65) !important; }
.site-theme-dark-green .slide-btn { background: linear-gradient(135deg, #28b894, #32e6b9) !important; color: #0a0a0f !important; }

/* 暗黑绿色 — 页脚 */
.site-theme-dark-green footer,
.site-theme-dark-green .site-footer,
.site-theme-dark-green .footer-dark-accent { background: #0a0a0f !important; border-color: rgba(255,255,255,.08) !important; }
.site-theme-dark-green footer h3, .site-theme-dark-green footer h4 { color: #fff !important; }
.site-theme-dark-green footer a, .site-theme-dark-green .footer-link { color: rgba(255,255,255,.5) !important; }
.site-theme-dark-green footer a:hover, .site-theme-dark-green .footer-link:hover { color: #32e6b9 !important; }
.site-theme-dark-green .footer-bottom { border-color: rgba(255,255,255,.06) !important; color: rgba(255,255,255,.3) !important; }

/* ---- 白色主题：全覆盖所有模块 ---- */
.site-theme-white .section,
.site-theme-white .section-alt,
.site-theme-white .section-dark,
.site-theme-white .section-gradient,
.site-theme-white .slideshow-minimal,
.site-theme-white .slideshow-cinema,
.site-theme-white .slideshow-default { background: #ffffff !important; color: #111 !important; }
/* 交替浅灰 — 偶数 section 用极浅灰隔开 */
.site-theme-white .section:nth-child(even),
.site-theme-white .section-alt:nth-child(even),
.site-theme-white .section-dark:nth-child(even) { background: #f8fafc !important; }
.site-theme-white .section-title { color: #111 !important; }
.site-theme-white .section-subtitle { color: #555 !important; }
.site-theme-white h1,.site-theme-white h2,.site-theme-white h3,.site-theme-white h4,.site-theme-white h5 { color: #111 !important; }
.site-theme-white p,.site-theme-white li { color: #333 !important; }
/* 全局按钮 → 绿色 */
.site-theme-white .btn,.site-theme-white .btn-primary,
.site-theme-white .fc-btn-primary,.site-theme-white .fc-btn-gradient,.site-theme-white .fc-btn-dark,
.site-theme-white .tabs-btn-primary,.site-theme-white .tabs-btn-gradient,.site-theme-white .tabs-btn-dark,
.site-theme-white .slide-btn,.site-theme-white .plan-btn-primary,.site-theme-white .cta-btn {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  color: #fff !important; border: none !important;
  box-shadow: 0 2px 8px rgba(16,185,129,.25) !important;
}
.site-theme-white .btn-outline,
.site-theme-white .fc-btn-outline,.site-theme-white .tabs-btn-outline,
.site-theme-white .btn-outline-white {
  border: 2px solid #32e6b9 !important; color: #28b894 !important;
  background: transparent !important;
}
.site-theme-white .btn-outline:hover,.site-theme-white .fc-btn-outline:hover { background: #10b981 !important; color: #fff !important; }
/* 全局卡片 */
.site-theme-white .card,.site-theme-white .feature-card,
.site-theme-white .plan-card,.site-theme-white .pricing-card,
.site-theme-white .team-card,.site-theme-white .stat-card,
.site-theme-white .fc-centered-card,.site-theme-white .tm-card,
.site-theme-white .stats-card,.site-theme-white .tabs-card,
.site-theme-white .cs-popup-card,.site-theme-white .contact-card {
  background: #fff !important; border: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.06) !important;
}
.site-theme-white .card:hover,.site-theme-white .plan-card:hover,
.site-theme-white .tm-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08) !important; }
/* FAQ */
.site-theme-white .section-dark .faq-item,
.site-theme-white .faq-item { background: #fff !important; border-color: #e2e8f0 !important; }
.site-theme-white .section-dark .faq-item summary,
.site-theme-white .faq-item summary,
.site-theme-white .section-dark .faq-question,
.site-theme-white .faq-question { color: #111 !important; }
.site-theme-white .section-dark .faq-answer,
.site-theme-white .faq-answer { color: #444 !important; }
.site-theme-white .section-dark .faq-num,
.site-theme-white .faq-num { color: #059669 !important; }
.site-theme-white .section-dark .faq-chevron,
.site-theme-white .faq-chevron { color: #999 !important; }
.site-theme-white .section-dark .faq-item[open] .faq-chevron,
.site-theme-white .faq-item[open] .faq-chevron { color: #059669 !important; }
.site-theme-white .section-dark .faq-item.open,
.site-theme-white .faq-item.open { border-color: #059669 !important; }
/* Slideshow */
.site-theme-white .slide-title { color: #111 !important; text-shadow: none !important; }
.site-theme-white .slide-subtitle { color: #555 !important; }
.site-theme-white .slide-desc { color: #555 !important; }
/* 导航 */
.site-theme-white .nav,.site-theme-white nav.nav-dark,.site-theme-white nav.nav-minimal,
.site-theme-white nav.nav-pill,.site-theme-white nav.nav-centered {
  background: #fff !important; border-bottom: 1px solid #e2e8f0 !important;
}
.site-theme-white .nav-links a { color: #222 !important; }
.site-theme-white .nav-links a:hover { color: #10b981 !important; }
.site-theme-white .nav-logo { color: #111 !important; }
.site-theme-white .nav-dropdown { background: #fff !important; border-color: #e2e8f0 !important; }
.site-theme-white .nav-dropdown a { color: #444 !important; }
.site-theme-white .nav-dropdown a:hover { color: #10b981 !important; background: #f0fdf6 !important; }
.site-theme-white .nav-toggle span { background: #333 !important; }
.site-theme-white .nav-arrow { color: #666 !important; }
/* 标签页 */
.site-theme-white .tabs-nav { border-color: #e2e8f0 !important; }
.site-theme-white .tabs-nav-btn { color: #555 !important; }
.site-theme-white .tabs-nav-btn.active { color: #059669 !important; }
.site-theme-white .tabs-line { background: #10b981 !important; }
.site-theme-white .tabs-desc { color: #111 !important; }
.site-theme-white .tabs-card h4 { color: #111 !important; }
.site-theme-white .tabs-card p { color: #555 !important; }
/* 功能介绍卡片 */
.site-theme-white .fc-split-text h2 { color: #111 !important; }
.site-theme-white .fc-split-text p { color: #444 !important; }
.site-theme-white .fc-minimal-bar { background: linear-gradient(180deg, #059669, #10b981) !important; }
.site-theme-white .fc-title-xl,.site-theme-white .fc-title-lg,.site-theme-white .fc-title-md,.site-theme-white .fc-title-sm { color: #111 !important; }
.site-theme-white .fc-desc-md,.site-theme-white .fc-desc-sm { color: #444 !important; }
/* 统计 */
.site-theme-white .stat-value,.site-theme-white .stat-number { color: #059669 !important; }
.site-theme-white .stat-label { color: #555 !important; }
.site-theme-white .stat-item { color: #333 !important; }
/* 定价 */
.site-theme-white .plan-name { color: #111 !important; }
.site-theme-white .plan-price,.site-theme-white .plan-price .amount { color: #059669 !important; }
.site-theme-white .plan-desc,.site-theme-white .plan-period { color: #555 !important; }
.site-theme-white .plan-badge { background: linear-gradient(135deg, #059669, #10b981) !important; color: #fff !important; }
.site-theme-white .pricing-card.featured { border-color: #10b981 !important; }
.site-theme-white .plan-features li { color: #444 !important; }
.site-theme-white .plan-seats { color: #777 !important; }
/* 评价 */
.site-theme-white .tm-content { color: #444 !important; }
.site-theme-white .tm-author-name { color: #111 !important; }
.site-theme-white .tm-author-role { color: #555 !important; }
.site-theme-white .tm-author-avatar { background: linear-gradient(135deg, #059669, #10b981) !important; color: #fff !important; }
.site-theme-white .tm-stars { color: #f59e0b !important; }
/* Logo 墙 */
.site-theme-white .logo-item { opacity: .9; }
.site-theme-white .logo-item:hover { opacity: 1; }
.site-theme-white .logo-name,.site-theme-white .logo-text { color: #555 !important; }
/* 客服 */
.site-theme-white .cs-popup-card { background: #fff !important; border-color: #e2e8f0 !important; }
.site-theme-white .cs-popup-title { color: #111 !important; }
/* 页脚 */
.site-theme-white footer,.site-theme-white .site-footer,.site-theme-white .footer-dark-accent {
  background: #fff !important; border-top: 1px solid #e2e8f0 !important;
}
.site-theme-white footer h3,.site-theme-white footer h4,.site-theme-white .footer-col-title,
.site-theme-white .ft-bcol-title,.site-theme-white .footer-logo-text { color: #111 !important; }
.site-theme-white footer a,.site-theme-white .footer-link { color: #555 !important; }
.site-theme-white footer a:hover,.site-theme-white .footer-link:hover { color: #10b981 !important; }
.site-theme-white .footer-bottom { border-top: 1px solid #e2e8f0 !important; color: #999 !important; }
.site-theme-white .footer-logo-letter {
  background: linear-gradient(135deg, #28b894, #32e6b9) !important;
  -webkit-text-fill-color: transparent; -webkit-background-clip: text;
}
.site-theme-white .ft-logo-letter { background: linear-gradient(135deg, #059669, #10b981) !important; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }


/* ============================================
   Badge Tags 彩色胶囊标签（所有模块通用）
   用法: subtitle 中用 | 分隔，如 "AI搜索|AI阅读|AI画图|AI编程"
   ============================================ */
.badge-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.badge-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform .2s, box-shadow .2s;
}
.badge-tag:hover { transform: translateY(-1px); }
/* 6 种色彩自动轮换 */
.badge-tag:nth-child(6n+1) { background: #ede9fe; color: #6d28d9; }
.badge-tag:nth-child(6n+2) { background: #fce7f3; color: #be185d; }
.badge-tag:nth-child(6n+3) { background: #dbeafe; color: #1d4ed8; }
.badge-tag:nth-child(6n+4) { background: #d1fae5; color: #047857; }
.badge-tag:nth-child(6n+5) { background: #fef3c7; color: #b45309; }
.badge-tag:nth-child(6n+6) { background: #e0e7ff; color: #4338ca; }
/* 暗色主题下颜色自适应 */
.section-dark .badge-tag:nth-child(6n+1),
.slideshow-split .badge-tag:nth-child(6n+1),
.slideshow-minimal .badge-tag:nth-child(6n+1) { background: rgba(139,92,246,.2); color: #a78bfa; }
.section-dark .badge-tag:nth-child(6n+2),
.slideshow-split .badge-tag:nth-child(6n+2),
.slideshow-minimal .badge-tag:nth-child(6n+2) { background: rgba(236,72,153,.2); color: #f472b6; }
.section-dark .badge-tag:nth-child(6n+3),
.slideshow-split .badge-tag:nth-child(6n+3),
.slideshow-minimal .badge-tag:nth-child(6n+3) { background: rgba(59,130,246,.2); color: #60a5fa; }
.section-dark .badge-tag:nth-child(6n+4),
.slideshow-split .badge-tag:nth-child(6n+4),
.slideshow-minimal .badge-tag:nth-child(6n+4) { background: rgba(16,185,129,.2); color: #34d399; }
.section-dark .badge-tag:nth-child(6n+5),
.slideshow-split .badge-tag:nth-child(6n+5),
.slideshow-minimal .badge-tag:nth-child(6n+5) { background: rgba(245,158,11,.2); color: #fbbf24; }
.section-dark .badge-tag:nth-child(6n+6),
.slideshow-split .badge-tag:nth-child(6n+6),
.slideshow-minimal .badge-tag:nth-child(6n+6) { background: rgba(99,102,241,.2); color: #818cf8; }


/* ============================================
   Slideshow Text Animations
   Each .slide-anim-* class animates its direct text children
   with staggered delays (subtitle → title → desc → buttons)
   ============================================ */

/* Default: from bottom fade-in (最常用) */
.slide-anim-fade-up > * { animation: saFadeUp .8s cubic-bezier(.16,1,.3,1) both; }
.slide-anim-fade-up > *:nth-child(1) { animation-delay: .05s; }
.slide-anim-fade-up > *:nth-child(2) { animation-delay: .15s; }
.slide-anim-fade-up > *:nth-child(3) { animation-delay: .25s; }
.slide-anim-fade-up > *:nth-child(4) { animation-delay: .35s; }
.slide-anim-fade-up > *:nth-child(5) { animation-delay: .45s; }

/* Pure fade-in */
.slide-anim-fade-in > * { animation: saFadeIn 1s ease both; }
.slide-anim-fade-in > *:nth-child(1) { animation-delay: .05s; }
.slide-anim-fade-in > *:nth-child(2) { animation-delay: .15s; }
.slide-anim-fade-in > *:nth-child(3) { animation-delay: .25s; }
.slide-anim-fade-in > *:nth-child(4) { animation-delay: .35s; }
.slide-anim-fade-in > *:nth-child(5) { animation-delay: .45s; }

/* Slide in from right (从右滑入) */
.slide-anim-slide-right > * { animation: saSlideRight .9s cubic-bezier(.16,1,.3,1) both; }
.slide-anim-slide-right > *:nth-child(1) { animation-delay: .05s; }
.slide-anim-slide-right > *:nth-child(2) { animation-delay: .15s; }
.slide-anim-slide-right > *:nth-child(3) { animation-delay: .25s; }
.slide-anim-slide-right > *:nth-child(4) { animation-delay: .35s; }
.slide-anim-slide-right > *:nth-child(5) { animation-delay: .45s; }

/* Slide in from left (从左滑入) */
.slide-anim-slide-left > * { animation: saSlideLeft .9s cubic-bezier(.16,1,.3,1) both; }
.slide-anim-slide-left > *:nth-child(1) { animation-delay: .05s; }
.slide-anim-slide-left > *:nth-child(2) { animation-delay: .15s; }
.slide-anim-slide-left > *:nth-child(3) { animation-delay: .25s; }
.slide-anim-slide-left > *:nth-child(4) { animation-delay: .35s; }
.slide-anim-slide-left > *:nth-child(5) { animation-delay: .45s; }

/* Slide down from top (从上滑下) */
.slide-anim-slide-down > * { animation: saSlideDown .9s cubic-bezier(.16,1,.3,1) both; }
.slide-anim-slide-down > *:nth-child(1) { animation-delay: .05s; }
.slide-anim-slide-down > *:nth-child(2) { animation-delay: .15s; }
.slide-anim-slide-down > *:nth-child(3) { animation-delay: .25s; }
.slide-anim-slide-down > *:nth-child(4) { animation-delay: .35s; }
.slide-anim-slide-down > *:nth-child(5) { animation-delay: .45s; }

/* Zoom in (缩放进入) */
.slide-anim-zoom-in > * { animation: saZoomIn 1s cubic-bezier(.16,1,.3,1) both; }
.slide-anim-zoom-in > *:nth-child(1) { animation-delay: .05s; }
.slide-anim-zoom-in > *:nth-child(2) { animation-delay: .15s; }
.slide-anim-zoom-in > *:nth-child(3) { animation-delay: .25s; }
.slide-anim-zoom-in > *:nth-child(4) { animation-delay: .35s; }
.slide-anim-zoom-in > *:nth-child(5) { animation-delay: .45s; }

/* Word rise (逐字上升 — 标题拆字动画) */
.slide-anim-word-rise > * { animation: saFadeUp .8s cubic-bezier(.16,1,.3,1) both; }
.slide-anim-word-rise h1, .slide-anim-word-rise h2, .slide-anim-word-rise h3 {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.slide-anim-word-rise h1 > span, .slide-anim-word-rise h2 > span, .slide-anim-word-rise h3 > span {
  display: inline-block;
  transform: translateY(110%);
  animation: saWordRise 1s cubic-bezier(.16,1,.3,1) forwards;
}
.slide-anim-word-rise > *:nth-child(1) { animation-delay: .05s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(1) { animation-delay: .12s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(2) { animation-delay: .20s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(3) { animation-delay: .28s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(4) { animation-delay: .36s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(5) { animation-delay: .44s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(6) { animation-delay: .52s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(7) { animation-delay: .60s; }
.slide-anim-word-rise > *:nth-child(2) > span:nth-child(8) { animation-delay: .68s; }
.slide-anim-word-rise > *:nth-child(3) { animation-delay: .85s; }
.slide-anim-word-rise > *:nth-child(4) { animation-delay: 1.0s; }
.slide-anim-word-rise > *:nth-child(5) { animation-delay: 1.1s; }

/* Keyframes */
@keyframes saFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes saFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes saSlideRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes saSlideLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes saSlideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes saZoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes saWordRise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .slide-anim > *,
  .slide-anim-word-rise h1 > span, .slide-anim-word-rise h2 > span, .slide-anim-word-rise h3 > span {
    animation: none !important;
  }
}


