/* ============================================
   BitumVerna - Soft Pastel Design Style CSS
   Modern English Learning 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 50%, #E6F3FF 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   ============================================ */
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;
  color: #9B7FA0;
  text-shadow: 2px 2px 4px rgba(155, 127, 160, 0.1);
}

h2 {
  font-size: 36px;
  color: #8B7BA8;
}

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

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

strong {
  font-weight: 600;
  color: #6B5B95;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* FLEXBOX LAYOUTS ONLY - NO GRID */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  box-shadow: 0 4px 12px rgba(155, 127, 160, 0.1);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(155, 127, 160, 0.2));
}

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

.main-nav a {
  color: #6B5B95;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.main-nav a:hover {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  color: #8B5A9F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 127, 160, 0.2);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #6B5B95;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(155, 127, 160, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  box-shadow: -4px 0 20px rgba(155, 127, 160, 0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #6B5B95;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(155, 127, 160, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #FF9EC1 0%, #D090DD 100%);
}

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

.mobile-nav a {
  color: #6B5B95;
  font-weight: 500;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(155, 127, 160, 0.1);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.2);
}

/* ============================================
   BUTTONS - SOFT PASTEL DESIGN
   ============================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  color: #5A4068;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(221, 160, 221, 0.3);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(221, 160, 221, 0.4);
  background: linear-gradient(135deg, #FFA0B5 0%, #D090DD 100%);
}

.btn-secondary {
  display: inline-block;
  background: linear-gradient(135deg, #B8E0F6 0%, #D4C5F9 100%);
  color: #5A4068;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(184, 224, 246, 0.3);
  text-align: center;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 224, 246, 0.4);
  background: linear-gradient(135deg, #A0D0F0 0%, #C0B0F5 100%);
}

/* ============================================
   HERO SECTION - SOFT PASTEL
   ============================================ */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 50%, #E6F3FF 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(155, 127, 160, 0.1);
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #9B7FA0;
  line-height: 1.2;
}

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

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.1);
}

.trust-number {
  font-size: 32px;
  font-weight: 700;
  color: #9B7FA0;
}

.trust-label {
  font-size: 14px;
  color: #6B5B95;
  text-align: center;
}

/* ============================================
   BENEFITS & FEATURES GRID
   ============================================ */
.platform-benefits {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
}

.benefit-card h3 {
  color: #9B7FA0;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #5A5A5A;
  line-height: 1.7;
}

/* ============================================
   SERVICES GRID - FLEXBOX ONLY
   ============================================ */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
  background: linear-gradient(135deg, #FFE8F0 0%, #E8D4FF 100%);
}

.service-card h3 {
  color: #9B7FA0;
  font-size: 22px;
}

.service-card p {
  color: #5A5A5A;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #9B7FA0;
  margin: 16px 0;
}

.services-highlights {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  border-radius: 20px;
  color: #6B5B95;
  font-weight: 600;
  font-size: 18px;
}

/* ============================================
   TESTIMONIALS - DARK TEXT ON LIGHT BG
   ============================================ */
