/* Fonts */
:root {
  --default-font: "Shanti", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --heading-font: "Shanti", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --nav-font: "Shanti", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Global Colors - Dark Theme: Fitness Green & Orange */
:root {
--background-color: #0a0f0a; /* page bg - deep dark green */
--default-color: #d4f4dd; /* text - light green */
--heading-color: #f0fdf4; /* headings - very light green */
--accent-color: #22c55e; /* primary accent - vibrant green */
--accent-secondary: #f97316; /* secondary accent - warm orange */
--surface-color: #152015; /* cards - dark green */
--contrast-color: #ffffff; /* on accent */
--bg-color: #16a34a; /* decorative - bright green */
--nav-color: #d4f4dd;
--nav-hover-color: #22c55e;
--nav-mobile-background-color: #152015;
--nav-dropdown-background-color: #152015;
--nav-dropdown-color: #d4f4dd;
--nav-dropdown-hover-color: #22c55e;
--light-text: #86efac; /* muted - light green */
--shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 6px 18px rgba(34, 197, 94, 0.3);
--shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.6), 0 8px 25px rgba(34, 197, 94, 0.4);
--transition: all 0.3s ease;
--gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #f97316 100%);
--gradient-secondary: linear-gradient(135deg, #152015 0%, #1a2e1a 100%);
--gradient-accent: linear-gradient(135deg, #22c55e 0%, #f97316 100%);
--gradient-hero: linear-gradient(135deg, #0a0f0a 0%, #152015 50%, #1a2e1a 100%);
--gradient-card: linear-gradient(135deg, #152015 0%, #1a2e1a 100%);
}

/* Color Presets */

.light-background {
  --background-color: #152015;
  --surface-color: #1a2e1a;
  --default-color: #d4f4dd;
  --heading-color: #f0fdf4;
  --light-text: #86efac;
}

.dark-background {
  --background-color: #0a0f0a;
  --default-color: #d4f4dd;
  --heading-color: #f0fdf4;
  --surface-color: #152015;
  --contrast-color: #ffffff;
}


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

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

body:has(.header-modern) {
  padding-top: 80px;
}

@media (max-width: 767px) {
  body:has(.header-modern) {
    padding-top: 70px;
  }
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Hero Section Styles */
.intro {
  background: var(--gradient-secondary);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-accent);
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f97316, #22c55e);
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--nav-hover-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.hero-btn {
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-btn.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  box-shadow: var(--shadow);
}

.hero-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
}

.hero-btn.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero-btn.btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.hero-image-container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  overflow: visible;
}

.hero-main-image {
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

.hero-main-image:hover {
  transform: scale(1.05);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--default-color);
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite;
  min-width: 140px;
  transition: var(--transition);
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.card-subtitle {
  font-size: 12px;
  color: var(--light-text);
  font-weight: 500;
  line-height: 1.2;
}

/* Better positioning to avoid overlap */
.card-1 {
  top: 5%;
  right: -5%;
  animation-delay: 0s;
}

.card-2 {
  top: 25%;
  left: -8%;
  animation-delay: 0.8s;
}

.card-3 {
  bottom: 25%;
  right: -5%;
  animation-delay: 1.6s;
}

.card-4 {
  bottom: 5%;
  left: -8%;
  animation-delay: 2.4s;
}

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-8px) rotate(1deg); 
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .floating-card {
    min-width: 120px;
    padding: 12px 16px;
  }
  
  .card-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .card-title {
    font-size: 14px;
  }
  
  .card-subtitle {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .floating-card {
    min-width: 100px;
    padding: 10px 12px;
    gap: 8px;
  }
  
  .card-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .card-title {
    font-size: 12px;
  }
  
  .card-subtitle {
    font-size: 10px;
  }
  
  .card-1 {
    top: 2%;
    right: -2%;
  }
  
  .card-2 {
    top: 20%;
    left: -5%;
  }
  
  .card-3 {
    bottom: 20%;
    right: -2%;
  }
  
  .card-4 {
    bottom: 2%;
    left: -5%;
  }
}

/* About Section Styles */
.about {
  background: var(--background-color);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.power-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(34, 197, 94, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(34, 197, 94, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--nav-hover-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 15px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--nav-hover-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.power-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.power-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.power-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.power-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.power-card:hover::before {
  opacity: 0.1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.power-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.power-card p {
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

/* Strength Journey Section Styles */
.strength-journey {
  background: var(--gradient-secondary);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.journey-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.power-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  33% { transform: translateX(30px) translateY(-20px); }
  66% { transform: translateX(-20px) translateY(30px); }
}

.journey-path {
  position: relative;
  z-index: 2;
}

.path-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateY(-50%);
  z-index: 1;
}

.journey-pillar {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.journey-pillar:nth-child(even) {
  flex-direction: row-reverse;
}

.pillar-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.2);
  margin-right: 2rem;
  line-height: 1;
}

.journey-pillar:nth-child(even) .pillar-number {
  margin-right: 0;
  margin-left: 2rem;
}

.pillar-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 3rem;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pillar-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.pillar-content:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.pillar-content:hover::before {
  opacity: 0.05;
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow);
}

.pillar-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 1rem;
}

.pillar-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.pillar-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 600;
}

.journey-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
}

.journey-cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 1rem;
}

.journey-cta p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

/* Features Section Styles */
.features {
  background: var(--background-color);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.features-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.power-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.feature-module {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.feature-module:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow);
}

.feature-module:hover::before {
  opacity: 0.1;
}

.module-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;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-module:hover .module-icon {
  transform: scale(1.1);
}

.feature-module h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 1rem;
}

.feature-module p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.module-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  width: 0;
  transition: width 2s ease-in-out;
  position: relative;
}

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

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Animate progress bars on scroll */
.progress-bar.animated {
  animation: progressFill 2s ease-in-out forwards;
}

@keyframes progressFill {
  from { width: 0; }
  to { width: var(--progress-width, 0); }
}

