/* HR Motivation Mobile App Styles */

/* CSS Variables for theming */
:root {
  --primary: #8B5CF6;
  --primary-dark: #7C3AED;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  
  /* Dark theme (default) */
  --bg-dark: #0F172A;
  --bg-card: #1E293B;
  --bg-light: #334155;
  --bg-input: #1a2332;
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --border: #334155;
  
  --shadow: rgba(0, 0, 0, 0.3);
  --glow: rgba(139, 92, 246, 0.4);
  
  /* Gradients */
  --gradient-bg: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  --gradient-btn: linear-gradient(90deg, #8B5CF6, #EC4899);
}

/* Light theme */
[data-theme="light"] {
  --bg-dark: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-light: #E2E8F0;
  --bg-input: #f1f5f9;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  
  --shadow: rgba(0, 0, 0, 0.1);
  --glow: rgba(139, 92, 246, 0.2);
  
  --gradient-bg: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* SVG Icons base */
.icon {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 64px;
  height: 64px;
}

.icon-nav {
  width: 24px;
  height: 24px;
}

.use {
  fill: currentColor;
}

/* Page transitions */
.page {
  min-height: 100vh;
  transition: opacity 0.3s ease;
}

.hidden {
  display: none !important;
}

/* Theme toggle button */
.theme-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}

.theme-toggle:hover {
  background: var(--bg-light);
  transform: scale(1.1);
}

.theme-toggle-small {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}

/* Landing Page */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  text-align: center;
  background: var(--gradient-bg);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border-radius: 24px;
  margin-bottom: 16px;
  color: var(--primary);
}

.logo .icon-lg {
  width: 56px;
  height: 56px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--primary), #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.feature {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 140px;
  color: var(--text);
  transition: background 0.2s;
}

.feature:hover {
  background: var(--bg-light);
}

.feature .icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.feature span:last-child {
  font-size: 14px;
  font-weight: 500;
}

.btn-primary {
  background: var(--gradient-btn);
  color: white;
  border: none;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--glow);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px var(--glow);
}

.note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* Mobile App Frame */
#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: var(--bg-dark);
}

.phone-frame {
  width: 100%;
  max-width: 380px;
  height: 100vh;
  max-height: 800px;
  background: var(--bg-dark);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s;
}

[data-theme="light"] .phone-frame {
  border-color: #cbd5e1;
}

.phone-header {
  background: var(--bg-dark);
  padding: 12px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.status-bar {
  font-size: 14px;
  color: var(--text-muted);
}

.app-header {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
  background: var(--bg-dark);
}

.back-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

.back-btn:hover {
  opacity: 0.7;
}

.app-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.profile-icon {
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.profile-icon:hover {
  color: var(--primary);
}

.profile-icon .icon {
  width: 24px;
  height: 24px;
}

.app-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  transition: background 0.3s;
}

/* Bottom Navigation */
.bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
  transition: background 0.3s, border-color 0.3s;
}

.nav-item {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s;
  position: relative;
}

.nav-item svg {
  width: 24px;
  height: 24px;
}

.nav-item.active {
  color: var(--primary);
  background: rgba(139, 92, 246, 0.1);
}

.nav-item:hover {
  background: var(--bg-card);
}

/* App Pages */
.page-content h3 {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Profile screen */
.profile-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.profile-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.profile-group {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.profile-info {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-muted);
  font-size: 14px;
}

.info-value {
  font-weight: 500;
  text-align: right;
  max-width: 60%;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
}

.icon-btn:hover {
  background: var(--bg-card);
  color: var(--primary);
}

.icon-btn .icon {
  width: 22px;
  height: 22px;
  display: block;
}

/* Exit Button */
.btn-exit {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-muted);
  padding: 12px 32px;
  border-radius: 50px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-exit:hover {
  border-color: var(--text);
  color: var(--text);
}

/* Dashboard grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dashboard-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  background: var(--bg-light);
}

.dashboard-card .icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 8px;
}

.dashboard-card h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.dashboard-card p {
  font-size: 12px;
  color: var(--text-muted);
}

.dashboard-card.wide {
  grid-column: span 2;
}

.dashboard-card.accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
}

/* Stat card */
.stat-card {
  background: var(--bg-card);
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
}

.stat-card .value {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.stat-card .label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Level badge */
.level-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0 auto;
  box-shadow: 0 0 20px var(--glow);
}

/* Progress bar */
.progress-bar {
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0;
}

.progress-bar .fill {
  height: 100%;
  background: var(--gradient-btn);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* Level bar (experience bar) */
.level-bar {
  height: 6px;
  background: var(--bg-light);
  border-radius: 3px;
  overflow: hidden;
  margin: 4px 0;
}

.level-bar .fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* Badge grid */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 12px 0;
}

.achievement-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s;
  font-size: 11px;
  color: var(--text-muted);
}

.achievement-badge .icon {
  width: 28px;
  height: 28px;
}

