/* ============================================
   Reusable Components
   ============================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.25), 0 8px 25px rgba(99, 102, 241, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.35), 0 12px 35px rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

/* --- Chips / Badges --- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem 0.45rem 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.chip-dot {
  width: 28px;
  height: 28px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* --- Cards (light section) --- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  border: 1px solid var(--border-light);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.35s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.15);
}

.card:hover::after {
  opacity: 1;
}

.card-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.card h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.card p {
  font-size: 0.87rem;
  color: var(--text-body-light);
  line-height: 1.6;
}

/* --- Glass / Float Cards (dark section) --- */
.float-card {
  position: absolute;
  z-index: 10;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-card);
}

.float-card-icon {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.float-card-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.float-card-value {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Progress bar inside float cards */
.fc-bar {
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.fc-bar-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 4px;
}

/* --- Section Labels --- */
.section-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-indigo);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

/* Light section text colors */
.light .section-title {
  color: var(--text-dark);
}

.light .section-desc {
  color: var(--text-body-light);
}

/* --- Feature dots --- */
.feature-dot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
  flex-shrink: 0;
}