/* Footer Styles */
.footer {
  background: var(--gradient-secondary);
  position: relative;
  padding: 5rem 0 2rem;
  margin-top: 5rem;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
  animation: footerParticleMove 25s ease-in-out infinite;
}

@keyframes footerParticleMove {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(180deg); }
}

.footer-main {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.footer-description {
  color: var(--heading-color);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--heading-color);
  padding-left: 15px;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-item span:first-child {
  font-size: 0.8rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-item a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-copyright p {
  color: var(--light-text);
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--heading-color);
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-legal a {
    font-size: 0.8rem;
  }
}

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(--contrast-color);
  background-color: var(--surface-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: var(--shadow);
}

.sitename {
  border-radius: 50%;
}

.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 {
    border: 1px solid var(--accent-color);
    border-radius: 1rem;
    margin: 0 1rem;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    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: #ffffff;
  background-color: var(--heading-color);
  font-size: 14px;
  position: relative;
}

.footer * {
  color: #ffffff;
}

.footer h3 {
  color: #ffffff;
}

.footer p {
  color: #ffffff;
}

/* Dark theme for policy pages main content */
.policy-page .about.section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.policy-page .about.section h2,
.policy-page .about.section h3,
.policy-page .about.section h4,
.policy-page .about.section h5,
.policy-page .about.section h6 {
  color: #ffffff;
}

.policy-page .about.section p {
  color: #e0e0e0;
}

.policy-page .about.section .section-title h2 {
  color: var(--background-color);
}

.policy-page .about.section .section-title p {
  color: #e0e0e0;
}

.policy-page .about.section .content h3 {
  color: #ffffff;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.policy-page .about.section .content p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-page .about.section .content ul {
  color: #e0e0e0;
}

.policy-page .about.section .content li {
  color: #e0e0e0;
  margin-bottom: 8px;
}

/* Ensure footer has dark text on policy pages */
.policy-page .footer {
  color: var(--heading-color);
  background-color: var(--heading-color);
}

.policy-page .footer * {
  color: var(--heading-color);
}

.policy-page .footer h3,
.policy-page .footer h4 {
  color: var(--heading-color);
}

.policy-page .footer p {
  color: var(--light-text);
}

.policy-page .footer a {
  color: var(--light-text);
}

.policy-page .footer .footer-links ul a {
  color: var(--light-text);
}

.policy-page .footer .footer-links ul a:hover {
  color: var(--heading-color);
}

.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 rgba(34, 197, 94, 0.3);
  font-size: 16px;
  color: var(--light-text);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--heading-color);
}

.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(--light-text);
}

.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: var(--light-text);
  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;
  color: var(--light-text);
}

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

.footer .copyright p {
  margin-bottom: 0;
  color: var(--light-text);
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: var(--light-text);
}

/*--------------------------------------------------------------
# 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 var(--surface-color);
  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 {
  color: var(--bg-color);
  background-color: var(--surface-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 - Modern Design
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.9) 0%, 
    rgba(118, 75, 162, 0.9) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-icon {
  color: #ffd700;
  font-size: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
  color: white;
}

.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-2px);
  color: white;
}

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

.btn-primary-modern:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

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

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

.stat-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 30%;
  left: -15%;
  animation-delay: 1.5s;
}

.floating-card.card-3 {
  bottom: 30%;
  right: -10%;
  animation-delay: 3s;
}

.floating-card.card-4 {
  bottom: 10%;
  left: -15%;
  animation-delay: 4.5s;
}

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

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.card-1 .card-icon { background: linear-gradient(45deg, #ff6b6b, #ee5a24); }
.card-2 .card-icon { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
.card-3 .card-icon { background: linear-gradient(45deg, #45b7d1, #96c93d); }
.card-4 .card-icon { background: linear-gradient(45deg, #f093fb, #f5576c); }

.card-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #333;
}

.card-content p {
  font-size: 12px;
  margin: 0;
  color: #666;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .floating-card {
    position: static;
    margin: 16px auto;
    max-width: 200px;
  }
}

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


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#offerings {
  color: var(--contrast-color);
}

.features .icon-box {
  display: flex;
  align-items: center;
  width: 30%;
  margin: 1rem;
}

.features .icon-box {
  background: var(--bg-primary);
  border-bottom: 5px solid rgba(34, 197, 94, 0.2);
  padding: 0.5rem 0;
}

.features .icon-box:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.faq-elem:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features .icon-box p {
  font-size: 15px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section - Modern Design
--------------------------------------------------------------*/
.details-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-header-modern {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.section-badge-modern .badge-icon {
  font-size: 16px;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #2c3e50;
}

.section-description-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
}

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

.feature-card-modern {
  background: var(--surface-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

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

.feature-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-overlay {
  opacity: 1;
}

.feature-card-modern:hover .feature-image {
  transform: scale(1.1);
}

.feature-overlay .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  backdrop-filter: blur(10px);
}

.feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-badge i {
  font-size: 14px;
}

.feature-card-body {
  padding: 32px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.3;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-text);
  margin-bottom: 24px;
}

.feature-benefits {
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.feature-card-footer {
  padding: 0 32px 32px;
}

.btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-accent);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.btn-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  color: white;
}

.btn-feature .btn-icon {
  transition: transform 0.3s ease;
}

.btn-feature:hover .btn-icon {
  transform: translateX(4px);
}

