/* =========================================
   MS Digital Skill Hub - Design System
   Dark Theme | Purple Accent
   ========================================= */

/* --- CSS Custom Properties --- */
:root {
  /* Backgrounds */
  --bg-primary: #07060b;
  --bg-secondary: #0d0b14;
  --bg-tertiary: #13111c;
  --bg-card: #161424;
  --bg-card-hover: #1c1930;
  --bg-elevated: #1e1b2e;

  /* Purple Palette */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;

  /* Accent */
  --accent: #a855f7;
  --accent-hover: #c084fc;
  --accent-muted: rgba(168, 85, 247, 0.15);
  --accent-glow: rgba(168, 85, 247, 0.25);

  /* Text */
  --text-primary: #f1f0f5;
  --text-secondary: #a09bb0;
  --text-tertiary: #6b6580;
  --text-accent: #c084fc;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(168, 85, 247, 0.3);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #6d28d9 100%);
  --gradient-card: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(109, 40, 217, 0.04) 100%);
  --gradient-cta: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #9333ea 100%);

  /* Typography */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Utilities --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-muted);
  border-radius: 100px;
  border: 1px solid var(--border-accent);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.btn-sub {
  font-size: var(--font-size-xs);
  font-weight: 400;
  opacity: 0.8;
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--font-size-lg);
  border-radius: var(--border-radius-lg);
}

.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  backdrop-filter: blur(8px);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-light);
}

.btn-block {
  width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(7, 6, 11, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-image {
  height: 80px;
  width: auto;
  border-radius: 10px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-hero);
  color: white !important;
  border-radius: 10px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('container/image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 11, 0.75);
  z-index: 0;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: rgba(168, 85, 247, 0.12);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(109, 40, 217, 0.08);
  bottom: -100px;
  left: -100px;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.06);
  top: 40%;
  left: 40%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-muted);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: var(--font-size-6xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  margin-bottom: 20px;
}

.hero-stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero-cta-note {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  font-style: italic;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: absolute;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-muted);
  border-radius: 12px;
  font-size: 20px;
}

.hero-card-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.hero-card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.hero-card-3 {
  bottom: 20px;
  left: 40px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-card-2 {
  animation: float-right 6s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes float-right {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

.step-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}

.step-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: rgba(168, 85, 247, 0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition-base);
}

.step-card:hover .step-number {
  color: rgba(168, 85, 247, 0.35);
}

.step-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-duration {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--accent-muted);
  border-radius: 6px;
}

.step-description {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-line {
  display: none;
}

/* =========================================
   PATHS (Two Columns)
   ========================================= */
.paths {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.path-card {
  padding: 48px 40px;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.path-card-learner {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(109, 40, 217, 0.03) 100%);
  border-color: rgba(168, 85, 247, 0.15);
}

.path-card-recruiter {
  background: var(--bg-card);
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.path-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-muted);
  border-radius: 16px;
  color: var(--accent);
  margin-bottom: 24px;
}

.path-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: 14px;
}

.path-description {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.path-features {
  margin-bottom: 32px;
}

.path-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.path-features li:last-child {
  border-bottom: none;
}

.path-features svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}

.testimonial-image-wrapper {
  width: 160px;
  height: 160px;
  margin: 28px auto 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(2.2);
  transition: transform var(--transition-slow);
}

.testimonial-card:hover .testimonial-image {
  transform: scale(2.3);
}

.testimonial-content {
  padding: 28px 24px;
}

.testimonial-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 800px;
}

.about-title {
  text-align: left;
}

.about-content .section-tag {
  margin-bottom: 20px;
}

.about-text {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-mission {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  margin-top: 32px;
  margin-bottom: 24px;
}

.about-mission-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-muted);
  border-radius: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.about-mission-label {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-mission-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

.about-location svg {
  color: var(--accent);
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(168, 85, 247, 0.1);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(109, 40, 217, 0.08);
  bottom: -100px;
  right: 10%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-courses {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-courses-label {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  font-weight: 500;
}

.cta-course-tag {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.cta-course-active {
  background: var(--accent-muted);
  border-color: var(--border-accent);
  color: var(--accent);
}

.cta-course-tag small {
  font-size: var(--font-size-xs);
  opacity: 0.6;
}

/* =========================================
   ABOUT US PAGE
   ========================================= */

/* Active nav link */
.nav-links a.active {
  color: var(--text-primary);
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero-content .section-tag {
  margin-bottom: 24px;
}

.page-hero-title {
  font-size: var(--font-size-6xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* Our Story */
.story {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

/* Founder */
.founder {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.founder-role {
  font-size: var(--font-size-lg);
  color: var(--accent);
  font-weight: 600;
  margin-top: -8px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.founder-visual {
  position: relative;
}

.founder-image-wrapper {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.founder-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.founder-text {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

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

/* Founder extra (journey / why) */
.journey {
  padding: 0 0 var(--section-padding);
  background: var(--bg-secondary);
}

.founder-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.founder-extra-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

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

.founder-extra-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.founder-extra-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.founder-extra-text:last-child {
  margin-bottom: 0;
}

.founder-extra-text strong {
  color: var(--accent);
  font-weight: 600;
}

.founder-closing {
  max-width: 680px;
  margin: 64px auto 0;
  text-align: center;
}

.founder-closing-text {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.founder-closing-emphasis {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  font-style: italic;
  margin-top: 24px;
}

/* Mission & Vision */
.mission-vision {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  padding: 48px 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  transition: all var(--transition-base);
}

.mv-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}

.mv-label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--accent-muted);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
}

.mv-text {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Values */
.values {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}

.value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-muted);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 24px;
}

.value-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 80px 0 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand-text {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-tertiary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-muted);
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-soon {
  font-size: 10px;
  padding: 2px 8px;
  background: var(--accent-muted);
  color: var(--accent);
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-link svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer-legal {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal a {
  font-size: var(--font-size-xs);
  color: var(--text-tertiary);
}

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

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: var(--text-tertiary);
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.animate-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grid items */
.steps-grid .animate-target:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .animate-target:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .animate-target:nth-child(4) { transition-delay: 0.3s; }

.testimonials-grid .animate-target:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .animate-target:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .animate-target:nth-child(4) { transition-delay: 0.3s; }

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

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-title {
    font-size: var(--font-size-5xl);
  }

  .page-hero-title {
    font-size: var(--font-size-5xl);
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-image {
    height: 460px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: right var(--transition-base);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: var(--font-size-lg);
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .page-hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .page-hero-title {
    font-size: var(--font-size-3xl);
  }

  .page-hero-subtitle {
    font-size: var(--font-size-base);
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image {
    height: 380px;
  }

  .founder-extra {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founder-extra-card {
    padding: 28px 24px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mv-card {
    padding: 36px 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    padding: 36px 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonial-image-wrapper {
    width: 140px;
    height: 140px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-content .section-tag {
    text-align: center;
    display: block;
  }

  .about-image {
    height: 300px;
  }

  .cta-title {
    font-size: var(--font-size-3xl);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-courses {
    flex-direction: column;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .footer-brand-text {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-contact-link {
    justify-content: center;
  }

  .footer-legal {
    align-items: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .page-hero-title {
    font-size: var(--font-size-2xl);
  }

  .founder-image {
    height: 320px;
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: var(--font-size-base);
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .step-card {
    padding: 28px 20px;
  }

  .path-card {
    padding: 28px 20px;
  }

  .testimonial-content {
    padding: 20px 18px;
  }
}
