:root {
  --primary: #4f46e5;
  --primary-soft: #eef2ff;
  --secondary: #7c3aed;
  --dark: #1e293b;
  --light-bg: #f8fafc;
  --glass: rgba(255, 255, 255, 0.8);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
  /* font-family: "Plus Jakarta Sans", sans-serif; */
  font-family: "Instrument Sans", sans-serif;
  background-color: white;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-premium {
  background: var(--primary);
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(79, 70, 229, 0.3);
  background: var(--secondary);
  color: white;
}

/* Navigation */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero Section */

.hero-neo {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  overflow: hidden;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #7c6cff, transparent 60%);
  filter: blur(80px);
  opacity: 0.35;
}

.blob-1 {
  top: -120px;
  left: -120px;
}

.blob-2 {
  bottom: -150px;
  right: -150px;
}

/* Left content */
.hero-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.12);
  color: #5b4de8;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-title span {
  background: linear-gradient(135deg, #5b4de8, #8e44ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: #555;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #5b4de8, #8e44ec);
  color: #fff;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(124, 108, 255, 0.35);
  transition: color 0.3s ease;
}

.btn-hero-primary:hover {
  color: #111;
  background: #fff;
}

.btn-hero-secondary {
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
  box-shadow: 0 15px 35px rgba(129, 129, 129, 0.35);
}

.btn-hero-secondary:hover {
  border: 2px solid linear-gradient(135deg, #5b4de8, #8e44ec);
  background: linear-gradient(135deg, #5b4de8, #8e44ec);
  color: #fff;
}

/* Proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
}

/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 35px 30px;
  max-width: 340px;
  margin: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.profile-img {
  width: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.role {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Info boxes */
.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  font-size: 14px;
}

.info-box.highlight {
  background: #f4f6ff;
}

.info-box i {
  color: #5b4de8;
  width: 18px;
}

/* QR */
.qr-wrap {
  background: #111;
  padding: 10px;
  width: 54px;
  margin: 0 auto;
  border-radius: 10px;
  display: block;
}

.qr-wrap i,
.qr-wrap svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}

/* ===== Demo Card Section ===== */

/* Section Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Features/Offer Cards */

.p-text-offer {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05); */
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}

.feature-card h4 {
  font-weight: 600;
  font-size: 22px;
}
.feature-card p {
  margin-bottom: 0;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--primary-soft);
  color: var(--primary);
}

/*  who-its-for  */

.who-its-for {
  background: linear-gradient(180deg, #f8f9ff, #f2f5ff);
}

.section-subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #6b7280;
}

.who-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.who-card h6 {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-circle i,
.icon-circle svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

/* Color Variants */
.bg-blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.bg-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.bg-purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.bg-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.bg-indigo {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.bg-maroon {
  background: linear-gradient(135deg, #d64b4b, #800000);
}

/*  how-it-works  */

.how-it-works {
  background: #ffffff;
}

.work-card {
  position: relative;
  background: #f9faff;
  border-radius: 20px;
  padding: 40px 25px;
  height: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgb(224 231 255);
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.work-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  color: #111827;
}

.work-card p {
  font-size: 15px;
  color: #6b7280;
  margin-top: 10px;
}

/* Step Badge */
.step-badge {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background: #7c5cff;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.4);
}

/* Icon Circle */
.work-card .icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #7c5cff, #9f8cff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.work-card .icon-circle i {
  width: 30px;
  height: 30px;
  color: #fff;
}

/* Features Snapshot */

.features-snapshot {
  background: linear-gradient(180deg, #f5f7ff, #f9faff);
}

.feature-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 18px;
  height: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7a64d5, #5c41e7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i,
.icon-box svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.feature-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

/* Testimonials */

.testimonials {
  /* padding: 80px 20px; */
  background: #ffffff;
  text-align: center;
}

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

.testimonial-card {
  background: #f9fbff;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  border: 1px solid rgb(224 231 255);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}

.review {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.client h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.client span {
  font-size: 14px;
  color: #777;
}

/* Pricing */

.price-section {
  background-image: linear-gradient(to bottom right, #f9fafb, #eef2ff);
}

/* Headings */
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #6c63ff;
  font-family: "Playfair Display", serif;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7280;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Titles */
.pricing-card h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card h2 {
  font-size: 46px;
  color: #6b63d9;
}

/* Divider */
.pricing-card hr {
  margin: 25px 0;
  opacity: 0.15;
}

/* Feature list */
.pricing-card ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* ICON FIX (Lucide) */
.pricing-card svg {
  width: 25px;
  height: 25px;
  background-color: #16a34a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  color: #fff !important;
  padding: 6px;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.pricing-card svg.text-danger {
  background-color: #d41b0d;
}

/* Popular Card */
.pricing-card.popular {
  border: 2px solid #6b63d9;
  transform: scale(1.05);
  z-index: 2;
}

/* Badge */
.badge-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(107, 99, 217, 0.35);
}

/* Buttons */
.btn-premium {
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #6b63d9, #5a52c9);
  color: #fff;
}

.pricing-card .btn-outline-primary {
  border-radius: 999px;
  padding: 14px;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #5b4de8, #8e44ec);
  color: #ffffff;
}

/* Wrapper */
.cta-box {
  max-width: 900px;
  margin: auto;
}

/* Badge */
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Title */
.cta-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Subtitle */
.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

/* Buttons */
.btn-cta-primary {
  background: #ffffff;
  color: #5b4de8;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Trust text */
.cta-trust span {
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}

.cta-trust .text-success {
  color: #3ce295 !important;
}

.cta-trust .text-danger {
  color: #ffb1b8 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-title {
    font-size: 38px;
  }

  .cta-subtitle {
    font-size: 18px;
  }
}

/* Footer */

.social-links a {
  padding: 10px;
  background-color: #727478;
  color: #fff !important;
  border-radius: 10px;
  line-height: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-text-opacity)
  ) !important;
  color: #fff !important;
}

.contact-list {
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
}

.contact-list i {
  width: 18px;
  height: 18px;
  color: #6b63d9;
  flex-shrink: 0;
}

.contact-list a,
.quick-links li a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-list a:hover,
.quick-links li a:hover {
  color: #6b63d9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 120px 0 60px;
  }
  .pricing-card.popular {
    transform: none;
    margin-bottom: 30px;
  }
}