.cta-section-modern {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

@media (max-width: 768px) {
  .details-section {
    padding: 60px 0;
  }
  
  .section-title-modern {
    font-size: 2.2rem;
  }
  
  .section-description-modern {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .feature-card-body {
    padding: 24px;
  }
  
  .feature-card-footer {
    padding: 0 24px 24px;
  }
  
  .cta-section-modern {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


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

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

.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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(--contrast-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(--default-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;
  }
}

/*--------------------------------------------------------------
# Leadership Journey Section
--------------------------------------------------------------*/
.leadership-journey .journey-item {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.leadership-journey .journey-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.leadership-journey .journey-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.leadership-journey .journey-item:hover .journey-icon {
  transform: scale(1.1);
}

.leadership-journey .journey-icon i {
  font-size: 35px;
  color: var(--contrast-color);
}

.leadership-journey .journey-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.leadership-journey .journey-content p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.leadership-journey .journey-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leadership-journey .journey-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--default-color);
}

.leadership-journey .journey-content ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.leadership-journey .journey-cta {
  background: linear-gradient(135deg, var(--heading-color), var(--default-color));
  padding: 60px 40px;
  border-radius: 20px;
  color: var(--contrast-color);
  text-align: center;
}

.leadership-journey .journey-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.leadership-journey .journey-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.leadership-journey .journey-cta .btn {
  background: var(--accent-color);
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leadership-journey .journey-cta .btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/*--------------------------------------------------------------
# Pricing Section (Legacy - can be removed)
--------------------------------------------------------------*/
.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: #059652;
  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-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--surface-color), rgba(59, 130, 246, 0.02));
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  transition: var(--transition);
}

.faq-question:hover h3 {
  color: var(--accent-color);
}

.faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
}

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

.faq-answer p {
  margin-bottom: 15px;
  color: var(--default-color);
  line-height: 1.6;
}

.faq-answer ul {
  margin: 0 0 15px 0;
  padding-left: 0;
  list-style: none;
}

.faq-answer ul li {
  margin-bottom: 8px;
  color: var(--default-color);
  position: relative;
  padding-left: 20px;
}

.faq-answer ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-answer strong {
  color: var(--heading-color);
  font-weight: 600;
}

.faq-item.active .faq-question {
  background: var(--gradient-primary);
  color: var(--contrast-color);
}

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

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

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

/* Comparison Grid for FAQ Item 5 */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.comparison-item {
  background: rgba(59, 130, 246, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.comparison-item h4 {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.comparison-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-item ul li {
  padding: 8px 0;
  color: var(--default-color);
  position: relative;
  padding-left: 20px;
}

.comparison-item ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 18px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-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 25px;
  transition: var(--transition);
}

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

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

.contact-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact-content p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: transparent;
}

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

/* Contact Form */
.contact-form-container {
  background: var(--surface-color);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.form-header p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

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

.modern-contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  font-size: 16px;
  transition: var(--transition);
  background: var(--surface-color);
  color: var(--default-color);
}

.modern-contact-form .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form .form-control::placeholder {
  color: var(--light-text);
}

.modern-contact-form select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

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

/* Checkbox Styling */
.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

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

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

/* Form Messages */
.form-messages {
  margin-bottom: 30px;
}

.form-messages .loading,
.form-messages .error-message,
.form-messages .sent-message {
  display: none;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-messages .loading {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-messages .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-messages .sent-message {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Submit Button */
.modern-contact-form .btn {
  background: var(--gradient-primary);
  border: none;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.modern-contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  background: var(--gradient-accent);
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--heading-color), var(--default-color));
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

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

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cta-buttons .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.cta-buttons .btn-outline-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

.cta-buttons .btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .form-header h3 {
    font-size: 24px;
  }
  
  .contact-info-card {
    padding: 30px 20px;
  }
  
  .contact-cta {
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

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

/* Cookie Popup Styles */
#cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 420px;
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.cookie-popup-container {
  background: linear-gradient(135deg, rgba(26, 22, 37, 0.98), rgba(45, 27, 78, 0.98));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(34, 197, 94, 0.1),
    inset 0 1px 0 rgba(34, 197, 94, 0.1),
    0 0 40px rgba(34, 197, 94, 0.2);
  overflow: hidden;
  position: relative;
}

.cookie-popup-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), rgba(251, 146, 60, 0.6), transparent);
  animation: cookieGlow 3s ease-in-out infinite;
}

@keyframes cookieGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.cookie-popup-content {
  padding: 28px;
}

.cookie-popup-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.cookie-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(34, 197, 94, 0.4),
    0 0 20px rgba(34, 197, 94, 0.2);
  animation: cookieIconPulse 2s ease-in-out infinite;
}

@keyframes cookieIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4), 0 0 20px rgba(34, 197, 94, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5), 0 0 30px rgba(34, 197, 94, 0.3);
  }
}

.cookie-icon i {
  font-size: 28px;
  color: white;
}

.cookie-title h4 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-title p {
  margin: 0;
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.4;
  opacity: 0.9;
}

.cookie-popup-body {
  margin-bottom: 24px;
}

.cookie-popup-body p {
  margin: 0;
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.6;
  opacity: 0.85;
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  border-bottom: 1px solid transparent;
}

.cookie-link:hover {
  color: var(--accent-secondary);
  border-bottom-color: var(--accent-secondary);
  text-decoration: none;
}

.cookie-popup-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-cookie-secondary,
.btn-cookie-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-cookie-secondary {
  background: rgba(34, 197, 94, 0.1);
  color: var(--default-color);
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.btn-cookie-secondary:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-cookie-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 
    0 6px 20px rgba(34, 197, 94, 0.4),
    0 0 20px rgba(34, 197, 94, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-cookie-primary::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-cookie-primary:hover::before {
  left: 100%;
}

.btn-cookie-primary:hover {
  background: var(--gradient-accent);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(34, 197, 94, 0.5),
    0 0 30px rgba(34, 197, 94, 0.3);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
  
  .cookie-popup-actions {
    flex-direction: column;
  }
  
  .btn-cookie-secondary,
  .btn-cookie-primary {
    justify-content: center;
    width: 100%;
  }
}

.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: var(--accent-color);
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--accent-color);
}

.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: var(--accent-color);
  transition: color 0.3s ease;
}

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

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

