/* Performance-Optimized MetaMix Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

:root {
  --primary-blue: #00d4ff;
  --secondary-blue: #0099cc;
  --purple: #5200ff;
  --purple-light: #ae7ddd;
  --accent-red: #ff6b6b;
  --accent-yellow: #ffd93d;
  --dark-bg: #0a0a0a;
  --dark-card: rgba(20, 20, 40, 0.95);
  --dark-secondary: rgba(30, 30, 60, 0.9);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Performance Optimizations */
.performance-optimized {
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform;
}

/* Reduce animations on lower-end devices */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced Header Styling - Optimized */
header {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  will-change: transform;
}

header.sticky {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.header-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.header-logo:hover {
  transform: scale(1.05);
}

/* Enhanced Navigation - Simplified */
.navbar .nav li a {
  color: var(--text-primary);
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar .nav li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .nav li a:hover::before,
.navbar .nav li.active a::before {
  width: 100%;
}

.navbar .nav li a:hover {
  color: var(--primary-blue);
}

/* Enhanced Hero Section - Performance Optimized */
.simple-head {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(10, 10, 10, 0.9) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.simple-head::before {
  /*content: '';*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
  z-index: 1;
  animation: backgroundPulse 8s ease-in-out infinite;
  will-change: opacity;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.simple-head .container {
  position: relative;
  z-index: 2;
}

.simple-head h1 {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, var(--primary-blue), var(--purple), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 20px;
  animation: titleGlow 4s ease-in-out infinite alternate;
  will-change: filter;
}

@keyframes titleGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.1); }
}

.simple-head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Enhanced Buttons - Simplified Effects */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 25px;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 10px;
  border: none;
  cursor: pointer;
  will-change: transform;
}

.btn::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:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.btn:not(.btn-inverse) {
  background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
  color: var(--text-primary);
}

.btn-inverse {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-inverse:hover {
  background: var(--primary-blue);
  color: var(--text-primary);
}

/* Enhanced Sections */
section {
  padding: 100px 0;
  position: relative;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

/* Enhanced Why Choose Us Section - Optimized */
.why-choose {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.why-choose .container {
  position: relative;
  z-index: 2;
}

.heading h6 {
  font-family: 'Orbitron', monospace;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.heading h4, .heading h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.heading p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ultra-ser {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ultra-ser::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.7s ease;
}

.ultra-ser:hover::before {
  left: 100%;
}

.ultra-ser:hover {
  transform: translateY(-2px);
}

.ultra-ser .name {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Enhanced Services Icons - Optimized */
.ib-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-blue), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.ib-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.ib-icon i {
  font-size: 2rem;
  color: var(--text-primary);
}

.ib-info h4 {
  font-family: 'Orbitron', monospace;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.ib-info p {
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
}

/* Enhanced Distribution Section - Simplified */
.distri {
  background: rgba(20, 20, 40, 0.95);
  position: relative;
}

.distri::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(174, 125, 221, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  z-index: 1;
  animation: sectionPulse 12s ease-in-out infinite;
}

@keyframes sectionPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.distri .container {
  position: relative;
  z-index: 2;
}

/* Enhanced Price Boxes - Optimized */
.price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.price-box:hover::before {
  left: 100%;
}

.price-box:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
}

.price-box h4 {
  font-family: 'Orbitron', monospace;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.price-box h2 {
  font-family: 'Orbitron', monospace;
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.price-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Enhanced Income Plans - Simplified */
.income-plans {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.income-plans::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(174, 125, 221, 0.1), transparent);
  transition: left 0.7s ease;
}

.income-plans:hover::before {
  left: 100%;
}

.income-plans:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(174, 125, 221, 0.15);
}

.income-plans h4 {
  font-family: 'Orbitron', monospace;
  color: var(--purple-light);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.income-plans ul {
  list-style: none;
  padding: 0;
}

.income-plans ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.income-plans ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.income-plans ul li:hover {
  transform: translateX(5px);
  color: var(--text-primary);
}

/* Enhanced About Section - Optimized */
.about {
  background: rgba(20, 20, 40, 0.95);
}

.about-us-con {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-us-con::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.7s ease;
}

.about-us-con:hover::before {
  left: 100%;
}

.about-us-con:hover {
  transform: translateY(-2px);
}

.about-us-con h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.count-info {
  margin: 30px 0;
}

.count-info li {
  text-align: center;
  padding: 20px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  margin: 10px 0;
  transition: transform 0.3s ease;
}

.count-info li:hover {
  transform: translateY(-3px);
  background: rgba(0, 212, 255, 0.15);
}

.counter {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  display: block;
}

/* Enhanced FAQ Section - Optimized */
.panel-default {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.panel-default:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
  transform: translateY(-1px);
}

.panel-heading {
  background: rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.panel-title a {
  font-family: 'Orbitron', monospace;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  transition: all 0.3s ease;
}

.panel-title a:hover {
  color: var(--primary-blue);
  background: rgba(0, 212, 255, 0.05);
}

.panel-body {
  padding: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Enhanced Community Section - Simplified */
.community-sec {
  background: rgba(20, 20, 40, 0.95);
  position: relative;
  overflow: hidden;
}

.community-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(100, 164, 226, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(39, 119, 214, 0.08) 0%, transparent 40%);
  animation: communityBgPulse 15s ease-in-out infinite;
  z-index: 1;
}

@keyframes communityBgPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

/* Simplified Network Grid - Performance Optimized */
.network-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  z-index: 2;
}

.network-line {
  position: absolute;
  background: var(--primary-blue);
  animation: networkFlow 10s linear infinite;
}

.network-line.horizontal {
  height: 1px;
  width: 100%;
}

.network-line.vertical {
  width: 1px;
  height: 100%;
}

.network-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.network-line:nth-child(2) { top: 60%; animation-delay: 3s; }
.network-line:nth-child(3) { left: 25%; animation-delay: 1.5s; }
.network-line:nth-child(4) { left: 75%; animation-delay: 4.5s; }

@keyframes networkFlow {
  0% { opacity: 0; }
  50% { opacity: 0.8; }
  100% { opacity: 0; }
}

/* Simplified Floating Nodes - Reduced Count */
.blockchain-nodes {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-blue);
  border-radius: 50%;
  animation: nodeFloat 8s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary-blue);
}

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0px); opacity: 0.6; }
  50% { transform: translateY(-20px); opacity: 1; }
}

/* Enhanced Social Icons - Simplified */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.socials a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-blue);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.socials a:hover::before {
  width: 60px;
  height: 60px;
}

.socials a:hover {
  color: var(--text-primary);
  border-color: var(--primary-blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

/* Optimized Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
}

.modal-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(174, 125, 221, 0.04) 0%, transparent 50%);
  animation: modalBgFloat 20s ease-in-out infinite;
}

@keyframes modalBgFloat {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

.modal-container {
  background: rgba(15, 15, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.modal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  z-index: -1;
}

.modal-container::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(174, 125, 221, 0.2), rgba(0, 255, 171, 0.15), rgba(0, 212, 255, 0.3));
  background-size: 400% 400%;
  border-radius: 25px;
  z-index: -2;
  animation: borderFlow 8s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes borderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.modal-overlay.active {
  display: flex;
  animation: modalOverlayFadeIn 0.5s forwards;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
  opacity: 1;
  animation: modalBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalBounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.02); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.05);
  background: rgba(255, 69, 87, 0.15);
  color: #ff6b7a;
  border-color: rgba(255, 107, 122, 0.3);
}

.modal-header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.8), rgba(0, 255, 171, 0.8));
  border-radius: 2px;
  animation: headerPulse 4s ease-in-out infinite;
}

@keyframes headerPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.modal-header h2 {
  color: var(--text-primary);
  font-size: 2.2em;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 212, 255, 0.9) 50%, rgba(0, 255, 171, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  animation: textGlow 5s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.1); }
}

.input-group {
  position: relative;
  margin-bottom: 32px;
}

.input-group input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.input-group input:focus {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
  transform: translateY(-1px);
}

.input-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 8px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -8px;
  left: 16px;
  font-size: 12px;
  color: rgba(0, 212, 255, 0.8);
  transform: translateY(0);
  background: rgba(0, 212, 255, 0.08);
}

.modal-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(174, 125, 221, 0.8) 50%, rgba(0, 255, 171, 0.7) 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
  animation: buttonBreath 6s ease-in-out infinite;
}

@keyframes buttonBreath {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.25);
}

.modal-footer {
  text-align: center;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.modal-footer a {
  color: rgba(0, 212, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.modal-footer a:hover {
  color: rgba(0, 255, 171, 0.9);
}

/* Enhanced Footer */
footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.rights {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.5);
}

.rights a {
  color: var(--primary-blue);
  text-decoration: none;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.rights a:hover {
  color: var(--text-primary);
}

/* Enhanced Loader - Simplified */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ldr {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(0, 212, 255, 0.3);
  border-top: 3px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .simple-head h1 {
    font-size: 2.5rem;
  }

  .heading h4, .heading h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 13px;
    margin: 8px;
    display: block;
    width: 100%;
    text-align: center;
  }

  .price-box h2 {
    font-size: 2rem;
  }

  .modal-container {
    margin: 20px;
    padding: 36px 28px;
    max-width: 90%;
  }

  .modal-header h2 {
    font-size: 1.9em;
  }

  .socials {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .simple-head h1 {
    font-size: 2rem;
  }

  .heading h4, .heading h2 {
    font-size: 1.5rem;
  }

  .ib-icon {
    width: 60px;
    height: 60px;
  }

  .ib-icon i {
    font-size: 1.5rem;
  }

  .socials a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Enhanced FAQ panel styling - Optimized */
#que .panel-default {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(0, 212, 255, 0.2) !important;
  border-radius: 10px !important;
  margin-bottom: 15px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

#que .panel-default:hover {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1) !important;
  transform: translateY(-1px) !important;
}

#que .panel-heading {
  background: rgba(0, 212, 255, 0.1) !important;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2) !important;
}

#que .panel-title a {
  font-family: 'Orbitron', monospace !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 15px 20px !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

#que .panel-title a:hover {
  color: var(--primary-blue) !important;
  background: rgba(0, 212, 255, 0.05) !important;
}

#que .panel-body {
  padding: 20px !important;
  color: var(--text-secondary) !important;
  line-height: 1.6 !important;
}

