/* ==========================================================================
   WISSENBOX - TECH FUTURISTIC DESIGN SYSTEM
   Modern, innovative education platform with cutting-edge aesthetics
   ========================================================================== */

/* 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, Arial, sans-serif;
  line-height: 1.6;
  color: #E8F4F8;
  background: linear-gradient(135deg, #0a1929 0%, #1a2f4a 50%, #0a1929 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

/* TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #E8F4F8 0%, #2B5F9E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

strong {
  font-weight: 700;
  color: #F4A261;
}

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

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

/* HEADER & NAVIGATION
   ========================================================================== */
header {
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(43, 95, 158, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(43, 95, 158, 0.2);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(43, 95, 158, 0.5));
}

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

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

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

.nav-menu li a:hover {
  color: #F4A261;
  background: rgba(244, 162, 97, 0.1);
  transform: translateY(-2px);
}

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

/* MOBILE MENU
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 100%);
  border: none;
  color: white;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(43, 95, 158, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(244, 162, 97, 0.5);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0a1929 0%, #1a2f4a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(244, 162, 97, 0.2);
  border: 2px solid #F4A261;
  color: #F4A261;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #E8F4F8;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(43, 95, 158, 0.1);
  border: 1px solid rgba(43, 95, 158, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 100%);
  color: white;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* HERO SECTIONS
   ========================================================================== */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
  border-radius: 24px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(43, 95, 158, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(43, 95, 158, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  color: #E8F4F8;
  margin-bottom: 32px;
  line-height: 1.8;
}

.trust-indicators,
.response-promise,
.guarantee,
.last-updated {
  font-size: 14px;
  color: #F4A261;
  margin-top: 24px;
  font-weight: 600;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 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 30px rgba(244, 162, 97, 0.4);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(43, 95, 158, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 162, 97, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #E8F4F8;
  border: 2px solid #2B5F9E;
}

.btn-secondary:hover {
  background: rgba(43, 95, 158, 0.2);
  border-color: #F4A261;
  color: #F4A261;
  transform: translateY(-3px);
}

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

/* CARDS & GRIDS
   ========================================================================== */
.benefits-grid,
.services-grid,
.courses-grid,
.features-grid,
.formats-grid,
.values-grid,
.stats-grid,
.info-grid,
.departments-grid,
.trust-grid,
.action-cards,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.course-card,
.feature,
.format-card,
.value,
.stat-card,
.info-card,
.department-card,
.trust-item,
.action-card,
.contact-option {
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.1) 0%, rgba(10, 25, 41, 0.8) 100%);
  border: 1px solid rgba(43, 95, 158, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.course-card::before,
.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.course-card:hover::before,
.action-card:hover::before {
  left: 100%;
}

.benefit-card:hover,
.service-card:hover,
.course-card:hover,
.format-card:hover,
.action-card:hover {
  transform: translateY(-8px);
  border-color: #F4A261;
  box-shadow: 0 12px 40px rgba(244, 162, 97, 0.3);
}

.benefit-card img,
.feature img,
.value img,
.info-card img,
.action-card img,
.contact-option img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(43, 95, 158, 0.5));
}

.benefit-card h3,
.service-card h3,
.course-card h4,
.feature h3,
.format-card h3,
.value h4,
.info-card h3,
.action-card h3 {
  color: #F4A261;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.course-card p,
.feature p,
.format-card p,
.value p,
.info-card p {
  color: #E8F4F8;
  font-size: 14px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #F4A261;
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(244, 162, 97, 0.3);
}

.price span {
  font-size: 14px;
  color: #E8F4F8;
}

.price-detail {
  font-size: 14px;
  color: #E8F4F8;
  margin-top: 8px;
}

/* FLEXBOX LAYOUTS - NO GRID ALLOWED */
.benefit-card,
.service-card,
.course-card,
.feature,
.format-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.value,
.stat-card,
.info-card,
.department-card,
.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.trust-item,
.contact-option {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
}

/* STATS SECTION
   ========================================================================== */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding: 40px 20px;
  background: rgba(43, 95, 158, 0.1);
  border-radius: 16px;
}

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

.stat strong {
  display: block;
  font-size: 48px;
  color: #F4A261;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(244, 162, 97, 0.5);
}

.stat p {
  font-size: 14px;
  color: #E8F4F8;
}

/* TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.05) 0%, rgba(244, 162, 97, 0.05) 100%);
  border-radius: 24px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: rgba(232, 244, 248, 0.95);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #F4A261;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
}

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

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

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

.testimonial-author span {
  color: #1a2f4a;
  font-size: 14px;
}

.rating {
  text-align: center;
  font-size: 18px;
  margin-top: 32px;
  color: #F4A261;
}

.testimonial-card.featured {
  flex: 1 1 100%;
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.98) 0%, rgba(43, 95, 158, 0.1) 100%);
}

/* PRICING TIERS
   ========================================================================== */
.pricing-category {
  margin-bottom: 60px;
  padding: 40px 0;
}

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.1) 0%, rgba(10, 25, 41, 0.9) 100%);
  border: 2px solid rgba(43, 95, 158, 0.3);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #F4A261;
  box-shadow: 0 15px 50px rgba(244, 162, 97, 0.4);
}

.pricing-card.featured {
  border-color: #F4A261;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.2) 0%, rgba(43, 95, 158, 0.2) 100%);
  transform: scale(1.05);
}

.pricing-card h4 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #F4A261;
}

.pricing-card .price {
  font-size: 48px;
  margin: 24px 0;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(43, 95, 158, 0.2);
  color: #E8F4F8;
  font-size: 14px;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 24px;
}

/* COURSE CATEGORIES
   ========================================================================== */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.category-btn {
  padding: 12px 24px;
  background: rgba(43, 95, 158, 0.2);
  border: 2px solid rgba(43, 95, 158, 0.3);
  border-radius: 30px;
  color: #E8F4F8;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.course-section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(43, 95, 158, 0.2);
}

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #E8F4F8;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.language-badges,
.subjects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
  justify-content: center;
}

.badge,
.subject {
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.3) 0%, rgba(244, 162, 97, 0.2) 100%);
  border: 1px solid rgba(43, 95, 158, 0.5);
  border-radius: 20px;
  color: #E8F4F8;
  font-size: 14px;
  font-weight: 600;
}

.success-rate,
.special-offer,
.pricing-note {
  text-align: center;
  color: #F4A261;
  font-weight: 600;
  margin: 24px 0;
  font-size: 16px;
}

/* PROCESS & TIMELINE
   ========================================================================== */
.process-steps,
.steps-grid,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.step,
.step-card,
.timeline-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.1) 0%, rgba(10, 25, 41, 0.8) 100%);
  border: 1px solid rgba(43, 95, 158, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover,
.step-card:hover,
.timeline-item:hover {
  transform: translateY(-5px);
  border-color: #F4A261;
  box-shadow: 0 8px 25px rgba(244, 162, 97, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(244, 162, 97, 0.4);
}

.timeline-item strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
  color: #F4A261;
}

/* MISSION & VISION
   ========================================================================== */
.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

.mission-box {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.15) 0%, rgba(244, 162, 97, 0.1) 100%);
  border: 2px solid rgba(43, 95, 158, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
}

.mission-box h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.approach-grid,
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.principle {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: rgba(43, 95, 158, 0.1);
  border-left: 4px solid #F4A261;
  border-radius: 12px;
  margin-bottom: 20px;
}

.achievements {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1) 0%, rgba(43, 95, 158, 0.1) 100%);
  border-radius: 16px;
}

.achievements h3 {
  margin-bottom: 20px;
}

.achievements ul li {
  padding: 12px 0;
  color: #E8F4F8;
  font-size: 16px;
}

/* LOCATION & CONTACT INFO
   ========================================================================== */
.location-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.1) 0%, rgba(10, 25, 41, 0.8) 100%);
  border: 1px solid rgba(43, 95, 158, 0.3);
  border-radius: 20px;
}

.directions {
  margin-top: 32px;
  padding: 24px;
  background: rgba(232, 244, 248, 0.05);
  border-radius: 12px;
}

.directions h3 {
  margin-bottom: 16px;
}

.directions p {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* FORMS
   ========================================================================== */
.contact-form-section {
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.1) 0%, rgba(10, 25, 41, 0.9) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(43, 95, 158, 0.3);
}

.form-note {
  background: rgba(244, 162, 97, 0.1);
  border-left: 4px solid #F4A261;
  padding: 20px;
  margin-bottom: 32px;
  border-radius: 8px;
}