/*--------------------------------------------------------------
# Growth Section
--------------------------------------------------------------*/
.growth {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--default-color) 100%);
  color: var(--contrast-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.growth-content {
  position: relative;
  z-index: 1;
}

/* Growth Badge */
.growth-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.growth-badge i {
  font-size: 16px;
}

/* Growth Title */
.growth-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--contrast-color);
}

.growth-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.growth-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Growth Description */
.growth-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Growth Stats */
.growth-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  color: var(--contrast-color);
}

/* Growth Actions */
.growth-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.growth-actions .btn {
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.growth-actions .btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.growth-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #1d4ed8, var(--accent-color));
}

.growth-actions .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.growth-actions .btn-outline-primary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* Growth Visual */
.growth-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Main Circle */
.main-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  animation: pulse 2s infinite;
}

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

.circle-content i {
  font-size: 30px;
  margin-bottom: 5px;
  display: block;
}

.circle-content span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 15px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.floating-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.element-1 {
  top: 20px;
  left: 50px;
  animation-delay: 0s;
}

.element-2 {
  top: 20px;
  right: 50px;
  animation-delay: 0.5s;
}

.element-3 {
  bottom: 20px;
  left: 50px;
  animation-delay: 1s;
}

.element-4 {
  bottom: 20px;
  right: 50px;
  animation-delay: 1.5s;
}

.element-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

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

.element-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
  line-height: 1.2;
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .growth {
    padding: 80px 0;
  }
  
  .growth-title {
    font-size: 2.5rem;
  }
  
  .growth-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .growth-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .growth-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .growth-visual {
    height: 300px;
    margin-top: 50px;
  }
  
  .visual-container {
    width: 300px;
    height: 300px;
  }
  
  .main-circle {
    width: 80px;
    height: 80px;
  }
  
  .circle-content i {
    font-size: 20px;
  }
  
  .floating-element {
    padding: 10px;
  }
  
  .element-icon {
    width: 30px;
    height: 30px;
  }
  
  .element-icon i {
    font-size: 14px;
  }
  
  .element-text {
    font-size: 10px;
  }
}

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

/*--------------------------------------------------------------
# Modern Header Styles
--------------------------------------------------------------*/
.header-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 22, 37, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.header-modern.scrolled {
  background: rgba(26, 22, 37, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link:hover {
  color: var(--accent-color);
}

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

.nav-item-cta .nav-link-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.nav-item-cta .nav-link-button::after {
  display: none;
}

.nav-item-cta .nav-link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--default-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
@media (max-width: 1199px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--surface-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav.active {
    max-height: 500px;
    padding: 2rem;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  }

  .nav-link {
    padding: 1rem 0;
    width: 100%;
  }

  .nav-item-cta .nav-link-button {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer-modern {
  background: linear-gradient(135deg, #1a1625 0%, #2d1b4e 100%);
  color: #e9d5ff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-column {
  max-width: 350px;
}

.footer-brand-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: #c4b5fd;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-social-modern {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #e9d5ff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 1rem 0;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-links-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-modern li {
  margin: 0;
}

.footer-links-modern a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links-modern a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer-links-modern a:hover {
  color: white;
  padding-left: 20px;
}

.footer-links-modern a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-value {
  color: #e9d5ff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--accent-color);
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  margin-top: 0.5rem;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: white;
}

.footer-cta-button i {
  transition: transform 0.3s ease;
}

.footer-cta-button:hover i {
  transform: translateX(5px);
}

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

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright-modern {
  color: var(--light-text);
  font-size: 0.9rem;
}

.footer-copyright-modern strong {
  color: white;
  font-weight: 600;
}

.footer-legal-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-modern a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-modern a:hover {
  color: var(--accent-color);
}

.footer-legal-modern .separator {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 1199px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand-column {
    max-width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-modern {
    justify-content: center;
  }

  .header-container {
    padding: 0 1rem;
  }

  .header-wrapper {
    height: 70px;
  }
}

/* ============================================
   NEW HERO SECTION - Modern Redesign
   ============================================ */
/* ============================================
   INTRO SECTION - Complete Redesign
   ============================================ */
.banner-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: var(--background-color);
  overflow: hidden;
}

.banner-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.banner-mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(34, 197, 94, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(249, 115, 22, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
  opacity: 0.8;
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.banner-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  animation: gridShift 15s linear infinite;
}

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

.banner-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.banner-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-primary);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.banner-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--gradient-accent);
  bottom: -15%;
  right: -10%;
  animation-delay: 3s;
}

.banner-glow-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #16a34a, #fb923c);
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: translate(40px, -40px) scale(1.15);
    opacity: 0.7;
  }
}

.banner-wrapper {
  position: relative;
  z-index: 2;
}

.banner-content-block {
  max-width: 700px;
}

.banner-label-wrapper {
  margin-bottom: 32px;
}

.banner-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.12);
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.banner-label-badge:hover {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.18);
  transform: translateY(-2px);
}

.label-pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: labelPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(251, 146, 60, 0.6);
}

@keyframes labelPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.6);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.9);
  }
}

.label-arrow {
  color: var(--accent-secondary);
  font-size: 16px;
  animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.banner-headline {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--heading-color);
  letter-spacing: -0.03em;
}

.headline-line {
  display: block;
  margin-bottom: 8px;
}

.headline-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.banner-lead-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 48px;
  max-width: 650px;
  opacity: 0.9;
}

.banner-value-props {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.value-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.value-prop-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(8px);
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.value-prop-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-prop-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.value-prop-text span {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.5;
}

.banner-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-banner-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 
    0 10px 30px rgba(34, 197, 94, 0.4),
    0 0 0 0 rgba(34, 197, 94, 0.5);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.btn-banner-cta-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-banner-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(34, 197, 94, 0.5),
    0 0 0 4px rgba(34, 197, 94, 0.2);
  color: white;
}

.btn-banner-cta-primary .btn-icon {
  transition: transform 0.3s ease;
}

.btn-banner-cta-primary:hover .btn-icon {
  transform: translateX(6px);
}

