/* ============================================
   TYVORA GROUP - MODERN ENHANCEMENTS
   ============================================ */

/* ===== ANIMATIONS & KEYFRAMES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

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

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== ENHANCED HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    #0D1F1A 0%, 
    #1a3a2e 25%, 
    #2E7D5A 50%, 
    #1a3a2e 75%, 
    #0D1F1A 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-pattern {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.4s;
  background: linear-gradient(135deg, #4FD99C, #B8A05D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.2);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 217, 156, 0.4);
  box-shadow: 0 20px 40px rgba(79, 217, 156, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4FD99C;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.stat-plus {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4FD99C;
  margin-left: 0.1rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Buttons */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.btn-hero {
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero::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.6s;
}

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

.btn-primary.btn-hero {
  box-shadow: 0 10px 40px rgba(79, 217, 156, 0.3);
}

.btn-primary.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(79, 217, 156, 0.4);
}

.btn-secondary.btn-hero {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(79, 217, 156, 0.3);
}

.btn-secondary.btn-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #4FD99C;
  transform: translateY(-3px);
}

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

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

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  animation: scrollIndicator 2s ease-in-out infinite;
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards, scrollIndicator 2s ease-in-out 1.5s infinite;
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
}

/* ===== GLASSMORPHIC NAVIGATION ===== */
.nav.scrolled {
  background: rgba(13, 31, 26, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(79, 217, 156, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4FD99C, #B8A05D);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* ===== ENHANCED CARDS ===== */
.mission-card,
.division-card,
.impact-card,
.value-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mission-card::before,
.division-card::before,
.impact-card::before,
.value-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #4FD99C, #B8A05D);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.mission-card:hover,
.division-card:hover,
.impact-card:hover,
.value-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(79, 217, 156, 0.3);
  box-shadow: 
    0 20px 60px rgba(79, 217, 156, 0.15),
    0 0 80px rgba(79, 217, 156, 0.05);
}

.mission-card:hover::before,
.division-card:hover::before,
.impact-card:hover::before,
.value-item:hover::before {
  opacity: 0.1;
}

/* Card Icons */
.mission-card h3::before,
.division-card h3::before,
.impact-card h3::before,
.value-item h3::before {
  content: '✦';
  display: inline-block;
  margin-right: 1rem;
  color: #4FD99C;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover h3::before,
.division-card:hover h3::before,
.impact-card:hover h3::before,
.value-item:hover h3::before {
  opacity: 1;
  transform: scale(1);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }

/* ===== SECTION SEPARATORS ===== */
.section-separator {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-separator svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* ===== ENHANCED CONTRACT BANNER ===== */
.contract-banner {
  position: relative;
  overflow: hidden;
}

.contract-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 217, 156, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.copy-btn {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 217, 156, 0.3);
}

.copy-btn.copied {
  background: linear-gradient(135deg, #4FD99C, #B8A05D);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2E7D5A, #4FD99C);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(79, 217, 156, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(79, 217, 156, 0.5);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* Progress ring */
.back-to-top::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #B8A05D;
  animation: rotateGlow 2s linear infinite;
}

/* ===== ENHANCED FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(79, 217, 156, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-aurora {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(79, 217, 156, 0.05),
    rgba(184, 160, 93, 0.05),
    transparent
  );
  background-size: 200% 100%;
  animation: gradientShift 10s ease infinite;
  pointer-events: none;
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.contact-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4FD99C, #B8A05D, transparent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stat {
    width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-hero {
    width: 100%;
    justify-content: center;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== SECTION SEPARATOR ENHANCEMENTS ===== */
.section-separator {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  color: #1a3a2e;
  margin: -1px 0;
}

.section-separator svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  position: relative;
}

.section + .section-separator {
  color: #0D1F1A;
}

.section-alt + .section-separator {
  color: #1a3a2e;
}

/* Gradient overlay on separators */
.section-separator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(79, 217, 156, 0.05), transparent);
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-separator svg {
    height: 50px;
  }
}

/* ===== TYPOGRAPHY & TEXT ENHANCEMENTS ===== */
.about-subtitle,
.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4FD99C;
  background: linear-gradient(135deg, #4FD99C, #B8A05D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.about-subtitle::after,
.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #4FD99C, #B8A05D);
  border-radius: 2px;
}

.section-intro h2,
.about-header h2 {
  background: linear-gradient(135deg, #ffffff, #4FD99C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* Card Icon Enhancements */
.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(79, 217, 156, 0.1), rgba(184, 160, 93, 0.1));
  border: 2px solid rgba(79, 217, 156, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover .card-icon,
.division-card:hover .card-icon,
.impact-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(79, 217, 156, 0.2), rgba(184, 160, 93, 0.2));
  border-color: #4FD99C;
  box-shadow: 0 0 30px rgba(79, 217, 156, 0.3);
}

.card-icon svg {
  color: #4FD99C;
  transition: all 0.3s ease;
}

.mission-card:hover .card-icon svg,
.division-card:hover .card-icon svg,
.impact-card:hover .card-icon svg {
  color: #B8A05D;
  transform: scale(1.1);
}

/* ===== ENHANCED GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== BUTTON ENHANCEMENTS ===== */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

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

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  box-shadow: 0 4px 15px rgba(79, 217, 156, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(79, 217, 156, 0.4);
  transform: translateY(-2px);
}

/* ===== INPUT & FORM ENHANCEMENTS ===== */
.newsletter-input,
.form-input {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(79, 217, 156, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.newsletter-input:focus,
.form-input:focus {
  border-color: #4FD99C;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(79, 217, 156, 0.1);
  transform: translateY(-2px);
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-simple .btn {
  min-width: 250px;
  margin-top: 1rem;
}

/* ===== LOADING STATES ===== */
@keyframes skeletonLoading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.loading {
  background: linear-gradient(
    90deg,
    rgba(79, 217, 156, 0.05) 0%,
    rgba(79, 217, 156, 0.1) 50%,
    rgba(79, 217, 156, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s ease-in-out infinite;
}

/* ===== GLOW EFFECTS ===== */
.glow {
  position: relative;
}

.glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #4FD99C, #B8A05D, #4FD99C);
  background-size: 400%;
  border-radius: inherit;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
}

.glow:hover::before {
  opacity: 0.7;
}

/* ===== ENHANCED LOGO ANIMATION ===== */
.logo {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo-img {
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 10px rgba(79, 217, 156, 0.5));
}

/* ===== SECTION BACKGROUNDS ===== */
.section {
  position: relative;
  padding: 6rem 0;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(79, 217, 156, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== DIVISION CARDS SCROLL CAROUSEL ===== */
.division-cards-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #4FD99C rgba(255, 255, 255, 0.1);
}

.division-cards-container::-webkit-scrollbar {
  height: 8px;
}

.division-cards-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.division-cards-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #4FD99C, #B8A05D);
  border-radius: 10px;
}

.division-cards-container::-webkit-scrollbar-thumb:hover {
  background: #4FD99C;
}

/* ===== IMPACT METRICS ===== */
.impact-card strong {
  color: #4FD99C;
  font-size: 1.1em;
}

/* ===== VALUE ITEMS ===== */
.value-item h3 {
  color: #4FD99C;
  margin-bottom: 1rem;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .grid {
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* ===== ACCESSIBILITY FOCUS STATES ===== */
*:focus-visible {
  outline: 2px solid #4FD99C;
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #4FD99C;
  outline-offset: 4px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-gradient,
  .hero-particles,
  .back-to-top::before,
  .section-separator::after {
    animation: none !important;
  }
  
  .hero-title-line,
  .hero-subtitle,
  .hero-stats,
  .hero-actions {
    animation: none !important;
    opacity: 1 !important;
  }
  
  * {
    transition-duration: 0.01ms !important;
  }
}

/* ===== FIX HERO TITLE VISIBILITY ===== */
.hero-title-line:nth-child(1) {
  animation-delay: 0.2s;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ===== HERO CONTRACT ADDRESS ===== */
.hero-contract {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-contract .contract-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4FD99C;
}

.hero-contract .contract-address-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-contract .contract-address-wrapper:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 217, 156, 0.4);
}

.hero-contract .contract-address {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  background: none;
  padding: 0;
}

.hero-contract .copy-btn {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #2E7D5A, #4FD99C);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-contract .copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 217, 156, 0.3);
}

.hero-contract .copy-btn.copied {
  background: linear-gradient(135deg, #4FD99C, #B8A05D);
}

@media (max-width: 768px) {
  .hero-contract .contract-address-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .hero-contract .contract-address {
    font-size: 0.75rem;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .hero-contract .copy-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ADJUST HERO SPACING (NO TOP BANNER) ===== */
.hero {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
  }
}

/* ===== HIDE OLD CONTRACT BANNER (MOVED TO HERO) ===== */
.contract-banner {
  display: none !important;
}

/* ===== UPDATE ANIMATION TIMING ===== */
.hero-contract {
  animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-actions {
  animation: fadeInUp 1s ease 1.4s forwards;
}

/* ===== NAVIGATION ALIGNMENT TO RIGHT ===== */
.nav-container {
  justify-content: space-between !important;
}

.nav-menu {
  margin-left: auto;
  margin-right: 0;
}

/* Hide Get Started button if it exists */
.nav-cta {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-menu {
    margin-left: 0;
  }
}

/* ===== FIX HERO SPACING AND SCROLL INDICATOR ===== */
.hero-stats {
  margin: 3rem 0 2rem 0;
}

.hero-contract {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  margin-top: 0;
  margin-bottom: 4rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  animation: fadeInUp 1s ease 1.8s forwards, scrollIndicator 2s ease-in-out 2s infinite;
  opacity: 0;
  text-align: center;
}

.hero-scroll-indicator span {
  white-space: nowrap;
}

/* Ensure hero has enough min-height */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Add spacing between elements */
.hero-stat {
  margin: 0;
}

@media (max-width: 768px) {
  .hero-contract {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    margin-bottom: 6rem;
  }
  
  .hero-scroll-indicator {
    bottom: 2rem;
    font-size: 0.75rem;
  }
}

/* ===== REDESIGNED SERVICES SECTION (COMPACT & MODERN) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #4FD99C, #B8A05D);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(79, 217, 156, 0.3);
  box-shadow: 0 15px 40px rgba(79, 217, 156, 0.15);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(79, 217, 156, 0.1), rgba(184, 160, 93, 0.1));
  border: 2px solid rgba(79, 217, 156, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(79, 217, 156, 0.2), rgba(184, 160, 93, 0.2));
  border-color: #4FD99C;
  box-shadow: 0 0 25px rgba(79, 217, 156, 0.3);
}

.service-icon svg {
  color: #4FD99C;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
  color: #B8A05D;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Section intro adjustments for services */
#divisions .section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

#divisions .section-description {
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.5rem 1.25rem;
  }
  
  .service-icon {
    width: 48px;
    height: 48px;
  }
  
  .service-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .service-card h3 {
    font-size: 1.05rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
  }
}

/* ===== REDESIGNED PLATFORM SECTION (COMPACT & MODERN) ===== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.platform-feature {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.platform-feature::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #4FD99C, #B8A05D);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.platform-feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(79, 217, 156, 0.3);
  box-shadow: 0 15px 40px rgba(79, 217, 156, 0.15);
}

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

.platform-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(79, 217, 156, 0.1), rgba(184, 160, 93, 0.1));
  border: 2px solid rgba(79, 217, 156, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-feature:hover .platform-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(79, 217, 156, 0.2), rgba(184, 160, 93, 0.2));
  border-color: #4FD99C;
  box-shadow: 0 0 25px rgba(79, 217, 156, 0.3);
}

.platform-icon svg {
  color: #4FD99C;
  transition: all 0.3s ease;
}

.platform-feature:hover .platform-icon svg {
  color: #B8A05D;
  transform: scale(1.1);
}

.platform-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.platform-feature p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Platform CTA - Compact */
.platform-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.platform-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.platform-cta .btn {
  min-width: 200px;
}

/* Section intro adjustments for platform */
#platform .section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .platform-feature {
    padding: 1.5rem 1.25rem;
  }
  
  .platform-icon {
    width: 48px;
    height: 48px;
  }
  
  .platform-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .platform-feature h3 {
    font-size: 1.05rem;
  }
  
  .platform-feature p {
    font-size: 0.85rem;
  }
  
  .platform-cta {
    padding: 1.5rem;
  }
  
  .platform-cta p {
    font-size: 1rem;
  }
}

/* ===== SWAP LOGO AND NAV POSITIONS ===== */
.nav-container {
  flex-direction: row !important;
}

.nav-menu {
  order: 1;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.logo {
  order: 2;
  margin-left: auto !important;
}

.mobile-menu-toggle {
  order: 3;
}

@media (max-width: 768px) {
  .nav-menu {
    order: 2;
  }
  
  .logo {
    order: 1;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  
  .mobile-menu-toggle {
    order: 3;
  }
}

/* ===== FIX SCROLL INDICATOR OVERLAP AND CENTERING ===== */
.hero-actions {
  margin-top: 0;
  margin-bottom: 7rem !important;
}

.hero-scroll-indicator {
  position: absolute !important;
  bottom: 3rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  z-index: 10 !important;
  text-align: center !important;
  width: 100% !important;
  pointer-events: none !important;
}

.hero-scroll-indicator span {
  white-space: nowrap !important;
  display: block !important;
}

.hero-scroll-indicator svg {
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .hero-actions {
    margin-bottom: 8rem !important;
  }
  
  .hero-scroll-indicator {
    bottom: 2rem !important;
    font-size: 0.7rem !important;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    margin-bottom: 9rem !important;
  }
}

/* ===== MAKE HERO STATS SMALLER & MORE COMPACT ===== */
.hero-stats {
  margin: 2rem 0 2rem 0 !important;
  gap: 2rem !important;
}

.hero-stat {
  padding: 1.25rem 1.5rem !important;
  min-width: auto !important;
}

.stat-number {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
}

.stat-plus {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
}

.stat-label {
  font-size: 0.75rem !important;
  margin-top: 0.25rem !important;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 1.25rem !important;
    margin: 1.5rem 0 1.5rem 0 !important;
  }
  
  .hero-stat {
    padding: 1rem 1.25rem !important;
  }
  
  .stat-number {
    font-size: 1.5rem !important;
  }
  
  .stat-plus {
    font-size: 1.5rem !important;
  }
  
  .stat-label {
    font-size: 0.7rem !important;
  }
}

/* ===== MAKE SERVICES SECTION SMALLER & 5 IN ONE ROW ===== */
.services-grid {
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1rem !important;
  max-width: 1300px !important;
}

.service-card {
  padding: 1.25rem 1rem !important;
  border-radius: 12px !important;
}

.service-icon {
  width: 44px !important;
  height: 44px !important;
  margin: 0 auto 1rem !important;
  border-radius: 10px !important;
}

.service-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.service-card h3 {
  font-size: 0.95rem !important;
  margin-bottom: 0.5rem !important;
}

.service-card p {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
}

#divisions .section-intro {
  margin-bottom: 2rem !important;
}

#divisions .section-intro h2 {
  font-size: 2rem !important;
  margin-bottom: 0.75rem !important;
}

#divisions .section-description {
  font-size: 0.9rem !important;
}

/* Responsive - stack on smaller screens */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  
  .service-card {
    padding: 1rem 0.75rem !important;
  }
  
  .service-card h3 {
    font-size: 0.9rem !important;
  }
  
  .service-card p {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== TRANSPARENT NAVBAR ===== */
.nav {
  background: transparent !important;
  border-bottom: none !important;
}

/* Keep glassmorphic effect on scroll */
.nav.scrolled {
  background: rgba(13, 31, 26, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(79, 217, 156, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure nav links are visible on transparent background */
.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link:hover {
  color: #4FD99C !important;
}

.logo-text {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* ===== MAKE IMPACT SECTION SMALLER & 4 IN ONE ROW ===== */
.impact-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
}

.impact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 12px !important;
  padding: 1.25rem 1rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.impact-card h3 {
  font-size: 0.95rem !important;
  margin-bottom: 0.5rem !important;
  font-weight: 700;
}

.impact-card > p {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  margin-bottom: 1rem !important;
}

.impact-stat {
  padding-top: 1rem !important;
  border-top: 1px solid rgba(79, 217, 156, 0.2);
}

.impact-stat .stat-number {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: #4FD99C;
  display: block;
  margin-bottom: 0.25rem;
}

.impact-stat .stat-label {
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

#impact .section-intro {
  margin-bottom: 2rem !important;
}

#impact .section-intro h2 {
  font-size: 2rem !important;
  margin-bottom: 0.75rem !important;
}

#impact .section-description {
  font-size: 0.9rem !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  
  .impact-card {
    padding: 1rem 0.75rem !important;
  }
  
  .impact-card h3 {
    font-size: 0.9rem !important;
  }
  
  .impact-card > p {
    font-size: 0.75rem !important;
  }
  
  .impact-stat .stat-number {
    font-size: 1.25rem !important;
  }
}

/* ===== MAKE CORE VALUES SECTION SMALLER & 4 IN ONE ROW ===== */
.values-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
}

.value-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 12px !important;
  padding: 1.25rem 1rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.value-item h3 {
  font-size: 0.95rem !important;
  margin-bottom: 0.5rem !important;
  font-weight: 700;
  color: #4FD99C;
}

.value-item p {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.8);
}

.section:has(.values-grid) .section-intro {
  margin-bottom: 2rem !important;
}

.section:has(.values-grid) .section-intro h2 {
  font-size: 2rem !important;
  margin-bottom: 0.75rem !important;
}

.section:has(.values-grid) .section-description {
  font-size: 0.9rem !important;
}

/* Hover effect for value cards */
.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 217, 156, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(79, 217, 156, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  
  .value-item {
    padding: 1rem 0.75rem !important;
  }
  
  .value-item h3 {
    font-size: 0.9rem !important;
  }
  
  .value-item p {
    font-size: 0.75rem !important;
  }
}

/* ===== MORE GAP BETWEEN NAVBAR AND HERO TITLE ===== */
.hero-content {
  padding-top: 8rem !important;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 6rem !important;
  }
}

/* ===== HIDE HERO STATS ===== */
.hero-stats {
  display: none !important;
}

/* ===== MAKE MISSION/VISION BOXES SMALLER & CENTER-ALIGNED ===== */
.mission-card {
  text-align: center !important;
  padding: 2rem 1.5rem !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(79, 217, 156, 0.15) !important;
  max-width: 550px !important;
  margin: 0 auto !important;
}

.mission-card .card-icon {
  width: 56px !important;
  height: 56px !important;
  margin: 0 auto 1.25rem !important;
  background: rgba(79, 217, 156, 0.1) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mission-card .card-icon svg {
  width: 32px !important;
  height: 32px !important;
}

.mission-card h3 {
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.mission-card p {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
}

.mission-card p + p {
  margin-top: 1.25rem !important;
}

.grid.grid-2 {
  gap: 2rem !important;
  margin-top: 2.5rem !important;
}

/* About intro section */
.about-intro .about-header h2 {
  font-size: 2rem !important;
  margin-bottom: 1rem !important;
}

.about-intro .about-description {
  font-size: 0.95rem !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.about-subtitle {
  font-size: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--tg-green-light);
  margin-bottom: 0.5rem;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-card {
    padding: 1.5rem 1rem !important;
  }
  
  .mission-card h3 {
    font-size: 1.25rem !important;
  }
  
  .mission-card p {
    font-size: 0.875rem !important;
  }
  
  .grid.grid-2 {
    gap: 1.5rem !important;
  }
}

/* ===== REDESIGNED FOOTER - CLEAN & MODERN ===== */
.footer {
  background: linear-gradient(180deg, rgba(13, 31, 26, 0.95) 0%, rgba(8, 20, 16, 1) 100%) !important;
  padding: 3rem 0 1.5rem !important;
  border-top: 1px solid rgba(79, 217, 156, 0.15);
  position: relative;
  overflow: hidden;
}

.footer-main {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
  gap: 3rem !important;
  margin-bottom: 2.5rem !important;
  align-items: start !important;
}

/* Logo Section */
.footer-section:first-child {
  max-width: 350px;
}

.footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin-bottom: 1rem !important;
}

.footer-logo-img {
  width: 36px !important;
  height: 36px !important;
}

.footer-logo-text {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
}

.footer-description {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 1.25rem !important;
}

.footer-contact p {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
}

.footer-contact strong {
  color: var(--tg-green-light) !important;
}

/* Footer Sections */
.footer-section h4 {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: var(--tg-green-light) !important;
  margin-bottom: 1rem !important;
}

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

.footer-links li {
  margin-bottom: 0.5rem !important;
}

.footer-links a {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}

.footer-links a:hover {
  color: var(--tg-green-light) !important;
  transform: translateX(4px) !important;
}

/* Newsletter Section */
.footer-newsletter h5 {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 0.75rem !important;
}

.newsletter-form {
  display: flex !important;
  gap: 0.5rem !important;
}

.newsletter-input {
  flex: 1 !important;
  padding: 0.625rem 0.875rem !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(79, 217, 156, 0.2) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 0.875rem !important;
  transition: all 0.3s ease !important;
}

.newsletter-input:focus {
  outline: none !important;
  border-color: var(--tg-green-light) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.newsletter-btn {
  padding: 0.625rem 1.25rem !important;
  background: var(--tg-green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.newsletter-btn:hover {
  background: var(--tg-green-light) !important;
  transform: translateY(-2px) !important;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem !important;
  border-top: 1px solid rgba(79, 217, 156, 0.1) !important;
}

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

.footer-copyright {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0 !important;
}

.footer-tagline p {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-style: italic !important;
  margin: 0 !important;
}

/* Remove aurora effect - cleaner look */
.footer-aurora {
  display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem !important;
  }
  
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .footer-section:first-child {
    max-width: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .newsletter-form {
    flex-direction: column !important;
  }
  
  .newsletter-btn {
    width: 100% !important;
  }
}

/* ===== FIX SCROLL INDICATOR OVERLAP ===== */
.hero-buttons {
  margin-bottom: 8rem !important;
}

@media (max-width: 768px) {
  .hero-buttons {
    margin-bottom: 6rem !important;
  }
}

/* ===== REDESIGNED CONTACT SECTION - CLEAN & MODERN ===== */
#contact {
  padding: 4rem 0 !important;
}

.contact-intro {
  text-align: center !important;
  max-width: 800px !important;
  margin: 0 auto 3rem !important;
}

.contact-intro h2 {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  background: linear-gradient(135deg, #fff 0%, var(--tg-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Contact card - cleaner glassmorphic design */
.contact-simple {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(79, 217, 156, 0.2) !important;
  border-radius: 20px !important;
  padding: 3rem 2.5rem !important;
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.contact-simple:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(79, 217, 156, 0.4) !important;
  box-shadow: 0 16px 48px rgba(79, 217, 156, 0.15) !important;
}

.contact-simple h3 {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: var(--tg-green-light) !important;
  margin-bottom: 1rem !important;
}

.contact-simple p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 2rem !important;
}

/* Email button - modern design */
.contact-simple .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--tg-green) 0%, var(--tg-green-light) 100%) !important;
  border: 2px solid rgba(79, 217, 156, 0.3) !important;
  border-radius: 12px !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.contact-simple .btn-primary::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.contact-simple .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(79, 217, 156, 0.3) !important;
  border-color: var(--tg-green-light) !important;
}

.contact-simple .btn-primary:hover::before {
  opacity: 1 !important;
}

/* Hide the grid-2 wrapper styling */
#contact .grid.grid-2 {
  display: block !important;
  gap: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  #contact {
    padding: 3rem 0 !important;
  }
  
  .contact-intro h2 {
    font-size: 1.75rem !important;
  }
  
  .contact-intro {
    margin-bottom: 2rem !important;
  }
  
  .contact-simple {
    padding: 2rem 1.5rem !important;
  }
  
  .contact-simple h3 {
    font-size: 1.5rem !important;
  }
  
  .contact-simple p {
    font-size: 0.9rem !important;
  }
  
  .contact-simple .btn-primary {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ===== CONTACT SECTION - TWO BOXES SIDE BY SIDE ===== */
#contact {
  padding: 3rem 0 !important;
}

.contact-intro {
  text-align: left !important;
  max-width: none !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(79, 217, 156, 0.2) !important;
  border-radius: 16px !important;
  padding: 2rem 2rem !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.contact-intro h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
  background: linear-gradient(135deg, #fff 0%, var(--tg-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro p {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
}

/* Two boxes side by side */
#contact .grid.grid-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.contact-simple {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(79, 217, 156, 0.2) !important;
  border-radius: 16px !important;
  padding: 2rem 2rem !important;
  text-align: center !important;
  max-width: none !important;
  margin: 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.contact-simple:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(79, 217, 156, 0.4) !important;
  box-shadow: 0 12px 40px rgba(79, 217, 156, 0.15) !important;
}

.contact-simple h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--tg-green-light) !important;
  margin-bottom: 0.75rem !important;
}