.achievement-badge.earned {
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--primary);
}

.achievement-badge.unearned {
  opacity: 0.4;
  filter: grayscale(1);
}

/* Task card */
.task-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.task-card:hover {
  background: var(--bg-light);
}

.task-card.done {
  opacity: 0.6;
}

.task-card.done .task-title {
  text-decoration: line-through;
}

.task-check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.task-check.checked {
  background: var(--primary);
  border-color: var(--primary);
}

.task-check .icon {
  width: 14px;
  height: 14px;
  color: white;
}

.task-info {
  flex: 1;
}

.task-title {
  font-size: 14px;
  font-weight: 500;
}

.task-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.task-points {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* Leader item */
.leader-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.leader-item:hover {
  background: var(--bg-light);
}

.leader-item.current-user {
  border: 2px solid var(--primary);
  background: rgba(139, 92, 246, 0.08);
}

.leader-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.leader-rank.gold {
  background: linear-gradient(135deg, #F59E0B, #FCD34D);
  color: #1E293B;
}

.leader-rank.silver {
  background: linear-gradient(135deg, #94A3B8, #CBD5E1);
  color: #1E293B;
}

.leader-rank.bronze {
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #1E293B;
}

.leader-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.leader-info {
  flex: 1;
}

.leader-name {
  font-size: 14px;
  font-weight: 600;
}

.leader-dept {
  font-size: 11px;
  color: var(--text-muted);
}

.leader-stats {
  text-align: right;
}

.leader-points {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.leader-level {
  font-size: 11px;
  color: var(--text-muted);
}

/* Shop item */
.shop-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.shop-item:hover {
  background: var(--bg-light);
}

.shop-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.shop-info {
  flex: 1;
}

.shop-name {
  font-size: 14px;
  font-weight: 600;
}

.shop-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.shop-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.shop-btn {
  background: var(--gradient-btn);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.shop-btn:hover {
  transform: scale(1.05);
}

.shop-btn.sold-out {
  background: var(--bg-light);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* Balance display */
.balance-display {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.balance-display .amount {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.balance-display .label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Tab toggle */
.tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 4px;
}

.tab-btn {
  flex: 1;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

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

/* List views */
.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 16px;
}

.list-icon {
  font-size: 24px;
}

.list-info {
  flex: 1;
}

.list-info h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.list-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.list-info .salary {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  color: var(--success);
}

.badge {
  flex-shrink: 0;
  font-size: 11px;
  padding: 4px 8px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2s forwards;
  box-shadow: 0 4px 20px var(--shadow);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; }
  to { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Gratitude / Благодарности */
.gratitude-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.gratitude-stat {
  background: var(--bg-card);
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
}

.gratitude-stat .g-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #EC4899, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gratitude-stat .g-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.value-pill {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}

.value-pill:hover {
  opacity: 0.8;
}

.value-pill.active {
  box-shadow: 0 0 0 2px white;
}

.thanks-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.thank-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: 12px;
  align-items: flex-start;
  transition: background 0.2s;
}

.thank-item:hover {
  background: var(--bg-light);
}

.thank-avatars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 40px;
}

.thank-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.thank-avatar.from {
  background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

.thank-avatar.to {
  background: linear-gradient(135deg, #3B82F6, #10B981);
}

.thank-arrow {
  font-size: 12px;
  color: var(--text-muted);
}

.thank-body {
  flex: 1;
}

.thank-message {
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.thank-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.thank-value-badge {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  color: white;
}

.thank-time {
  color: var(--text-muted);
}

.gratitude-balance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-card);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.g-balance-item {
  text-align: center;
}

.g-balance-item .num {
  font-size: 22px;
  font-weight: 700;
}

.g-balance-item .lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.g-balance-item.sent .num { color: #EC4899; }
.g-balance-item.received .num { color: #10B981; }

.send-gratitude {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.send-gratitude h4 {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.send-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.send-select {
  flex: 1;
  padding: 10px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  outline: none;
}

.send-select option {
  background: var(--bg-card);
  color: var(--text);
}

.send-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  resize: none;
  margin-bottom: 10px;
}

.send-input::placeholder {
  color: var(--text-muted);
}

.send-btn {
  width: 100%;
  padding: 10px;
  background: var(--gradient-btn);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.send-btn:hover {
  transform: scale(1.02);
}

.gratitude-leaders {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 12px;
}

.g-leader {
  flex-shrink: 0;
  text-align: center;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 12px;
  min-width: 80px;
}

.g-leader-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EC4899, #8B5CF6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 6px;
}

.g-leader-name {
  font-size: 11px;
  font-weight: 600;
}

.g-leader-count {
  font-size: 10px;
  color: var(--text-muted);
}

/* Floating action button */
.fab-btn {
  position: absolute;
  bottom: 80px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 10;
}

.fab-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .feature {
    width: auto;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .phone-frame {
    border-radius: 0;
    border: none;
  }
}