.testimonials {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  padding: 32px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 2px solid rgba(155, 127, 160, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
  border-color: rgba(155, 127, 160, 0.3);
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #3A3A3A;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  color: #5A5A5A;
  margin-bottom: 12px;
}

.testimonial-author strong {
  color: #6B5B95;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.testimonial-rating {
  color: #FFB6C1;
  font-size: 20px;
  margin-bottom: 8px;
}

.trust-badge {
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
  color: #9B7FA0;
  font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 50%, #D4E8FF 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(155, 127, 160, 0.2);
}

.cta-content h2 {
  color: #8B5A9F;
  margin-bottom: 20px;
  font-size: 36px;
}

.cta-content p {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, #F0E6FF 0%, #E6F3FF 100%);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 3px solid rgba(155, 127, 160, 0.2);
}

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

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

.footer-section h3 {
  color: #9B7FA0;
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-section p {
  color: #5A5A5A;
  margin-bottom: 12px;
  line-height: 1.7;
}

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

.footer-nav a {
  color: #6B5B95;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #9B7FA0;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(155, 127, 160, 0.1);
  color: #6B5B95;
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */
.page-hero {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: #9B7FA0;
  font-size: 14px;
}

.breadcrumbs a {
  color: #6B5B95;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #9B7FA0;
}

.subtitle {
  font-size: 20px;
  color: #6B5B95;
  max-width: 800px;
}

/* ============================================
   SERVICES DETAILED PAGE
   ============================================ */
.services-detailed {
  padding: 40px 20px;
}

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

.service-detail-card {
  padding: 40px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
}

.service-detail-card h3 {
  color: #9B7FA0;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-detail-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #9B7FA0;
  margin: 20px 0;
}

.service-detail-card .benefits {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-card .benefits li {
  padding-left: 28px;
  position: relative;
  color: #5A5A5A;
  line-height: 1.7;
}

.service-detail-card .benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB6C1;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   CURRICULUM & SKILLS
   ============================================ */
.curriculum-overview {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 60px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.skill-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
}

.skill-card h3 {
  color: #9B7FA0;
  margin-bottom: 12px;
}

.skill-card p {
  color: #5A5A5A;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.mission-vision {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.1);
}

.text-section h3 {
  color: #9B7FA0;
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section ul {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-section ul li {
  padding-left: 28px;
  position: relative;
  color: #5A5A5A;
  line-height: 1.7;
}

.text-section ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB6C1;
  font-weight: 700;
}

.story-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  margin-bottom: 20px;
}

.milestone .year {
  font-size: 32px;
  font-weight: 700;
  color: #9B7FA0;
  display: block;
  margin-bottom: 12px;
}

.milestone p {
  color: #5A5A5A;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #9B7FA0;
}

.stat-label {
  color: #6B5B95;
  font-weight: 500;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  padding: 60px 20px;
  margin-bottom: 40px;
}

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

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(155, 127, 160, 0.25);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #5A4068;
  box-shadow: 0 4px 16px rgba(221, 160, 221, 0.3);
}

.step-card h3 {
  color: #9B7FA0;
  margin-bottom: 12px;
}

.duration {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #B8E0F6 0%, #D4C5F9 100%);
  border-radius: 16px;
  font-size: 14px;
  color: #5A4068;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-table {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  border: 3px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.3);
  border-color: rgba(155, 127, 160, 0.3);
}

.pricing-card h3 {
  color: #9B7FA0;
  font-size: 24px;
  text-align: center;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #9B7FA0;
  text-align: center;
  margin: 16px 0;
}

.pricing-card .features {
  margin: 24px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .features li {
  padding-left: 28px;
  position: relative;
  color: #5A5A5A;
  line-height: 1.7;
}

.pricing-card .features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB6C1;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   PACKAGE DEALS
   ============================================ */
.package-deals {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 60px;
}

.packages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.3);
}

.package-card h3 {
  color: #8B5A9F;
  margin-bottom: 16px;
  font-size: 26px;
}

.package-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #9B7FA0;
  margin: 16px 0;
}

.per-lesson {
  font-size: 16px;
  color: #6B5B95;
  display: block;
  margin-top: 8px;
}

.savings {
  color: #5A4068;
  font-weight: 600;
  font-size: 18px;
  margin-top: 12px;
}

.note {
  text-align: center;
  color: #6B5B95;
  font-style: italic;
  margin-top: 24px;
}

/* ============================================
   INCLUDED FEATURES
   ============================================ */
.included-features {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 32px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
}

.included-list li {
  padding-left: 32px;
  position: relative;
  color: #5A5A5A;
  line-height: 1.7;
  font-size: 18px;
}

.included-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB6C1;
  font-weight: 700;
  font-size: 22px;
}

/* ============================================
   TESTIMONIALS FEATURED
   ============================================ */
