:root {
  --orange-primary: #ff6b00;
  --orange-hover: #e65c00;
  --dark-bg: #1a1a1a;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #fff;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #333 100%);
  color: white;
  border-radius: 0 0 50px 50px;
}

.btn-orange {
  background-color: var(--orange-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}

.feature-card {
  border: none;
  border-radius: 24px;
  padding: 30px;
  transition: all 0.3s;
  background: #f8f9fa;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background: white;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--orange-primary);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  right: 20px;
  top: 10px;
}

footer {
  background: var(--dark-bg);
  color: #adb5bd;
  padding: 60px 0 30px;
}

footer a {
  color: #adb5bd !important;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--orange-primary) !important;
}
