/* Fonts */
:root {
  --default-font: "Sen", sans-serif;
  --heading-font: "Sen", sans-serif;
  --nav-font: "Sen", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #0f1419;
--default-color: #93c5fd;
--heading-color: #3b82f6;
--accent-color: #f8bbd9;
--surface-color: #1a202c;
--contrast-color: #f7fafc;
--bg-color: #0f1419;
--nav-color: #93c5fd;
--nav-hover-color: #3b82f6;
--nav-mobile-background-color: #1a202c;
--nav-dropdown-background-color: #1a202c;
--nav-dropdown-color: #93c5fd;
--nav-dropdown-hover-color: #3b82f6;
--gradient-primary: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
--gradient-secondary: linear-gradient(135deg, #0f1419 0%, #1a202c 100%);
--text-muted: #64748b;
--border-color: #2d3748;
--shadow-color: rgba(59, 130, 246, 0.15);

}

/* Color Presets */

.light-background {
  --background-color: #0f1419;
  --surface-color: #1a202c;
  --default-color: #93c5fd;
  --heading-color: #3b82f6;
  --accent-color: #f8bbd9;
  --contrast-color: #f7fafc;
  --text-muted: #64748b;
  --border-color: #2d3748;
  --shadow-color: rgba(59, 130, 246, 0.15);
}

.dark-background {
  --background-color: #0a0f14;
  --default-color: #bfdbfe;
  --heading-color: #60a5fa;
  --surface-color: #0f172a;
  --contrast-color: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #1e293b;
  --shadow-color: rgba(96, 165, 250, 0.25);
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-question:hover {
  background: rgba(59, 130, 246, 0.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Enhanced Header Styles */
/* ========================================
   NEW MODERN HEADER DESIGN - 2025
======================================== */
.header {
  backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.98) 50%, rgba(26, 26, 26, 0.95) 100%);
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.header:hover::before {
  left: 100%;
}

.scrolled .header {
  backdrop-filter: blur(25px) saturate(200%);
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(26, 26, 26, 0.98) 50%, rgba(15, 15, 15, 0.98) 100%);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.2);
  border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

/* Enhanced Navigation Styles - Modern Design */
.navmenu ul li {
  position: relative;
  margin: 0 0.5rem;
}

.navmenu ul li a {
  position: relative;
  padding: 0.75rem 1.25rem;
  color: #94a3b8;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

.navmenu ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(248, 187, 217, 0.1) 100%);
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.navmenu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 50%, #93c5fd 100%);
  border-radius: 3px 3px 0 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -2px 10px rgba(59, 130, 246, 0.5);
}

.navmenu ul li a:hover {
  color: #bfdbfe;
  transform: translateY(-2px);
}

.navmenu ul li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

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

.navmenu ul li a.active,
.navmenu ul li a:focus {
  color: #bfdbfe;
}

.navmenu ul li a.active::before,
.navmenu ul li a:focus::before {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(248, 187, 217, 0.2) 100%);
}

.navmenu ul li a.active::after,
.navmenu ul li a:focus::after {
  width: 80%;
}

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

.about_elem:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateX(5px);
}

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

.success-features .feature-item:hover {
  background: rgba(59, 130, 246, 0.05);
}

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

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

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

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

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

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

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

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

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

/* Enhanced Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .light-background {
    --background-color: #0f1419;
    --surface-color: #1a202c;
    --default-color: #93c5fd;
    --text-muted: #94a3b8;
  }
}

/* ========================================
   NEW MODERN FOOTER DESIGN - 2025
======================================== */
.footer-revolutionary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0f14 0%, #1a202c 30%, #0f172a 70%, #0a0f14 100%);
}

.footer-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

/* Footer Brand */
.footer-brand-revolutionary h3 {
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand-revolutionary h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand-revolutionary:hover h3::after {
  width: 100%;
}

/* Social Links - Modern Design */
.social-link-revolutionary {
  position: relative;
  overflow: hidden;
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-revolutionary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.social-link-revolutionary:hover::before {
  width: 120%;
  height: 120%;
}

.social-link-revolutionary i {
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-revolutionary:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4), 0 0 20px rgba(248, 187, 217, 0.3);
  border-color: rgba(59, 130, 246, 0.6) !important;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(248, 187, 217, 0.2) 100%) !important;
}

.social-link-revolutionary:hover i {
  color: #bfdbfe !important;
  transform: rotate(360deg) scale(1.2);
}

/* Footer Links - Modern Design */
.footer-revolutionary ul li {
  position: relative;
  overflow: hidden;
}

.footer-revolutionary ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
}

.footer-revolutionary ul li a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.footer-revolutionary ul li a i {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 0.5rem;
}

.footer-revolutionary ul li a:hover {
  color: #bfdbfe !important;
  transform: translateX(12px);
  padding-left: 1rem;
}

.footer-revolutionary ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-revolutionary ul li a:hover i {
  color: #f8bbd9 !important;
  transform: scale(1.3) rotate(90deg);
  margin-right: 0.75rem;
}

/* Newsletter Form - Modern Design */
.input-group-revolutionary {
  display: flex;
  margin-bottom: 1rem;
}

.form-control-revolutionary {
  flex: 1;
  background: rgba(45, 27, 61, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px 0 0 12px;
  color: #bfdbfe;
  padding: 0.875rem 1.25rem;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.newsletter-form-revolutionary .form-control-revolutionary {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.newsletter-form-revolutionary .form-control-revolutionary:focus {
  border-color: rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 0 20px rgba(59, 130, 246, 0.3) !important;
  background: rgba(45, 27, 61, 0.8) !important;
  transform: scale(1.02);
}

.btn-revolutionary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  border: none;
  border-radius: 0 12px 12px 0;
  color: white;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-revolutionary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-revolutionary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5), 0 0 25px rgba(248, 187, 217, 0.4);
}

.btn-revolutionary i {
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-revolutionary:hover i {
  transform: translateX(4px) scale(1.2);
}

/* Footer Bottom - Modern Design */
.footer-bottom-revolutionary a {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.footer-bottom-revolutionary a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom-revolutionary a:hover {
  color: #bfdbfe !important;
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.footer-bottom-revolutionary a:hover::before {
  width: 80%;
}

/* Footer Section Headers */
.footer-revolutionary h5 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}

.footer-revolutionary h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-revolutionary h5:hover::after {
  width: 100%;
}

/* New Mobile Menu Button */
.mobile-menu-btn {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  position: relative;
  margin-left: auto;
  order: 2;
}

.mobile-menu-icon {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a202c;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover .mobile-menu-icon span {
  background: #3b82f6;
}

.mobile-menu-btn:hover .mobile-menu-icon span:nth-child(1) {
  transform: translateY(2px);
}

.mobile-menu-btn:hover .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-2px);
}

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

/* ========================================
   HERO SECTION - REVOLUTIONARY DESIGN
======================================== */
/* ========================================
   HERO SECTION - AI ANTI-FRAUD DESIGN 2025
======================================== */
.hero-ai-fraud {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 0, 0.2) 0%, transparent 50%),
    linear-gradient(45deg, #0a0a0a 0%, #1a0a2e 25%, #2a0a0a 50%, #0a2a0a 75%, #0a0a0a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}

.hero-ai-fraud::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.15) 50%, rgba(255, 0, 255, 0.15) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.15) 50%, rgba(0, 255, 255, 0.15) 51%, transparent 52%);
  animation: cyberGrid 8s linear infinite;
}

.hero-ai-fraud::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 255, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 40%);
  animation: neonFloat 12s ease-in-out infinite;
}

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

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

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 2%),
    radial-gradient(circle at 75% 75%, rgba(248, 187, 217, 0.04) 0%, transparent 2%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 1.5%);
  background-size: 200px 200px;
  animation: patternFloat 25s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes patternFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25% { transform: translate(20px, -10px) scale(1.05); opacity: 0.8; }
  50% { transform: translate(-10px, 20px) scale(0.95); opacity: 0.5; }
  75% { transform: translate(15px, 15px) scale(1.02); opacity: 0.7; }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow:
    150px 100px #3b82f6,
    250px 300px #f8bbd9,
    400px 150px #3b82f6,
    600px 250px #f8bbd9,
    800px 100px #3b82f6,
    100px 400px #f8bbd9,
    300px 500px #3b82f6,
    500px 350px #f8bbd9,
    700px 450px #3b82f6;
  animation: particlesFloatModern 20s ease-in-out infinite;
}

.hero-particles::after {
  animation-delay: 10s;
  width: 8px;
  height: 8px;
  box-shadow:
    200px 150px #f8bbd9,
    350px 400px #3b82f6,
    550px 100px #f8bbd9,
    750px 300px #3b82f6,
    900px 500px #f8bbd9,
    50px 350px #3b82f6,
    450px 200px #f8bbd9,
    650px 450px #3b82f6,
    850px 150px #f8bbd9;
}

@keyframes particlesFloatModern {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(40px, -20px) scale(1.2); opacity: 0.6; }
  50% { transform: translate(-20px, 30px) scale(0.8); opacity: 0.4; }
  75% { transform: translate(30px, 20px) scale(1.1); opacity: 0.7; }
}

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

.hero-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 50px;
  padding: 1.5rem 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: cyberBadgeGlow 3s ease-in-out infinite alternate;
}

.hero-badge-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: cyberBadgeShine 2s linear infinite;
}

@keyframes cyberBadgeGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3),
      0 0 60px rgba(255, 0, 255, 0.1);
    border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  }
  100% {
    box-shadow:
      0 0 30px rgba(0, 255, 255, 0.5),
      0 0 60px rgba(0, 255, 255, 0.3),
      0 0 90px rgba(0, 255, 255, 0.1);
    border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff, #00ffff) 1;
  }
}

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

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
  }
}

.hero-badge-ai:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(248, 187, 217, 0.2) 100%);
}

.badge-icon {
  font-size: 1.2rem;
  color: #3b82f6;
  animation: iconPulse 2s ease-in-out infinite;
}

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

.badge-text {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.hero-title-ai {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff,
    0 0 60px #ff00ff,
    0 0 80px #ff00ff;
  position: relative;
  animation: cyberTitleFlicker 4s ease-in-out infinite;
}

.hero-title-ai::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #00ffff;
  text-shadow:
    0 0 20px #00ffff,
    0 0 40px #00ffff,
    0 0 60px #00ffff;
  opacity: 0;
  animation: cyberTitleGlow 4s ease-in-out infinite 2s;
  clip-path: inset(0 0 100% 0);
}

.title-highlight {
  display: inline-block;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow:
    0 0 30px #ff00ff,
    0 0 60px #ff00ff;
  animation: neonHighlight 2s ease-in-out infinite alternate;
}

@keyframes cyberTitleFlicker {
  0%, 100% {
    text-shadow:
      0 0 20px #ff00ff,
      0 0 40px #ff00ff,
      0 0 60px #ff00ff,
      0 0 80px #ff00ff;
  }
  50% {
    text-shadow:
      0 0 30px #00ffff,
      0 0 60px #00ffff,
      0 0 90px #00ffff,
      0 0 120px #00ffff;
  }
}