/* Enhanced accordion group styling */
#que .accordion {
  background: transparent !important;
}

/* Enhanced second column styling - Optimized */
#que #accordion2 .panel-default {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(174, 125, 221, 0.2) !important;
  border-radius: 10px !important;
  margin-bottom: 15px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

#que #accordion2 .panel-default:hover {
  border-color: var(--purple-light) !important;
  box-shadow: 0 5px 15px rgba(174, 125, 221, 0.1) !important;
  transform: translateY(-1px) !important;
}

#que #accordion2 .panel-heading {
  background: rgba(174, 125, 221, 0.1) !important;
  border-bottom: 1px solid rgba(174, 125, 221, 0.2) !important;
}

#que #accordion2 .panel-title a {
  font-family: 'Orbitron', monospace !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 15px 20px !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

#que #accordion2 .panel-title a:hover {
  color: var(--purple-light) !important;
  background: rgba(174, 125, 221, 0.05) !important;
}

/* Enhanced sliding hover effects for FAQ panels - Simplified */
#que .panel-default::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
  transition: left 0.7s ease;
  z-index: 1;
}

#que .panel-default:hover::before {
  left: 100%;
}

#que #accordion2 .panel-default::before {
  background: linear-gradient(90deg, transparent, rgba(174, 125, 221, 0.08), transparent);
}

/* Performance optimization for low-end devices */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .performance-optimized {
    animation-duration: 0.5s !important;
  }
}

/* Memory cleanup and optimization */
.cleanup-animations {
  animation: none !important;
  transition: none !important;
}

/* GPU acceleration hints */
.gpu-accelerate {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
