:root {
  --brand-red: #dc3545;
  --brand-dark: #0f172a;
  --brand-bg: #fcfdfe;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--brand-bg);
  color: #334155;
}

/* --- Hero Section --- */
.hero-aptitude {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%), url('assets/hero-bg.jpg');
  background-size: cover;
  padding: 100px 0 80px 0;
  position: relative;
}

/* --- Module Cards --- */
.module-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(220, 53, 69, 0.08);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
}

.module-card:hover .icon-box {
  background: var(--brand-red);
  color: white;
  transform: scale(1.1);
}

/* --- Info Badges --- */
.info-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-badge i {
  color: var(--brand-red);
  margin-right: 8px;
  font-size: 1.1rem;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-pill {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--brand-red);
  text-transform: uppercase;
  background: rgba(220, 53, 69, 0.06);
  padding: 6px 18px;
  border-radius: 60px;
  font-weight: 700;
  margin-bottom: 1rem;
}
