/* Landing Page Styles - Ultra Modern & Sleek Design */

/* ========================================
   START GLOBAL STYLES
   ======================================== */
/* Global Styles */
* {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  overflow-x: hidden;
}
/* ========================================
   END GLOBAL STYLES
   ======================================== */


/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(135deg, #0A0A4E 0%, #17183A 50%, #27DBA0 100%);
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  color: #fff;
}

.hero-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title - Single Line */
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 0.5rem;
  line-height: 1.6;
}

/* Search Bar */
.hero-search {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  width: 100%;
  max-width: 600px;
  margin: 0 0 1rem 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 0.9rem 1.2rem;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.search-btn {
  background: #fff;
  color: #0A0A4E;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.search-btn:hover {
  background: #56FFBD;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.2rem;
  width: 100%;
}

.btn-primary,
.btn-secondary {
  padding: 0.85rem 2.3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

/* White login button */
.btn-primary {
  background: #fff;
  color: #0A0A4E;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 2px solid #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* Transparent sign up button */
.btn-secondary {
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Stats - Horizontal Row */
.hero-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  margin-top: 0;
  width: 100%;
  flex-wrap: nowrap;
}

.hero-stats div,
.stat-item {
  text-align: center;
  white-space: nowrap;
}

.hero-stats strong {
  font-size: 1.9rem;
  font-weight: 800;
  display: block;
}

.hero-stats span {
  display: block;
  margin-top: 0.3rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    white-space: normal;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-search {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
  }

  .search-btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================
   END HERO SECTION
   ======================================== */


/* ========================================
   START SECTION HEADERS
   ======================================== */
/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
 font-weight: 700;
 color: #0B0A4E;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
 color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
/* ========================================
   END SECTION HEADERS
   ======================================== */

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0B0A4E;
  margin-bottom: 1rem;
}

.section-header p {
  color: #475569;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0 2rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(11, 10, 78, 0.1);
  box-shadow: 0 10px 30px rgba(11, 10, 78, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgba(11, 10, 78, 0.15);
  border-color: rgba(86, 255, 189, 0.4);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #56FFBD, #0B0A4E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(86, 255, 189, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B0A4E;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}


/* ========================================
   END FEATURES SECTION
   ======================================== */

/* ========================================
   STATISTICS SECTION
   ======================================== */
.stats-section {
  padding: 8rem 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0B0A4E;
  margin-bottom: 1rem;
}

.section-header p {
  color: #475569;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0 2rem;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(11, 10, 78, 0.08);
  box-shadow: 0 8px 32px rgba(11, 10, 78, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(86, 255, 189, 0.05), rgba(11, 10, 78, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

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

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(11, 10, 78, 0.12);
  border-color: rgba(86, 255, 189, 0.4);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0B0A4E;
  margin-bottom: 0.5rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #0B0A4E, #56FFBD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #475569;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

/* ========================================
   END STATISTICS SECTION
   ======================================== */

/* ========================================
   START CATEGORIES SECTION
   ======================================== */
/* Categories Section */
.categories {
  padding: 6rem 0;
}

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

.category-card {
  background: #FFFFFF;
 padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(1, 10, 78, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
 text-align: center;
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11, 10, 78, 0.15);
  border-color: #56FFBD;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #56FFBD, #0B0A4E);
  opacity: 0.2;
  transition: opacity 0.2s ease;
}

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

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #56FFBD, #0B0A4E);
  border-radius: 50%;
  display: flex;
 align-items: center;
 justify-content: center;
  margin: 0 auto 1.5rem;
  color: #FFFFFF;
  font-size: 1.5rem;
}

.category-card h3 {
  font-size: 1.2rem;
 font-weight: 600;
 color: #0B0A4E;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: #64748b;
  font-size: 0.95rem;
}

.category-count {
  display: inline-block;
 background: #e8fff5;
  color: #0B0A4E;
 padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
 font-weight: 600;
 margin-top: 0.5rem;
}
/* ========================================
   END CATEGORIES SECTION
   ======================================== */

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(86, 255, 189, 0.08), transparent 70%);
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0B0A4E;
  margin-bottom: 1rem;
}

.section-header p {
  color: #475569;
  font-size: 1.05rem;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 10px 40px rgba(11, 10, 78, 0.06);
  border: 1px solid rgba(11, 10, 78, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(11, 10, 78, 0.12);
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 3rem;
  color: rgba(86, 255, 189, 0.15);
  z-index: 0;
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-content p {
  font-size: 1.05rem;
  color: #0B0A4E;
  line-height: 1.7;
  font-style: italic;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-avatar.ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #56FFBD;
  animation: ringPulse 2s infinite ease-in-out;
}

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

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0B0A4E;
}

.author-info p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}



/* ========================================
   END TESTIMONIALS SECTION
   ======================================== */

    /* ========================================
       ENHANCED CTA SECTION
       ======================================== */
    .cta {
      padding: 10rem 0 8rem;
      background: linear-gradient(180deg, 
        #f0fdf9 0%, 
        #e0f9f2 25%,
        #c5f3e8 50%,
        #1a1a5e 85%,
        #0B0A4E 100%
      );
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Animated gradient orbs */
    .cta::before {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 1200px;
      height: 1200px;
      background: radial-gradient(circle, 
        rgba(11, 207, 146, 0.15) 0%, 
        rgba(11, 207, 146, 0.08) 40%,
        transparent 70%
      );
      z-index: 0;
      animation: pulseGlow 8s ease-in-out infinite;
    }

    /* Secondary floating orb */
    .cta::after {
      content: '';
      position: absolute;
      bottom: 10%;
      right: 10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, 
        rgba(11, 10, 78, 0.1) 0%, 
        transparent 70%
      );
      border-radius: 50%;
      z-index: 0;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes pulseGlow {
      0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
      }
      50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.05);
      }
    }

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

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

    .cta-content {
      position: relative;
      z-index: 1;
      animation: fadeInUp 0.8s ease-out;
    }

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

    .cta-content h2 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      margin-bottom: 1.25rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, 
        #0B0A4E 0%, 
        #1a4d8f 50%,
        #0BCF92 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 0.8s ease-out 0.2s both;
      position: relative;
    }

    /* Subtle shine effect on heading */
    .cta-content h2::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
      );
      animation: shine 3s ease-in-out infinite;
    }

    @keyframes shine {
      0% {
        left: -100%;
      }
      50%, 100% {
        left: 200%;
      }
    }

    .cta-content p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: #1e293b;
      margin-bottom: 3rem;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
      font-weight: 400;
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    /* Enhanced Button Styles */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.1rem 2.5rem;
      border-radius: 14px;
      font-weight: 600;
      font-size: 1.05rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
      letter-spacing: 0.01em;
    }

    /* Primary Button - Solid color with hover lift */
    .btn-primary {
      background: #55FFBD;
      color: #0B0A4E;
      box-shadow: 0 10px 30px rgba(85, 255, 189, 0.3),
                  0 4px 12px rgba(85, 255, 189, 0.2);
    }

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

    .btn-primary:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 16px 48px rgba(85, 255, 189, 0.4),
                  0 8px 20px rgba(85, 255, 189, 0.3);
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary:active {
      transform: translateY(-2px) scale(0.98);
    }

    /* Outline Button - Border only */
    .btn-outline {
      background: transparent;
      backdrop-filter: none;
      border: 2px solid #55FFBD;
      color: #0B0A4E;
      box-shadow: none;
    }

    .btn-outline::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #55FFBD;
      transition: left 0.5s ease;
      z-index: -1;
    }

    .btn-outline:hover {
      color: #0B0A4E;
      border-color: #55FFBD;
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 12px 36px rgba(85, 255, 189, 0.3);
    }

    .btn-outline:hover::before {
      left: 0;
    }

    .btn-outline:active {
      transform: translateY(-2px) scale(0.98);
    }

    /* Ripple effect on click */
    @keyframes ripple {
      0% {
        transform: scale(0);
        opacity: 0.6;
      }
      100% {
        transform: scale(2);
        opacity: 0;
      }
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      pointer-events: none;
    }

    .btn:active::after {
      animation: ripple 0.6s ease-out;
    }

    /* Decorative elements */
    .decorative-dots {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
      opacity: 0.4;
    }

    .dot {
      position: absolute;
      width: 8px;
      height: 8px;
      background: linear-gradient(135deg, #0BCF92, #0B0A4E);
      border-radius: 50%;
      animation: floatDot 4s ease-in-out infinite;
    }

    .dot:nth-child(1) {
      top: 15%;
      left: 10%;
      animation-delay: 0s;
    }

    .dot:nth-child(2) {
      top: 25%;
      right: 15%;
      animation-delay: 1s;
    }

    .dot:nth-child(3) {
      bottom: 30%;
      left: 20%;
      animation-delay: 2s;
    }

    .dot:nth-child(4) {
      bottom: 20%;
      right: 10%;
      animation-delay: 1.5s;
    }

    @keyframes floatDot {
      0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
      }
      50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .cta {
        padding: 6rem 0 5rem;
      }

      .cta-buttons {
        flex-direction: column;
        gap: 1rem;
      }

      .btn {
        width: 100%;
        max-width: 320px;
      }
    }



    /* Add after CTA section
.cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #0B0A4E;
  clip-path: ellipse(100% 100% at 50% 100%);
  z-index: 1;
} */