@keyframes cyberTitleGlow {
  0%, 100% { opacity: 0; clip-path: inset(0 0 100% 0); }
  50% { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes neonHighlight {
  0% {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    text-shadow: 0 0 30px #ff00ff, 0 0 60px #ff00ff;
  }
  100% {
    background: linear-gradient(45deg, #00ffff, #ffff00, #ff00ff, #00ffff);
    text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;
  }
}

.hero-subtitle-ai {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-stats-ai {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item-ai {
  flex: 1;
  min-width: 120px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.6) 0%, rgba(30, 30, 30, 0.4) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-item-ai:hover::before {
  left: 100%;
}

.stat-item-ai:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-number-ai {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label-ai {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background:
    linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%);
  color: #ffffff;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 20px rgba(255, 0, 255, 0.5),
    0 0 40px rgba(255, 0, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00) 1;
  animation: cyberBtnGlow 3s ease-in-out infinite alternate;
}

.btn-primary-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: cyberBtnShine 2s linear infinite;
}

.btn-primary-ai:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.8),
    0 0 60px rgba(255, 0, 255, 0.5),
    0 0 90px rgba(255, 0, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
}

@keyframes cyberBtnGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

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

.btn-primary-ai .btn-arrow {
  transition: transform 0.4s ease;
}

.btn-primary-ai:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-secondary-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #3b82f6;
  padding: 1.25rem 2.5rem;
  border: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-secondary-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(248, 187, 217, 0.05) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-secondary-ai:hover::before {
  left: 0;
}

.btn-secondary-ai:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.6);
  color: #bfdbfe;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.visual-main-ai {
  position: relative;
  width: 500px;
  height: 500px;
}

.visual-core-ai {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.6), 0 0 120px rgba(59, 130, 246, 0.3);
  z-index: 10;
  animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 60px rgba(59, 130, 246, 0.6), 0 0 120px rgba(59, 130, 246, 0.3); }
  50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 80px rgba(59, 130, 246, 0.8), 0 0 150px rgba(59, 130, 246, 0.5); }
}

.visual-core-ai i {
  font-size: 5rem;
  color: #f7fafc;
  animation: iconRotate 8s linear infinite;
}

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

.core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.visual-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

.ring-1 {
  width: 280px;
  height: 280px;
  animation-duration: 20s;
}

.ring-2 {
  width: 380px;
  height: 380px;
  animation-duration: 25s;
  animation-direction: reverse;
}

.ring-3 {
  width: 480px;
  height: 480px;
  animation-duration: 30s;
}

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

.visual-data-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(30, 30, 30, 0.6) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: dataPointFloat 6s ease-in-out infinite;
}

.visual-data-point:hover {
  transform: scale(1.1);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.visual-data-point i {
  font-size: 1.5rem;
  color: #3b82f6;
}

.visual-data-point span {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  white-space: nowrap;
}

.point-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.point-2 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

.point-3 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 3s;
}

.point-4 {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  animation-delay: 4.5s;
}

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

@media (max-width: 992px) {
  .hero-title-ai {
    font-size: 3rem;
  }
  
  .hero-visual-ai {
    height: 400px;
    margin-top: 3rem;
  }
  
  .visual-main-ai {
    width: 350px;
    height: 350px;
  }
  
  .visual-core-ai {
    width: 120px;
    height: 120px;
  }
  
  .visual-core-ai i {
    font-size: 3rem;
  }
}

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

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

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

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

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

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

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

.hero-title-revolutionary {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 30%, #f8bbd9 70%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 50px rgba(59, 130, 246, 0.4);
  animation: titleGlow 4s ease-in-out infinite;
}

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

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

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

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

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

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

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

.stat-number-revolutionary {
  font-size: 3rem;
  font-weight: 900;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hexagon-center-revolutionary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 50%, #93c5fd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.5);
  animation: centerPulse 4s ease-in-out infinite;
}

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

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

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

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

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

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

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

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

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

/* ========================================
   FEATURES SECTION - REVOLUTIONARY DESIGN
======================================== */
/* ========================================
   FEATURES SECTION - AI ANTI-FRAUD DESIGN
======================================== */
.features-ai {
  background: linear-gradient(180deg, #0a0f14 0%, #1a202c 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.features-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(248, 187, 217, 0.02) 50%, transparent 52%);
  background-size: 60px 60px;
  animation: featuresGridMove 30s linear infinite;
  opacity: 0.5;
}

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

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

.feature-card-ai {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(15, 20, 25, 0.8) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.08) 50%, rgba(255, 255, 0, 0.05) 100%);
  border: 3px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 32px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: cyberCardIdle 8s ease-in-out infinite alternate;
}

.feature-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.feature-card-ai::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
  border-radius: 35px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature-card-ai:hover::before {
  transform: scaleX(1);
  box-shadow: 0 0 30px rgba(255, 0, 255, 1);
}

.feature-card-ai:hover::after {
  opacity: 1;
}

.feature-card-ai:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 0 50px rgba(255, 0, 255, 0.4),
    0 0 100px rgba(255, 0, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff, #00ffff) 1;
  animation: cyberCardHover 2s ease-in-out infinite alternate;
}

