/* Fonts */
:root {
  --default-font: "DM Serif Display", serif, "Times New Roman", Times, serif;
  --heading-font: "DM Serif Display", serif, "Times New Roman", Times, serif;
  --nav-font: "DM Serif Display", serif, "Times New Roman", Times, serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #0a0a0a;
--default-color: #f8fafc;
--heading-color: #10b981;
--accent-color: #10b981;
--surface-color: #1f2937;
--contrast-color: #ffffff;
--bg-color: #0a0a0a;
--nav-color: #f8fafc;
--nav-hover-color: #10b981;
--nav-mobile-background-color: #1f2937;
--nav-dropdown-background-color: #0a0a0a;
--nav-dropdown-color: #f8fafc;
--nav-dropdown-hover-color: #10b981;
--gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
--gradient-secondary: linear-gradient(135deg, #1f2937 0%, #374151 100%);
--text-muted: #9ca3af;
--border-color: #374151;
--shadow-color: rgba(16, 185, 129, 0.1);

}

/* Color Presets */

.light-background {
  --background-color: #f8fafc;
  --surface-color: #ffffff;
  --default-color: #1f2937;
  --heading-color: #10b981;
  --accent-color: #10b981;
  --contrast-color: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --shadow-color: rgba(16, 185, 129, 0.05);
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #f8fafc;
  --heading-color: #10b981;
  --surface-color: #1f2937;
  --contrast-color: #ffffff;
  --text-muted: #9ca3af;
  --border-color: #374151;
  --shadow-color: rgba(16, 185, 129, 0.1);
}


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

/* Enhanced Design Elements */
.feature-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.cta-section {
  background: var(--gradient-secondary);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.cta-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-color);
  color: white;
}

.success-step {
  margin-bottom: 4rem;
  position: relative;
}

.success-step::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 2rem;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.success-step:last-child::after {
  display: none;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-image:hover .image-overlay {
  opacity: 0.9;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 2rem;
  color: white;
}

.contact-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
  color: white;
}

.faq-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(16, 185, 129, 0.05);
}

.faq-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.faq-icon i {
  font-size: 1.25rem;
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.testimonial-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent-color);
}

.stars {
  color: #fbbf24;
  margin: 1rem 0;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.section-title h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Enhanced Button Styles */
.btn-outline-light {
  border: 2px solid rgba(248, 250, 252, 0.3);
  color: #f8fafc;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(248, 250, 252, 0.1);
  border-color: #f8fafc;
  color: #f8fafc;
  transform: translateY(-2px);
}

/* Enhanced Form Styles */
.form-control {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--default-color);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem var(--shadow-color);
  color: var(--default-color);
}

.form-control::placeholder {
  color: var(--text-muted);
}

/* Enhanced Header Styles */
.header {
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid var(--border-color);
}

/* Enhanced Navigation Styles */
.navmenu ul li a {
  position: relative;
  transition: all 0.3s ease;
}

.navmenu ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.navmenu ul li a:hover::after {
  width: 100%;
}

/* Enhanced Card Hover Effects */
.about_elem {
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 1rem;
}

.about_elem:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateX(5px);
}

/* Enhanced Success Features */
.success-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.success-features .feature-item:hover {
  background: rgba(16, 185, 129, 0.05);
}

.success-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* Enhanced Swiper Styles */
.swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

/* Enhanced Scroll Top Button */
.scroll-top {
  background: var(--gradient-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

/* Enhanced Loading Animation */
#preloader {
  background: var(--background-color);
}

#preloader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  border-top: 3px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .cta-section {
    padding: 2rem;
  }
  
  .step-number {
    font-size: 3rem;
  }
}

/* Enhanced Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .light-background {
    --background-color: #0a0a0a;
    --surface-color: #1f2937;
    --default-color: #f8fafc;
    --text-muted: #9ca3af;
  }
}

/* Enhanced Footer Styles */
.footer {
  position: relative;
  overflow: hidden;
}

.footer .social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.footer ul li a:hover {
  color: #10b981 !important;
  transform: translateX(5px);
}

.footer .newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.footer .newsletter-form .form-control:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.footer-brand h3 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bottom a:hover {
  color: #10b981 !important;
  text-decoration: underline !important;
}

/* ========================================
   COMPLETELY REDESIGNED SECTIONS - 2025
======================================== */