/* Wave effect for CTA to footer transition */







/* ========================================
   END CTA SECTION
   ======================================== */

/* ========================================
   START RESPONSIVE DESIGN
   ======================================== */
/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 0 2rem;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
    padding-left: 0;
    align-items: center;
  }
  
  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 350px;
    height: 350px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
 }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
 }
  
  .hero-subtitle {
    font-size: 1.1rem;
 }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .categories-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
 }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
 }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-large {
    width: 10%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 3rem 0 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
 }
  
  .section-header {
    margin-bottom: 2.5rem;
 }
  
  .section-header h2 {
    font-size: 1.8rem;
 }
  
  .features,
  .categories,
  .testimonials,
  .cta {
    padding: 4rem 0;
  }
  
  .feature-card,
  .category-card,
 .testimonial-card {
    padding: 1.5rem;
 }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   END RESPONSIVE DESIGN
   ======================================== */













   /* ========================================
   PRICING SECTION
   ======================================== */
/* Sleek Pricing Section */
.pricing-section {
  background: #fff;
  padding: 7rem 0;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0B0A4E;
  margin-bottom: 1rem;
}

.section-header p {
  color: #475569;
  font-size: 1.05rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 3rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  max-width: 370px;
  backdrop-filter: blur(8px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 10, 78, 0.12);
}

