/* =================================================================
   VIOLET RIFT - TECH FUTURISTIC DESIGN SYSTEM
   CSS Reset, Variables, Base Styles, and Component Styling
   ================================================================= */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style-position: inside;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(107, 70, 193, 0.5);
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #B8B8B8;
}

strong {
  font-weight: 600;
  color: #FFFFFF;
}

blockquote {
  border-left: 4px solid #6B46C1;
  padding: 20px 24px;
  margin: 32px 0;
  background: rgba(107, 70, 193, 0.1);
  font-style: italic;
  color: #E0E0E0;
  position: relative;
}

blockquote::before {
  content: '"';
  font-size: 60px;
  color: #6B46C1;
  position: absolute;
  left: 10px;
  top: 10px;
  opacity: 0.3;
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

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

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

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

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 70, 193, 0.3);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.2);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(107, 70, 193, 0.5));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: #E0E0E0;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6B46C1, #F59E0B);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #FFFFFF;
  background: rgba(107, 70, 193, 0.2);
}

.nav-menu a:hover::before {
  width: 80%;
}

/* =================================================================
   MOBILE NAVIGATION
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #6B46C1, #8B5CF6);
  color: #FFFFFF;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(107, 70, 193, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1a1f3a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  border-left: 2px solid rgba(107, 70, 193, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 28px;
  padding: 8px 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E0E0E0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(107, 70, 193, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6B46C1, #F59E0B);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFFFFF;
  background: rgba(107, 70, 193, 0.2);
  padding-left: 30px;
}

.mobile-nav a:hover::before {
  transform: scaleY(1);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

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

.hero {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: 18px;
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subheadline {
  font-size: 20px;
  color: #B8B8B8;
  margin-bottom: 32px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #6B46C1, #8B5CF6);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(107, 70, 193, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #6B46C1;
  box-shadow: 0 2px 10px rgba(107, 70, 193, 0.2);
}

.btn-secondary:hover {
  background: rgba(107, 70, 193, 0.2);
  border-color: #8B5CF6;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.4);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-indicators {
  font-size: 14px;
  color: #B8B8B8;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* =================================================================
   CARD SYSTEMS (FLEXBOX ONLY)
   ================================================================= */

.feature-grid,
.service-grid,
.course-grid,
.testimonial-grid,
.stats-grid,
.benefit-grid,
.program-grid,
.team-grid,
.category-grid,
.resource-grid,
.article-grid,
.tips-grid,
.methods-grid,
.outcome-grid,
.impact-grid,
.metrics-grid,
.story-grid,
.value-grid,
.pricing-grid,
.steps-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.feature-card,
.service-card,
.course-card,
.testimonial-card,
.stat-item,
.benefit-card,
.program-card,
.team-card,
.category-card,
.resource-card,
.article-card,
.tip-card,
.method-card,
.outcome-card,
.impact-card,
.metric-card,
.story-card,
.value-card,
.pricing-card,
.step-card,
.action-card,
.case-study-card {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before,
.service-card::before,
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6B46C1, #F59E0B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before,
.service-card:hover::before,
.course-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover,
.service-card:hover,
.course-card:hover,
.testimonial-card:hover,
.benefit-card:hover,
.program-card:hover,
.team-card:hover,
.category-card:hover,
.resource-card:hover,
.article-card:hover,
.tip-card:hover,
.method-card:hover,
.outcome-card:hover,
.story-card:hover,
.value-card:hover,
.action-card:hover,
.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(107, 70, 193, 0.3);
  border-color: rgba(107, 70, 193, 0.6);
  background: rgba(26, 31, 58, 0.8);
}

.feature-card img,
.category-card img,
.tip-card img,
.method-card img,
.outcome-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(107, 70, 193, 0.5));
}

.feature-card h3,
.service-card h3,
.course-card h3,
.benefit-card h3,
.program-card h3,
.team-card h3,
.category-card h3,
.resource-card h3,
.article-card h3,
.tip-card h3,
.method-card h3,
.outcome-card h3,
.story-card h3,
.value-card h3,
.pricing-card h3,
.step-card h3,
.action-card h3,
.case-study-card h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.feature-card p,
.service-card p,
.course-card p,
.benefit-card p,
.program-card p,
.team-card p,
.category-card p,
.resource-card p,
.article-card p,
.tip-card p,
.method-card p,
.outcome-card p,
.story-card p,
.value-card p,
.action-card p,
.case-study-card p {
  color: #B8B8B8;
  margin-bottom: 16px;
}

/* Course-Specific Styling */
.course-card {
  flex: 1 1 calc(50% - 24px);
}

.course-card.popular {
  border-color: #F59E0B;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B, #FFA500);
  color: #0A0E27;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

.course-level {
  display: inline-block;
  background: rgba(107, 70, 193, 0.2);
  color: #8B5CF6;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(107, 70, 193, 0.3);
}

.course-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.course-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #E0E0E0;
  border-bottom: 1px solid rgba(107, 70, 193, 0.2);
}

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

.course-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-weight: bold;
  font-size: 18px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #F59E0B;
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.15), rgba(245, 158, 11, 0.1));
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
  background: transparent;
  border: none;
  padding: 20px;
}

.stat-item:hover {
  transform: scale(1.05);
  background: transparent;
  box-shadow: none;
}

.stat-item h3 {
  font-size: 48px;
  color: #F59E0B;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.stat-item p {
  font-size: 16px;
  color: #E0E0E0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
  background: rgba(26, 31, 58, 0.4);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(107, 70, 193, 0.3);
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(107, 70, 193, 0.3);
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #E0E0E0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: #B8B8B8;
  font-size: 14px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: #FFFFFF;
  display: block;
  margin-bottom: 4px;
}