.btn-banner-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--default-color);
  padding: 20px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.btn-banner-cta-secondary:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-3px);
  color: var(--heading-color);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.banner-trust-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--light-text);
}

.trust-item i {
  color: var(--accent-secondary);
  font-size: 16px;
}

.banner-visual-side {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.visual-main-card {
  background: rgba(26, 22, 37, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(34, 197, 94, 0.1),
    inset 0 1px 0 rgba(34, 197, 94, 0.1);
  position: relative;
  z-index: 2;
}

.visual-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.card-header-dots {
  display: flex;
  gap: 6px;
}

.card-header-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
}

.card-header-dots span:nth-child(1) {
  background: rgba(239, 68, 68, 0.6);
}

.card-header-dots span:nth-child(2) {
  background: rgba(251, 146, 60, 0.6);
}

.card-header-dots span:nth-child(3) {
  background: rgba(34, 197, 94, 0.6);
}

.card-header-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.visual-card-content {
  padding: 20px 0;
}

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

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-bar {
  height: 8px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: width 1.5s ease-out;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
  position: relative;
}

.metric-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


.banner-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  opacity: 0.7;
  animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0%, 100% { 
    opacity: 0.7;
    transform: translateX(-50%) translateY(0);
  }
  50% { 
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(34, 197, 94, 0.5);
  border-radius: 15px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.5s ease-in-out infinite;
}

@keyframes wheelScroll {
  0% { 
    top: 8px;
    opacity: 1;
  }
  100% { 
    top: 24px;
    opacity: 0;
  }
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .banner-headline {
    font-size: 3.5rem;
  }
  
  .banner-visual-side {
    min-height: 500px;
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .banner-block {
    padding: 120px 0 80px;
  }
  
  .banner-headline {
    font-size: 3rem;
  }
  
  .banner-lead-text {
    font-size: 1.15rem;
  }
  
}

@media (max-width: 768px) {
  .banner-headline {
    font-size: 2.5rem;
  }
  
  .headline-line {
    margin-bottom: 4px;
  }
  
  .banner-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-banner-cta-primary,
  .btn-banner-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .banner-trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .banner-scroll-indicator {
    bottom: 20px;
  }
}

.btn-banner-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--heading-color);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(34, 197, 94, 0.2);
}

.btn-banner-secondary:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  color: var(--heading-color);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.banner-main-visual {
  position: relative;
  z-index: 2;
}

.banner-visual-container {
  position: relative;
  max-width: 100%;
}

.hero-main-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.hero-main-visual:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.banner-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.banner-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(249, 115, 22, 0.1));
  border-radius: 30px;
  pointer-events: none;
}

.banner-floating-stats {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
  animation: floatStat 4s ease-in-out infinite;
  min-width: 180px;
}

.stat-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.stat-card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1.5s;
}

.stat-card-3 {
  top: 50%;
  right: -5%;
  animation-delay: 3s;
}

@keyframes floatStat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  50% { 
    transform: translateY(-10px) rotate(2deg);
  }
}

.stat-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.stat-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--light-text);
  font-weight: 500;
}

/* Responsive Hero New */
@media (max-width: 1200px) {
  .banner-main-title {
    font-size: 3.5rem;
  }
  
  .floating-stat-card {
    min-width: 160px;
    padding: 16px;
  }
}

@media (max-width: 992px) {
  .banner-main {
    padding: 100px 0 60px;
  }
  
  .banner-main-title {
    font-size: 3rem;
  }
  
  .banner-main-description {
    font-size: 1.1rem;
  }
  
  .banner-main-stats {
    gap: 30px;
  }
  
  .stat-box .stat-number {
    font-size: 2rem;
  }
  
  .stat-card-1,
  .stat-card-2,
  .stat-card-3 {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .banner-main-title {
    font-size: 2.5rem;
  }
  
  .banner-main-stats {
    gap: 20px;
  }
  
  .stat-box .stat-number {
    font-size: 1.8rem;
  }
  
  .banner-main-actions {
    flex-direction: column;
  }
  
  .btn-banner-primary,
  .btn-banner-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   NEW FEATURES SECTION - Modern Redesign
   ============================================ */
.offerings-block {
  position: relative;
  padding: 100px 0;
  background: var(--surface-color);
  overflow: hidden;
}

.offerings-block-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.offerings-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.offerings-block-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.offerings-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offerings-block-badge i {
  font-size: 16px;
}

.offerings-block-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.offerings-block-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.offerings-block-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.offering-item-card {
  position: relative;
  height: 100%;
}

.offering-item-card-inner {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
  position: relative;
  overflow: hidden;
}

.offering-item-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.offering-item-card:hover .offering-item-card-inner {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.offering-item-card:hover .offering-item-card-inner::before {
  opacity: 0.05;
}

.offering-item-icon-wrapper {
  position: relative;
  margin-bottom: 24px;
  z-index: 1;
}

.offering-item-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.offering-item-icon-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 90px;
  height: 90px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 25px;
  z-index: 1;
  transition: all 0.4s ease;
}

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

.offering-item-card:hover .offering-item-icon-bg {
  transform: scale(1.2);
  opacity: 0.3;
}

.offering-item-content {
  flex: 1;
  z-index: 1;
  position: relative;
}

.offering-item-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.offering-item-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 24px;
}

.offering-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offering-item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.offering-item-list i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.offering-item-footer {
  margin-top: 24px;
  z-index: 1;
  position: relative;
}

.offering-item-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.offering-item-link:hover {
  gap: 15px;
  color: var(--accent-secondary);
}

.offering-item-link i {
  transition: transform 0.3s ease;
}

.offering-item-link:hover i {
  transform: translateX(5px);
}

/* Responsive Features New */
@media (max-width: 1200px) {
  .offerings-block-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .offerings-block {
    padding: 80px 0;
  }
  
  .offerings-block-title {
    font-size: 3rem;
  }
  
  .offerings-block-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .offerings-block {
    padding: 60px 0;
  }
  
  .offerings-block-title {
    font-size: 2.5rem;
  }
  
  .offerings-block-subtitle {
    font-size: 1.1rem;
  }
  
  .offerings-block-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .offering-item-card-inner {
    padding: 30px;
  }
}

/* ============================================
   NEW LEISTUNGEN SECTION - Modern Redesign
   ============================================ */
.methodology-block {
  position: relative;
  padding: 100px 0;
  background: var(--background-color);
  overflow: hidden;
}

.methodology-block-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.methodology-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.methodology-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: leistungenOrbFloat 10s ease-in-out infinite;
}