@keyframes cyberCardIdle {
  0% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
  100% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

@keyframes cyberCardHover {
  0% { filter: brightness(1.1); }
  100% { filter: brightness(1.3); }
}

.feature-icon-ai {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.feature-card-ai:hover .feature-icon-ai {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(248, 187, 217, 0.25) 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.feature-icon-ai i {
  font-size: 2.5rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
  animation: iconFloat 3s ease-in-out infinite;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  border-radius: 20px;
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.feature-title-ai {
  font-size: 1.75rem;
  font-weight: 800;
  color: #bfdbfe;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.feature-description-ai {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.feature-list-ai li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #94a3b8;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-list-ai li:last-child {
  border-bottom: none;
}

.feature-list-ai li:hover {
  color: #bfdbfe;
  transform: translateX(8px);
  padding-left: 0.5rem;
}

.feature-list-ai li i {
  color: #3b82f6;
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: checkPulse 2s ease-in-out infinite;
}

.feature-badge-ai {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.feature-card-ai:hover .feature-badge-ai {
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  color: #f7fafc;
  border-color: transparent;
  transform: scale(1.05);
}

.cta-section-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(30, 30, 30, 0.6) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  margin-top: 5rem;
}

.cta-section-ai::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: ctaBgFloat 10s ease-in-out infinite;
}

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

.cta-title-ai {
  font-size: 3rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-button-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  color: #f7fafc;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-button-ai::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button-ai:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button-ai:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

@media (max-width: 768px) {
  .features-grid-ai {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title-ai {
    font-size: 2.5rem;
  }
  
  .cta-title-ai {
    font-size: 2rem;
  }
}

.features-revolutionary {
  background:
    radial-gradient(ellipse 150% 100% at 25% 25%, rgba(255, 0, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 120% 80% at 75% 75%, rgba(0, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 100% 120% at 50% 50%, rgba(255, 255, 0, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #2a0a0a 0%, #1a0a2e 25%, #0a2a0a 50%, #2a0a0a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  padding: 14rem 0;
}

.features-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.15) 50%, rgba(255, 0, 255, 0.15) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.15) 50%, rgba(0, 255, 255, 0.15) 51%, transparent 52%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 0, 0.08) 0%, transparent 30%);
  animation: cyberFeaturesCircuit 25s linear infinite;
}

@keyframes cyberFeaturesCircuit {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(60px, -30px) rotate(5deg); }
  50% { transform: translate(-40px, 40px) rotate(-3deg); }
  75% { transform: translate(50px, 30px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

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

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

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

.section-title-revolutionary {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #bfdbfe;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

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

.feature-icon-revolutionary {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 50%, #93c5fd 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

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

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

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

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

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

.feature-title-revolutionary {
  color: #bfdbfe;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   SUCCESS JOURNEY SECTION - REVOLUTIONARY
======================================== */
/* ========================================
   FEATURE DETAILS SECTION - AI ANTI-FRAUD DESIGN
======================================== */
.feature-details-ai {
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 80% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(255, 255, 0, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #2a0a0a 50%, #0a2a0a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
}

.feature-details-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.1) 50%, rgba(255, 0, 255, 0.1) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, rgba(0, 255, 255, 0.1) 51%, transparent 52%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 0, 0.05) 0%, transparent 40%);
  animation: cyberFeatureGrid 15s linear infinite;
}

@keyframes cyberFeatureGrid {
  0% { transform: translate(0, 0); }
  25% { transform: translate(30px, -15px); }
  50% { transform: translate(-20px, 25px); }
  75% { transform: translate(25px, 20px); }
  100% { transform: translate(0, 0); }
}

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

.feature-details-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(248, 187, 217, 0.06) 0%, transparent 50%);
  animation: detailsBgMove 20s ease-in-out infinite;
}

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

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

.section-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(248, 187, 217, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  padding: 0.875rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.section-badge-ai i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.section-badge-ai span {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95rem;
}

.section-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #bfdbfe;
  line-height: 1.2;
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-container-ai {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.step-card-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
}

.step-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.step-card-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.85) 0%, rgba(30, 30, 30, 0.65) 100%);
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -1.5rem;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, transparent 100%);
  z-index: 1;
}

.step-card-ai:last-child .step-connector {
  display: none;
}

.step-header-ai {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-number-ai {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transition: all 0.4s ease;
}

.step-card-ai:hover .step-number-ai {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #f7fafc;
  position: relative;
  z-index: 2;
}

.step-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.step-icon-ai {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(248, 187, 217, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.step-card-ai:hover .step-icon-ai {
  transform: scale(1.1);
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(248, 187, 217, 0.2) 100%);
}

.step-icon-ai i {
  font-size: 2.5rem;
  color: #3b82f6;
  animation: iconFloat 3s ease-in-out infinite;
}

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

.step-title-ai {
  font-size: 1.75rem;
  font-weight: 800;
  color: #bfdbfe;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.step-description-ai {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.step-features-ai li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #94a3b8;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

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

.step-features-ai li:hover {
  color: #bfdbfe;
  transform: translateX(8px);
  padding-left: 0.5rem;
}

.step-features-ai li i {
  color: #3b82f6;
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: checkPulse 2s ease-in-out infinite;
}

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

.step-badge-ai {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.step-card-ai:hover .step-badge-ai {
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  color: #f7fafc;
  border-color: transparent;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .steps-container-ai {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step-connector {
    display: none;
  }
  
  .section-title-ai {
    font-size: 2.5rem;
  }
}

.success-journey-revolutionary {
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 50%, #64748b 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

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

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

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

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

.journey-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

.step-card-revolutionary:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 70px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.step-number-revolutionary {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 50%, #93c5fd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
  font-size: 2rem;
  font-weight: 900;
  color: white;
}

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

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

.sitename {
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.about-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #bfdbfe;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

.about-stat-revolutionary:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
  border-color: #3b82f6;
}

.about-stat-number-revolutionary {
  font-size: 3rem;
  font-weight: 900;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

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

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

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

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

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

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

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

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

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

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

.faq-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.faq-item-revolutionary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

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

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

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

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

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

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

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

/* ========================================
   TESTIMONIALS SECTION - REVOLUTIONARY
======================================== */
/* ========================================
   TESTIMONIALS SECTION - AI ANTI-FRAUD DESIGN
======================================== */
.testimonials-ai {
  background:
    radial-gradient(ellipse 100% 70% at 30% 30%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 90% at 70% 70%, rgba(0, 255, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 100% at 50% 20%, rgba(255, 255, 0, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1a0a2e 0%, #2a0a0a 30%, #0a2a0a 70%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
}

.testimonials-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255, 0, 255, 0.12) 50%, rgba(255, 0, 255, 0.12) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(0, 255, 255, 0.12) 50%, rgba(0, 255, 255, 0.12) 51%, transparent 52%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 0, 0.08) 0%, transparent 35%);
  animation: cyberTestimonialsMatrix 20s linear infinite;
}

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

@keyframes testimonialsBgShift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.testimonials-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(248, 187, 217, 0.05) 0%, transparent 50%);
  animation: testimonialsBgFloat 25s ease-in-out infinite;
}

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

.testimonials-header-ai {
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.testimonials-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(248, 187, 217, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  padding: 0.875rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.testimonials-badge-ai i {
  color: #3b82f6;
  font-size: 1.1rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

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

.testimonials-badge-ai span {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonials-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #bfdbfe;
  line-height: 1.2;
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.testimonial-card-ai {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(15, 20, 25, 0.8) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.08) 0%, rgba(0, 255, 255, 0.06) 50%, rgba(255, 255, 0, 0.04) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 28px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 25px rgba(255, 0, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: cyberTestimonialIdle 10s ease-in-out infinite alternate;
}

.testimonial-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}

.testimonial-card-ai::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-card-ai:hover::before {
  transform: scaleX(1);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.9);
}

.testimonial-card-ai:hover::after {
  opacity: 1;
}

.testimonial-card-ai:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.25),
    0 0 80px rgba(255, 0, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
  animation: cyberTestimonialHover 3s ease-in-out infinite alternate;
}

@keyframes cyberTestimonialIdle {
  0% { box-shadow: 0 0 25px rgba(255, 0, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
  100% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
}

@keyframes cyberTestimonialHover {
  0% { filter: brightness(1.1) hue-rotate(0deg); }
  100% { filter: brightness(1.2) hue-rotate(15deg); }
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(248, 187, 217, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.testimonial-card-ai:hover .testimonial-quote-icon {
  opacity: 0.7;
  transform: scale(1.1) rotate(5deg);
}

.testimonial-quote-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.testimonial-header-ai {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar-ai {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-avatar-ai::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.testimonial-card-ai:hover .testimonial-avatar-ai::before {
  width: 200%;
  height: 200%;
}

.testimonial-card-ai:hover .testimonial-avatar-ai {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.avatar-2 {
  background: linear-gradient(135deg, #f8bbd9 0%, #93c5fd 100%);
}

.avatar-3 {
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
}

.testimonial-avatar-ai i {
  font-size: 2rem;
  color: #f7fafc;
  position: relative;
  z-index: 1;
}

.testimonial-info-ai {
  flex: 1;
}

.testimonial-name-ai {
  font-size: 1.25rem;
  font-weight: 700;
  color: #bfdbfe;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.testimonial-role-ai {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
}

.testimonial-stars-ai {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars-ai i {
  color: #3b82f6;
  font-size: 1.2rem;
  animation: starPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.testimonial-stars-ai i:nth-child(1) { --i: 0; }
.testimonial-stars-ai i:nth-child(2) { --i: 1; }
.testimonial-stars-ai i:nth-child(3) { --i: 2; }
.testimonial-stars-ai i:nth-child(4) { --i: 3; }
.testimonial-stars-ai i:nth-child(5) { --i: 4; }

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

.testimonial-text-ai {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text-ai::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .testimonials-title-ai {
    font-size: 2.5rem;
  }
  
  .testimonials-grid-ai {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

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

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

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

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

.testimonials-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #bfdbfe;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.testimonial-slide-revolutionary:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
  border-color: #3b82f6;
}

.testimonial-image-revolutionary {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  border: 4px solid #3b82f6;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

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

.testimonial-name-revolutionary {
  font-size: 1.5rem;
  font-weight: 800;
  color: #bfdbfe;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

.contact-title-revolutionary {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #1e293b;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.contact-form-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 50%, #93c5fd 100%);
}

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

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

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

.form-control-revolutionary:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-title-new {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

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

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

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

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

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

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

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

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

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

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

.btn-outline-new:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

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

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

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

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

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

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

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

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

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

.feature-list-new li:hover {
  color: #3b82f6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header .logo {
  line-height: 1;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem;
  border-radius: 12px;
}

.header .logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(248, 187, 217, 0.05) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.header .logo:hover::before {
  opacity: 1;
}

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

.header .logo img {
  max-height: 42px;
  margin-right: 10px;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .logo:hover img {
  filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.5));
  transform: rotate(2deg);
}

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

/* New Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, #0f1419 0%, #1a202c 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 2rem 0;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 10000;
}

.mobile-menu-close:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  transform: rotate(90deg);
}

.mobile-menu-nav {
  margin-top: 4rem;
  padding: 0 1.5rem;
}

.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav li {
  margin-bottom: 0.5rem;
}

.mobile-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #bfdbfe;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
  left: 100%;
}

.mobile-menu-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  transform: translateX(10px);
  border-left: 3px solid #3b82f6;
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .navmenu {
    padding: 0;
    z-index: 9997;
    order: 1;
  }

  .navmenu ul {
    display: none;
  }

  .mobile-menu-btn {
    margin-right: 0;
    margin-left: auto;
    order: 2;
  }

  .header .container-fluid {
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .mobile-menu-btn {
    display: none !important;
  }

  .mobile-menu-overlay {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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


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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   MODERN COOKIE POPUP DESIGN - 2025
======================================== */
#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  z-index: 10000;
  display: none;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

#cookie-popup[style*="display: block"],
#cookie-popup[style*="display:flex"] {
  display: block !important;
}

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

#cookie-popup .popup-content {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.98) 50%, rgba(26, 26, 26, 0.98) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(59, 130, 246, 0.1),
              0 0 40px rgba(59, 130, 246, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#cookie-popup .popup-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

#cookie-popup .popup-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

#cookie-popup .popup-content:hover::after {
  left: 100%;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

#cookie-popup .popup-message {
  position: relative;
  z-index: 2;
  flex: 1;
}

#cookie-popup .popup-message p {
  margin: 0;
  padding: 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}

#cookie-popup .popup-message a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  padding: 0 2px;
}

#cookie-popup .popup-message a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

#cookie-popup .popup-message a:hover {
  color: #bfdbfe;
  transform: translateY(-2px);
}

#cookie-popup .popup-message a:hover::before {
  width: 100%;
}

#cookie-popup button {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4),
              0 0 0 0 rgba(59, 130, 246, 0.5);
  overflow: hidden;
  align-self: flex-start;
  white-space: nowrap;
}

#cookie-popup button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-popup button:hover::before {
  width: 300px;
  height: 300px;
}

#cookie-popup button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6),
              0 0 0 4px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #f8bbd9 0%, #93c5fd 100%);
}

#cookie-popup button:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Cookie Icon Decoration - using background */
#cookie-popup .popup-content {
  position: relative;
  background-image: 
    radial-gradient(circle at 95% 5%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(26, 15, 46, 0.98) 0%, rgba(45, 27, 61, 0.98) 50%, rgba(26, 15, 46, 0.98) 100%);
  background-size: 200% 200%, 100% 100%;
  background-position: 95% 5%, center;
  animation: cookie-bg-float 4s ease-in-out infinite;
}

@keyframes cookie-bg-float {
  0%, 100% { background-position: 95% 5%, center; }
  50% { background-position: 95% 0%, center; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  #cookie-popup .popup-content {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  #cookie-popup .popup-message p {
    font-size: 0.9rem;
  }

  #cookie-popup button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  #cookie-popup .popup-content {
    padding: 1.25rem;
    border-radius: 16px;
  }

  #cookie-popup .popup-message p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  #cookie-popup button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

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

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

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

.about_elem {
  margin-bottom: 2rem;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================================
   FOOTER MODERN STYLES - Additional Classes
======================================== */
.footer-bg-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s ease-in-out infinite;
}

.footer-bg-1 {
  top: 15%;
  left: 8%;
  width: 120px;
  height: 120px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(59, 130, 246, 0.08);
  animation: float 12s ease-in-out infinite;
}

.footer-bg-2 {
  bottom: 20%;
  right: 8%;
  width: 80px;
  height: 80px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(248, 187, 217, 0.1);
  animation: float 10s ease-in-out infinite reverse;
}

.footer-bg-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-wrapper:hover {
  transform: translateX(5px);
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.footer-logo-wrapper:hover .footer-logo-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.footer-logo-icon i {
  font-size: 1.8rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-wrapper:hover .footer-logo-icon i {
  transform: scale(1.2);
}

.footer-description {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

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

.newsletter-description {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.newsletter-note {
  color: #b0e0e6;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.newsletter-note i {
  color: #3b82f6;
  margin-right: 0.5rem;
}

.footer-copyright {
  color: #94a3b8;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-tagline {
  color: #94a3b8;
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-tagline i {
  color: #3b82f6;
  font-size: 1.1rem;
  margin-right: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-tagline:hover i {
  transform: translateY(-3px) scale(1.2);
  color: #f8bbd9;
}

.footer-disclaimer {
  color: #b0e0e6;
  margin: 0.5rem 0 0 0;
  font-size: 0.8rem;
}

.footer-content-revolutionary {
  position: relative;
  z-index: 2;
  padding: 5rem 0 0;
}

.footer-bottom-revolutionary {
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  padding: 2.5rem 0;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
}

/* ========================================
   ABOUT PAGE - AI ANTI-FRAUD DESIGN
======================================== */
.about-content-ai {
  background: linear-gradient(180deg, #0a0f14 0%, #1a202c 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.about-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(248, 187, 217, 0.05) 0%, transparent 50%);
  animation: aboutBgFloat 20s ease-in-out infinite;
}

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

.about-intro-card-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-intro-card-ai:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.about-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-badge-ai i {
  font-size: 1.1rem;
}

.about-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description-ai {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0;
}

.about-competence-card-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-competence-card-ai:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.competence-title-ai {
  font-size: 2rem;
  font-weight: 800;
  color: #bfdbfe;
  margin-bottom: 2rem;
}

.competence-list-ai {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.competence-item-ai {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.competence-item-ai:hover {
  transform: translateX(10px);
}

.competence-icon-ai {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.competence-item-ai:hover .competence-icon-ai {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.competence-icon-ai i {
  font-size: 1.8rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
}

.competence-content-ai {
  flex: 1;
}

.competence-item-title-ai {
  font-size: 1.25rem;
  font-weight: 700;
  color: #bfdbfe;
  margin-bottom: 0.5rem;
}

.competence-item-text-ai {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

.mission-ai {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f14 50%, #1a202c 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.mission-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(248, 187, 217, 0.02) 50%, transparent 52%);
  background-size: 60px 60px;
  animation: missionGridMove 30s linear infinite;
  opacity: 0.5;
}

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

.mission-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.mission-description-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
}

.values-ai {
  background: linear-gradient(180deg, #1a202c 0%, #0a0f14 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.values-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(248, 187, 217, 0.05) 0%, transparent 50%);
}

.values-header-ai {
  margin-bottom: 4rem;
}

.values-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 1rem;
}

.values-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.values-grid-ai {
  margin-top: 3rem;
}

.value-card-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.value-card-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.value-icon-ai {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.value-card-ai:hover .value-icon-ai {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.value-icon-ai i {
  font-size: 2.5rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
}

.value-title-ai {
  font-size: 1.5rem;
  font-weight: 800;
  color: #bfdbfe;
  margin-bottom: 1rem;
}

.value-description-ai {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0;
}

/* ========================================
   CONTACT PAGE - AI ANTI-FRAUD DESIGN
======================================== */
.contact-ai {
  background: linear-gradient(180deg, #0a0f14 0%, #1a202c 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.contact-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(248, 187, 217, 0.05) 0%, transparent 50%);
  animation: contactBgFloat 20s ease-in-out infinite;
}

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

.contact-header-ai {
  margin-bottom: 4rem;
}

.contact-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-form-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-form-ai::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: formBgRotate 20s linear infinite;
}

@keyframes formBgRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-group-ai {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.form-label-ai {
  display: block;
  color: #bfdbfe;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.form-control-ai {
  width: 100%;
  background: rgba(30, 30, 30, 0.7);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #bfdbfe;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-control-ai:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.form-control-ai::placeholder {
  color: #94a3b8;
  opacity: 0.6;
}

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

.form-check-ai {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.form-check-input-ai {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #3b82f6;
}

.form-check-label-ai {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-check-label-ai a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-check-label-ai a:hover {
  color: #f8bbd9;
  text-decoration: underline;
}

.contact-button-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  color: #f7fafc;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-button-ai::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-button-ai:hover::before {
  width: 300px;
  height: 300px;
}

.contact-button-ai:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.contact-info-ai {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f14 50%, #1a202c 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.contact-info-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(248, 187, 217, 0.02) 50%, transparent 52%);
  background-size: 60px 60px;
  animation: contactInfoGridMove 30s linear infinite;
  opacity: 0.5;
}

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

.contact-info-header-ai {
  margin-bottom: 4rem;
}

.contact-info-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 1rem;
}

.contact-info-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info-grid-ai {
  margin-top: 3rem;
}

.contact-info-card-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-info-card-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.contact-info-icon-ai {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.contact-info-card-ai:hover .contact-info-icon-ai {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.contact-info-icon-ai i {
  font-size: 2.5rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
}

.contact-info-card-title-ai {
  font-size: 1.5rem;
  font-weight: 800;
  color: #bfdbfe;
  margin-bottom: 1rem;
}

.contact-info-card-text-ai {
  font-size: 1.1rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   FAQ PAGE - AI ANTI-FRAUD DESIGN
======================================== */
.faq-ai {
  background: linear-gradient(180deg, #0a0f14 0%, #1a202c 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.faq-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(248, 187, 217, 0.05) 0%, transparent 50%);
  animation: faqBgFloat 20s ease-in-out infinite;
}

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

.faq-header-ai {
  margin-bottom: 4rem;
}

.faq-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title-ai {
  font-size: 3.5rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.help-section-ai {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f14 50%, #1a202c 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.help-section-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(248, 187, 217, 0.02) 50%, transparent 52%);
  background-size: 60px 60px;
  animation: helpSectionGridMove 30s linear infinite;
  opacity: 0.5;
}

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

.help-section-title-ai {
  font-size: 3rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 1rem;
}

.help-section-subtitle-ai {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

.help-section-button-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  color: #f7fafc;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.help-section-button-ai::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-section-button-ai:hover::before {
  width: 300px;
  height: 300px;
}

.help-section-button-ai:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
  color: #f7fafc;
}

/* FAQ Accordion Styles - Updated for Dark Theme */
.faq-item {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

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

.faq-question:hover {
  background: rgba(59, 130, 246, 0.05);
}

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

.faq-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon i {
  font-size: 1.5rem;
  color: #3b82f6;
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #bfdbfe;
  margin: 0;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(248, 187, 217, 0.2) 100%);
  border-color: rgba(59, 130, 246, 0.5);
}

.faq-toggle i {
  font-size: 1.2rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

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

.faq-answer-content {
  padding: 0 2rem 2rem 2rem;
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1rem;
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-answer-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.faq-answer-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

@media (max-width: 768px) {
  .about-title-ai,
  .mission-title-ai,
  .values-title-ai,
  .contact-title-ai,
  .contact-info-title-ai,
  .faq-title-ai,
  .help-section-title-ai {
    font-size: 2.5rem;
  }
  
  .about-intro-card-ai,
  .about-competence-card-ai,
  .value-card-ai,
  .contact-form-ai,
  .contact-info-card-ai {
    padding: 2rem;
  }
  
  .competence-item-ai {
    flex-direction: column;
    text-align: center;
  }
  
  .competence-icon-ai {
    margin: 0 auto;
  }
}

/* ========================================
   PAGE HERO & CONTENT - AI ANTI-FRAUD DESIGN
   (Cookie Policy, Privacy Policy, Terms, Thanks)
======================================== */
.page-hero-ai {
  background: linear-gradient(180deg, #0a0f14 0%, #1a202c 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.page-hero-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(248, 187, 217, 0.05) 0%, transparent 50%);
  animation: pageHeroBgFloat 20s ease-in-out infinite;
}

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

.page-hero-badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-hero-badge-ai i {
  font-size: 1.1rem;
}

.page-hero-title-ai {
  font-size: 4rem;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-hero-title-ai .gradient-text {
  background: linear-gradient(135deg, #bfdbfe 0%, #3b82f6 50%, #f8bbd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle-ai {
  font-size: 1.3rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==================== CYBERPUNK ABOUT PAGE ==================== */

.cyber-about-section {
  background:
    radial-gradient(ellipse 150% 100% at 50% 0%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 120% 80% at 20% 100%, rgba(0, 255, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 120% at 80% 50%, rgba(255, 255, 0, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #2a0a0a 50%, #0a2a0a 75%, #0a0a0a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  display: flex;
  align-items: center;
}

.cyber-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.12) 50%, rgba(255, 0, 255, 0.12) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.12) 50%, rgba(0, 255, 255, 0.12) 51%, transparent 52%);
  animation: cyberAboutGrid 20s linear infinite;
}

.cyber-about-intro {
  position: relative;
  z-index: 3;
}

.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: cyberBadgePulse 4s ease-in-out infinite alternate;
}

.cyber-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: cyberBadgeScan 3s linear infinite;
}

.cyber-badge i {
  color: #00ffff;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #00ffff);
  animation: cyberIconGlow 2s ease-in-out infinite alternate;
}

.cyber-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.cyber-about-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  position: relative;
}

.neon-text {
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff,
    0 0 60px #ff00ff;
  animation: neonFlicker 3s ease-in-out infinite alternate;
}

.cyber-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00ffff, #ffff00, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: cyberGlitch 5s ease-in-out infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.cyber-about-description {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 600px;
}

.hologram-text {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  animation: hologramShimmer 4s ease-in-out infinite;
}

.cyber-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.cyber-stat {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(15, 20, 25, 0.8) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow:
    0 0 20px rgba(255, 0, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  min-width: 120px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-stat:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.4),
    0 0 60px rgba(255, 0, 255, 0.2);
  border-color: rgba(255, 0, 255, 0.5);
}

.cyber-stat .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  display: block;
}

.cyber-stat .stat-label {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cyber-competence-matrix {
  position: relative;
  z-index: 3;
}

.cyber-matrix-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.matrix-icon {
  font-size: 2rem;
  animation: matrixIconPulse 2s ease-in-out infinite alternate;
}

.cyber-matrix-grid {
  display: grid;
  gap: 2rem;
}

.matrix-node {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(15, 20, 25, 0.9) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.08) 0%, rgba(0, 255, 255, 0.06) 50%, rgba(255, 255, 0, 0.04) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(255, 0, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.matrix-node::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}

.matrix-node:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.25),
    0 0 80px rgba(255, 0, 255, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
}

.node-core {
  width: 80px;
  height: 80px;
  background:
    linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.4),
    0 0 60px rgba(255, 0, 255, 0.2);
  border: 2px solid rgba(255, 0, 255, 0.4);
}

.node-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  animation: nodePulse 3s ease-in-out infinite;
}

.node-core i {
  font-size: 2rem;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  z-index: 2;
  position: relative;
}

.node-content h4 {
  color: #bfdbfe;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.node-content p {
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.node-connections {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.5), transparent);
  animation: nodeConnection 4s ease-in-out infinite;
}

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

@keyframes cyberBadgePulse {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes cyberIconGlow {
  0% { filter: drop-shadow(0 0 10px #00ffff); }
  100% { filter: drop-shadow(0 0 15px #00ffff) drop-shadow(0 0 25px #00ffff); }
}

@keyframes neonFlicker {
  0%, 100% {
    text-shadow:
      0 0 20px #ff00ff,
      0 0 40px #ff00ff,
      0 0 60px #ff00ff;
  }
  50% {
    text-shadow:
      0 0 30px #00ffff,
      0 0 60px #00ffff,
      0 0 90px #00ffff;
  }
}

@keyframes cyberGlitch {
  0%, 100% { opacity: 0; clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
  10% { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
  15% { opacity: 0; clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
  20% { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
  50% { opacity: 0; clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); }
}

@keyframes hologramShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
    border-color: rgba(0, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
    border-color: rgba(255, 255, 0, 0.7);
  }
}

@keyframes nodeConnection {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ==================== CYBERPUNK CONTACT PAGE ==================== */

.cyber-contact-section {
  background:
    radial-gradient(ellipse 120% 100% at 30% 20%, rgba(255, 0, 255, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 70% 80%, rgba(0, 255, 255, 0.20) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 50% 50%, rgba(255, 255, 0, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #2a0a0a 50%, #0a2a0a 75%, #0a0a0a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.cyber-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255, 0, 255, 0.1) 50%, rgba(255, 0, 255, 0.1) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, rgba(0, 255, 255, 0.1) 51%, transparent 52%);
  animation: cyberContactCircuit 25s linear infinite;
}

.cyber-contact-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 3;
}

.cyber-neural-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: neuralBadgePulse 4s ease-in-out infinite alternate;
}

.cyber-neural-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: neuralBadgeScan 3s linear infinite;
}

.cyber-neural-badge i {
  color: #ffff00;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #ffff00);
  animation: neuralIconGlow 2s ease-in-out infinite alternate;
}

.cyber-neural-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.cyber-contact-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
}

.neural-text {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  animation: neuralTextGlow 3s ease-in-out infinite alternate;
}

.quantum-text {
  background: linear-gradient(45deg, #ffff00, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
  animation: quantumTextFlicker 4s ease-in-out infinite;
}

.cyber-contact-subtitle {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.data-stream {
  background: linear-gradient(45deg, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  animation: dataStreamFlow 5s ease-in-out infinite;
}

.cyber-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cyber-form-container {
  position: relative;
  z-index: 3;
}

.cyber-form-matrix {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(15, 20, 25, 0.9) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.08) 0%, rgba(0, 255, 255, 0.06) 50%, rgba(255, 255, 0, 0.04) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.matrix-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 20px #ff00ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.form-icon {
  font-size: 1.8rem;
  animation: formIconPulse 2s ease-in-out infinite alternate;
}

.form-neural-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.neural-input-group {
  position: relative;
}

.neural-input-group.full-width {
  grid-column: 1 / -1;
}

.neural-label {
  display: block;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(147, 197, 253, 0.5);
}

.neural-input, .neural-select, .neural-textarea {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 32, 44, 0.6) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.08) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.neural-input:focus, .neural-select:focus, .neural-textarea:focus {
  outline: none;
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.4),
    inset 0 1px 0 rgba(0, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 32, 44, 0.8) 100%),
    linear-gradient(45deg, rgba(0, 255, 255, 0.15) 0%, rgba(255, 255, 0, 0.1) 100%);
}

.neural-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.input-glow, .select-glow, .textarea-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.neural-input-group:focus-within .input-glow,
.neural-input-group:focus-within .select-glow,
.neural-input-group:focus-within .textarea-glow {
  opacity: 1;
}

.cyber-consent {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.cyber-checkbox {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #ff00ff;
}

.cyber-consent-label {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.neural-link {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.neural-link:hover {
  color: #ffff00;
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}

.transmission-status {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-light {
  width: 12px;
  height: 12px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ff00;
  animation: statusLightPulse 2s ease-in-out infinite;
}

.status-text {
  color: #00ff00;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.cyber-transmit-btn {
  width: 100%;
  background:
    linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%);
  border: 3px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00) 1;
  border-radius: 50px;
  padding: 1.5rem 3rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.5),
    0 0 60px rgba(255, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: transmitBtnGlow 3s ease-in-out infinite alternate;
}

.cyber-transmit-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 50px rgba(255, 0, 255, 0.8),
    0 0 100px rgba(255, 0, 255, 0.5),
    0 0 150px rgba(255, 0, 255, 0.3);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
}

.btn-circuit {
  position: relative;
  width: 24px;
  height: 24px;
}

.circuit-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
  transform: translateY(-50%);
  animation: circuitFlow 2s linear infinite;
}

.circuit-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: circuitDot 2s linear infinite;
}

.btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: btnPulse 3s ease-in-out infinite;
}

.cyber-hologram-container {
  position: relative;
  z-index: 3;
}

.cyber-hologram-display {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hologram-screen {
  background:
    linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 32, 44, 0.8) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.08) 100%);
  border: 3px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00) 1;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.screen-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.03) 50%);
  background-size: 100% 4px;
  animation: scanlinesMove 0.1s linear infinite;
}

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

.neural-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.avatar-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  animation: avatarRingRotate 4s linear infinite;
}

.avatar-core {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #3b82f6 0%, #f8bbd9 50%, #ffff00 100%),
    linear-gradient(45deg, rgba(59, 130, 246, 0.3) 0%, rgba(248, 187, 217, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(59, 130, 246, 0.6),
    inset 0 0 20px rgba(59, 130, 246, 0.3);
  position: relative;
  z-index: 2;
}

.avatar-core i {
  font-size: 3rem;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  animation: avatarIconGlow 2s ease-in-out infinite alternate;
}

.avatar-pulse {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(255, 0, 255, 0.4);
  border-radius: 50%;
  animation: avatarPulse 3s ease-in-out infinite;
}

.neural-stats {
  margin-bottom: 2rem;
}

.stat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-label {
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-progress {
  flex: 1;
  height: 6px;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 3px;
  margin: 0 1rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 3px;
  animation: progressFill 2s ease-out forwards;
}

.connection-fill {
  background: linear-gradient(90deg, #00ff00, #00ffff);
  width: 99.9%;
}

.response-fill {
  background: linear-gradient(90deg, #ffff00, #ff00ff);
  width: 100%;
}

.security-fill {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  width: 100%;
}

.stat-value {
  color: #00ffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.neural-message {
  margin-top: 1.5rem;
}

.message-bubble {
  position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.message-text {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.message-tail {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(59, 130, 246, 0.2);
}

.message-tail::before {
  content: '';
  position: absolute;
  top: 1px;
  left: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(59, 130, 246, 0.3);
}

.hologram-base {
  position: relative;
  height: 40px;
  margin-top: 2rem;
}

.base-rings {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}

.base-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
}

.ring-1 {
  width: 80px;
  height: 80px;
  animation: baseRingPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 120px;
  height: 120px;
  animation: baseRingPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
  width: 160px;
  height: 160px;
  animation: baseRingPulse 4s ease-in-out infinite 2s;
}

.base-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  animation: baseGlowPulse 3s ease-in-out infinite;
}

@keyframes cyberContactCircuit {
  0% { transform: translate(0, 0); }
  25% { transform: translate(50px, -25px); }
  50% { transform: translate(-30px, 40px); }
  75% { transform: translate(40px, 30px); }
  100% { transform: translate(0, 0); }
}

@keyframes neuralBadgePulse {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes neuralIconGlow {
  0% { filter: drop-shadow(0 0 10px #ffff00); }
  100% { filter: drop-shadow(0 0 15px #ffff00) drop-shadow(0 0 25px #ffff00); }
}

@keyframes neuralTextGlow {
  0% { text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

@keyframes quantumTextFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  }
}

@keyframes dataStreamFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes formIconPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

@keyframes statusLightPulse {
  0%, 100% {
    box-shadow: 0 0 15px #00ff00;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 25px #00ff00, 0 0 35px #00ff00;
    opacity: 0.7;
  }
}

@keyframes transmitBtnGlow {
  0% {
    box-shadow:
      0 0 30px rgba(255, 0, 255, 0.5),
      0 0 60px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 30px rgba(0, 255, 255, 0.5),
      0 0 60px rgba(0, 255, 255, 0.3);
  }
}

@keyframes circuitFlow {
  0% { transform: translateY(-50%) scaleX(0); transform-origin: left; }
  50% { transform: translateY(-50%) scaleX(1); transform-origin: center; }
  100% { transform: translateY(-50%) scaleX(0); transform-origin: right; }
}

@keyframes circuitDot {
  0% { left: 0; opacity: 1; }
  50% { left: 50%; opacity: 0.5; }
  100% { left: 100%; opacity: 1; }
}

@keyframes btnPulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

@keyframes scanlinesMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

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

@keyframes avatarIconGlow {
  0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)); }
  100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) drop-shadow(0 0 30px rgba(59, 130, 246, 0.5)); }
}

@keyframes avatarPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    border-color: rgba(255, 0, 255, 0.4);
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
    border-color: rgba(0, 255, 255, 0.6);
  }
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: var(--fill-width, 100%); }
}

@keyframes baseRingPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes baseGlowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ==================== CYBERPUNK FAQ PAGE ==================== */

.cyber-faq-section {
  background:
    radial-gradient(ellipse 140% 120% at 30% 0%, rgba(255, 0, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 70% 100%, rgba(0, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 0, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #2a0a0a 50%, #0a2a0a 75%, #0a0a0a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.cyber-faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.08) 50%, rgba(255, 0, 255, 0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.08) 50%, rgba(0, 255, 255, 0.08) 51%, transparent 52%);
  animation: cyberFaqMatrix 30s linear infinite;
}

.cyber-faq-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 3;
}

.cyber-query-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: queryBadgeGlow 4s ease-in-out infinite alternate;
}

.cyber-query-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: queryBadgeScan 3s linear infinite;
}

.cyber-query-badge i {
  color: #ffff00;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #ffff00);
  animation: queryIconGlow 2s ease-in-out infinite alternate;
}

.cyber-query-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.cyber-faq-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
}

.query-text {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: queryTextGlow 3s ease-in-out infinite alternate;
}

.response-text {
  background: linear-gradient(45deg, #ffff00, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 1rem;
  animation: responseTextFlicker 4s ease-in-out infinite;
}

.cyber-faq-subtitle {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.database-stream {
  background: linear-gradient(45deg, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  animation: databaseStreamFlow 5s ease-in-out infinite;
}

.cyber-faq-matrix {
  position: relative;
  z-index: 3;
}

.query-node {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(15, 20, 25, 0.9) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 255, 0, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 20px;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.query-node:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.3),
    0 0 60px rgba(255, 0, 255, 0.2);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
}

.node-header {
  display: flex;
  align-items: center;
  padding: 2rem;
  background: rgba(15, 20, 25, 0.5);
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.query-node:hover .node-header {
  background: rgba(59, 130, 246, 0.1);
}

.node-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 2rem;
}

.indicator-light {
  width: 12px;
  height: 12px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ff00;
  animation: indicatorPulse 2s ease-in-out infinite;
}

.node-id {
  color: #00ff00;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
  font-family: 'Courier New', monospace;
}

.node-question {
  flex: 1;
}

.query-text {
  color: #bfdbfe;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.node-toggle {
  margin-left: 2rem;
}

.toggle-circuit {
  position: relative;
  width: 40px;
  height: 24px;
}

.circuit-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.circuit-dot {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.query-node.active .circuit-bar {
  background: linear-gradient(90deg, #00ffff, #ffff00, #ff00ff);
}

.query-node.active .circuit-dot {
  background: #ffff00;
  right: 0;
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}

.node-response {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(15, 20, 25, 0.8);
}

.query-node.active .node-response {
  max-height: 1000px;
}

.response-data {
  padding: 2rem;
}

.response-text {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.response-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.matrix-cell {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.matrix-cell:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
}

.cell-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.matrix-cell span {
  color: #93c5fd;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(147, 197, 253, 0.5);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-node {
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
}

.service-node:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: rgba(255, 0, 255, 0.4);
  transform: translateY(-3px);
}

.node-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #f8bbd9, #ffff00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.node-info h5 {
  color: #bfdbfe;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.node-info p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.lifeform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.lifeform-node {
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.lifeform-node:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-3px);
}

.lifeform-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lifeform-data h5 {
  color: #93c5fd;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.lifeform-data p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.delivery-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.matrix-protocol {
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 0, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
}

.matrix-protocol:hover {
  background: rgba(255, 255, 0, 0.1);
  border-color: rgba(255, 255, 0, 0.4);
  transform: translateY(-3px);
}

.protocol-icon {
  font-size: 2rem;
}

.protocol-info h5 {
  color: #bfdbfe;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.protocol-info p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.init-sequence {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.sequence-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s ease;
}

.sequence-step:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.step-data h5 {
  color: #93c5fd;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.step-data p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

@keyframes cyberFaqMatrix {
  0% { transform: translate(0, 0); }
  25% { transform: translate(50px, -25px); }
  50% { transform: translate(-30px, 30px); }
  75% { transform: translate(40px, 25px); }
  100% { transform: translate(0, 0); }
}

@keyframes queryBadgeGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes queryIconGlow {
  0% { filter: drop-shadow(0 0 10px #ffff00); }
  100% { filter: drop-shadow(0 0 15px #ffff00) drop-shadow(0 0 25px #ffff00); }
}

@keyframes queryTextGlow {
  0% { text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

@keyframes responseTextFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  }
}

@keyframes databaseStreamFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes indicatorPulse {
  0%, 100% {
    box-shadow: 0 0 15px #00ff00;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 25px #00ff00, 0 0 35px #00ff00;
    opacity: 0.7;
  }
}

/* ==================== CYBERPUNK CONTACT INFO SECTION ==================== */

.cyber-contact-info-section {
  background:
    radial-gradient(ellipse 140% 120% at 50% 0%, rgba(255, 0, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 20% 100%, rgba(0, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 80% 50%, rgba(255, 255, 0, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #2a0a0a 50%, #0a2a0a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}

.cyber-contact-info-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.1) 50%, rgba(255, 0, 255, 0.1) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, rgba(0, 255, 255, 0.1) 51%, transparent 52%);
  animation: cyberContactInfoMatrix 25s linear infinite;
}

.cyber-contact-info-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 3;
}

.cyber-comm-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: commBadgeGlow 4s ease-in-out infinite alternate;
}

.cyber-comm-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: commBadgeScan 3s linear infinite;
}

.cyber-comm-badge i {
  color: #ffff00;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #ffff00);
  animation: commIconGlow 2s ease-in-out infinite alternate;
}

.cyber-comm-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.cyber-contact-info-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
}

.comm-text {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: commTextGlow 3s ease-in-out infinite alternate;
}

.protocol-text {
  background: linear-gradient(45deg, #ffff00, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 1rem;
  animation: protocolTextFlicker 4s ease-in-out infinite;
}

.cyber-contact-info-subtitle {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.transmission-stream {
  background: linear-gradient(45deg, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  animation: transmissionStreamFlow 5s ease-in-out infinite;
}

.cyber-comm-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 3;
}

.comm-node {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(15, 20, 25, 0.9) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.08) 0%, rgba(0, 255, 255, 0.06) 50%, rgba(255, 255, 0, 0.04) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(255, 0, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comm-node:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.25),
    0 0 80px rgba(255, 0, 255, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
}

.node-core {
  width: 100px;
  height: 100px;
  background:
    linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.4),
    0 0 60px rgba(255, 0, 255, 0.2);
  border: 2px solid rgba(255, 0, 255, 0.4);
}

.node-pulse {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  animation: nodeCommPulse 3s ease-in-out infinite;
}

.comm-icon {
  font-size: 2.5rem;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  position: relative;
  z-index: 2;
}

.node-connections {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.5), transparent);
  animation: nodeCommConnection 4s ease-in-out infinite;
}

.node-data {
  text-align: center;
}

.comm-title {
  color: #bfdbfe;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.comm-value {
  color: #93c5fd;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(147, 197, 253, 0.5);
}

.comm-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: statusIndicatorPulse 2s ease-in-out infinite;
}

.status-indicator.online {
  background: #00ff00;
  box-shadow: 0 0 10px #00ff00;
}

.status-indicator.located {
  background: #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}

.status-indicator.scheduled {
  background: #ffff00;
  box-shadow: 0 0 10px #ffff00;
}

.status-indicator.connected {
  background: #00ffff;
  box-shadow: 0 0 10px #00ffff;
}

.status-text {
  color: #00ffff;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.cyber-central-hub {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hub-core {
  position: relative;
  width: 200px;
  height: 200px;
}

.hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
}

.ring-1 {
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  animation: hubRingPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  animation: hubRingPulse 4s ease-in-out infinite 1.3s;
  border-color: rgba(248, 187, 217, 0.25);
}

.ring-3 {
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  animation: hubRingPulse 4s ease-in-out infinite 2.6s;
}

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background:
    linear-gradient(135deg, #3b82f6 0%, #f8bbd9 50%, #ffff00 100%),
    linear-gradient(45deg, rgba(59, 130, 246, 0.3) 0%, rgba(248, 187, 217, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(59, 130, 246, 0.6),
    0 0 80px rgba(59, 130, 246, 0.3);
  border: 2px solid rgba(59, 130, 246, 0.4);
}

.hub-center i {
  font-size: 2.5rem;
  color: #ffffff;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
  animation: hubIconRotate 6s linear infinite;
}

.hub-pulse {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(248, 187, 217, 0.4);
  border-radius: 50%;
  animation: hubPulse 3s ease-in-out infinite;
}

.hub-status {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 250px;
}

.status-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.status-label {
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-value {
  color: #00ffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.status-value.operational {
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-value.low {
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

@keyframes cyberContactInfoMatrix {
  0% { transform: translate(0, 0); }
  25% { transform: translate(60px, -30px); }
  50% { transform: translate(-40px, 40px); }
  75% { transform: translate(50px, 30px); }
  100% { transform: translate(0, 0); }
}

@keyframes commBadgeGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes commIconGlow {
  0% { filter: drop-shadow(0 0 10px #ffff00); }
  100% { filter: drop-shadow(0 0 15px #ffff00) drop-shadow(0 0 25px #ffff00); }
}

@keyframes commTextGlow {
  0% { text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

@keyframes protocolTextFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  }
}

@keyframes transmissionStreamFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes nodeCommPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    border-color: rgba(0, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
    border-color: rgba(255, 255, 0, 0.7);
  }
}

@keyframes nodeCommConnection {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

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

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

@keyframes hubIconRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hubPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    border-color: rgba(248, 187, 217, 0.4);
  }
  50% {
    transform: scale(1.3);
    opacity: 0.1;
    border-color: rgba(59, 130, 246, 0.6);
  }
}

/* ==================== CYBERPUNK PRIVACY PAGE ==================== */

.cyber-privacy-hero {
  background:
    radial-gradient(ellipse 150% 120% at 50% 0%, rgba(255, 0, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 20% 100%, rgba(0, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 80% 50%, rgba(255, 255, 0, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #2a0a0a 50%, #0a2a0a 75%, #0a0a0a 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  display: flex;
  align-items: center;
}

.cyber-privacy-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.08) 50%, rgba(255, 0, 255, 0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.08) 50%, rgba(0, 255, 255, 0.08) 51%, transparent 52%);
  animation: privacyMatrix 20s linear infinite;
}

.cyber-privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: privacyBadgeGlow 4s ease-in-out infinite alternate;
}

.cyber-privacy-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: privacyBadgeScan 3s linear infinite;
}

.cyber-privacy-badge i {
  color: #ffff00;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #ffff00);
  animation: privacyIconGlow 2s ease-in-out infinite alternate;
}

.cyber-privacy-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.cyber-privacy-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
}

.privacy-text {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: privacyTitleGlow 3s ease-in-out infinite alternate;
}

.protocol-text {
  background: linear-gradient(45deg, #ffff00, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 1rem;
  animation: protocolTitleFlicker 4s ease-in-out infinite;
}

.cyber-privacy-subtitle {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.encryption-stream {
  background: linear-gradient(45deg, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  animation: encryptionStreamFlow 5s ease-in-out infinite;
}

.cyber-privacy-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.privacy-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.privacy-stat:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.stat-icon {
  font-size: 2rem;
  animation: statIconPulse 3s ease-in-out infinite;
}

.stat-data {
  display: flex;
  flex-direction: column;
}

.stat-number {
  color: #00ffff;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.stat-label {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cyber-privacy-content {
  background:
    linear-gradient(180deg, #1a202c 0%, #0f1419 50%, #0a0f14 100%),
    radial-gradient(circle at 30% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 30%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.cyber-privacy-matrix {
  position: relative;
  z-index: 3;
}

.privacy-node {
  background:
    linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(15, 20, 25, 0.9) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 255, 0, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(255, 0, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-node:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.25),
    0 0 80px rgba(255, 0, 255, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
}

.node-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.node-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.indicator-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: indicatorLightPulse 2s ease-in-out infinite;
}

.indicator-light.data-collection {
  background: #ff00ff;
  box-shadow: 0 0 15px #ff00ff;
}

.indicator-light.data-processing {
  background: #00ffff;
  box-shadow: 0 0 15px #00ffff;
}

.indicator-light.cookie-matrix {
  background: #ffff00;
  box-shadow: 0 0 15px #ffff00;
}

.node-id {
  color: #00ffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  font-family: 'Courier New', monospace;
}

.node-title {
  color: #bfdbfe;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.node-content {
  color: #cbd5e1;
  line-height: 1.7;
}

.node-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.data-streams {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stream-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.stream-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(5px);
}

.stream-icon {
  font-size: 1.5rem;
}

.stream-label {
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
}

.processing-units {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.unit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(248, 187, 217, 0.2);
  transition: all 0.4s ease;
}

.unit-item:hover {
  background: rgba(248, 187, 217, 0.1);
  border-color: rgba(248, 187, 217, 0.4);
  transform: translateY(-3px);
}

.unit-icon {
  font-size: 2rem;
  color: #f8bbd9;
  filter: drop-shadow(0 0 8px rgba(248, 187, 217, 0.5));
}

.unit-info h5 {
  color: #bfdbfe;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.unit-info p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.data-protection-shield {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 16px;
  margin-top: 2rem;
}

.shield-icon {
  font-size: 2rem;
  color: #00ff00;
  filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.shield-text {
  color: #00ff00;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.crystal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.crystal-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 0, 0.2);
  transition: all 0.4s ease;
}

.crystal-node:hover {
  background: rgba(255, 255, 0, 0.1);
  border-color: rgba(255, 255, 0, 0.4);
  transform: translateY(-3px);
}

.crystal-core {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #f8bbd9, #ffff00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.crystal-emoji {
  font-size: 1.5rem;
}

.crystal-data h6 {
  color: #bfdbfe;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.crystal-data p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.browser-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  margin-top: 2rem;
}

.control-icon {
  font-size: 2rem;
  color: #3b82f6;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.control-text {
  color: #93c5fd;
  font-size: 1rem;
  margin: 0;
}

@keyframes privacyMatrix {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, -20px); }
  50% { transform: translate(-30px, 30px); }
  75% { transform: translate(35px, 25px); }
  100% { transform: translate(0, 0); }
}

@keyframes privacyBadgeGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes privacyIconGlow {
  0% { filter: drop-shadow(0 0 10px #ffff00); }
  100% { filter: drop-shadow(0 0 15px #ffff00) drop-shadow(0 0 25px #ffff00); }
}

@keyframes privacyTitleGlow {
  0% { text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

@keyframes protocolTitleFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  }
}

@keyframes encryptionStreamFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

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

/* ==================== CYBERPUNK COOKIE PAGE ==================== */

.cyber-cookie-hero {
  background:
    radial-gradient(ellipse 150% 120% at 50% 0%, rgba(255, 255, 0, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 20% 100%, rgba(0, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 80% 50%, rgba(255, 0, 255, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #2a1a0a 25%, #1a2a0a 50%, #0a1a2a 75%, #0a0a0a 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  display: flex;
  align-items: center;
}

.cyber-cookie-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 255, 0, 0.08) 50%, rgba(255, 255, 0, 0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.08) 50%, rgba(0, 255, 255, 0.08) 51%, transparent 52%);
  animation: cookieMatrix 20s linear infinite;
}

.cyber-cookie-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 0, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.2) 0%, rgba(255, 255, 0, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ffff00, #00ffff, #ff00ff, #ffff00) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: cookieBadgeGlow 4s ease-in-out infinite alternate;
}

.cyber-cookie-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: cookieBadgeScan 3s linear infinite;
}

.cyber-cookie-badge i {
  color: #ffff00;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #ffff00);
  animation: cookieIconGlow 2s ease-in-out infinite alternate;
}

.cyber-cookie-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.cyber-cookie-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #ffff00,
    0 0 40px #ffff00;
}

.cookie-text {
  background: linear-gradient(45deg, #ffff00, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cookieTitleGlow 3s ease-in-out infinite alternate;
}

.matrix-text {
  background: linear-gradient(45deg, #ff00ff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 1rem;
  animation: matrixTitleFlicker 4s ease-in-out infinite;
}

.cyber-cookie-subtitle {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.neural-scan {
  background: linear-gradient(45deg, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  animation: neuralScanFlow 5s ease-in-out infinite;
}

.cyber-cookie-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cookie-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.cookie-stat:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.cookie-stat .stat-icon {
  font-size: 2rem;
  animation: cookieStatIconPulse 3s ease-in-out infinite;
}

.cookie-stat .stat-data {
  display: flex;
  flex-direction: column;
}

.cookie-stat .stat-number {
  color: #00ffff;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.cookie-stat .stat-label {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cyber-cookie-content {
  background:
    linear-gradient(180deg, #1a202c 0%, #2a1a1a 50%, #1a2a1a 100%),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 0, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 30%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.cyber-cookie-matrix {
  position: relative;
  z-index: 3;
}

.cookie-node {
  background:
    linear-gradient(135deg, rgba(42, 26, 10, 0.95) 0%, rgba(26, 42, 10, 0.9) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 0, 255, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ffff00, #00ffff, #ffff00) 1;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(255, 255, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-node:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(255, 255, 0, 0.25),
    0 0 80px rgba(255, 255, 0, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00) 1;
}

.cookie-node .node-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.cookie-node .node-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-node .indicator-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: cookieIndicatorLightPulse 2s ease-in-out infinite;
}

.cookie-node .indicator-light.cookie-definition {
  background: #ffff00;
  box-shadow: 0 0 15px #ffff00;
}

.cookie-node .indicator-light.cookie-deployment {
  background: #00ffff;
  box-shadow: 0 0 15px #00ffff;
}

.cookie-node .indicator-light.crystal-matrix {
  background: #ff00ff;
  box-shadow: 0 0 15px #ff00ff;
}

.cookie-node .node-id {
  color: #00ffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  font-family: 'Courier New', monospace;
}

.cookie-node .node-title {
  color: #bfdbfe;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.cookie-node .node-content {
  color: #cbd5e1;
  line-height: 1.7;
}

.cookie-node .node-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cookie-definition-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 0, 0.2);
}

.cookie-crystal {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffff00, #00ffff, #ff00ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.4);
  animation: crystalRotate 6s linear infinite;
}

.cookie-crystal .crystal-emoji {
  font-size: 2rem;
}

.cookie-explanation {
  flex: 1;
}

.crystal-properties {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.property {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.property-icon {
  font-size: 1.2rem;
}

.property-text {
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
}

.deployment-objectives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.objective-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(248, 187, 217, 0.2);
  transition: all 0.4s ease;
}

.objective-item:hover {
  background: rgba(248, 187, 217, 0.1);
  border-color: rgba(248, 187, 217, 0.4);
  transform: translateY(-3px);
}

.objective-icon {
  font-size: 2rem;
  color: #f8bbd9;
  filter: drop-shadow(0 0 8px rgba(248, 187, 217, 0.5));
}

.objective-content h5 {
  color: #bfdbfe;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.objective-content p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.crystal-classification {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.crystal-type {
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.crystal-type.essential {
  background: rgba(0, 255, 0, 0.1);
  border-image: linear-gradient(135deg, #00ff00, #ffff00) 1;
}

.crystal-type.performance {
  background: rgba(0, 255, 255, 0.1);
  border-image: linear-gradient(135deg, #00ffff, #ff00ff) 1;
}

.crystal-type.personalization {
  background: rgba(248, 187, 217, 0.1);
  border-image: linear-gradient(135deg, #f8bbd9, #00ffff) 1;
}

.crystal-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.crystal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.crystal-badge {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.crystal-icon {
  font-size: 2rem;
  opacity: 0.8;
}

.crystal-details h5 {
  color: #bfdbfe;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.crystal-details p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.crystal-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.active {
  background: #00ff00;
  box-shadow: 0 0 8px #00ff00;
}

.status-dot.optional {
  background: #ffff00;
  box-shadow: 0 0 8px #ffff00;
}

.status-text {
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes cookieMatrix {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, -20px); }
  50% { transform: translate(-30px, 30px); }
  75% { transform: translate(35px, 25px); }
  100% { transform: translate(0, 0); }
}

@keyframes cookieBadgeGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 255, 0, 0.5),
      0 0 40px rgba(255, 255, 0, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes cookieIconGlow {
  0% { filter: drop-shadow(0 0 10px #ffff00); }
  100% { filter: drop-shadow(0 0 15px #ffff00) drop-shadow(0 0 25px #ffff00); }
}

@keyframes cookieTitleGlow {
  0% { text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

@keyframes matrixTitleFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 15px #ffff00, 0 0 30px #ffff00;
  }
}

@keyframes neuralScanFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

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

@keyframes crystalRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==================== CYBERPUNK TERMS PAGE ==================== */

.cyber-terms-hero {
  background:
    radial-gradient(ellipse 150% 120% at 50% 0%, rgba(255, 0, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 20% 100%, rgba(0, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 80% 50%, rgba(255, 255, 0, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #2a0a2a 50%, #1a0a2a 75%, #0a0a0a 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  display: flex;
  align-items: center;
}

.cyber-terms-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(255, 0, 255, 0.08) 50%, rgba(255, 0, 255, 0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.08) 50%, rgba(0, 255, 255, 0.08) 51%, transparent 52%);
  animation: termsMatrix 20s linear infinite;
}

.cyber-terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: termsBadgeGlow 4s ease-in-out infinite alternate;
}

.cyber-terms-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: termsBadgeScan 3s linear infinite;
}

.cyber-terms-badge i {
  color: #ff00ff;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #ff00ff);
  animation: termsIconGlow 2s ease-in-out infinite alternate;
}

.cyber-terms-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.cyber-terms-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
}

.terms-text {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: termsTitleGlow 3s ease-in-out infinite alternate;
}

.protocol-text {
  color: #ffff00;
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
  margin: 0 1rem;
  animation: protocolTextPulse 2s ease-in-out infinite;
}

.conditions-text {
  background: linear-gradient(45deg, #ffff00, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: conditionsTitleFlicker 4s ease-in-out infinite;
}

.cyber-terms-subtitle {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contract-scan {
  background: linear-gradient(45deg, #00ffff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  animation: contractScanFlow 5s ease-in-out infinite;
}

.cyber-terms-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.terms-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.terms-stat:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.terms-stat .stat-icon {
  font-size: 2rem;
  animation: termsStatIconPulse 3s ease-in-out infinite;
}

.terms-stat .stat-data {
  display: flex;
  flex-direction: column;
}

.terms-stat .stat-number {
  color: #00ffff;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.terms-stat .stat-label {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cyber-terms-content {
  background:
    linear-gradient(180deg, #1a202c 0%, #2a1a2a 50%, #1a0a1a 100%),
    radial-gradient(circle at 30% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 30%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.cyber-terms-matrix {
  position: relative;
  z-index: 3;
}

.terms-node {
  background:
    linear-gradient(135deg, rgba(26, 10, 26, 0.95) 0%, rgba(42, 10, 42, 0.9) 100%),
    linear-gradient(45deg, rgba(255, 0, 255, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 255, 0, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(255, 0, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-node:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(255, 0, 255, 0.25),
    0 0 80px rgba(255, 0, 255, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #ff00ff) 1;
}

.terms-node .node-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.terms-node .node-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terms-node .indicator-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: termsIndicatorLightPulse 2s ease-in-out infinite;
}

.terms-node .indicator-light.contract-acceptance {
  background: #ff00ff;
  box-shadow: 0 0 15px #ff00ff;
}

.terms-node .indicator-light.usage-parameters {
  background: #00ffff;
  box-shadow: 0 0 15px #00ffff;
}

.terms-node .indicator-light.asset-protection {
  background: #ffff00;
  box-shadow: 0 0 15px #ffff00;
}

.terms-node .indicator-light.liability-framework {
  background: #ff00ff;
  box-shadow: 0 0 15px #ff00ff;
}

.terms-node .node-id {
  color: #00ffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  font-family: 'Courier New', monospace;
}

.terms-node .node-title {
  color: #bfdbfe;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.terms-node .node-content {
  color: #cbd5e1;
  line-height: 1.7;
}

.terms-node .node-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contract-acceptance-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.contract-icon {
  font-size: 3rem;
  color: #ff00ff;
  filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.5));
  animation: contractIconFloat 3s ease-in-out infinite;
}

.contract-details {
  flex: 1;
}

.acceptance-status {
  margin-top: 1.5rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 12px;
}

.status-indicator.active .status-light {
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff00;
  animation: statusLightPulse 2s ease-in-out infinite;
}

.status-text {
  color: #00ff00;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.usage-parameters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.parameter-card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid;
  transition: all 0.4s ease;
}

.parameter-card.allowed {
  background: rgba(0, 255, 0, 0.1);
  border-image: linear-gradient(135deg, #00ff00, #ffff00) 1;
}

.parameter-card.restricted {
  background: rgba(255, 0, 0, 0.1);
  border-image: linear-gradient(135deg, #ff0000, #ff00ff) 1;
}

.parameter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.parameter-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.parameter-icon {
  font-size: 1.5rem;
}

.parameter-header h5 {
  color: #bfdbfe;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.parameter-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.asset-protection-matrix {
  margin-top: 2rem;
}

.vault-section {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 0, 0.2);
  margin-bottom: 2rem;
}

.vault-icon {
  font-size: 2.5rem;
  color: #ffff00;
  filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.5));
}

.vault-content h5 {
  color: #bfdbfe;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.vault-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.ownership-badge {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff) 1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.ownership-text {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.ownership-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 0, 255, 0.1), transparent);
  animation: ownershipGlow 3s linear infinite;
}

.liability-framework {
  margin-top: 2rem;
}

.commitment-panel {
  padding: 2rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: 2rem;
}

.commitment-panel h5 {
  color: #bfdbfe;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.commitment-panel p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.risk-assessment {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 165, 0, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.risk-icon {
  font-size: 2rem;
  color: #ffa500;
  filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

.risk-content h5 {
  color: #bfdbfe;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.risk-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@keyframes termsMatrix {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, -20px); }
  50% { transform: translate(-30px, 30px); }
  75% { transform: translate(35px, 25px); }
  100% { transform: translate(0, 0); }
}

@keyframes termsBadgeGlow {
  0% {
    box-shadow:
      0 0 20px rgba(255, 0, 255, 0.5),
      0 0 40px rgba(255, 0, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes termsIconGlow {
  0% { filter: drop-shadow(0 0 10px #ff00ff); }
  100% { filter: drop-shadow(0 0 15px #ff00ff) drop-shadow(0 0 25px #ff00ff); }
}

@keyframes termsTitleGlow {
  0% { text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

@keyframes protocolTextPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes conditionsTitleFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  }
}

@keyframes contractScanFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

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

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

@keyframes statusLightPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

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

/* ==================== CYBERPUNK THANKS PAGE ==================== */

.cyber-thanks-hero {
  background:
    radial-gradient(ellipse 150% 120% at 50% 0%, rgba(0, 255, 0, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 20% 100%, rgba(0, 255, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 80% 50%, rgba(255, 255, 0, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #0a1a0a 25%, #0a2a0a 50%, #0a1a0a 75%, #0a0a0a 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  display: flex;
  align-items: center;
}

.cyber-thanks-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 49%, rgba(0, 255, 0, 0.08) 50%, rgba(0, 255, 0, 0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.08) 50%, rgba(0, 255, 255, 0.08) 51%, transparent 52%);
  animation: thanksMatrix 20s linear infinite;
}

.cyber-thanks-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(0, 255, 0, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%),
    linear-gradient(45deg, rgba(255, 255, 0, 0.2) 0%, rgba(0, 255, 0, 0.2) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #00ff00, #00ffff, #ffff00, #00ff00) 1;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: thanksBadgeGlow 4s ease-in-out infinite alternate;
}

.cyber-thanks-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: thanksBadgeScan 3s linear infinite;
}

.cyber-thanks-badge i {
  color: #00ff00;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px #00ff00);
  animation: thanksIconGlow 2s ease-in-out infinite alternate;
}

.cyber-thanks-badge span {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.cyber-thanks-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow:
    0 0 20px #00ff00,
    0 0 40px #00ff00;
}

.thanks-text {
  background: linear-gradient(45deg, #00ff00, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: thanksTitleGlow 3s ease-in-out infinite alternate;
}

.transmission-text {
  color: #ffff00;
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
  margin: 0 1rem;
  animation: transmissionTextPulse 2s ease-in-out infinite;
}

.connecting-text {
  background: linear-gradient(45deg, #ffff00, #00ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: connectingTitleFlicker 4s ease-in-out infinite;
}

.cyber-thanks-subtitle {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.neural-link {
  background: linear-gradient(45deg, #00ffff, #00ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  animation: neuralLinkFlow 5s ease-in-out infinite;
}

.cyber-thanks-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.thanks-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 20, 25, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.thanks-stat:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.thanks-stat .stat-icon {
  font-size: 2rem;
  animation: thanksStatIconPulse 3s ease-in-out infinite;
}

.thanks-stat .stat-data {
  display: flex;
  flex-direction: column;
}

.thanks-stat .stat-number {
  color: #00ff00;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.thanks-stat .stat-label {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cyber-thanks-content {
  background:
    linear-gradient(180deg, #1a202c 0%, #0a1a0a 50%, #0a2a0a 100%),
    radial-gradient(circle at 30% 20%, rgba(0, 255, 0, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 30%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.cyber-thanks-terminal {
  position: relative;
  z-index: 3;
}

.thanks-node {
  margin-bottom: 4rem;
}

.transmission-hub {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(10, 26, 10, 0.95) 0%, rgba(10, 42, 10, 0.9) 100%),
    linear-gradient(45deg, rgba(0, 255, 0, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 255, 0, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #00ff00, #00ffff, #00ff00) 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(0, 255, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transmission-hub:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(0, 255, 0, 0.25),
    0 0 80px rgba(0, 255, 0, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #00ff00) 1;
}

.hub-core {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.core-ring {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(0, 255, 0, 0.3);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coreRingRotate 8s linear infinite;
}

.ring-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  color: #00ff00;
  font-size: 8px;
  animation: particleOrbit 6s linear infinite;
}

.particle:nth-child(1) { animation-delay: 0s; transform-origin: 60px 0px; }
.particle:nth-child(2) { animation-delay: 1s; transform-origin: 60px 0px; }
.particle:nth-child(3) { animation-delay: 2s; transform-origin: 60px 0px; }
.particle:nth-child(4) { animation-delay: 3s; transform-origin: 60px 0px; }
.particle:nth-child(5) { animation-delay: 4s; transform-origin: 60px 0px; }
.particle:nth-child(6) { animation-delay: 5s; transform-origin: 60px 0px; }

.core-icon {
  font-size: 3rem;
  color: #00ff00;
  filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.8));
  z-index: 2;
}

.hub-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: hubGlowPulse 4s ease-in-out infinite;
}

.hub-status {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.status-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-label {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-value {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
}

.status-value.success {
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.id-counter {
  animation: idCounter 2s ease-in-out infinite;
}

.quantum-promise {
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(10, 26, 10, 0.95) 0%, rgba(10, 42, 10, 0.9) 100%),
    linear-gradient(45deg, rgba(0, 255, 0, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 255, 0, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #00ff00, #00ffff, #00ff00) 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(0, 255, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quantum-promise:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(0, 255, 0, 0.25),
    0 0 80px rgba(0, 255, 0, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #00ff00) 1;
}

.promise-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.promise-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.5));
}

.promise-title {
  color: #bfdbfe;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.promise-content {
  color: #cbd5e1;
  line-height: 1.7;
}

.promise-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.promise-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
}

.metric-value {
  color: #00ff00;
  font-size: 1.8rem;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.neural-exploration {
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(10, 26, 10, 0.95) 0%, rgba(10, 42, 10, 0.9) 100%),
    linear-gradient(45deg, rgba(0, 255, 0, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 255, 0, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #00ff00, #00ffff, #00ff00) 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(0, 255, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.neural-exploration:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(0, 255, 0, 0.25),
    0 0 80px rgba(0, 255, 0, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #00ff00) 1;
}

.exploration-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.exploration-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
}

.exploration-title {
  color: #bfdbfe;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.exploration-content {
  color: #cbd5e1;
  line-height: 1.7;
}

.exploration-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.exploration-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.option-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.option-node:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(5px);
}

.option-icon {
  font-size: 1.5rem;
}

.option-text {
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
}

.neural-return {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.return-core {
  position: relative;
}

.return-button {
  display: block;
  text-decoration: none;
  color: inherit;
}

.return-matrix {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 3rem;
  background:
    linear-gradient(135deg, rgba(10, 26, 10, 0.95) 0%, rgba(10, 42, 10, 0.9) 100%),
    linear-gradient(45deg, rgba(0, 255, 0, 0.06) 0%, rgba(0, 255, 255, 0.04) 50%, rgba(255, 255, 0, 0.03) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, #00ff00, #00ffff, #00ff00) 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 25px rgba(0, 255, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.return-matrix:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 40px rgba(0, 255, 0, 0.25),
    0 0 80px rgba(0, 255, 0, 0.15);
  border-image: linear-gradient(135deg, #00ffff, #ffff00, #00ff00) 1;
}

.matrix-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.matrix-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #00ff00, #00ffff, #ffff00);
  animation: matrixLineFlow 2s ease-in-out infinite;
}

.return-icon {
  font-size: 3rem;
  color: #00ff00;
  filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.8));
}

.return-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.return-label {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.return-target {
  color: #bfdbfe;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.return-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
  animation: returnGlowPulse 3s ease-in-out infinite;
}

@keyframes thanksMatrix {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, -20px); }
  50% { transform: translate(-30px, 30px); }
  75% { transform: translate(35px, 25px); }
  100% { transform: translate(0, 0); }
}

@keyframes thanksBadgeGlow {
  0% {
    box-shadow:
      0 0 20px rgba(0, 255, 0, 0.5),
      0 0 40px rgba(0, 255, 0, 0.3);
  }
  100% {
    box-shadow:
      0 0 20px rgba(0, 255, 255, 0.5),
      0 0 40px rgba(0, 255, 255, 0.3);
  }
}

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

@keyframes thanksIconGlow {
  0% { filter: drop-shadow(0 0 10px #00ff00); }
  100% { filter: drop-shadow(0 0 15px #00ff00) drop-shadow(0 0 25px #00ff00); }
}

@keyframes thanksTitleGlow {
  0% { text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00; }
  100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

@keyframes transmissionTextPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes connectingTitleFlicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00;
  }
}

@keyframes neuralLinkFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

@keyframes coreRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes particleOrbit {
  0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

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

@keyframes idCounter {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes matrixLineFlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes returnGlowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ==================== END CYBERPUNK THANKS PAGE ==================== */

.page-content-ai {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f14 50%, #1a202c 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.page-content-bg-ai {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(248, 187, 217, 0.02) 50%, transparent 52%);
  background-size: 60px 60px;
  animation: pageContentGridMove 30s linear infinite;
  opacity: 0.5;
}

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

.page-content-card-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-content-card-ai:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.page-content-h3-ai {
  color: #bfdbfe;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  margin-top: 3rem;
}

.page-content-h3-ai:first-child {
  margin-top: 0;
}

.page-content-p-ai {
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.page-content-ul-ai {
  color: #94a3b8;
  line-height: 2;
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
  font-size: 1.05rem;
}

.page-content-ul-ai li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.page-content-ul-ai li:last-child {
  border-bottom: none;
}

.page-content-ul-ai li i {
  color: #3b82f6;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.page-content-grid-ai {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.page-content-item-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.5) 0%, rgba(30, 30, 30, 0.3) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.page-content-item-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #f8bbd9 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.page-content-item-ai:hover::before {
  transform: scaleX(1);
}

.page-content-item-ai:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.page-content-item-icon-ai {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.page-content-item-ai:hover .page-content-item-icon-ai {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.page-content-item-icon-ai i {
  font-size: 1.8rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
}

.page-content-item-title-ai {
  color: #bfdbfe;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.page-content-item-text-ai {
  color: #94a3b8;
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.page-content-contact-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.5) 0%, rgba(30, 30, 30, 0.3) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
  transition: all 0.4s ease;
}

.page-content-contact-ai:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.page-content-contact-title-ai {
  color: #bfdbfe;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.page-content-contact-text-ai {
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.page-content-contact-email-ai {
  color: #94a3b8;
  font-size: 1.1rem;
  margin: 0;
}

.page-content-contact-email-ai strong {
  color: #bfdbfe;
}

.page-content-contact-email-ai a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-content-contact-email-ai a:hover {
  color: #f8bbd9;
  text-decoration: underline;
}

/* Thanks Page Specific Styles */
.thanks-card-ai {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.7) 0%, rgba(30, 30, 30, 0.5) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.thanks-card-ai:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.thanks-icon-ai {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(248, 187, 217, 0.15) 100%);
  border: 3px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  animation: thanksIconPulse 2s ease-in-out infinite;
}

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

.thanks-icon-ai i {
  font-size: 4rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
}

.thanks-title-ai {
  color: #bfdbfe;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.thanks-text-ai {
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.thanks-text-ai strong {
  color: #bfdbfe;
}

.thanks-button-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, #f8bbd9 100%);
  color: #f7fafc;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.thanks-button-ai::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.thanks-button-ai:hover::before {
  width: 300px;
  height: 300px;
}

.thanks-button-ai:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
  color: #f7fafc;
}

@media (max-width: 768px) {
  .page-hero-title-ai {
    font-size: 2.5rem;
  }
  
  .page-content-card-ai,
  .thanks-card-ai {
    padding: 2rem;
  }
  
  .page-content-grid-ai {
    grid-template-columns: 1fr;
  }
}