/* =========================
   CSS RESET & BASE STYLES
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

/* =========================
   CONTAINER & LAYOUT
   ========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: #4338CA;
  color: #ffffff;
  border-color: #4338CA;
}

.btn-primary:hover {
  background: #3730A3;
  border-color: #3730A3;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(67, 56, 202, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #4338CA;
  border-color: #4338CA;
}

.btn-secondary:hover {
  background: #4338CA;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(67, 56, 202, 0.15);
}

/* =========================
   HEADER & NAVIGATION
   ========================= */

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4338CA;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #4338CA;
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* =========================
   MOBILE MENU
   ========================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #4338CA;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  color: #4b5563;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav a:hover {
  color: #4338CA;
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 80px 0;
  margin-bottom: 60px;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #0a0a0a;
}

.subheadline {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-indicators span {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* =========================
   SECTIONS
   ========================= */

.social-proof {
  background: #ffffff;
  padding: 60px 0;
  margin-bottom: 60px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.metric .number {
  font-size: 48px;
  font-weight: 700;
  color: #4338CA;
  font-family: 'Montserrat', sans-serif;
}

.metric .label {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

/* =========================
   PROBLEM-SOLUTION
   ========================= */

.problem-solution {
  padding: 80px 0;
  margin-bottom: 60px;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 32px;
}

.problem {
  font-size: 18px;
  color: #6b7280;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.solution {
  font-size: 18px;
  color: #1f2937;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 600;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.benefits li {
  padding: 16px 24px;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 16px;
  color: #1f2937;
  position: relative;
  padding-left: 48px;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #4338CA;
  font-weight: 700;
  font-size: 20px;
}

/* =========================
   CARDS & GRIDS
   ========================= */

.services-overview,
.courses,
.blog-grid {
  padding: 80px 0;
  margin-bottom: 60px;
}

.services-overview h2,
.courses h2,
.blog-grid h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-overview > .container > p {
  text-align: center;
  color: #6b7280;
  margin-bottom: 48px;
}

.services-grid,
.course-grid,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card,
.course-card,
.post-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.service-card:hover,
.course-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #4338CA;
}

.service-card h3,
.course-card h3,
.post-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.course-card p,
.post-card p {
  color: #6b7280;
  flex: 1;
}

.service-card .price,
.course-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #4338CA;
  font-family: 'Montserrat', sans-serif;
}

.service-card .btn,
.course-card .btn,
.post-card .btn {
  margin-top: auto;
}

.level {
  display: inline-block;
  padding: 6px 12px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 8px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.features li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: #4b5563;
}

.features li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #4338CA;
  font-weight: 700;
}

/* =========================
   LEARNING METHOD
   ========================= */

.learning-method-preview,
.learning-journey {
  padding: 80px 0;
  margin-bottom: 60px;
  background: #f9fafb;
}

.steps-grid,
.phases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.step,
.phase {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.step-number,
.phase-number {
  width: 48px;
  height: 48px;
  background: #4338CA;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.step h3,
.phase h3 {
  margin-bottom: 8px;
}

.step p,
.phase p {
  color: #6b7280;
  margin-bottom: 0;
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials,
.success-stories {
  padding: 80px 0;
  margin-bottom: 60px;
  background: #ffffff;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.testimonial-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-card .author strong {
  font-size: 16px;
  color: #0a0a0a;
  font-weight: 600;
}

.testimonial-card .author span {
  font-size: 14px;
  color: #6b7280;
}

/* =========================
   STORY & TIMELINE
   ========================= */

.story {
  padding: 80px 0;
  margin-bottom: 60px;
}

.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4b5563;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.milestone {
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid #4338CA;
  margin-bottom: 24px;
}

.milestone strong {
  font-size: 24px;
  color: #4338CA;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.milestone p {
  color: #4b5563;
  margin-bottom: 0;
}

/* =========================
   VALUES & FEATURES
   ========================= */

.values,
.value-proposition,
.formats,
.flexibility,
.tools {
  padding: 80px 0;
  margin-bottom: 60px;
}

.values h2,
.value-proposition h2,
.formats h2,
.flexibility h2,
.tools h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid,
.features-grid,
.formats-grid,
.paths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-card,
.feature,
.format,
.path {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.value-card:hover,
.feature:hover,
.format:hover,
.path:hover {
  border-color: #4338CA;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-card h3,
.feature h3,
.format h3,
.path h3 {
  color: #0a0a0a;
  margin-bottom: 8px;
}

.value-card p,
.feature p,
.format p,
.path p {
  color: #6b7280;
  margin-bottom: 0;
}

/* =========================
   IMPACT METRICS
   ========================= */

.impact-metrics,
.statistics,
.success-metrics,
.salary-insights {
  padding: 80px 0;
  margin-bottom: 60px;
  background: #f9fafb;
}

.impact-metrics h2,
.statistics h2,
.success-metrics h2,
.salary-insights h2 {
  text-align: center;
  margin-bottom: 48px;
}

.salary-ranges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.range {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.range h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.range p {
  font-size: 32px;
  font-weight: 700;
  color: #4338CA;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.range span {
  font-size: 14px;
  color: #6b7280;
}

/* =========================
   TEAM & PHILOSOPHY
   ========================= */

.team,
.philosophy {
  padding: 80px 0;
  margin-bottom: 60px;
}

.team h2,
.philosophy h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team > .container > p,
.philosophy > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #6b7280;
  font-size: 18px;
}

.team-info {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
  font-size: 16px;
  color: #4b5563;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.principles li {
  padding: 12px 24px;
  background: #f9fafb;
  border-radius: 24px;
  font-size: 16px;
  color: #1f2937;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

/* =========================
   BLOG & CATEGORIES
   ========================= */

.featured-post {
  padding: 60px 0;
  margin-bottom: 40px;
}

.post-featured {
  background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 48px;
  position: relative;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.post-featured h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.post-featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.blog-categories {
  padding: 40px 0;
  margin-bottom: 40px;
}

.categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.category {
  padding: 10px 20px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.category:hover,
.category.active {
  background: #4338CA;
  color: #ffffff;
}

.popular-posts {
  padding: 60px 0;
  margin-bottom: 60px;
  background: #f9fafb;
}

.popular-posts h2 {
  text-align: center;
  margin-bottom: 32px;
}

.popular-list {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: popular;
}

.popular-list li {
  counter-increment: popular;
  padding: 16px 24px 16px 60px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.popular-list li::before {
  content: counter(popular);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #4338CA;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.popular-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.popular-list a {
  color: #1f2937;
  font-weight: 500;
}

.popular-list a:hover {
  color: #4338CA;
}

/* =========================
   CONTACT & FAQ
   ========================= */

.contact-options,
.contact-info,
.faq-contact {
  padding: 60px 0;
  margin-bottom: 60px;
}

.options-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.option-card,
.info-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.option-card h3,
.info-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.option-card p,
.info-card p {
  color: #6b7280;
  margin-bottom: 4px;
}

.option-card strong,
.info-card strong {
  color: #4338CA;
  font-size: 16px;
}

.option-card span,
.info-card span {
  font-size: 14px;
  color: #9ca3af;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #4338CA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0a0a0a;
}

.faq-item p {
  color: #6b7280;
  margin-bottom: 0;
}

.response-promise {
  padding: 60px 0;
  margin-bottom: 60px;
  background: #f9fafb;
  text-align: center;
}

.response-promise h2 {
  margin-bottom: 16px;
}

.response-promise p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 32px;
}

.guarantees {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guarantees li {
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  color: #1f2937;
  border-left: 4px solid #4338CA;
}

/* =========================
   NEWSLETTER
   ========================= */

.newsletter {
  padding: 80px 0;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
  text-align: center;
}

.newsletter h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
   CTA SECTIONS
   ========================= */

.cta-final,
.cta {
  padding: 80px 0;
  margin-bottom: 60px;
  background: #f9fafb;
  text-align: center;
}

.cta-final h2,
.cta h2 {
  margin-bottom: 16px;
}

.cta-final p,
.cta p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 8px;
}

.urgency {
  font-weight: 600;
  color: #4338CA;
  font-size: 20px;
}

.guarantee {
  color: #059669;
  font-weight: 600;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =========================
   LEGAL PAGES
   ========================= */

.legal-page {
  padding: 80px 0;
  margin-bottom: 60px;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #0a0a0a;
}

.legal-page p {
  margin-bottom: 16px;
  color: #4b5563;
}

.legal-page strong {
  color: #1f2937;
}

/* =========================
   THANK YOU PAGE
   ========================= */

.thank-you {
  padding: 120px 0;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 24px;
}

.thank-you h1 {
  margin-bottom: 16px;
}

.thank-you p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

.next-steps,
.while-you-wait {
  padding: 60px 0;
  margin-bottom: 60px;
}

.next-steps h2,
.while-you-wait h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.suggestion-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.suggestion-card h3 {
  margin-bottom: 8px;
}

.suggestion-card p {
  color: #6b7280;
  flex: 1;
}

/* =========================
   FEATURED STORY
   ========================= */

.featured-story {
  padding: 80px 0;
  margin-bottom: 60px;
  background: #f9fafb;
}

.featured-story h2 {
  text-align: center;
  margin-bottom: 48px;
}

.story-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.story-card h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.story-card p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4b5563;
}

.story-card blockquote {
  border-left: 4px solid #4338CA;
  padding-left: 24px;
  font-size: 18px;
  font-style: italic;
  color: #1f2937;
  margin-top: 32px;
}

/* =========================
   CAREER PATHS
   ========================= */

.career-paths {
  padding: 80px 0;
  margin-bottom: 60px;
  background: #ffffff;
}

.career-paths h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

footer {
  background: #1f2937;
  color: #e5e7eb;
  padding: 60px 0 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column img {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 0;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: #4338CA;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #3730A3;
}

.cookie-btn-reject {
  background: #f3f4f6;
  color: #4b5563;
}

.cookie-btn-reject:hover {
  background: #e5e7eb;
}

.cookie-btn-settings {
  background: transparent;
  color: #4338CA;
  border: 1px solid #4338CA;
}

.cookie-btn-settings:hover {
  background: #4338CA;
  color: #ffffff;
}

/* =========================
   COOKIE MODAL
   ========================= */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  color: #4b5563;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cookie-modal-close:hover {
  background: #e5e7eb;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background: #d1d5db;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #4338CA;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Hide desktop nav, show mobile menu */
  .nav-menu,
  .cta-buttons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    justify-content: space-between;
  }
  
  /* Single column layouts */
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .metrics-grid,
  .services-grid,
  .course-grid,
  .steps-grid,
  .phases-grid,
  .testimonial-grid,
  .testimonials-grid,
  .timeline,
  .values-grid,
  .features-grid,
  .formats-grid,
  .paths-grid,
  .options-grid,
  .info-grid,
  .posts-grid,
  .suggestions-grid,
  .salary-ranges {
    flex-direction: column;
  }
  
  .service-card,
  .course-card,
  .post-card,
  .step,
  .phase,
  .metric,
  .value-card,
  .feature,
  .format,
  .path,
  .option-card,
  .info-card,
  .suggestion-card,
  .range {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .service-card,
  .course-card,
  .testimonial-card,
  .step,
  .phase {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* =========================
   ANIMATIONS & TRANSITIONS
   ========================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* =========================
   UTILITY CLASSES
   ========================= */

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

.mb-0 {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* =========================
   PRINT STYLES
   ========================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta,
  .cta-final {
    display: none;
  }
}