.methodology-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.methodology-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--gradient-accent);
  bottom: 10%;
  left: -10%;
  animation-delay: 3s;
}

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

.methodology-block-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.methodology-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.methodology-block-badge i {
  font-size: 16px;
}

.methodology-block-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.methodology-block-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.methodology-block-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.methodology-pillar-card {
  position: relative;
}

.pillar-card-inner {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
  position: relative;
  overflow: hidden;
}

.pillar-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.methodology-pillar-card:hover .pillar-card-inner {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.methodology-pillar-card:hover .pillar-card-inner::before {
  opacity: 0.05;
}

.pillar-number-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.pillar-icon-wrapper {
  position: relative;
  margin-bottom: 24px;
  z-index: 1;
}

.pillar-icon-circle {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.pillar-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
  filter: blur(20px);
}

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

.methodology-pillar-card:hover .pillar-icon-glow {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 0.4;
}

.pillar-content-wrapper {
  flex: 1;
  z-index: 1;
  position: relative;
  width: 100%;
}

.pillar-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.pillar-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 24px;
}

.pillar-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.pillar-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
  width: 100%;
}

.pillar-feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar-arrow {
  margin-top: 24px;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.5;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.methodology-pillar-card:last-child .pillar-arrow {
  display: none;
}

.methodology-pillar-card:hover .pillar-arrow {
  opacity: 1;
  transform: translateY(5px);
}

.methodology-block-cta {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  text-align: center;
}

.cta-content-box {
  background: var(--gradient-primary);
  border-radius: 30px;
  padding: 60px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--accent-color);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Leistungen New */
@media (max-width: 1200px) {
  .methodology-block-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .methodology-block {
    padding: 80px 0;
  }
  
  .methodology-block-title {
    font-size: 3rem;
  }
  
  .methodology-block-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillar-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .methodology-block {
    padding: 60px 0;
  }
  
  .methodology-block-title {
    font-size: 2.5rem;
  }
  
  .methodology-block-subtitle {
    font-size: 1.1rem;
  }
  
  .methodology-block-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pillar-card-inner {
    padding: 30px 20px;
  }
  
  .cta-content-box {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

/* ============================================
   NEW FEATURE DETAILS SECTION - Modern Redesign
   ============================================ */
.details-block {
  position: relative;
  padding: 100px 0;
  background: var(--surface-color);
  overflow: hidden;
}

.details-block-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.details-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(34, 197, 94, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.details-block-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.details-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.details-block-badge i {
  font-size: 16px;
}

.details-block-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.details-block-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.details-block-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-detail-card {
  position: relative;
  height: 100%;
}

.feature-detail-card-inner {
  background: var(--surface-color);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-detail-card:hover .feature-detail-card-inner {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.feature-detail-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.feature-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-detail-card:hover .feature-detail-image {
  transform: scale(1.1);
}

.feature-detail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(249, 115, 22, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-detail-card:hover .feature-detail-overlay {
  opacity: 1;
}

.feature-detail-icon-large {
  font-size: 4rem;
  color: white;
  animation: iconPulse 2s ease-in-out infinite;
}

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

.feature-detail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-detail-badge i {
  font-size: 14px;
}

.feature-detail-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-detail-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.3;
}

.feature-detail-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 24px;
  flex: 1;
}

.feature-detail-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.detail-benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.feature-detail-footer {
  padding: 0 30px 30px;
}

.feature-detail-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  width: 100%;
  justify-content: center;
}

.feature-detail-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  color: white;
}

.feature-detail-button i {
  transition: transform 0.3s ease;
}

.feature-detail-button:hover i {
  transform: translateX(5px);
}

/* Responsive Feature Details New */
@media (max-width: 1200px) {
  .details-block-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .details-block {
    padding: 80px 0;
  }
  
  .details-block-title {
    font-size: 3rem;
  }
  
  .details-block-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .details-block {
    padding: 60px 0;
  }
  
  .details-block-title {
    font-size: 2.5rem;
  }
  
  .details-block-subtitle {
    font-size: 1.1rem;
  }
  
  .details-block-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-detail-image-wrapper {
    height: 240px;
  }
  
  .feature-detail-content {
    padding: 24px;
  }
  
  .feature-detail-footer {
    padding: 0 24px 24px;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--background-color);
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  opacity: 0.6;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.about-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 40px;
}

.about-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--light-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-hero-visual {
  position: relative;
}

.about-hero-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.about-story {
  padding: 100px 0;
  background: var(--surface-color);
}

.about-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-story-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.about-story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}

.about-timeline {
  position: relative;
  padding-left: 40px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-year {
  position: absolute;
  left: -25px;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
}

.about-values {
  padding: 100px 0;
  background: var(--background-color);
}

.about-values-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-values-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-values-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.value-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
}

.about-impressum {
  padding: 100px 0;
  background: var(--surface-color);
}

.impressum-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.impressum-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.impressum-subtitle {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 40px;
}

.impressum-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.impressum-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.impressum-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.impressum-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.impressum-item a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-story-title,
  .about-values-title {
    font-size: 2.5rem;
  }
  
  .about-timeline {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-stats {
    gap: 20px;
  }
  
  .impressum-card {
    padding: 30px;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--background-color);
  overflow: hidden;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  opacity: 0.6;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.contact-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 32px;
}

.contact-hero-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.contact-info-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.contact-info-item span {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}

.contact-hero-visual {
  position: relative;
}

.contact-visual-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.1);
}

