/* ==========================================
   乐享 & WorkBuddy 企业服务 - 商务蓝风格
   ========================================== */

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-float: 0 8px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }

/* ====== Floating Widget (Bubble Style) ====== */
.float-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  user-select: none;
}

/* When minimized, force to bottom-right regardless of inline left/top */
.float-widget.minimized {
  right: 20px !important;
  bottom: 20px !important;
  left: auto !important;
  top: auto !important;
}

/* Bubble button - always visible */
.float-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: white;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.float-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,99,235,0.45);
}

.float-bubble:active {
  transform: scale(0.95);
}

.float-bubble .material-symbols-outlined {
  font-size: 26px;
}

.bubble-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: -1px;
}

/* Hide bubble when panel is open */
.float-widget:not(.minimized) .float-bubble {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* Panel - hidden by default */
.float-widget-panel {
  display: none;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  animation: floatSlideIn 0.25s ease;
}

.float-widget:not(.minimized) .float-widget-panel {
  display: block;
}

@keyframes floatSlideIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.float-widget-handle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: white;
  cursor: grab;
  font-size: 14px;
  font-weight: 600;
}

.float-widget-handle:active { cursor: grabbing; }

.float-widget-handle .material-symbols-outlined {
  font-size: 18px;
  opacity: 0.8;
}

.handle-text { flex: 1; }

.float-close-panel {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.float-close-panel:hover {
  color: white;
  background: rgba(255,255,255,0.15);
}

.float-close-panel .material-symbols-outlined { font-size: 18px; }

.float-widget-body {
  padding: 20px;
}

.float-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.float-avatar .material-symbols-outlined {
  font-size: 28px;
  color: var(--blue-600);
}

.float-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.float-desc {
  text-align: center;
  font-size: 12px;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.float-form { display: flex; flex-direction: column; gap: 10px; }

.float-form input,
.float-form select {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border var(--transition);
  background: var(--white);
  color: var(--slate-800);
}

.float-form input:focus,
.float-form select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.float-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--blue-600);
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.float-submit:hover { background: var(--blue-700); }

.float-submit .material-symbols-outlined { font-size: 18px; }

/* Float pulse animation */
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,99,235,0.35); }
  50% { box-shadow: 0 8px 40px rgba(37,99,235,0.5), 0 0 0 10px rgba(37,99,235,0.12); }
}

/* Mobile float widget */
@media (max-width: 768px) {
  .float-widget {
    right: 12px;
    bottom: 16px;
  }

  .float-bubble {
    width: 50px;
    height: 50px;
  }

  .float-bubble .material-symbols-outlined { font-size: 24px; }

  .float-widget-panel {
    width: 280px;
    max-width: calc(100vw - 32px);
  }
}

/* ====== Navigation ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 16px 0;
}

.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--slate-100);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon .material-symbols-outlined { color: white; font-size: 22px; }

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.logo-accent { color: var(--blue-500); margin: 0 2px; }

.logo-sub { font-weight: 400; color: var(--slate-500); font-size: 15px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--slate-600); transition: color var(--transition); }
.nav-links a:hover { color: var(--blue-600); }

.nav-cta {
  background: var(--blue-600);
  color: white !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-700) !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====== Hero ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.glow-1 { width: 600px; height: 600px; background: var(--blue-400); top: -200px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: var(--blue-600); bottom: -100px; left: -100px; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--slate-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--slate-200) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--blue-200);
}

.hero-badge .material-symbols-outlined { font-size: 16px; }

.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  transform: translateY(-1px);
}
.btn-primary .material-symbols-outlined { font-size: 20px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  color: var(--slate-700);
  background: var(--white);
  border: 1px solid var(--slate-200);
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--slate-300); background: var(--slate-50); }

.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.stat-unit { font-size: 14px; font-weight: 500; color: var(--slate-400); }
.stat-label { font-size: 13px; color: var(--slate-500); font-weight: 500; }

.stat-divider { width: 1px; height: 40px; background: var(--slate-200); }

/* ====== Trust Bar ====== */
.trust-bar {
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  padding: 28px 0;
  background: var(--slate-50);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-features { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
}

.trust-item .material-symbols-outlined { font-size: 20px; color: var(--blue-500); }

/* ====== Section Common ====== */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--blue-100);
}