.pricing-card.popular {
  background: linear-gradient(160deg, #56FFBD 0%, #0B0A4E 100%);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(86, 255, 189, 0.3);
}

.pricing-card.popular:hover {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #56FFBD;
  color: #0B0A4E;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  box-shadow: 0 3px 10px rgba(86, 255, 189, 0.4);
}

.pricing-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-description {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-card.popular .plan-description {
  color: rgba(255, 255, 255, 0.9);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #0B0A4E;
}

.pricing-card.popular .price {
  color: #fff;
}

.currency {
  font-size: 1.3rem;
  vertical-align: super;
}

.duration {
  font-size: 0.9rem;
  color: #64748b;
}

.pricing-card.popular .duration {
  color: rgba(255, 255, 255, 0.85);
}

.features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.features li {
  padding: 0.8rem 0;
  font-size: 0.95rem;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.features li:not(:last-child) {
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
}

.features li::before {
  content: "✓";
  color: #56FFBD;
  font-weight: bold;
}

.pricing-card.popular .features li::before {
  color: #fff;
}

.pricing-card.popular .features li {
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: #fff;
  color: #0B0A4E;
}

.btn-primary:hover {
  background: #56FFBD;
  color: #0B0A4E;
}

.btn-outline {
  border: 2px solid #0B0A4E;
  color: #0B0A4E;
  background: transparent;
}

.btn-outline:hover {
  background: #0B0A4E;
  color: #fff;
}

.pricing-card.popular .btn-primary {
  background: #56FFBD;
  color: #0B0A4E;
}

.pricing-card.popular .btn-primary:hover {
  background: #fff;
  color: #0B0A4E;
}

/* ========================================
   END PRICING SECTION
   ======================================== */