.contact-visual-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 24px;
}

.contact-visual-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact-visual-card p {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 24px;
}

.contact-visual-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-visual-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-visual-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.contact-form-section {
  padding: 100px 0;
  background: var(--surface-color);
}

.contact-form-wrapper {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.contact-form-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.7;
}

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

.form-group-modern label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.form-control-modern {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--default-font);
  color: var(--default-color);
  background: var(--surface-color);
  transition: all 0.3s ease;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

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

.checkbox-group-modern {
  margin-top: 8px;
}

.checkbox-label-modern {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
}

.checkbox-label-modern input[type="checkbox"] {
  display: none;
}

.checkmark-modern {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label-modern input[type="checkbox"]:checked + .checkmark-modern {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label-modern input[type="checkbox"]:checked + .checkmark-modern::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

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

.checkbox-label-modern a:hover {
  text-decoration: underline;
}

.form-messages-modern {
  margin-bottom: 24px;
}

.loading-message,
.error-message-modern,
.success-message-modern {
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.loading-message {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.error-message-modern {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.success-message-modern {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  width: 100%;
  justify-content: center;
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.btn-contact-submit i {
  transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
  transform: translateX(5px);
}

/* New Contact Form Styles */
.contact-form-new {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

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

.form-label-new {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.required-star {
  color: var(--accent-color);
  margin-left: 4px;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--default-font);
  color: var(--default-color);
  background: var(--surface-color);
  transition: all 0.3s ease;
}

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

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: var(--light-text);
}

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 8px;
  font-size: 0.875rem;
  color: #dc2626;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  width: 100%;
  justify-content: center;
}

.form-submit-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.form-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-submit-button svg {
  transition: transform 0.3s ease;
}

.form-submit-button:hover:not(:disabled) svg {
  transform: translateX(5px);
}

.form-status {
  margin-top: 24px;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-status .loading {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-status .sent-message {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-methods {
  padding: 100px 0;
  background: var(--background-color);
}

.contact-methods-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-methods-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact-methods-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.contact-method-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
}

.contact-method-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 24px;
}

.contact-method-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact-method-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 24px;
}

.method-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.method-link:hover {
  gap: 15px;
  color: var(--accent-secondary);
}

.method-link i {
  transition: transform 0.3s ease;
}

.method-link:hover i {
  transform: translateX(5px);
}

.method-address {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 500;
  line-height: 1.7;
}

.contact-process {
  padding: 100px 0;
  background: var(--surface-color);
}

.contact-process-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-process-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact-process-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.contact-process-timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.contact-process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
}

.process-step {
  position: relative;
  padding-left: 100px;
  margin-bottom: 60px;
}

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

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.step-content {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover .step-content {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
}

@media (max-width: 992px) {
  .contact-hero-title,
  .contact-methods-title,
  .contact-process-title {
    font-size: 2.5rem;
  }
  
  .contact-process-timeline::before {
    left: 25px;
  }
  
  .process-step {
    padding-left: 80px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
  
  .contact-process-timeline::before {
    display: none;
  }
  
  .process-step {
    padding-left: 0;
  }
  
  .step-number {
    position: relative;
    margin-bottom: 20px;
  }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */
.faq-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--background-color);
  overflow: hidden;
}

.faq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.faq-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  opacity: 0.6;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.faq-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
}

.faq-categories {
  padding: 40px 0;
  background: var(--surface-color);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.faq-categories-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: 12px 24px;
  background: var(--surface-color);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--default-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: var(--gradient-primary);
  border-color: var(--accent-color);
  color: white;
}

.faq-accordion-section {
  padding: 80px 0;
  background: var(--background-color);
}

.faq-accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item-modern {
  background: var(--surface-color);
  border-radius: 20px;
  border: 2px solid rgba(34, 197, 94, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.faq-item-modern.active {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

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

.faq-question-modern:hover {
  background: rgba(34, 197, 94, 0.02);
}

.faq-question-content {
  flex: 1;
}

.faq-question-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.4;
}

.faq-category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

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

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

.faq-answer-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 16px;
}

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

.faq-answer-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 8px;
}

.faq-answer-content strong {
  color: var(--heading-color);
  font-weight: 700;
}

.faq-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 24px 0;
}

.comparison-column {
  background: rgba(34, 197, 94, 0.05);
  border-radius: 16px;
  padding: 24px;
}

.comparison-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.comparison-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-column li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
}

.comparison-column li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-cta {
  padding: 100px 0;
  background: var(--surface-color);
}

.faq-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.faq-cta-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 40px;
}

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

.btn-faq-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-faq-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
  color: white;
}

.btn-faq-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  color: var(--heading-color);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(34, 197, 94, 0.2);
}

.btn-faq-secondary:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .faq-hero-title {
    font-size: 2.5rem;
  }
  
  .faq-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 100px 0 60px;
  }
  
  .faq-hero-title {
    font-size: 2rem;
  }
  
  .faq-question-modern {
    padding: 20px;
  }
  
  .faq-question-content h3 {
    font-size: 1.1rem;
  }
  
  .faq-answer-content {
    padding: 0 20px 20px;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
  }
  
  .btn-faq-primary,
  .btn-faq-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   POLICY PAGES STYLES (Privacy, Cookie, Terms)
   ============================================ */
.policy-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: var(--background-color);
  overflow: hidden;
}

.policy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.policy-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  opacity: 0.6;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.policy-hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
}

.policy-content {
  padding: 80px 0;
  background: var(--surface-color);
}

.policy-content-wrapper {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.policy-section {
  margin-bottom: 50px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 16px;
}

.policy-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.policy-section-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
}

.policy-section-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.policy-section-content h3:first-child {
  margin-top: 0;
}