.contact-simple p {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 1.5rem !important;
}

.contact-simple .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.875rem 1.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--tg-green) 0%, var(--tg-green-light) 100%) !important;
  border: 2px solid rgba(79, 217, 156, 0.3) !important;
  border-radius: 10px !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  margin: 0 auto !important;
}

.contact-simple .btn-primary::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.contact-simple .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(79, 217, 156, 0.3) !important;
  border-color: var(--tg-green-light) !important;
}

.contact-simple .btn-primary:hover::before {
  opacity: 1 !important;
}

/* Responsive */
@media (max-width: 968px) {
  #contact .grid.grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 2rem 0 !important;
  }
  
  .contact-intro,
  .contact-simple {
    padding: 1.5rem 1.25rem !important;
  }
  
  .contact-intro h2 {
    font-size: 1.25rem !important;
  }
  
  .contact-simple h3 {
    font-size: 1.25rem !important;
  }
  
  .contact-simple .btn-primary {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ===== CONTACT SECTION - SINGLE CLEAN CARD ===== */
#contact {
  padding: 3rem 0 !important;
}

/* Hide the contact intro wrapper */
.contact-intro {
  display: none !important;
}

/* Single centered card layout */
#contact .grid.grid-2 {
  display: block !important;
  gap: 0 !important;
  max-width: 700px !important;
  margin: 0 auto !important;
}

