/* ============ CSS VARIABLES ============ */
:root {
  --primary-blue: #0066ff;
  --neon-blue: #00a8ff;
  --light-blue: #e6f7ff;
  --soft-blue: #f0f8ff;
  --dark-blue: #001f4d;
  --cyber-blue: #0a2472;
  --glow-blue: #4dabf7;
  --accent-green: #00d2b8;
  --text-dark: #1a1a2e;
  --text-gray: #6b7280;
  --text-light: #4b5563;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --border-light: #e5e7eb;
  --shadow-soft: 0 4px 20px rgba(0, 102, 255, 0.08);
  --shadow-glow: 0 0 20px rgba(0, 168, 255, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--neon-blue) 100%);
  --gradient-light: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

/* ============ RESET & BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ WHITE THEME NAVIGATION ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  position: relative;
}

/* Animated Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  position: relative;
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(10deg);
}

.logo-icon i {
  font-size: 1.3rem;
  color: white;
  z-index: 2;
}

.pulse-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  top: -2px;
  right: -2px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--accent-green);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-blue), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--neon-blue);
  letter-spacing: 2px;
  font-weight: 400;
}

/* Navigation Links */
.nav-hologram {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li {
  position: relative;
  overflow: hidden;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.nav-number {
  color: var(--neon-blue);
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--light-blue);
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.nav-links a:hover .nav-number {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

/* Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-glow {
  background: var(--gradient-primary);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-glow i {
  font-size: 0.9rem;
}

/* Mobile Toggle - FIXED VISIBILITY */
.mobile-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: var(--light-blue);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.all-the-nav{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* ============ WHITE THEME CAROUSEL - FIXED IMAGES ============ */
.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--gradient-light);
}

.carousel-container {
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active {
  opacity: 1;
}

/* FIXED: Image display */
.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Adjusted overlay for better image visibility */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.141) 50%,
      rgba(255, 255, 255, 0.387) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-blue);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
  box-shadow: var(--shadow-soft);
}

.slide-badge i {
  color: var(--neon-blue);
  font-size: 0.9rem;
}

.slide-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--neon-blue);
}

.slide-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.slide-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  background: var(--light-blue);
  padding: 10px;
  border-radius: 5px;
}

