/* ==========================================================================
   HorizonPatch - Soft Pastel Design Style
   Modern IT Education Platform
   ========================================================================== */

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

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0F4FF 100%);
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   SOFT PASTEL TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #6B5B95;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #A78BFA 0%, #F9A8D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #7C6BA3;
}

h3 {
  font-size: 24px;
  color: #8B7FA8;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #5A5A5A;
  margin-bottom: 16px;
}

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

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==========================================================================
   BUTTONS - SOFT PASTEL STYLE
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #D8B5FF 0%, #F9A8D4 100%);
  color: #4A4A4A;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.3);
  background: linear-gradient(135deg, #C89FFF 0%, #F794C7 100%);
}

.btn-secondary {
  background: #FFF;
  color: #7C6BA3;
  border: 2px solid #E9D7FE;
}

.btn-secondary:hover {
  background: #F5EFFF;
  border-color: #D8B5FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.2);
}

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

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(167, 139, 250, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(167, 139, 250, 0.15));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #6B5B95;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D8B5FF 0%, #F9A8D4 100%);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #D8B5FF 0%, #F9A8D4 100%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #4A4A4A;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF5F7 0%, #F0F4FF 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(167, 139, 250, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFF;
  border: 2px solid #E9D7FE;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #7C6BA3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F5EFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #6B5B95;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #FFF;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
}

/* ==========================================================================
   HERO SECTION - SOFT PASTEL STYLE
   ========================================================================== */

.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0F4FF 50%, #FFE8F0 100%);
  border-radius: 24px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(216, 181, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 56px;
}

.hero-subtitle {
  font-size: 20px;
  color: #6B5B95;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #7C6BA3;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
}

/* ==========================================================================
   PAGE HERO
   ========================================================================== */

.page-hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0F4FF 100%);
  border-radius: 24px;
  margin-bottom: 60px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #6B5B95;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   CARD LAYOUTS - FLEXBOX ONLY
   ========================================================================== */

.benefits-grid,
.course-grid,
.testimonial-grid,
.stats-grid,
.contact-grid,
.packages-grid,
.paths-grid,
.strategies-grid,
.values-grid,
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card,
.course-card,
.testimonial-card,
.contact-card,
.package-card,
.path-card,
.strategy-card,
.value-card,
.principle-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card:hover,
.course-card:hover,
.package-card:hover,
.path-card:hover,
.strategy-card:hover,
.value-card:hover,
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(167, 139, 250, 0.2);
}

.benefit-card h3,
.course-card h3,
.package-card h3,
.path-card h3,
.strategy-card h3,
.value-card h3,
.principle-card h3 {
  color: #7C6BA3;
  margin-bottom: 16px;
  font-size: 20px;
}

.benefit-card p,
.course-card p,
.package-card p,
.path-card p,
.strategy-card p,
.value-card p,
.principle-card p {
  color: #5A5A5A;
  line-height: 1.7;
}

/* ==========================================================================
   COURSE CARDS
   ========================================================================== */