.contact-simple {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  border: 1px solid rgba(79, 217, 156, 0.25) !important;
  border-radius: 20px !important;
  padding: 3rem 2.5rem !important;
  text-align: center !important;
  max-width: none !important;
  margin: 0 !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle glow effect */
.contact-simple::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: radial-gradient(circle, rgba(79, 217, 156, 0.08) 0%, transparent 70%) !important;
  opacity: 0 !important;
  transition: opacity 0.6s ease !important;
}

.contact-simple:hover::before {
  opacity: 1 !important;
}

.contact-simple:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(79, 217, 156, 0.4) !important;
  box-shadow: 0 20px 60px rgba(79, 217, 156, 0.2) !important;
}

.contact-simple h3 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #fff 0%, var(--tg-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem !important;
  position: relative !important;
  z-index: 1 !important;
}

.contact-simple p {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 2.5rem !important;
  max-width: 550px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative !important;
  z-index: 1 !important;
}

.contact-simple .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1rem 2.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--tg-green) 0%, var(--tg-green-light) 100%) !important;
  border: 2px solid rgba(79, 217, 156, 0.4) !important;
  border-radius: 12px !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  box-shadow: 0 4px 20px rgba(79, 217, 156, 0.25) !important;
}

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

.contact-simple .btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(79, 217, 156, 0.4) !important;
  border-color: var(--tg-green-light) !important;
}

