:root {
  --brand-primary: #0b5ed7;
  --brand-secondary: #0e9f6e;
  --brand-dark: #0b132b;
  --brand-light: #f4f7fb;
  --brand-accent: #f59e0b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", "Segoe UI", Tahoma, Arial, sans-serif;
  color: #111827;
  background-color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
}

.navbar-brand img {
  height: 54px;
  width: auto;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-primary) !important;
}

.hero {
  background: radial-gradient(circle at top left, rgba(14, 159, 110, 0.15), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(11, 94, 215, 0.15), transparent 50%),
    linear-gradient(135deg, #f9fbff 0%, #eef4ff 100%);
  padding: 120px 0 90px;
}

.hero img {
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.section-title {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.badge-soft {
  background: rgba(14, 159, 110, 0.12);
  color: var(--brand-secondary);
  border: 1px solid rgba(14, 159, 110, 0.35);
}

.badge-brand {
  background-color: var(--brand-primary) !important;
  color: #ffffff !important;
  --bs-badge-bg: var(--brand-primary);
  --bs-badge-color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.card h4,
.card h5 {
  color: var(--brand-primary);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(11, 94, 215, 0.12);
  color: var(--brand-primary);
  font-size: 22px;
}

.leader-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
}

.stats {
  background: var(--brand-dark);
  color: #ffffff;
  border-radius: 18px;
  padding: 32px;
}

.stats h3 {
  font-weight: 700;
}

.cta-strip {
  background: linear-gradient(120deg, var(--brand-primary), #2563eb);
  color: #ffffff;
  border-radius: 20px;
}

.footer {
  background: #0b132b;
  color: #cbd5f5;
}

.footer a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.social-icons i {
  font-size: 20px;
}

.footer-logo {
  max-width: 42px;
  height: auto;
}

.form-control,
.form-select {
  border-radius: 12px;
}

.honeypot-field {
  position: absolute;
  left: -5000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 70px;
  }
}

@media (max-width: 767px) {
  .hero {
    text-align: center;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero .btn {
    width: 100%;
  }
}
