
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');
:root {
  --bg-dark: #060512;
  --bg-darker: #04020c;
  --bg-card: #0d0a26;
  --bg-card-center: #140e3b;
  --bg-card-hover: #181145;
  
  --primary-purple: #a855f7;
  --light-purple: #c084fc;
  --neon-purple: #d8b4fe;
  --indigo-accent: #818cf8;
  --pink-accent: #ec4899;
  
  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --text-light-muted: #e2e8f0;
  
  --border-subtle: rgba(168, 85, 247, 0.25);
  --border-active: rgba(192, 132, 252, 0.7);
  --border-gradient: linear-gradient(135deg, rgba(192, 132, 252, 0.5), rgba(99, 102, 241, 0.2));
  
  --grad-primary: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #6366f1 100%);
  --grad-hover: linear-gradient(135deg, #e9d5ff 0%, #c084fc 50%, #818cf8 100%);
  --grad-glow: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(6, 5, 18, 0) 70%);
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Global Reset & Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Lights */
/* body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 50% 10%, rgba(168, 85, 247, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(192, 132, 252, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
} */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.35rem;
}

/* Text & Paragraph High Contrast Overrides */
p {
  color: #cbd5e1;
  font-size: 1rem;
}

.text-muted, .text-secondary {
  color: #cbd5e1 !important;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Gradients and Utility */
.text-gradient {
  background: linear-gradient(90deg, #e9d5ff 0%, #c084fc 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c084fc;
  display: inline;
}

.text-gradient-cyan {
  background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #38bdf8;
  display: inline;
}

.text-purple {
  color: #c084fc !important;
}

/* Containers */
.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.custom-container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Spacing */
.section-spacing {
  padding: 90px 0;
  position: relative;
}

.section-spacing-sm {
  padding: 60px 0;
  position: relative;
}

.section-spacing-top {
  padding-top: 90px;
  position: relative;
}

.section-spacing-bottom {
  padding-bottom: 90px;
  position: relative;
}

/* Pre-title Badge */
.pre-title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.pre-title-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(192, 132, 252, 0.45);
  padding: 7px 20px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

/* Buttons */
.btn-gradient-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gradient-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(192, 132, 252, 0.7);
  background: var(--grad-hover);
  color: #ffffff !important;
}

.btn-black-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 10, 38, 0.9);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 100px;
  border: 1px solid rgba(192, 132, 252, 0.4);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-black-outline:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: var(--neon-purple);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.35);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: rgba(6, 5, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.custom-navbar.scrolled {
  padding: 12px 0;
  background: rgba(6, 5, 18, 0.96);
  border-bottom-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand-img {
  height: 65px;
  width: auto;
}

.nav-link {
  color: #cbd5e1 !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff !important;
}

.nav-link.active {
  background: rgba(168, 85, 247, 0.2);
  color: #e9d5ff !important;
}

/* Dropdown Menu */
.dropdown-menu-dark {
  background: #0d0a27;
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 10px;
  margin-top: 10px;
}

.dropdown-item {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item.active {
  background: rgba(168, 85, 247, 0.25);
  color: #ffffff;
}

/* Hamburger toggle */
.navbar-toggler {
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 8px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(216, 180, 254, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 155px;
  padding-bottom: 90px;
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  max-width: 540px;
  margin: 1.5rem 0 2.2rem 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-main {
  width: 100%;
  max-width: 540px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(168, 85, 247, 0.3));
}


/* Inner Page Hero */
.hero-inner {
  padding-top: 155px;
  padding-bottom: 45px;
  text-align: center;
  position: relative;
}

.hero-inner-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

/* ==========================================================================
   Client Trust Marquee / Ticker
   ========================================================================== */
.client-section {
  padding: 42px 0;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
  border-bottom: 1px solid rgba(168, 85, 247, 0.18);
  background: rgba(13, 10, 38, 0.45);
  position: relative;
  overflow: hidden;
}

.client-title {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5e1;
  white-space: nowrap;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  animation: marquee 25s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.client-logo {
  height: 32px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(100%) brightness(1.4);
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%) drop-shadow(0 0 12px rgba(168, 85, 247, 0.6));
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   About / Impact Stats Counter Section
   ========================================================================== */
.about-section {
  position: relative;
}

.counter-image-wrap {
  position: relative;
  text-align: center;
}

.counter-image-main {
  width: 100%;
  max-width: 440px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 35px rgba(168, 85, 247, 0.3));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.85rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* ==========================================================================
   Services Section (6 Cards Grid)
   ========================================================================== */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.3rem 1.9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.16), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-box img {
  width: 100%;
  height: 100%;
}

.service-title {
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.65;
}

/* ==========================================================================
   Expertise / Feature Section
   ========================================================================== */
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(13, 10, 38, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.6rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--border-active);
  transform: translateX(6px);
  background: var(--bg-card);
}

.feature-box-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.feature-box-title {
  color: #ffffff !important;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-box-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Pricing Section (High-Contrast, Crisp Visibility)
   ========================================================================== */
.pricing-card {
  background: #0d0a26;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 22px;
  padding: 2.6rem 2.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: 0 20px 45px rgba(168, 85, 247, 0.25);
}

/* Center Highlighted Card */
.pricing-card.featured {
  background: #140e3b;
  border: 1.8px solid #c084fc;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.35);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 0 50px rgba(192, 132, 252, 0.55);
}

.badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.6);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(192, 132, 252, 0.45);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
}

.pricing-amount.text-gradient {
  background: linear-gradient(90deg, #ffffff 0%, #e9d5ff 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c084fc !important;
}

.pricing-unit {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-left: 0.4rem;
}

.pricing-target {
  font-size: 0.96rem;
  color: #e2e8f0;
  font-weight: 600;
  margin: 1.25rem 0 1.75rem 0;
  min-height: 48px;
  line-height: 1.5;
}

.pricing-features-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 0.9rem;
}

.pricing-feature-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-footer-note {
  font-size: 0.96rem;
  color: #cbd5e1;
  margin-top: 2.5rem;
  font-weight: 500;
}

/* ==========================================================================
   Comparison Table (for Pricing Page)
   ========================================================================== */
.table-dark-custom {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.table-dark-custom th {
  background: rgba(168, 85, 247, 0.16);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.table-dark-custom td {
  padding: 1.1rem 1.5rem;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  font-size: 0.95rem;
}

.table-dark-custom tr:last-child td {
  border-bottom: none;
}

.table-dark-custom tr:hover td {
  background: rgba(168, 85, 247, 0.08);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-box {
  background: linear-gradient(135deg, rgba(35, 18, 70, 0.95) 0%, rgba(15, 11, 42, 0.98) 100%);
  border: 1.5px solid rgba(192, 132, 252, 0.45);
  border-radius: 24px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.25);
}

.cta-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/pattern-02.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
}

.testimonial-quote {
  font-size: 0.98rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--neon-purple);
}

.testimonial-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.rating-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  color: #cbd5e1;
}

.rating-score {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(192, 132, 252, 0.35);
  padding: 6px 16px;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
}

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--bg-card);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(168, 85, 247, 0.16);
  color: var(--neon-purple);
}

.accordion-button::after {
  filter: invert(1) brightness(2);
}

.accordion-body {
  background: var(--bg-card);
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.7;
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  height: 36px;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: var(--primary-purple);
  color: #ffffff;
  border-color: var(--neon-purple);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: #cbd5e1;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--neon-purple);
  padding-left: 4px;
}

.footer-newsletter-wrap {
  background: rgba(13, 10, 38, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.2rem;
  margin-top: 3.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  position: relative;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(6, 5, 18, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 100px;
  padding: 12px 22px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.footer-awards-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-award-badge {
  height: 75px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-award-badge:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bottom {
  /* border-top: 1px solid rgba(168, 85, 247, 0.15); */
  /* margin-top: 3.5rem; */
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 125px;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-wrap {
    margin-top: 3rem;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  .footer-awards-wrap {
    justify-content: center;
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .section-spacing {
    padding: 60px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    width: 100%;
  }
  .cta-box {
    padding: 3rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.feature-box-icon span{
       background: #b166f8;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
}
.stat-counter{
      font-size: 20px;
      line-height: 6px!important;
}