.course-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.course-level,
.course-duration {
  background: linear-gradient(135deg, #F5EFFF 0%, #FFE8F0 100%);
  color: #7C6BA3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.course-price,
.package-price {
  font-size: 28px;
  font-weight: 700;
  color: #A78BFA;
  margin: 16px 0;
}

.package-sessions {
  font-size: 16px;
  color: #7C6BA3;
  font-weight: 600;
  margin-bottom: 8px;
}

.package-card.featured {
  border: 3px solid #D8B5FF;
  background: linear-gradient(135deg, #FFF 0%, #F5EFFF 100%);
}

.package-card ul {
  list-style: none;
  margin: 20px 0;
}

.package-card ul li {
  padding: 8px 0;
  color: #5A5A5A;
  position: relative;
  padding-left: 24px;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A78BFA;
  font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS - HIGH CONTRAST
   ========================================================================== */

.testimonial-card {
  background: #FFF;
  border-left: 4px solid #D8B5FF;
  padding: 30px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #2D2D2D;
  font-weight: 700;
  font-size: 16px;
}

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

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats {
  background: linear-gradient(135deg, #F5EFFF 0%, #FFE8F0 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.stats-grid,
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  align-items: center;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #A78BFA 0%, #F9A8D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #6B5B95;
  font-weight: 600;
}

/* ==========================================================================
   PROCESS & STEPS - FLEXBOX LAYOUT
   ========================================================================== */

.steps,
.stages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step,
.stage {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover,
.stage:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(167, 139, 250, 0.2);
}

.step-number {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, #D8B5FF 0%, #F9A8D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step h3,
.stage h3 {
  color: #7C6BA3;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p,
.stage p {
  color: #5A5A5A;
  font-size: 15px;
}

/* ==========================================================================
   CURRICULUM & TIMELINE
   ========================================================================== */

.curriculum-timeline,
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.module,
.timeline-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  border-left: 5px solid #D8B5FF;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.module:hover,
.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(167, 139, 250, 0.2);
}

.module-weeks,
.year {
  display: inline-block;
  background: linear-gradient(135deg, #D8B5FF 0%, #F9A8D4 100%);
  color: #4A4A4A;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.module h3,
.timeline-item h3 {
  color: #7C6BA3;
  margin-bottom: 12px;
}

.module p,
.timeline-item p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

.module ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module ul li {
  color: #5A5A5A;
  padding-left: 24px;
  position: relative;
}

.module ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #A78BFA;
  font-weight: 700;
}

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

.cta-section,
.cta-banner {
  background: linear-gradient(135deg, #D8B5FF 0%, #F9A8D4 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 60px;
}

.cta-section h2,
.cta-banner h2 {
  color: #4A4A4A;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-section p,
.cta-banner p {
  color: #2D2D2D;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: #FFF;
  color: #7C6BA3;
}

.cta-buttons .btn-primary:hover {
  background: #F5F5F5;
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: #2D2D2D;
  border: 2px solid #FFF;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.form-placeholder {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
}

.form-note {
  font-size: 16px;
  color: #6B5B95;
  margin-bottom: 20px;
}

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

.office-address,
.office-hours,
.office-transport {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
}

.office-address h3,
.office-hours h3,
.office-transport h3 {
  color: #7C6BA3;
  margin-bottom: 16px;
}

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

.page-hero.legal {
  padding: 60px 20px;
}

.last-updated {
  font-size: 14px;
  color: #7C6BA3;
  font-style: italic;
}

.legal-content {
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
}

.content-wrapper h2 {
  color: #7C6BA3;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E9D7FE;
}

.content-wrapper p {
  color: #5A5A5A;
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-wrapper ul {
  list-style: none;
  margin: 20px 0;
}

.content-wrapper ul li {
  padding: 10px 0;
  padding-left: 30px;
  color: #5A5A5A;
  position: relative;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #A78BFA;
  font-size: 20px;
}

.rights-list li {
  background: #F5EFFF;
  padding: 12px 12px 12px 40px;
  margin-bottom: 8px;
  border-radius: 8px;
}

.cookie-types {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0;
}

.cookie-type {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  background: #F5EFFF;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #D8B5FF;
}

.cookie-type h3 {
  color: #7C6BA3;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-legal {
  background: linear-gradient(135deg, #F5EFFF 0%, #FFE8F0 100%);
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

.contact-legal h2 {
  color: #7C6BA3;
  margin-bottom: 16px;
}

.contact-legal p {
  color: #5A5A5A;
  margin-bottom: 8px;
}

.contact-legal a {
  color: #A78BFA;
  font-weight: 600;
}

.contact-legal a:hover {
  color: #8B5CF6;
  text-decoration: underline;
}

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

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0F4FF 100%);
  border-radius: 24px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D8B5FF 0%, #F9A8D4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #FFF;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(167, 139, 250, 0.3);
}

.confirmation-message {
  font-size: 18px;
  color: #6B5B95;
  max-width: 600px;
  margin: 0 auto 32px;
}

.next-steps {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  max-width: 700px;
  margin: 40px auto 0;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
}

.next-steps h3 {
  color: #7C6BA3;
  margin-bottom: 20px;
}

.next-steps ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.next-steps ul li {
  padding: 10px 0 10px 30px;
  color: #5A5A5A;
  position: relative;
}

.next-steps ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A78BFA;
  font-weight: 700;
}

.response-time {
  color: #7C6BA3;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
}

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

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(167, 139, 250, 0.2);
}

.action-card h3 {
  color: #7C6BA3;
  margin-bottom: 12px;
}

.action-card p {
  color: #5A5A5A;
  margin-bottom: 20px;
}

.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(167, 139, 250, 0.15);
  text-align: center;
}

.testimonial-featured .quote {
  font-size: 20px;
  font-style: italic;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-info {
  font-size: 18px;
  color: #6B5B95;
  margin-top: 20px;
}

.contact-info a {
  color: #A78BFA;
  font-weight: 600;
}

.contact-info a:hover {
  color: #8B5CF6;
  text-decoration: underline;
}

/* ==========================================================================
   CAREER PAGE SPECIFICS
   ========================================================================== */

.salary-table {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
  margin: 32px 0;
}

.salary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid #E9D7FE;
  flex-wrap: wrap;
  gap: 16px;
}

.salary-row:last-child {
  border-bottom: none;
}

.salary-row:hover {
  background: #F5EFFF;
}

.salary-row .role {
  color: #5A5A5A;
  font-weight: 600;
  font-size: 16px;
}

.salary-row .range {
  color: #A78BFA;
  font-weight: 700;
  font-size: 18px;
}

.salary-note {
  color: #7C6BA3;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

.path-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.salary,
.time {
  background: linear-gradient(135deg, #F5EFFF 0%, #FFE8F0 100%);
  color: #7C6BA3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.skills span {
  background: #FFF;
  border: 2px solid #E9D7FE;
  color: #7C6BA3;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

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

footer {
  background: linear-gradient(135deg, #4A4A4A 0%, #6B5B95 100%);
  color: #FFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col p {
  color: #E9D7FE;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

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

.footer-col ul li a {
  color: #E9D7FE;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FFF;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(233, 215, 254, 0.3);
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #E9D7FE;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FFF;
}

.footer-bottom p {
  color: #E9D7FE;
  font-size: 13px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #6B5B95 0%, #4A4A4A 100%);
  color: #FFF;
  padding: 24px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #E9D7FE;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

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

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

.modal-content {
  background: linear-gradient(135deg, #FFF5F7 0%, #F0F4FF 100%);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(167, 139, 250, 0.3);
}

.modal-content h3 {
  color: #7C6BA3;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #6B5B95;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  color: #5A5A5A;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #5A5A5A;
  font-size: 14px;
  cursor: pointer;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION SPACING & ALIGNMENT PATTERNS
   ========================================================================== */

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #6B5B95;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-image-section .text-content {
  flex: 1 1 400px;
}

.text-image-section .image-content {
  flex: 1 1 400px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  margin-bottom: 20px;
}

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
  margin-bottom: 20px;
}

.benefit-item h3 {
  color: #7C6BA3;
  font-size: 18px;
}

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

.overview-item {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
  margin-bottom: 20px;
}

.overview-item h3 {
  color: #7C6BA3;
  font-size: 16px;
  margin-bottom: 8px;
}

.overview-item p {
  color: #5A5A5A;
  font-size: 14px;
}

.price-highlight {
  color: #A78BFA;
  font-size: 32px;
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================================================== */

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Section padding */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  .hero,
  .page-hero {
    padding: 60px 16px;
  }

  /* Card layouts - single column */
  .benefit-card,
  .course-card,
  .testimonial-card,
  .package-card,
  .path-card,
  .strategy-card,
  .value-card,
  .principle-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Steps & stages */
  .step,
  .stage {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Stats grid */
  .stat {
    flex: 1 1 calc(50% - 16px);
  }

  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }

  /* CTA buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Modal */
  .modal-content {
    padding: 24px;
  }

  /* Salary table */
  .salary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Office details */
  .office-address,
  .office-hours,
  .office-transport {
    flex: 1 1 100%;
  }

  /* Overview grid */
  .overview-item {
    flex: 1 1 calc(50% - 12px);
  }

  /* Thank you page */
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }

  .next-steps {
    padding: 24px;
  }

  .testimonial-featured {
    padding: 32px 24px;
  }

  .testimonial-featured .quote {
    font-size: 18px;
  }

  /* Content wrapper */
  .content-wrapper {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .overview-item {
    flex: 1 1 100%;
  }

  .container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   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);
  }
}

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease;
}

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

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

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

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

.hidden {
  display: none;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  header,
  footer {
    display: none;
  }

  body {
    background: #FFF;
  }

  .container {
    max-width: 100%;
  }
}