.contact-simple .btn-primary:hover::before {
  left: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
  #contact {
    padding: 2.5rem 0 !important;
  }
  
  .contact-simple {
    padding: 2.5rem 2rem !important;
    border-radius: 16px !important;
  }
  
  .contact-simple h3 {
    font-size: 1.5rem !important;
  }
  
  .contact-simple p {
    font-size: 0.9rem !important;
    margin-bottom: 2rem !important;
  }
  
  .contact-simple .btn-primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 1rem 2rem !important;
  }
}

/* ===== TOKENOMICS SECTION STYLING ===== */
#tokenomics {
  padding: 4rem 0 !important;
}

#tokenomics .section-intro {
  margin-bottom: 2.5rem !important;
}

#tokenomics .section-intro h2 {
  font-size: 2.25rem !important;
  margin-bottom: 1rem !important;
}

/* Partnership Banner */
.partnership-banner {
  background: linear-gradient(135deg, rgba(79, 217, 156, 0.15) 0%, rgba(79, 217, 156, 0.05) 100%);
  border: 2px solid rgba(79, 217, 156, 0.3);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.partnership-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tg-green-light);
  margin-bottom: 0.5rem;
}

.partnership-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Tokenomics Flow Grid */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tokenomics-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(79, 217, 156, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tokenomics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tg-green-light), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tokenomics-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 217, 156, 0.4);
  box-shadow: 0 12px 40px rgba(79, 217, 156, 0.2);
}

.tokenomics-card:hover::before {
  opacity: 1;
}

.token-step {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: rgba(79, 217, 156, 0.15);
  border: 2px solid var(--tg-green-light);
  color: var(--tg-green-light);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.tokenomics-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.tokenomics-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Token Benefits */
.token-benefits {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(79, 217, 156, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

.token-benefits > h3 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--tg-green-light);
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 1rem;
  font-size: 2rem;
  background: rgba(79, 217, 156, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(79, 217, 156, 0.2);
}

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Tokenomics CTA */
.tokenomics-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(79, 217, 156, 0.15);
}

.tokenomics-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.tokenomics-cta .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #tokenomics {
    padding: 3rem 0 !important;
  }
  
  .partnership-banner {
    padding: 1.5rem;
  }
  
  .partnership-content h3 {
    font-size: 1.4rem;
  }
  
  .partnership-content p {
    font-size: 0.9rem;
  }
  
  .tokenomics-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .token-benefits {
    padding: 2rem 1.5rem;
  }
  
  .tokenomics-cta {
    padding: 1.5rem;
  }
}