.section-tag-lexiang { color: #2563eb; background: #eff6ff; border-color: #bfdbfe; }
.section-tag-wb { color: #7c3aed; background: #f5f3ff; border-color: #ddd6fe; }

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ====== Product Overview ====== */
.product-overview { background: var(--slate-50); }

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.product-lexiang:hover { border-color: var(--blue-300); }
.product-workbuddy:hover { border-color: #c4b5fd; }

.product-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-lexiang .product-card-icon { background: var(--blue-50); }
.product-lexiang .product-card-icon .material-symbols-outlined { font-size: 28px; color: var(--blue-600); }

.product-workbuddy .product-card-icon { background: #f5f3ff; }
.product-workbuddy .product-card-icon .material-symbols-outlined { font-size: 28px; color: #7c3aed; }

.product-card h3 { font-size: 20px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.product-card > p { font-size: 14px; color: var(--slate-500); margin-bottom: 18px; line-height: 1.7; }

.product-card ul { list-style: none; margin-bottom: 20px; }

.product-card ul li {
  font-size: 13px;
  color: var(--slate-600);
  padding: 5px 0 5px 20px;
  position: relative;
}

.product-lexiang ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400);
}

.product-workbuddy ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: #a78bfa;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  transition: gap var(--transition);
}

.product-link:hover { gap: 10px; }
.product-link .material-symbols-outlined { font-size: 18px; }

/* ====== Service Table ====== */
.services { background: var(--white); }
.services-wb { background: var(--slate-50); }

.service-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 800px;
}

.service-table thead { background: var(--slate-50); }
.service-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--slate-200);
}

.col-feature { width: 34%; }
.col-plan { width: 33%; text-align: center !important; }
.col-plan-start { border-right: 1px solid var(--slate-200); }

.plan-header { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.plan-name { font-size: 16px; font-weight: 700; color: var(--slate-800); }

.col-plan-pro .plan-name {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-scale { font-size: 12px; font-weight: 400; color: var(--slate-400); }

.service-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--slate-100);
  vertical-align: middle;
}

.service-table tbody tr:last-child td { border-bottom: none; }
.service-table tbody tr:hover { background: var(--slate-50); }

.cell-desc { font-size: 12px; color: var(--slate-400); margin-top: 4px; font-weight: 400; line-height: 1.5; }

.check { color: var(--blue-600); font-weight: 600; }
.dash { color: var(--slate-300); font-weight: 400; }

.row-category td {
  padding: 12px 24px !important;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.category-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  background: var(--slate-100);
  padding: 4px 12px;
  border-radius: 4px;
}

.service-table tfoot td {
  padding: 28px 24px;
  background: var(--slate-50);
  border-top: 2px solid var(--slate-200);
}

.row-price td:first-child { border-right: none; }

.btn-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue-600);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.btn-inquire:hover {
  background: var(--blue-700);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  transform: translateY(-1px);
}
.btn-inquire .material-symbols-outlined { font-size: 18px; }
.btn-inquire-pro {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 4px 16px rgba(30,64,175,0.35);
}

/* ====== Scenario Cards ====== */
.scenario { background: var(--white); }

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.scenario-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--slate-100);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.scenario-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }

.scenario-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.scenario-icon .material-symbols-outlined { font-size: 26px; color: var(--blue-600); }

.scenario-card h3 { font-size: 17px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.scenario-card p { font-size: 13px; color: var(--slate-500); line-height: 1.7; margin-bottom: 16px; }

.scenario-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.scenario-tags li {
  font-size: 11px; font-weight: 500;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ====== Free Run ====== */
.free-run { background: var(--slate-50); }

.free-run-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.free-run-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600), var(--blue-800));
}

