/* ============================================
   The Developer Culture — Shared Stylesheet
   ============================================ */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Properties */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --accent: #00d4ff;
  --accent-dark: #00a8cc;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --success: #22c55e;
  --purple: #a855f7;
  --orange: #f97316;
  --border: #2a2a3e;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Fira Code', 'Courier New', monospace;
  --section-padding: 5rem 0;
  --container-max: 1200px;
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-accent: 0 4px 20px rgba(0, 212, 255, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* Utility */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

section {
  padding: var(--section-padding);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-family);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--bg-primary);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}

/* Header / Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo span {
  color: var(--accent);
}

.logo:hover {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.2rem !important;
  background: var(--accent);
  color: var(--bg-primary) !important;
  border-radius: 6px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--bg-primary) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .hero-btns {
  margin-top: 2rem;
}

/* Card Components */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  background: var(--accent-glow);
  color: var(--accent);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card ul {
  margin-top: 0.75rem;
}

.card ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Career Path Cards — colour accents */
.card-web { border-top: 3px solid var(--accent); }
.card-web .card-icon { background: rgba(0, 212, 255, 0.15); color: var(--accent); }

.card-data { border-top: 3px solid var(--purple); }
.card-data .card-icon { background: rgba(168, 85, 247, 0.15); color: var(--purple); }

.card-mobile { border-top: 3px solid var(--success); }
.card-mobile .card-icon { background: rgba(34, 197, 94, 0.15); color: var(--success); }

.card-devops { border-top: 3px solid var(--orange); }
.card-devops .card-icon { background: rgba(249, 115, 22, 0.15); color: var(--orange); }

/* How It Works — Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Differentiators / Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* About Page — Comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.comparison-card.highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.comparison-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.comparison-card li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  padding-left: 1.8rem;
  position: relative;
}

.comparison-card li:last-child {
  border-bottom: none;
}

.comparison-card li i {
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.comparison-card.highlight li i {
  color: var(--accent);
}

.comparison-card:not(.highlight) li i {
  color: var(--text-muted);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.team-card.coming-soon {
  opacity: 0.5;
  border-style: dashed;
}

/* Delivery Model */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* =====================
   CURRICULUM PAGE
   ===================== */

/* Phase badge */
.phase-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.75rem;
  vertical-align: middle;
}

.phase-badge.everyone {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

/* Module cards */
.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.module-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.module-card .duration {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.module-card ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.2rem 0 0.2rem 1.2rem;
  position: relative;
}

.module-card ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* CSS-Only Tabs */
.tab-input { display: none; }

.tab-labels {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.tab-labels label {
  padding: 1rem 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-labels label:hover {
  color: var(--text-primary);
}

.tab-panel { display: none; }

#tab-web:checked ~ .tab-labels label[for="tab-web"],
#tab-data:checked ~ .tab-labels label[for="tab-data"],
#tab-mobile:checked ~ .tab-labels label[for="tab-mobile"],
#tab-devops:checked ~ .tab-labels label[for="tab-devops"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

#tab-web:checked ~ .tab-panels #panel-web,
#tab-data:checked ~ .tab-panels #panel-data,
#tab-mobile:checked ~ .tab-panels #panel-mobile,
#tab-devops:checked ~ .tab-panels #panel-devops {
  display: block;
}

/* Path stages */
.path-stage {
  margin-bottom: 2.5rem;
}

.path-stage h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.path-stage > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.path-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Quiz */
.quiz-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.quiz-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
}

.quiz-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.quiz-dot.done {
  background: var(--accent-dark);
}

.quiz-question {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--text-primary);
  text-align: left;
  font-family: var(--font-family);
}

.quiz-option:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.quiz-option.selected {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.quiz-result {
  text-align: center;
}

.quiz-result h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.quiz-result p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.quiz-result-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.quiz-result .btn {
  margin: 0.5rem;
}

/* =====================
   PRICING PAGE
   ===================== */

/* Free lesson banner */
.free-banner {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-accent);
}

.free-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.free-banner p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 1rem 0 0.5rem;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0 2rem;
}

.pricing-card ul li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  border-bottom: 1px solid rgba(42, 42, 62, 0.5);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* Module pricing */
.module-pricing {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.module-pricing .pricing-amount {
  font-size: 2rem;
}

/* Refund Guarantee */
.refund-section {
  text-align: center;
}

.refund-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.refund-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.refund-card h2 {
  margin-bottom: 1rem;
}

.refund-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table thead {
  background: var(--bg-secondary);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table .fa-check {
  color: var(--accent);
}

.comparison-table .fa-times {
  color: var(--text-muted);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.faq-list details[open] {
  border-color: var(--accent);
}

.faq-list summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================
   CONTACT PAGE
   ===================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
}

.contact-info-item i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-secondary);
}

/* Honeypot */
.ohnohoney {
  position: absolute;
  left: -9999px;
}

/* =====================
   FOOTER
   ===================== */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: repeat(3, 1fr); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }

  .nav-links { display: flex; }
}

@media (min-width: 992px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .module-grid { grid-template-columns: repeat(3, 1fr); }

  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
}

