/* RepBot Landing Page Styles */
:root {
  --primary: #4F46E5;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

.py-lg-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

/* ── Hero ── */
.hero-section {
  background: linear-gradient(135deg, #FAFAFA 0%, #EEF2FF 100%);
}

.hero-card {
  background: white;
  border-radius: 16px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Steps ── */
.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

/* ── Features ── */
.feature-icon {
  width: 52px;
  height: 52px;
  background: #EEF2FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Pricing ── */
.card { border-radius: 16px; }

/* ── Navbar ── */
.navbar-brand { letter-spacing: -0.5px; }

/* ── Buttons ── */
.btn {
  border-radius: 8px;
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #4338CA;
  border-color: #4338CA;
}

/* ── FAQ ── */
details summary {
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  border-bottom: 1px solid #dee2e6;
}