.rating {
  color: #F59E0B;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.author {
  color: #B8B8B8;
  font-size: 14px;
  margin-top: 16px;
}

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #B8B8B8;
  max-width: 700px;
  margin: 0 auto 32px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.problems ul {
  list-style: none;
  padding: 0;
}

.problems li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  color: #E0E0E0;
  border-bottom: 1px solid rgba(107, 70, 193, 0.2);
}

.problems li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #FF5555;
  font-size: 24px;
  font-weight: bold;
}

.solution {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.2), rgba(245, 158, 11, 0.1));
  padding: 24px;
  border-left: 4px solid #F59E0B;
  border-radius: 8px;
  font-size: 18px;
  color: #E0E0E0;
  font-weight: 500;
}

/* Text-Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* Story Section */
.story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Mission Section */
.mission-statement,
.vision-statement {
  font-size: 18px;
  line-height: 1.8;
  padding: 24px;
  background: rgba(107, 70, 193, 0.1);
  border-left: 4px solid #6B46C1;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* Team Cards */
.title {
  color: #F59E0B;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Value Props List */
.value-props {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
}

.value-props li {
  background: rgba(107, 70, 193, 0.2);
  padding: 12px 20px;
  border-radius: 8px;
  color: #E0E0E0;
  font-weight: 500;
  border: 1px solid rgba(107, 70, 193, 0.3);
  flex: 0 0 auto;
}

/* FAQ Section */
.faq {
  background: rgba(26, 31, 58, 0.4);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background: rgba(10, 14, 39, 0.6);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(107, 70, 193, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(107, 70, 193, 0.6);
  box-shadow: 0 8px 30px rgba(107, 70, 193, 0.2);
}

.faq-item h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #B8B8B8;
  line-height: 1.8;
}

/* Results/Outcomes */
.results {
  list-style: none;
  padding: 0;
}

.results li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #E0E0E0;
  border-bottom: 1px solid rgba(107, 70, 193, 0.2);
}

.results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-weight: bold;
  font-size: 20px;
}

.improvement {
  color: #F59E0B;
  font-weight: 700;
  font-size: 18px;
  margin-top: 8px;
}

/* Step Numbers */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6B46C1, #8B5CF6);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

/* Meta Information */
.meta {
  color: #8B5CF6;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.downloads {
  color: #F59E0B;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

.resource-type,
.program,
.industry {
  display: inline-block;
  background: rgba(107, 70, 193, 0.2);
  color: #8B5CF6;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(107, 70, 193, 0.3);
}

/* Contact Methods */
.detail {
  color: #F59E0B;
  font-weight: 600;
  font-size: 18px;
  margin: 12px 0;
}

.availability,
.hours {
  color: #8B5CF6;
  font-size: 14px;
  margin-top: 8px;
}

/* Contact Form */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: #E0E0E0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-placeholder {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(107, 70, 193, 0.3);
  padding: 14px 16px;
  border-radius: 8px;
  color: #B8B8B8;
  font-size: 14px;
}

.privacy-note {
  font-size: 12px;
  color: #8B5CF6;
  text-align: center;
  margin-top: 16px;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px rgba(107, 70, 193, 0.5));
}

/* Location Details */
.location-details {
  background: rgba(26, 31, 58, 0.6);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(107, 70, 193, 0.3);
  margin-top: 32px;
}

.location-details p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Duration Labels */
.duration {
  color: #8B5CF6;
  font-weight: 600;
  font-size: 14px;
  margin: 16px 0;
}

/* Legal Content */
.legal-content {
  background: rgba(26, 31, 58, 0.4);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.legal-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(107, 70, 193, 0.3);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

/* =================================================================
   CTA BANNER
   ================================================================= */

.cta-banner {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.3), rgba(245, 158, 11, 0.2));
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-banner h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 18px;
  color: #E0E0E0;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.guarantee,
.contact-info {
  font-size: 14px;
  color: #B8B8B8;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

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

footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(107, 70, 193, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(107, 70, 193, 0.5));
}

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

footer h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a,
.footer-contact p {
  color: #B8B8B8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F59E0B;
}

.footer-contact p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(107, 70, 193, 0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.footer-bottom p {
  color: #8B5CF6;
  font-size: 13px;
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(107, 70, 193, 0.5);
  padding: 20px;
  z-index: 1998;
  box-shadow: 0 -5px 30px rgba(107, 70, 193, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.cookie-accept {
  background: linear-gradient(135deg, #6B46C1, #8B5CF6);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #E0E0E0;
  border: 1px solid rgba(107, 70, 193, 0.5);
}

.cookie-reject:hover {
  background: rgba(107, 70, 193, 0.2);
  border-color: #6B46C1;
}

.cookie-settings {
  background: transparent;
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.5);
}

.cookie-settings:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #F59E0B;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
  border: 2px solid rgba(107, 70, 193, 0.5);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(107, 70, 193, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-modal-header h2 {
  color: #FFFFFF;
  margin: 0;
}

.cookie-modal-close {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: rgba(107, 70, 193, 0.3);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #6B46C1;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  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 {
  color: #B8B8B8;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(107, 70, 193, 0.3);
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .feature-card,
  .service-card,
  .course-card,
  .testimonial-card,
  .benefit-card,
  .program-card,
  .team-card,
  .category-card,
  .resource-card,
  .article-card,
  .tip-card,
  .method-card,
  .outcome-card,
  .story-card,
  .value-card,
  .pricing-card,
  .step-card,
  .action-card,
  .case-study-card {
    flex: 1 1 100%;
    min-width: 0;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .cookie-modal-content {
    width: 95%;
    padding: 20px;
  }
  
  .stat-item h3 {
    font-size: 28px;
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #F59E0B;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}