/* ========================================
   HERO SECTION - REVOLUTIONARY DESIGN
======================================== */
.hero-revolutionary {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0f0f23 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
  animation: heroRevolutionary 25s ease-in-out infinite;
}

@keyframes heroRevolutionary {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(-30px) translateY(-15px) rotate(1deg); }
  50% { transform: translateX(30px) translateY(15px) rotate(-1deg); }
  75% { transform: translateX(-15px) translateY(30px) rotate(0.5deg); }
}

.hero-content-revolutionary {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge-revolutionary {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3rem;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
  animation: badgePulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-badge-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes badgeShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-title-revolutionary {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #10b981 30%, #059669 70%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 50px rgba(16, 185, 129, 0.4);
  animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-subtitle-revolutionary {
  font-size: 1.6rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats-revolutionary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card-revolutionary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.stat-card-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card-revolutionary:hover::before {
  transform: scaleX(1);
}

.stat-card-revolutionary:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.1) 100%);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
  border-color: #10b981;
}

.stat-number-revolutionary {
  font-size: 3rem;
  font-weight: 900;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.stat-label-revolutionary {
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons-revolutionary {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-primary-revolutionary {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1.5rem 4rem;
  border-radius: 70px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary-revolutionary:hover::before {
  left: 100%;
}

.btn-primary-revolutionary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.6);
  color: white;
}

.btn-outline-revolutionary {
  border: 3px solid #10b981;
  color: #10b981;
  padding: 1.5rem 4rem;
  border-radius: 70px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-outline-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline-revolutionary:hover::before {
  width: 100%;
}

.btn-outline-revolutionary:hover {
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.hero-visual-revolutionary {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-container-revolutionary {
  position: relative;
  width: 600px;
  height: 600px;
}

.hexagon-outer-revolutionary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 3px solid rgba(16, 185, 129, 0.4);
  animation: rotateRevolutionary 25s linear infinite;
}

.hexagon-inner-revolutionary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.1) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: rotateRevolutionary 20s linear infinite reverse;
}

.hexagon-center-revolutionary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.5);
  animation: centerPulse 4s ease-in-out infinite;
}

.hexagon-center-revolutionary i {
  font-size: 5rem;
  color: white;
  animation: iconRotate 8s linear infinite;
}

@keyframes rotateRevolutionary {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes centerPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes iconRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-element-revolutionary {
  position: absolute;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
  animation: floatRevolutionary 8s ease-in-out infinite;
}

.floating-element-revolutionary:nth-child(2) { top: 8%; left: 15%; width: 70px; height: 70px; animation-delay: 0s; }
.floating-element-revolutionary:nth-child(3) { top: 15%; right: 10%; width: 60px; height: 60px; animation-delay: 1.5s; }
.floating-element-revolutionary:nth-child(4) { bottom: 15%; left: 8%; width: 55px; height: 55px; animation-delay: 3s; }
.floating-element-revolutionary:nth-child(5) { bottom: 10%; right: 15%; width: 65px; height: 65px; animation-delay: 4.5s; }
.floating-element-revolutionary:nth-child(6) { top: 50%; left: 3%; width: 50px; height: 50px; animation-delay: 6s; }
.floating-element-revolutionary:nth-child(7) { top: 50%; right: 3%; width: 50px; height: 50px; animation-delay: 7.5s; }

.floating-element-revolutionary i {
  color: white;
  font-size: 1.8rem;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes floatRevolutionary {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-25px) rotate(270deg); }
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ========================================
   FEATURES SECTION - REVOLUTIONARY DESIGN
======================================== */
.features-revolutionary {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.features-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(16, 185, 129, 0.05) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(16, 185, 129, 0.05) 50%, transparent 52%);
  background-size: 80px 80px;
  animation: gridMoveRevolutionary 30s linear infinite;
}

@keyframes gridMoveRevolutionary {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.section-header-revolutionary {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.section-badge-revolutionary {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.section-title-revolutionary {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #f8fafc;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, #f8fafc 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-revolutionary {
  font-size: 1.4rem;
  color: #9ca3af;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid-revolutionary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}

.feature-card-revolutionary {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.7) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  backdrop-filter: blur(20px);
}

.feature-card-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card-revolutionary:hover::before {
  transform: scaleX(1);
}

.feature-card-revolutionary:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 70px rgba(16, 185, 129, 0.3);
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.8) 100%);
}

.feature-icon-revolutionary {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.feature-card-revolutionary:hover .feature-icon-revolutionary {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.feature-icon-revolutionary i {
  font-size: 2.5rem;
  color: white;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.feature-icon-revolutionary::after {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 25px;
  height: 25px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.feature-title-revolutionary {
  color: #f8fafc;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.feature-description-revolutionary {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.feature-list-revolutionary {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list-revolutionary li {
  color: #9ca3af;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.feature-list-revolutionary li:hover {
  color: #10b981;
  transform: translateX(10px);
}

.feature-list-revolutionary li i {
  color: #10b981;
  font-size: 1rem;
  margin-right: 0.8rem;
  animation: checkBounce 2s ease-in-out infinite;
}

@keyframes checkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.feature-badge-revolutionary {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-badge-revolutionary:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.cta-section-revolutionary {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.8) 100%);
  border-radius: 40px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(25px);
}

.cta-section-revolutionary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  animation: floatRevolutionary 10s ease-in-out infinite;
}

.cta-title-revolutionary {
  color: #f8fafc;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.cta-subtitle-revolutionary {
  color: #9ca3af;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.cta-button-revolutionary {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1.5rem 4rem;
  border-radius: 70px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
  position: relative;
  z-index: 1;
}

.cta-button-revolutionary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.6);
  color: white;
}

/* ========================================
   SUCCESS JOURNEY SECTION - REVOLUTIONARY
======================================== */
.success-journey-revolutionary {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.success-journey-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  animation: journeyBackground 20s ease-in-out infinite;
}

@keyframes journeyBackground {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-20px) translateY(-10px); }
  50% { transform: translateX(20px) translateY(10px); }
  75% { transform: translateX(-10px) translateY(20px); }
}