.slide-stats {
  display: flex;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.stat {
  position: relative;
  padding: 15px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  min-width: 120px;
}

.stat-value {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
}

.carousel-prev,
.carousel-next {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--primary-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.carousel-dots {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.carousel-dot {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.carousel-dot:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.carousel-dot.active {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary-blue);
}

.dot-number {
  font-size: 0.8rem;
  font-weight: 600;
}

/* CTA Button */
.hero-cta {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.cta-button {
  background: var(--gradient-primary);
  border: none;
  padding: 18px 35px;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  width: 200px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
}

.cta-text {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cta-button:hover .cta-icon {
  transform: translateX(8px) rotate(45deg);
  background: rgba(255, 255, 255, 0.3);
}

/* Carousel Progress */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--light-blue);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 33.33%;
  transition: transform 0.5s ease;
}

/* ============ MOBILE MENU - RIGHT SLIDE ============ */




.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.close-menu:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}



/* ============ NOTIFICATION STYLES ============ */
.nav-notification {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-left: 4px solid var(--accent-green);
  transform: translateY(20px);
  animation: slideInUp 0.3s ease forwards;
}

.nav-notification i {
  color: var(--accent-green);
}

.undo-btn {
  background: var(--light-blue);
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--primary-blue);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.undo-btn:hover {
  background: var(--primary-blue);
  color: white;
}

/* ============ ANIMATIONS ============ */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideOut {
  from {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  to {
    transform: translateX(100px) scale(0.5);
    opacity: 0;
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
  .slide-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {

  .all-the-nav{
    position: fixed;
    display: flex;
    background: var(--light-gray);
    flex-direction: column;
    align-items: center;
    bottom: 0;
    top: 84px;
    right: 0;
    height: 80vh;
    z-index: 1000;
    width: 60%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    transform: translateX(100%);
    transition: 0.8s ease;

  }

  .all-the-nav.visiblenav{
    transform: translateX(0);
  }

  .nav-links{
    display: flex;
    flex-direction: column;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .slide-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat {
    min-width: 100px;
    padding: 12px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .mobile-toggle{
    display: flex;
  }
}

@media (max-width: 768px) {
  .logo-main {
    font-size: 1.1rem;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-desc {
    font-size: 1rem;
  }

  .carousel-nav {
    padding: 0 1rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 45px;
    height: 45px;
  }

  .carousel-dot {
    width: 35px;
    height: 35px;
  }

  .cta-button {
    padding: 15px 25px;
    font-size: 0.9rem;
  }

  .hero-cta {
    bottom: 10px;
    right: 10px;
  }

  .mobile-toggle {
    padding: 6px;
  }

  .hamburger {
    width: 28px;
    height: 22px;
  }

  .hamburger .line {
    height: 2.5px;
  }

}

@media (max-width: 480px) {

  .all-the-nav{
    width: 95%;
    height: 85vh;
  }


  .slide-title {
    font-size: 1.6rem;
  }

  .stat {
    min-width: 80px;
    padding: 10px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .carousel-dot {
    width: 30px;
    height: 30px;
  }

  .dot-number {
    font-size: 0.7rem;
  }

  
  .nav-notification {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
}

/* ============ UTILITY CLASSES ============ */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}

/* Focus states for accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Loading state */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-light);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}




/* About Hero Styles */
.about-hero {
  padding: 120px 0;
  position: relative;
  background: #0a1929;
  color: white;
  overflow: hidden;
}

/* Background Image */
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 25, 41, 0.9) 0%, rgba(0, 31, 77, 0.8) 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.about-content {
  padding-right: 40px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  background: rgba(0, 102, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.about-badge i {
  color: #00a8ff;
  font-size: 14px;
}

.about-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #00a8ff;
  letter-spacing: 2px;
}

.about-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-line {
  display: block;
}

.about-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #a0b3c6;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #a0b3c6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.about-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary,
.btn-outline {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0066ff 0%, #00a8ff 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Visual Cards */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 24px;
  color: #00a8ff;
}

.visual-card h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 10px;
}

.visual-card p {
  color: #a0b3c6;
  font-size: 1rem;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content>* {
  animation: fadeIn 0.8s ease forwards;
}

.about-title {
  animation-delay: 0.2s;
}

.about-desc {
  animation-delay: 0.4s;
}

.about-stats {
  animation-delay: 0.6s;
}

.about-actions {
  animation-delay: 0.8s;
}

.visual-card:nth-child(1) {
  animation-delay: 1s;
}

.visual-card:nth-child(2) {
  animation-delay: 1.2s;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-actions {
    justify-content: center;
  }

  .about-visual {
    flex-direction: row;
    justify-content: center;
  }
}

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

  .about-title {
    font-size: 2.5rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 30px;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-visual {
    flex-direction: column;
  }

  .visual-card {
    text-align: center;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.works-header {
  text-align: center;
  margin-bottom: 80px;
}

.works-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
}

.works-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #0066ff;
  letter-spacing: 2px;
}

.works-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #001f4d;
}

.works-title span {
  display: block;
}

.works-subtitle {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Steps */
.works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.step {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
  border-color: #0066ff;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #e6f7ff;
  background: #0066ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid #e5e7eb;
}

.step-icon i {
  font-size: 28px;
  color: #0066ff;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #001f4d;
  margin-bottom: 15px;
}

.step-desc {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 0.95rem;
}

.step-features li i {
  color: #00d2b8;
  font-size: 12px;
}

/* CTA */
.works-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.cta-button {
  background: linear-gradient(135deg, #0066ff 0%, #00a8ff 100%);
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.cta-button i {
  font-size: 1.2rem;
}

.cta-note {
  margin-top: 20px;
  color: #6b7280;
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.step:nth-child(1) {
  animation-delay: 0.2s;
}

.step:nth-child(2) {
  animation-delay: 0.4s;
}

.step:nth-child(3) {
  animation-delay: 0.6s;
}

.step:nth-child(4) {
  animation-delay: 0.8s;
}

/* Connector Lines (for desktop) */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 2px;
  background: #e5e7eb;
  z-index: 1;
}

.step:not(:last-child)::before {
  content: '→';
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  color: #0066ff;
  font-size: 20px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .works-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .step:not(:last-child)::after,
  .step:not(:last-child)::before {
    display: none;
  }

  .works-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 80px 0;
  }

  .works-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .works-header {
    margin-bottom: 50px;
  }

  .works-title {
    font-size: 2rem;
  }

  .works-subtitle {
    font-size: 1.1rem;
  }
}




/* Quantum Financial System Section */
.quantum-financial {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1929 0%, #001f4d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.qfs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header */
.qfs-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.qfs-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 102, 255, 0.1);
  padding: 12px 28px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(10px);
}

.qfs-badge i {
  color: #00a8ff;
  font-size: 16px;
}

.qfs-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #00a8ff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.qfs-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qfs-title span {
  display: block;
}

.qfs-subtitle {
  font-size: 1.2rem;
  color: #a0b3c6;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid */
.qfs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.qfs-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.qfs-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* Video */
.qfs-video {
  height: 200px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.qfs-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.qfs-card:hover .qfs-video video {
  transform: scale(1.05);
}

.qfs-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Content */
.qfs-content {
  padding: 25px;
}

.qfs-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
}

.qfs-card-desc {
  color: #a0b3c6;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.qfs-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.qfs-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #00a8ff;
  background: rgba(0, 102, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
}

.qfs-meta i {
  font-size: 12px;
}

/* Footer */
.qfs-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qfs-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 210, 184, 0.1);
  padding: 15px 25px;
  border-radius: 12px;
  color: #00d2b8;
  font-size: 1rem;
  border: 1px solid rgba(0, 210, 184, 0.2);
}

.qfs-note i {
  font-size: 1.2rem;
}

/* Video Controls Styling */
.qfs-video video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.7);
}

.qfs-video video::-webkit-media-controls-play-button {
  background-color: #0066ff;
  border-radius: 50%;
}

.qfs-video video::-webkit-media-controls-current-time-display,
.qfs-video video::-webkit-media-controls-time-remaining-display {
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qfs-card {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.qfs-card:nth-child(1) {
  animation-delay: 0.1s;
}

.qfs-card:nth-child(2) {
  animation-delay: 0.2s;
}

.qfs-card:nth-child(3) {
  animation-delay: 0.3s;
}

.qfs-card:nth-child(4) {
  animation-delay: 0.4s;
}

.qfs-card:nth-child(5) {
  animation-delay: 0.5s;
}

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

@media (max-width: 768px) {
  .quantum-financial {
    padding: 80px 0;
  }

  .qfs-grid {
    grid-template-columns: 1fr;
  }

  .qfs-title {
    font-size: 2.5rem;
  }

  .qfs-subtitle {
    font-size: 1.1rem;
  }

  .qfs-note {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .qfs-title {
    font-size: 2rem;
  }

  .qfs-content {
    padding: 20px;
  }

  .qfs-meta {
    flex-direction: column;
    gap: 10px;
  }
}



/* MedBED Section */
.medbed-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.medbed-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.medbed-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.medbed-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  padding: 12px 28px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.medbed-badge i {
  color: #dc2626;
  font-size: 16px;
}

.medbed-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.medbed-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #1e293b;
}

.medbed-title span {
  display: block;
}

.medbed-subtitle {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid */
.medbed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.medbed-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
}

.medbed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
}

/* Image */
.medbed-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.medbed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.medbed-card:hover .medbed-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
}

.overlay-text {
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Content */
.medbed-content {
  padding: 25px;
}

.medbed-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.3;
}

.medbed-card-desc {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.medbed-specs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
}

.spec i {
  font-size: 12px;
}

/* Features */
.medbed-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.feature {
  text-align: center;
  padding: 20px;
}

.feature i {
  font-size: 2.5rem;
  color: #dc2626;
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.feature p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.medbed-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.medbed-card:nth-child(1) {
  animation-delay: 0.1s;
}

.medbed-card:nth-child(2) {
  animation-delay: 0.2s;
}

.medbed-card:nth-child(3) {
  animation-delay: 0.3s;
}

.medbed-card:nth-child(4) {
  animation-delay: 0.4s;
}

.medbed-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature:nth-child(1) {
  animation-delay: 0.6s;
}

.feature:nth-child(2) {
  animation-delay: 0.7s;
}

.feature:nth-child(3) {
  animation-delay: 0.8s;
}

.feature:nth-child(4) {
  animation-delay: 0.9s;
}

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

@media (max-width: 768px) {
  .medbed-section {
    padding: 80px 0;
  }

  .medbed-grid {
    grid-template-columns: 1fr;
  }

  .medbed-title {
    font-size: 2.5rem;
  }

  .medbed-subtitle {
    font-size: 1.1rem;
  }

  .medbed-features {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .medbed-title {
    font-size: 2rem;
  }

  .medbed-features {
    grid-template-columns: 1fr;
  }

  .medbed-image {
    height: 200px;
  }
}



/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0a1929 0%, #001f4d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Main Footer */
.footer-main {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
}

/* Brand Section */
.footer-brand {
  padding-right: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer-logo i {
  color: #00a8ff;
  font-size: 2rem;
}

.footer-tagline {
  color: #a0b3c6;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0b3c6;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(0, 102, 255, 0.2);
  color: white;
  transform: translateY(-3px);
  border-color: rgba(0, 102, 255, 0.3);
}

/* Links Sections */
.footer-links {
  padding-top: 10px;
}

.links-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.links-list li {
  margin-bottom: 15px;
}

.links-list a {
  color: #a0b3c6;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.links-list a:hover {
  color: white;
  transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter {
  padding-top: 10px;
}

.newsletter-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-desc {
  color: #a0b3c6;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.newsletter-form {
  margin-bottom: 20px;
}

.form-group {
  position: relative;
  display: flex;
  margin-bottom: 15px;
}

.form-group input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #00a8ff;
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
  color: #a0b3c6;
}

.form-group button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #0066ff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group button:hover {
  background: #00a8ff;
  transform: translateY(-50%) scale(1.1);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a0b3c6;
  font-size: 0.85rem;
}

.form-note i {
  color: #00d2b8;
  font-size: 12px;
}

/* Trust Badges */
.footer-trust {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-3px);
}

.trust-badge i {
  font-size: 1.5rem;
  color: #00a8ff;
}

.trust-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
}

.bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  flex: 1;
  min-width: 300px;
}

.copyright p {
  color: #a0b3c6;
  font-size: 0.9rem;
  line-height: 1.5;
}

.legal-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #a0b3c6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

.footer-disclaimer {
  flex-basis: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  color: #f59e0b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-disclaimer i {
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-container>* {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-brand {
  animation-delay: 0.1s;
}

.footer-links:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-links:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-links:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-links:nth-child(5) {
  animation-delay: 0.5s;
}

.footer-newsletter {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .copyright {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    padding-right: 0;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .links-list a:hover {
    transform: translateY(-3px);
  }

  .trust-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .trust-badge {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .legal-links {
    justify-content: center;
  }

  .footer-disclaimer p {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-logo {
    font-size: 1.5rem;
    justify-content: center;
  }

  .newsletter-form {
    text-align: center;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-group button {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 45px;
    margin-top: 10px;
  }
}