.testimonials-featured {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.trust-stats span {
  padding: 12px 24px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  border-radius: 20px;
  color: #6B5B95;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(155, 127, 160, 0.2);
}

.testimonial-card .course {
  color: #9B7FA0;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

/* ============================================
   SUCCESS STORIES
   ============================================ */
.success-stories {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 60px;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.story-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  padding: 40px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
}

.story-card h3 {
  color: #9B7FA0;
  margin-bottom: 16px;
  font-size: 22px;
}

.timeline {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #B8E0F6 0%, #D4C5F9 100%);
  border-radius: 16px;
  font-size: 14px;
  color: #5A4068;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.contact-method {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
}

.contact-method .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.contact-method h3 {
  color: #9B7FA0;
  margin-bottom: 12px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #6B5B95;
  margin-bottom: 8px;
}

.contact-note {
  color: #5A5A5A;
  font-size: 14px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.form-notice {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 100%);
  padding: 24px;
  border-radius: 16px;
  margin: 24px auto;
  max-width: 700px;
  border: 2px solid rgba(155, 127, 160, 0.2);
}

.form-notice p {
  color: #5A4068;
  margin-bottom: 12px;
}

.form-notice strong {
  color: #8B5A9F;
}

.form-layout {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #6B5B95;
  font-weight: 600;
}

.input-placeholder {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(155, 127, 160, 0.2);
  border-radius: 12px;
  color: #9B7FA0;
  font-style: italic;
}

.checkbox-placeholder {
  padding: 12px;
  color: #6B5B95;
}

.button-placeholder {
  padding: 16px 32px;
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  border-radius: 25px;
  color: #5A4068;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 16px rgba(221, 160, 221, 0.3);
}

.privacy-note {
  text-align: center;
  color: #6B5B95;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

.office-hours {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.hours-info {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
}

.hours-info p {
  color: #5A5A5A;
  margin-bottom: 12px;
  font-size: 18px;
}

.hours-info strong {
  color: #9B7FA0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.effective-date {
  color: #6B5B95;
  font-style: italic;
  font-size: 14px;
}

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

.legal-content h2 {
  color: #9B7FA0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #A48DB8;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 50%, #D4E8FF 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(221, 160, 221, 0.4);
}

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

.next-steps .steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.next-steps .step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 300px;
  padding: 24px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  margin-bottom: 20px;
}

.next-steps .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #5A4068;
  margin: 0 auto 16px;
}

.meanwhile-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 60px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.action-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  padding: 40px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
}

.action-card h3 {
  color: #9B7FA0;
  margin-bottom: 12px;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-reminder h2 {
  margin-bottom: 24px;
}

.contact-reminder p {
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 12px;
}

.contact-reminder strong {
  color: #9B7FA0;
}

/* ============================================
   TRIAL OFFER
   ============================================ */
.trial-offer {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4FF 50%, #D4E8FF 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.guarantee {
  color: #6B5B95;
  font-weight: 600;
  font-size: 18px;
  margin-top: 24px;
}

/* ============================================
   TECHNICAL REQUIREMENTS
   ============================================ */
.technical-requirements {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 60px;
}

.requirements-list {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(155, 127, 160, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.requirements-list li {
  padding-left: 32px;
  position: relative;
  color: #5A5A5A;
  line-height: 1.7;
  font-size: 18px;
}

.requirements-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB6C1;
  font-weight: 700;
  font-size: 22px;
}

.requirements-list + p {
  text-align: center;
  margin-top: 24px;
  color: #6B5B95;
  font-weight: 600;
}

/* ============================================
   FLEXIBILITY FEATURES
   ============================================ */
.flexibility-features {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(155, 127, 160, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(155, 127, 160, 0.25);
}

.feature-card h3 {
  color: #9B7FA0;
  margin-bottom: 12px;
}

.feature-card p {
  color: #5A5A5A;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-bottom: 60px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(155, 127, 160, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid rgba(155, 127, 160, 0.2);
}

.cookie-banner.show {
  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 1 300px;
  color: #5A5A5A;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  color: #5A4068;
  box-shadow: 0 4px 12px rgba(221, 160, 221, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(221, 160, 221, 0.4);
}

.cookie-reject {
  background: linear-gradient(135deg, #B8E0F6 0%, #D4C5F9 100%);
  color: #5A4068;
  box-shadow: 0 4px 12px rgba(184, 224, 246, 0.3);
}

.cookie-reject:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 224, 246, 0.4);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.7);
  color: #6B5B95;
  border: 2px solid rgba(155, 127, 160, 0.2);
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(155, 127, 160, 0.4);
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 91, 149, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(155, 127, 160, 0.4);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #5A4068;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(221, 160, 221, 0.3);
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.cookie-modal h2 {
  color: #9B7FA0;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F8E8FF 100%);
  border-radius: 16px;
  border: 2px solid rgba(155, 127, 160, 0.1);
}

.cookie-category h3 {
  color: #9B7FA0;
  margin-bottom: 8px;
  font-size: 18px;
}

.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: 50px;
  height: 26px;
  appearance: none;
  background: #D4C5F9;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 100%);
}

.cookie-toggle input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked:before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hide desktop nav, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards - stack on mobile */
  .benefits-grid,
  .services-grid,
  .skills-grid,
  .features-grid,
  .stats-grid,
  .testimonials-grid,
  .stories-grid,
  .pricing-grid,
  .packages-list,
  .contact-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .skill-card,
  .feature-card,
  .stat-card,
  .testimonial-card,
  .story-card,
  .pricing-card,
  .package-card,
  .contact-method,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  /* Step cards */
  .step-card {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto 16px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 85%;
    max-width: 320px;
  }
  
  /* Milestones */
  .milestones {
    flex-direction: column;
  }
  
  .milestone {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .skill-card,
  .feature-card,
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pricing-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   SMOOTH TRANSITIONS & ANIMATIONS
   ============================================ */
@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,
.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(221, 160, 221, 0.5);
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .hero,
  .cta-section {
    background: white;
  }
}

/* END OF CSS */