.policy-section-content p {
  margin-bottom: 16px;
}

.policy-section-content ul,
.policy-section-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-section-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-section-content strong {
  color: var(--heading-color);
  font-weight: 700;
}

.policy-section-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.policy-section-content a:hover {
  text-decoration: underline;
}

.policy-info-box {
  background: rgba(34, 197, 94, 0.05);
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.policy-info-box p {
  margin-bottom: 12px;
}

.policy-info-box p:last-child {
  margin-bottom: 0;
}

.policy-info-box a {
  color: var(--accent-color);
  text-decoration: none;
}

.policy-info-box a:hover {
  text-decoration: underline;
}

.cookie-table {
  margin: 24px 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
  background: var(--gradient-primary);
  color: white;
}

.cookie-table th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}

.cookie-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

.cookie-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.02);
}

@media (max-width: 992px) {
  .policy-hero-title {
    font-size: 2.5rem;
  }
  
  .policy-content-wrapper {
    padding: 40px;
  }
  
  .policy-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .policy-hero {
    padding: 100px 0 40px;
  }
  
  .policy-hero-title {
    font-size: 2rem;
  }
  
  .policy-content-wrapper {
    padding: 30px 20px;
  }
  
  .policy-section-title {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .cookie-table {
    font-size: 0.9rem;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 12px;
  }
}

/* ============================================
   THANKS PAGE STYLES
   ============================================ */
.thanks-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--background-color);
  overflow: hidden;
}

.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.thanks-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  opacity: 0.6;
}

.thanks-icon-wrapper {
  margin-bottom: 32px;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
  animation: thanksPulse 2s ease-in-out infinite;
}

@keyframes thanksPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(34, 197, 94, 0.4);
  }
}

.thanks-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.thanks-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.thanks-info {
  padding: 80px 0;
  background: var(--surface-color);
}

.thanks-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.thanks-info-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
}

.thanks-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}

.thanks-info-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 24px;
}

.thanks-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.thanks-info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light-text);
}

.thanks-cta {
  padding: 80px 0;
  background: var(--background-color);
}

.thanks-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.thanks-cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 40px;
}

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

.btn-thanks-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-thanks-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
  color: white;
}

.btn-thanks-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  color: var(--heading-color);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(34, 197, 94, 0.2);
}

.btn-thanks-secondary:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .thanks-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .thanks-hero {
    padding: 100px 0 60px;
  }
  
  .thanks-title {
    font-size: 2rem;
  }
  
  .thanks-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .thanks-cta-buttons {
    flex-direction: column;
  }
  
  .btn-thanks-primary,
  .btn-thanks-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   NEW TESTIMONIALS SECTION - Modern Redesign
   ============================================ */
.feedback-block {
  position: relative;
  padding: 100px 0;
  background: var(--background-color);
  overflow: hidden;
}

.feedback-block-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.feedback-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.04) 0%, transparent 50%);
  opacity: 0.6;
}

.feedback-block-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.feedback-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feedback-block-badge i {
  font-size: 16px;
}

.feedback-block-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.feedback-block-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

.feedback-block-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feedback-item-card {
  position: relative;
}

.feedback-item-card-inner {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feedback-item-card:hover .feedback-item-card-inner {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}

.feedback-item-header-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.feedback-item-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.feedback-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-item-info {
  flex: 1;
}

.feedback-item-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.feedback-item-role {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 8px;
  font-weight: 500;
}

.feedback-item-rating {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 0.9rem;
}

.feedback-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feedback-item-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.feedback-item-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.feedback-item-results {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  flex-wrap: wrap;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}

.result-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.result-label {
  font-size: 0.85rem;
  color: var(--light-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Testimonials New */
@media (max-width: 1200px) {
  .feedback-block-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .feedback-block {
    padding: 80px 0;
  }
  
  .feedback-block-title {
    font-size: 3rem;
  }
  
  .feedback-block-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feedback-block {
    padding: 60px 0;
  }
  
  .feedback-block-title {
    font-size: 2.5rem;
  }
  
  .feedback-block-subtitle {
    font-size: 1.1rem;
  }
  
  .feedback-block-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feedback-item-card-inner {
    padding: 24px;
  }
  
  .feedback-item-results {
    flex-direction: column;
    gap: 16px;
  }
}

/* Footer Legal Info Update */
.footer-legal-info {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-top: 8px;
  line-height: 1.5;
}

.footer-contact-item .contact-value {
  line-height: 1.6;
  display: block;
}

.footer-contact-item .contact-value br {
  display: block;
  content: "";
  margin-top: 4px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--background-color);
}

.pricing-header {
  margin-bottom: 60px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--accent-color);
}

.pricing-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: var(--shadow-hover);
}

.pricing-card-featured {
  border-color: var(--accent-color);
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-badge-popular {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.price-currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.price-period {
  font-size: 1rem;
  color: var(--light-text);
  margin-left: 5px;
}

.pricing-description {
  color: var(--light-text);
  font-size: 1rem;
}

.pricing-card-body {
  flex: 1;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-features li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card-footer {
  margin-top: auto;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.pricing-btn-featured {
  background: var(--gradient-accent);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.pricing-note {
  margin-top: 40px;
  color: var(--light-text);
  font-size: 0.95rem;
}

.pricing-note i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Comparison Table Section */
.comparison-section {
  padding: 100px 0;
  background: var(--surface-color);
}

.comparison-header {
  margin-bottom: 60px;
}

.comparison-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.comparison-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  background: var(--background-color);
  padding: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background: var(--gradient-secondary);
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1rem;
  border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.comparison-table td {
  padding: 18px 20px;
  color: var(--default-color);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.comparison-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .pricing-title,
  .comparison-title {
    font-size: 2.5rem;
  }
  
  .pricing-card-featured {
    transform: scale(1);
  }
  
  .comparison-table-wrapper {
    padding: 10px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
}