.free-run-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid #fcd34d;
}

.free-run-badge .material-symbols-outlined { font-size: 18px; color: #f59e0b; }

.free-run-card h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.free-run-desc {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.highlight-text { color: var(--blue-600); font-weight: 600; }

.free-run-process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.process-step { text-align: center; width: 160px; }

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.process-step h4 { font-size: 15px; font-weight: 700; color: var(--slate-800); margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--slate-500); line-height: 1.5; }

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 12px;
  color: var(--slate-300);
}
.process-arrow .material-symbols-outlined { font-size: 24px; }

.free-run-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.counter-label { font-size: 14px; font-weight: 500; color: var(--slate-500); }

.counter-slots { display: flex; gap: 6px; }

.slot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--slate-300);
}

.slot.filled { background: var(--slate-400); border-color: var(--slate-400); }
.slot.available { background: var(--blue-100); border-color: var(--blue-400); }

.counter-text { font-size: 14px; color: var(--slate-600); }
.counter-text strong { color: var(--blue-600); font-size: 18px; }

/* ====== Contact ====== */
.contact { background: var(--white); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-info > p { font-size: 16px; color: var(--slate-500); margin-bottom: 28px; line-height: 1.7; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--slate-50);
  padding: 18px;
  border-radius: var(--radius-md);
}

.contact-detail .material-symbols-outlined { font-size: 24px; color: var(--blue-600); margin-top: 2px; }
.contact-detail strong { display: block; font-size: 15px; color: var(--slate-800); margin-bottom: 2px; }
.contact-detail span { font-size: 13px; color: var(--slate-500); }

.contact-form {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--slate-200);
}

.contact-form h3 { font-size: 17px; font-weight: 700; color: var(--slate-800); margin-bottom: 24px; }

/* ====== Forms ====== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.required { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group textarea { resize: vertical; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  cursor: pointer;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  transition: all var(--transition);
}

.checkbox-item:hover { border-color: var(--blue-300); }
.checkbox-item input[type="checkbox"] { width: auto; accent-color: var(--blue-600); }

/* ====== Footer ====== */
.footer { background: var(--slate-900); color: var(--slate-400); padding: 64px 0 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: var(--slate-400); }

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 360px;
}

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-300);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue-400); }

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--slate-600);
}

.footer-icp {
  margin-top: 8px;
}

.footer-icp a {
  color: var(--slate-500);
  text-decoration: none;
  transition: color .2s;
}

.footer-icp a:hover {
  color: var(--blue-400);
}

/* ====== Modal ====== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: var(--slate-400);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all var(--transition);
  display: flex;
}
.modal-close:hover { background: var(--slate-100); color: var(--slate-600); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-icon { font-size: 48px; color: var(--blue-500); margin-bottom: 12px; }
.modal-header h2 { font-size: 24px; font-weight: 800; color: var(--slate-900); margin-bottom: 8px; }
.modal-header p { font-size: 14px; color: var(--slate-500); }

/* ====== Toast ====== */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--slate-900);
  color: white;
  padding: 14px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .material-symbols-outlined { color: #4ade80; }

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .product-cards { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .free-run-process { gap: 16px; }
  .process-arrow { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero { padding: 100px 0 60px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 99;
  }
  .nav-links.active { right: 0; }
  .mobile-toggle { display: flex; z-index: 100; }

  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .free-run-card { padding: 36px 24px; }

  .free-run-process { flex-direction: column; align-items: center; }
  .process-step { width: 100%; max-width: 240px; }

  .trust-bar .container { flex-direction: column; gap: 16px; }
  .trust-features { justify-content: center; }

  .service-table-wrapper { margin: 0 -20px; border-radius: 0; border-left: none; border-right: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .modal { padding: 28px 20px; }
}
