.c4-hero-section {
  background: #0d1b3e;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.c4-hero-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.c4-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, 0.5);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #60a5fa;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.c4-hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  flex-shrink: 0;
}

.c4-hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.c4-hero-accent {
  color: #60a5fa;
}

.c4-hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 36px;
}

.c4-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.c4-btn-primary {
  background: #2563eb;
  color: #ffffff !important;
  border: 2px solid #2563eb;
  border-radius: 6px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.c4-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  text-decoration: none;
}

.c4-btn-outline {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, transform 0.2s;
}

.c4-btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
  text-decoration: none;
}

.c4-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.c4-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 22px;
  min-width: 130px;
  flex: 1;
}

.c4-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 6px;
}

.c4-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.c4-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

lottie-player.hero-globe {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: hue-rotate(50deg) saturate(1.3);
}

/* ─── COURSES SECTION ─── */
.c4-courses-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.c4-courses-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}

.c4-courses-sub {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  margin-top: 12px;
  margin-bottom: 0;
}

.c4-courses-all-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
}

.c4-courses-all-link:hover {
  color: #2563eb;
  text-decoration: none;
}

.c4-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.c4-course-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.c4-course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(10,14,26,0.12);
  text-decoration: none;
  color: inherit;
}

.c4-course-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.c4-course-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c4-course-level {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.c4-course-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.c4-course-desc {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.c4-course-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: #555555;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.c4-course-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 991px) {
  .c4-hero-section {
    padding: 100px 0 50px;
    min-height: auto;
  }

  .c4-hero-right {
    margin-top: 40px;
  }

  lottie-player.hero-globe {
    max-width: 360px;
  }
}

@media (max-width: 576px) {
  .c4-hero-stats {
    gap: 10px;
  }

  .c4-stat-card {
    min-width: 100px;
    padding: 14px 16px;
  }

  .c4-stat-number {
    font-size: 1.6rem;
  }
}

/* ─── TABLER ICONS ─── */
.c4-card-icon {
  font-size: 2rem;
  color: #2563eb;
}

.c4-tool-thumb .c4-card-icon {
  font-size: 1.8rem;
}

.c4-course-meta .ti {
  font-size: 0.85rem;
}

/* ─── TOOL CARDS (c4 Lab) ─── */
.c4-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.c4-tool-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.c4-tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(10,14,26,0.12);
  text-decoration: none;
  color: inherit;
}

.c4-tool-thumb {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.c4-tool-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c4-tool-count {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 4px;
}

.c4-tool-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.c4-tool-desc {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  flex: 1;
}

.c4-lab-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ─── MANUAL CARDS ─── */
.c4-manual-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.c4-manual-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c4-manual-thumb-placeholder {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}
