body {
  font-family: 'Inter', sans-serif;
  color: #2d3436;
}

.fw-800 { font-weight: 800; }

/* Hero */
.hero-section {
  min-height: 80vh;
  background: linear-gradient(135deg, #1e272e 0%, #2c3e50 100%);
  position: relative;
}

.hero-bullet{
  display:flex;
  align-items:center;
  gap:.35rem;
  padding: .6rem .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  font-weight: 600;
}

/* Pricing card */
.pricing-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  background: #ffffff;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
}

/* Buttons */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(13, 110, 253, 0.3);
}

.form-control:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

/* Demo note box */
.demo-assurance-box {
  background-color: #f8f9fa;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 15px;
  text-align: left;
}

.demo-assurance-box p {
  color: #4b5563;
  line-height: 1.4;
}

.btn-outline-secondary:hover {
  background-color: #f8f9fa;
  color: #212529;
  border-color: #adb5bd;
}

/* Mobile */
@media (max-width: 768px) {
  .display-3 { font-size: 2.4rem; }
  .hero-bullet { font-size: .95rem; }
}