.form-note p {
  margin-bottom: 12px;
  color: #E8F4F8;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #E8F4F8;
  font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(232, 244, 248, 0.05);
  border: 2px solid rgba(43, 95, 158, 0.3);
  border-radius: 12px;
  color: #E8F4F8;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F4A261;
  background: rgba(232, 244, 248, 0.1);
  box-shadow: 0 0 20px rgba(244, 162, 97, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
}

.checkbox-label a {
  color: #F4A261;
  text-decoration: underline;
}

/* LEGAL CONTENT
   ========================================================================== */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.05) 0%, rgba(10, 25, 41, 0.8) 100%);
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid rgba(43, 95, 158, 0.3);
}

.content-wrapper h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper ul li,
.content-wrapper ol li {
  margin-bottom: 8px;
  color: #E8F4F8;
  line-height: 1.8;
}

.content-wrapper ul {
  list-style: none;
}

.content-wrapper ul li::before {
  content: '→';
  color: #F4A261;
  font-weight: bold;
  margin-right: 12px;
}

.content-wrapper a {
  color: #F4A261;
  text-decoration: underline;
}

.guarantee-list {
  list-style: none;
  margin-top: 24px;
}

.guarantee-list li {
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(244, 162, 97, 0.1);
  border-left: 4px solid #F4A261;
  border-radius: 8px;
}

/* CTA BANNERS
   ========================================================================== */
.cta-banner {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.2) 0%, rgba(244, 162, 97, 0.2) 100%);
  border-radius: 24px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FINANCING & OPTIONS
   ========================================================================== */
.financing-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-around;
}

.option {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.option img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 10px rgba(43, 95, 158, 0.5));
}

/* NEXT STEPS & ACTIONS
   ========================================================================== */
.next-steps {
  padding: 60px 20px;
}

.steps,
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 32px auto;
}

.step {
  padding: 20px;
  background: linear-gradient(135deg, rgba(43, 95, 158, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
  border-left: 4px solid #F4A261;
  border-radius: 12px;
  color: #E8F4F8;
  font-size: 16px;
}

.timeline,
.response-time {
  text-align: center;
  font-size: 14px;
  color: #F4A261;
  margin-top: 24px;
}

.nav-link {
  padding: 16px 24px;
  background: rgba(43, 95, 158, 0.2);
  border: 2px solid rgba(43, 95, 158, 0.3);
  border-radius: 12px;
  text-align: center;
  color: #E8F4F8;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 100%);
  color: white;
  transform: translateX(5px);
}

/* FOOTER
   ========================================================================== */
footer {
  background: linear-gradient(135deg, #0a1929 0%, #1a2f4a 100%);
  border-top: 2px solid rgba(43, 95, 158, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #F4A261;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #F4A261;
}

.footer-section p {
  font-size: 14px;
  color: #E8F4F8;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(43, 95, 158, 0.2);
}

.footer-bottom p {
  color: #E8F4F8;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a1929 0%, #1a2f4a 100%);
  border-top: 2px solid #F4A261;
  padding: 24px;
  z-index: 1500;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #E8F4F8;
}

.cookie-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #F4A261;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, #2B5F9E 0%, #F4A261 100%);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.cookie-reject {
  background: transparent;
  border: 2px solid rgba(43, 95, 158, 0.5);
  color: #E8F4F8;
}

.cookie-reject:hover {
  border-color: #F4A261;
  color: #F4A261;
}

.cookie-settings {
  background: rgba(43, 95, 158, 0.3);
  color: #E8F4F8;
}

.cookie-settings:hover {
  background: rgba(43, 95, 158, 0.5);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0a1929 0%, #1a2f4a 100%);
  border: 2px solid #F4A261;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(43, 95, 158, 0.1);
  border-radius: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #F4A261;
}

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

.cookie-toggle.active::after {
  left: 27px;
}

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

/* RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .benefit-card,
  .service-card,
  .course-card,
  .feature,
  .format-card,
  .value,
  .stat-card,
  .info-card,
  .pricing-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .stats {
    flex-direction: column;
  }
  
  .step,
  .step-card,
  .timeline-item {
    flex: 1 1 100%;
  }
  
  .mission-box {
    flex: 1 1 100%;
  }
  
  .principle {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .benefit-card,
  .service-card,
  .course-card {
    padding: 24px;
  }
  
  .pricing-card {
    padding: 32px 20px;
  }
  
  .content-wrapper {
    padding: 40px 24px;
  }
  
  .form-container {
    padding: 32px 20px;
  }
}

/* ANIMATIONS & TRANSITIONS
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES
   ========================================================================== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* PRINT STYLES
   ========================================================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-banner {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    -webkit-text-fill-color: initial;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}