.journey-header-revolutionary {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.journey-badge-revolutionary {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.journey-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-subtitle-revolutionary {
  font-size: 1.4rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.journey-steps-revolutionary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}

.step-card-revolutionary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.step-card-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step-card-revolutionary:hover::before {
  transform: scaleX(1);
}

.step-card-revolutionary:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 70px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.step-number-revolutionary {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
  font-size: 2rem;
  font-weight: 900;
  color: white;
}

.step-card-revolutionary:hover .step-number-revolutionary {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.step-title-revolutionary {
  color: #1e293b;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.sitename {
  border-radius: 50%;
}

.step-description-revolutionary {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.step-features-revolutionary {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.step-features-revolutionary li {
  color: #64748b;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.step-features-revolutionary li:hover {
  color: #10b981;
  transform: translateX(10px);
}

.step-features-revolutionary li i {
  color: #10b981;
  font-size: 1rem;
  margin-right: 0.8rem;
  animation: checkBounce 2s ease-in-out infinite;
}

.step-badge-revolutionary {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-badge-revolutionary:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* ========================================
   ABOUT SECTION - REVOLUTIONARY
======================================== */
.about-revolutionary {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.about-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(16, 185, 129, 0.03) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(16, 185, 129, 0.03) 50%, transparent 52%);
  background-size: 100px 100px;
  animation: aboutGrid 25s linear infinite;
}

@keyframes aboutGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.about-content-revolutionary {
  position: relative;
  z-index: 2;
}

.about-badge-revolutionary {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.about-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #f8fafc;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, #f8fafc 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle-revolutionary {
  font-size: 1.4rem;
  color: #9ca3af;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.about-stats-revolutionary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-stat-revolutionary {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.7) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.about-stat-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-stat-revolutionary:hover::before {
  transform: scaleX(1);
}

.about-stat-revolutionary:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
  border-color: #10b981;
}

.about-stat-number-revolutionary {
  font-size: 3rem;
  font-weight: 900;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.about-stat-label-revolutionary {
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-button-revolutionary {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1.5rem 4rem;
  border-radius: 70px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
  position: relative;
  overflow: hidden;
}

.about-button-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.about-button-revolutionary:hover::before {
  left: 100%;
}

.about-button-revolutionary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.6);
  color: white;
}

/* ========================================
   FAQ SECTION - REVOLUTIONARY
======================================== */
.faq-revolutionary {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.faq-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  animation: faqBackground 18s ease-in-out infinite;
}

@keyframes faqBackground {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-15px) translateY(-8px); }
  50% { transform: translateX(15px) translateY(8px); }
  75% { transform: translateX(-8px) translateY(15px); }
}

.faq-header-revolutionary {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.faq-badge-revolutionary {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.faq-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle-revolutionary {
  font-size: 1.4rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-container-revolutionary {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-revolutionary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 25px;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.faq-item-revolutionary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.faq-question-revolutionary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question-revolutionary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.faq-answer-revolutionary {
  padding: 2rem;
  color: #64748b;
  line-height: 1.7;
  font-size: 1.1rem;
  display: none;
}

.faq-answer-revolutionary.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.faq-icon-revolutionary {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item-revolutionary.active .faq-icon-revolutionary {
  transform: rotate(180deg);
}

/* ========================================
   TESTIMONIALS SECTION - REVOLUTIONARY
======================================== */
.testimonials-revolutionary {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.testimonials-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  animation: testimonialsBackground 22s ease-in-out infinite;
}

@keyframes testimonialsBackground {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-25px) translateY(-12px); }
  50% { transform: translateX(25px) translateY(12px); }
  75% { transform: translateX(-12px) translateY(25px); }
}

.testimonials-header-revolutionary {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.testimonials-badge-revolutionary {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.testimonials-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #f8fafc;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, #f8fafc 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-subtitle-revolutionary {
  font-size: 1.4rem;
  color: #9ca3af;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-slider-revolutionary {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.testimonial-slide-revolutionary {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.7) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 30px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.5s ease;
}

.testimonial-slide-revolutionary:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.3);
  border-color: #10b981;
}

.testimonial-image-revolutionary {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  border: 4px solid #10b981;
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.testimonial-slide-revolutionary:hover .testimonial-image-revolutionary {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.testimonial-name-revolutionary {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.testimonial-role-revolutionary {
  font-size: 1.1rem;
  color: #10b981;
  margin-bottom: 2rem;
  font-weight: 600;
}

.testimonial-stars-revolutionary {
  margin-bottom: 2rem;
}

.testimonial-stars-revolutionary i {
  color: #fbbf24;
  font-size: 1.2rem;
  margin: 0 0.2rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.testimonial-text-revolutionary {
  font-size: 1.2rem;
  color: #9ca3af;
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.testimonial-text-revolutionary::before {
  content: '"';
  font-size: 4rem;
  color: #10b981;
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
}

.testimonial-text-revolutionary::after {
  content: '"';
  font-size: 4rem;
  color: #10b981;
  position: absolute;
  bottom: -40px;
  right: -20px;
  opacity: 0.3;
}

/* ========================================
   CONTACT SECTION - REVOLUTIONARY
======================================== */
.contact-revolutionary {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.contact-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(16, 185, 129, 0.05) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(16, 185, 129, 0.05) 50%, transparent 52%);
  background-size: 60px 60px;
  animation: contactGrid 20s linear infinite;
}

@keyframes contactGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.contact-header-revolutionary {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.contact-badge-revolutionary {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.contact-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle-revolutionary {
  font-size: 1.4rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-form-revolutionary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 30px;
  padding: 4rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.form-group-revolutionary {
  margin-bottom: 2rem;
}

.form-label-revolutionary {
  display: block;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.form-control-revolutionary {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.form-control-revolutionary:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.form-textarea-revolutionary {
  min-height: 150px;
  resize: vertical;
}

.contact-button-revolutionary {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: white;
  padding: 1.5rem 4rem;
  border-radius: 70px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.contact-button-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-button-revolutionary:hover::before {
  left: 100%;
}

.contact-button-revolutionary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.6);
  color: white;
}

/* ========================================
   RESPONSIVE DESIGN - REVOLUTIONARY
======================================== */
@media (max-width: 768px) {
  .hero-title-revolutionary {
    font-size: 3.5rem;
  }
  
  .section-title-revolutionary {
    font-size: 3rem;
  }
  
  .features-grid-revolutionary {
    grid-template-columns: 1fr;
  }
  
  .hero-stats-revolutionary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-buttons-revolutionary {
    flex-direction: column;
    align-items: center;
  }
  
  .visual-container-revolutionary {
    width: 400px;
    height: 400px;
  }
  
  .hexagon-outer-revolutionary {
    width: 350px;
    height: 350px;
  }
  
  .hexagon-inner-revolutionary {
    width: 250px;
    height: 250px;
  }
  
  .hexagon-center-revolutionary {
    width: 150px;
    height: 150px;
  }
  
  .hexagon-center-revolutionary i {
    font-size: 3.5rem;
  }
  
  .cta-title-revolutionary {
    font-size: 2.5rem;
  }
}

/* ========================================
   COMPLETELY REDESIGNED SECTIONS
======================================== */

/* Hero Section - New Design */
.hero-section {
  background: linear-gradient(45deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
  animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-20px) translateY(-10px); }
  50% { transform: translateX(20px) translateY(10px); }
  75% { transform: translateX(-10px) translateY(20px); }
}

.hero-content-new {
  position: relative;
  z-index: 2;
}

.hero-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title-new {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.hero-subtitle-new {
  font-size: 1.4rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-stats-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.stat-card-new {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-card-new:hover {
  transform: translateY(-5px);
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.stat-number-new {
  font-size: 2.5rem;
  font-weight: 900;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-new {
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-buttons-new {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary-new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  border: none;
}

.btn-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5);
  color: white;
}

.btn-outline-new {
  border: 2px solid #10b981;
  color: #10b981;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-new:hover {
  background: #10b981;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.hero-visual-new {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-container-new {
  position: relative;
  width: 500px;
  height: 500px;
}

.hexagon-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  animation: rotate 20s linear infinite;
}

.hexagon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: rotate 15s linear infinite reverse;
}

.hexagon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.hexagon-center i {
  font-size: 4rem;
  color: white;
}

.floating-element {
  position: absolute;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) { top: 10%; left: 20%; width: 60px; height: 60px; animation-delay: 0s; }
.floating-element:nth-child(3) { top: 20%; right: 15%; width: 50px; height: 50px; animation-delay: 1s; }
.floating-element:nth-child(4) { bottom: 20%; left: 10%; width: 45px; height: 45px; animation-delay: 2s; }
.floating-element:nth-child(5) { bottom: 15%; right: 20%; width: 55px; height: 55px; animation-delay: 3s; }
.floating-element:nth-child(6) { top: 50%; left: 5%; width: 40px; height: 40px; animation-delay: 4s; }
.floating-element:nth-child(7) { top: 50%; right: 5%; width: 40px; height: 40px; animation-delay: 5s; }

.floating-element i {
  color: white;
  font-size: 1.5rem;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Features Section - New Design */
.features-section-new {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.features-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 49%, rgba(16, 185, 129, 0.03) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(16, 185, 129, 0.03) 50%, transparent 51%);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.section-header-new {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.section-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.section-title-new {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #f8fafc;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.section-subtitle-new {
  font-size: 1.3rem;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card-new {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.6) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-new:hover::before {
  transform: scaleX(1);
}

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.feature-icon-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-new {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-new i {
  font-size: 2rem;
  color: white;
}

.feature-icon-new::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-new::after {
  content: '✓';
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.feature-title-new {
  color: #f8fafc;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-description-new {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-list-new {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.feature-list-new li {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.feature-list-new li:hover {
  color: #10b981;
}

.feature-list-new li i {
  color: #10b981;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.feature-badge-new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-badge-new:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.cta-section-new {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.7) 100%);
  border-radius: 30px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(10px);
}

.cta-section-new::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.cta-title-new {
  color: #f8fafc;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-subtitle-new {
  color: #9ca3af;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-button-new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  position: relative;
  z-index: 1;
}

.cta-button-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-new {
    font-size: 3rem;
  }
  
  .section-title-new {
    font-size: 2.5rem;
  }
  
  .features-grid-new {
    grid-template-columns: 1fr;
  }
  
  .hero-stats-new {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-buttons-new {
    flex-direction: column;
    align-items: center;
  }
  
  .visual-container-new {
    width: 300px;
    height: 300px;
  }
  
  .hexagon-outer {
    width: 250px;
    height: 250px;
  }
  
  .hexagon-inner {
    width: 180px;
    height: 180px;
  }
  
  .hexagon-center {
    width: 100px;
    height: 100px;
  }
  
  .hexagon-center i {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  ;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 11px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li a {
    margin: 0 1rem;
  }
  
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    border-left: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
    color: var(--nav-hover-color);
    border-color: var(--default-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;

    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 90%, black 50%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
  transform: translateX(6px);
}


/*--------------------------------------------------------------
# Success Journey Section
--------------------------------------------------------------*/
.success-journey {
  background-color: var(--background-color);
}

.success-step {
  margin-bottom: 80px;
}

.success-step:last-child {
  margin-bottom: 0;
}

.success-content {
  padding: 40px 0;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.success-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.success-content .lead {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-features {
  display: grid;
  gap: 20px;
}

.success-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.success-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.success-features .feature-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.success-features .feature-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--default-color);
}

.success-features .feature-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

.success-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.success-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.success-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(220, 38, 38, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--contrast-color);
}

.overlay-content i {
  font-size: 48px;
  margin-bottom: 15px;
}

.overlay-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/*--------------------------------------------------------------
# Success Features Section
--------------------------------------------------------------*/


.feature-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--default-color);
}

.feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.feature-list li {
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.cta-section {
  background: var(--surface-color);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--default-color);
}

.cta-section p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .success-content {
    padding: 20px 0;
  }
  
  .success-content h3 {
    font-size: 24px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .success-image img {
    height: 250px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 24px;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-section h3 {
    font-size: 24px;
  }
}



.feature-item strong {
  font-size: 18px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}


.testimonial-card {
  background-color: var(--background-color);
  ;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  ;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #16a34a;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  background-color: var(--background-color);
}

.faq-accordion {
  max-width: 100%;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-item.active {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: var(--surface-color);
}

.faq-question:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
}

.faq-question-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.faq-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.faq-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.faq-item.active .faq-icon i {
  color: var(--accent-color);
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
  color: var(--contrast-color);
}

.faq-toggle {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--contrast-color);
}

.faq-toggle i {
  font-size: 16px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle i {
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--surface-color);
}

.faq-answer-content {
  padding: 0 30px 30px 30px;
}

.faq-answer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.faq-answer-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.faq-answer-content li {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* FAQ Content Styles */
.faq-features {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  padding: 15px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.feature-item strong {
  color: var(--accent-color);
}

.target-groups {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.group-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.group-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateX(5px);
}

.group-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.group-item strong {
  color: var(--accent-color);
}

.time-investment {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.time-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 10px;
  border-left: 4px solid var(--heading-color);
}

.time-icon {
  width: 40px;
  height: 40px;
  background: var(--heading-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.time-icon i {
  color: var(--contrast-color);
  font-size: 18px;
}

.time-option strong {
  color: var(--heading-color);
}

.start-steps {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.step-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateX(10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content strong {
  color: var(--accent-color);
}

.community-features {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.community-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.community-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateX(5px);
}

.community-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.community-item strong {
  color: var(--accent-color);
}

.security-features {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 10px;
  border-left: 4px solid var(--heading-color);
}

.security-item i {
  font-size: 24px;
  color: var(--heading-color);
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.security-item strong {
  color: var(--heading-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
  
  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }
  
  .faq-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .faq-icon i {
    font-size: 16px;
  }
  
  .faq-question h4 {
    font-size: 16px;
  }
  
  .faq-toggle {
    width: 35px;
    height: 35px;
  }
  
  .faq-toggle i {
    font-size: 14px;
  }
  
  .step-item {
    padding: 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: var(--background-color);
}

.contact-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.contact-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--default-color);
}

.contact-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-details {
  margin: 20px 0;
  padding: 15px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 10px;
}

.contact-details p {
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.contact-btn:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: var(--surface-color);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--default-color);
}

.form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--default-color);
  font-size: 14px;
}

.contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-form select.form-control {
  cursor: pointer;
}

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

.form-check {
  margin: 25px 0;
}

.form-check-input {
  margin-top: 0.25em;
}

.form-check-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "Heebo", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  ;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  /* Start invisible */
  transform: translateY(30px);
  /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  ;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: var(--accent-color);
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.about_elem {
  margin-bottom: 2rem;
}



.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px solid var(--bg-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #999;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #dc2626;
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #ef4444;
}

.swiper-pagination.hidden {
  display: none;
}

.swiper-pagination .swiper-pagination-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
  font-size: 20px;
  color: #dc2626;
  transition: color 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
  color: #ef4444;
}

.testimonial-img {
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.growth {
  background-image: url('assets/img/background-image.png');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 100px 0;
}

.lead  {
  color: var(--accent-color);
  font-weight: 500;
}