body {
  font-family: sans-serif;
  margin: auto;
  max-width: 1280px;
  background: #ffffff;
  padding-top: 88px; /* space for fixed header above body content */
}

div.graycol {
  background-color: #55585D;
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  height: 100%;
}

div.greencol {
  background-color: #29BB9C;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}

div.bluecol {
  background-color: #3A4ED5;
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  height: 100%;
}

.big-icon {
  font-size: 36px;
}

.violet {
  color: #662D91;
}

.blue {
  color: #3a4ed5;
}

.green {
  color: #29BB9C;
}

.gray {
  color: #55585D;
}

h2.green, h2.violet, h2.blue {
  font-size: 1rem;
  font-weight: lighter;
}

/* ---- Enhanced Typography ---- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  letter-spacing: 0.2px;
}

.lead {
  color: #444;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .display-5,
.hero .display-6,
.hero .lead {
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.hero .rows-equal-height {
  margin-top: 0.5rem;
}

/* ---- Buttons ---- */
.btn {
  border-radius: 12px;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-gradient {
  background-image: linear-gradient(to right, #662D91 , #3a4ed5);
  color: #ffffff;
  border: 0;
}

.btn-orange {
  background: #FF8A00;
  color: #ffffff;
  border: 0;
}

.btn:hover {
  filter: brightness(0.98);
}

/* White hover for pricing CTAs and gradient buttons */
.btn-gradient:hover {
  background: #ffffff !important;
  color: #3a4ed5 !important;
  border: 1px solid #3a4ed5 !important;
  filter: none;
}

.btn-orange:hover {
  background: #ffffff !important;
  color: #FF8A00 !important;
  border: 1px solid #FF8A00 !important;
  filter: none;
}

/* Solid white button */
.btn-white {
  background: #ffffff;
  color: #3a3a3a;
  border: 1px solid rgba(0,0,0,0.12);
}

.btn-white:hover {
  background: #f9f9f9;
  color: #3a4ed5;
  border-color: #3a4ed5;
}

/* ---- Cards ---- */
.card {
  border-radius: 16px;
  overflow: hidden;
  border-color: rgba(0,0,0,0.06);
}

.card-header {
  font-weight: 600;
}

.card .pricing-card-title {
  font-weight: 700;
}

/* ---- Sections ---- */
#what-it-is-container,
#how-it-works-container,
#what-you-will-get-container,
#what-is-the-price-container,
#successSlot,
#faqSlot,
#aboutSlot,
#contactslot {
  scroll-margin-top: 88px; /* better anchor scrolling under fixed nav */
}

/* ---- Carousel ---- */
#myCarousel .carousel-caption {
  bottom: 3.5rem;
}

#myCarousel .carousel-item svg rect {
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
}

/* ---- Navbar adjustments ---- */
.navbar {
  backdrop-filter: saturate(150%) blur(6px);
  z-index: 2000; /* ensure it's above all sections */
  background: #ffffff; /* solid white header background */
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.navbar .container {
  position: relative;
  z-index: inherit;
}

.navbar .nav-link {
  color: #3a3a3a;
}

.navbar .nav-link:hover {
  color: #3a4ed5;
}

/* ---- Utility colors ---- */
.text-violet { color: #662D91; }
.text-blue { color: #3a4ed5; }
.text-green { color: #29BB9C; }
.text-gray  { color: #55585D; }

/* ---- Card polish & hover ---- */
.card-hover {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

/* ---- Pricing cards ---- */
.pricing-card {
  border: 1px solid rgba(58, 78, 213, 0.2);
}

.pricing-card.featured {
  border-color: #3a4ed5;
  box-shadow: 0 16px 32px rgba(58,78,213,0.18);
}

.pricing-card .card-header {
  border-bottom: 0;
  position: relative;
  padding-right: 84px; /* room for the badge */
}

.pricing-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  background-image: linear-gradient(to right, #662D91 , #3a4ed5);
  color: #fff;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.75rem;
  z-index: 2;
}

.pricing-card .card-header h4 {
  margin-right: 0; /* rely on header padding */
}

/* ---- Success stories ---- */
.avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
}

.success-card h3 {
  font-size: 1.25rem;
  margin-top: 0.75rem;
}

/* ---- Hero pills & logo strip ---- */
.hero-pills .pill {
  display: inline-block;
  background: #fff;
  color: #3a3a3a;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 6px 12px;
  margin: 6px 8px 0 0;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.logo-strip img {
  height: 40px;
  opacity: 0.75;
  transition: opacity 120ms ease;
}

@media (min-width: 576px) {
  .logo-strip img { height: 48px; }
}

@media (min-width: 992px) {
  .logo-strip img { height: 56px; }
}

.logo-strip img:hover {
  opacity: 1;
}

/* ---- Hero animated waves ---- */
.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  pointer-events: none;
}

.hero-waves svg {
  display: block;
  width: 100%;
  height: 160px;
}

.wave-1 {
  animation: waveMove 14s linear infinite;
}
.wave-2 {
  animation: waveMove 18s linear infinite reverse;
}
.wave-3 {
  animation: waveMove 22s linear infinite;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Global full-screen waves ---- */
.bg-waves {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.bg-waves svg {
  display: block;
  width: 200%; /* allow horizontal animation room */
  height: 100vh;
}

/* Ensure content sits above background */
main, header, footer, .container, .container-fluid {
  position: relative;
  z-index: 1;
}