@media (max-width: 767px) {
  .mobile-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }

  h2 { font-size: 1.8rem; }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .tab-labels {
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .tab-labels label {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  /* Mobile table */
  .table-wrapper {
    overflow-x: auto;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.4rem;
  }

  .quiz-container {
    padding: 1.5rem;
  }

  .quiz-question {
    font-size: 1.1rem;
  }
}

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* =====================
   EMPLOYER LOGOS STRIP
   ===================== */
.logos-strip {
  padding: 3rem 0;
  text-align: center;
}

.logos-strip-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.logo-pill {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.logo-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =====================
   TESTIMONIALS — ENHANCED
   ===================== */
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-outcome {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 600;
}

/* =====================
   FLOATING WHATSAPP BUTTON
   ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebe5a;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* =====================
   COMMUNITY SECTION
   ===================== */
.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .community-grid { grid-template-columns: repeat(3, 1fr); }
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.community-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.community-card .card-icon {
  margin: 0 auto 1rem;
}

.community-card h3 { margin-bottom: 0.5rem; }
.community-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }

/* =====================
   BBBEE / TRANSFORMATION SECTION
   ===================== */
.bbbee-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.bbbee-card h2 {
  margin-bottom: 1rem;
}

.bbbee-card p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.bbbee-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.bbbee-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bbbee-flag i {
  color: var(--accent);
}

/* =====================
   FINANCING SECTION
   ===================== */
.financing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .financing-grid { grid-template-columns: repeat(3, 1fr); }
}

.financing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.financing-card .card-icon {
  margin: 0 auto 1rem;
}

.financing-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.financing-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* =====================
   SCHOLARSHIP SECTION
   ===================== */
.scholarship-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.scholarship-card .card-icon {
  width: 64px;
  height: 64px;
  font-size: 1.8rem;
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.scholarship-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.scholarship-card p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }

/* =====================
   RESOURCES PAGE
   ===================== */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .resources-grid { grid-template-columns: repeat(3, 1fr); }
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.resource-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: var(--accent-glow);
  color: var(--accent);
}

.resource-tag.tag-data { background: rgba(168, 85, 247, 0.15); color: var(--purple); }
.resource-tag.tag-mobile { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.resource-tag.tag-devops { background: rgba(249, 115, 22, 0.15); color: var(--orange); }
.resource-tag.tag-career { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.resource-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.resource-card p { color: var(--text-secondary); font-size: 0.9rem; flex: 1; line-height: 1.6; margin-bottom: 1.25rem; }
.resource-card .read-time { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 1rem; }

/* =====================
   ARTICLE PAGES
   ===================== */
.article-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}

.article-hero h1 {
  font-size: 2.4rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.25;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-meta .resource-tag {
  margin-bottom: 0;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
  line-height: 1.85;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.article-body h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.4rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.4rem 1.5rem;
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
}

.article-callout {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.article-callout p {
  margin: 0;
  color: var(--text-primary);
  font-style: italic;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 3rem 0;
}

.article-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.article-author-info .name {
  font-weight: 700;
  color: var(--text-primary);
}

.article-author-info .bio {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.article-related {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}

.article-related h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.article-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-related ul li {
  margin-bottom: 0.5rem;
}

.article-related ul li a {
  color: var(--accent);
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .article-hero h1 { font-size: 1.8rem; }
  .article-body { font-size: 1rem; }
}

/* Join Team Card */
.team-card.join-team {
  border: 2px dashed var(--accent);
  background: var(--accent-glow);
}

.team-card.join-team .team-avatar {
  background: rgba(0, 212, 255, 0.2);
  color: var(--accent);
}

.team-card.join-team h3 { color: var(--accent); }
.team-card.join-team .role { color: var(--text-secondary); }

/* =====================
   PROGRAMME GRID (Homepage)
   ===================== */
.programme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .programme-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .programme-grid { grid-template-columns: repeat(3, 1fr); }
}

.programme-grid .card {
  text-align: left;
  position: relative;
}

.programme-duration {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================
   SHORT COURSE GRID (Homepage)
   ===================== */
.short-course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .short-course-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .short-course-grid { grid-template-columns: repeat(5, 1fr); }
}

.short-course-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

.short-course-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--bg-card-hover);
}

.short-course-card i {
  font-size: 1.6rem;
  color: var(--accent);
}

.short-course-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.short-course-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =====================
   BOOTCAMP CARDS (Curriculum Page)
   ===================== */
.bootcamp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.bootcamp-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.bootcamp-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.bootcamp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bootcamp-icon.card-web { background: rgba(0, 212, 255, 0.15); color: var(--accent); }
.bootcamp-icon.card-data { background: rgba(168, 85, 247, 0.15); color: var(--purple); }
.bootcamp-icon.card-mobile { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.bootcamp-icon.card-devops { background: rgba(249, 115, 22, 0.15); color: var(--orange); }

.bootcamp-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.bootcamp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bootcamp-meta i {
  margin-right: 0.3rem;
  color: var(--accent);
}

.bootcamp-card > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.bootcamp-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.bootcamp-topics span {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.bootcamp-careers {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 212, 255, 0.04);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.bootcamp-careers strong {
  color: var(--text-primary);
}

/* =====================
   SHORT COURSE CARDS (Curriculum Page)
   ===================== */
.short-courses-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sc-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.sc-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.sc-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.sc-content {
  flex: 1;
}

.sc-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.sc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.sc-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sc-content > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sc-card > .btn {
  align-self: center;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .sc-card {
    flex-direction: column;
  }

  .sc-card > .btn {
    width: 100%;
    text-align: center;
  }

  .bootcamp-header {
    flex-direction: column;
  }
}
