:root {
  --primary: #6B2BD8;
  /* new primary from reference images (deep violet) */
  --secondary: #C88BFF;
  /* new secondary/accent from reference images (soft violet) */
  --accent: var(--secondary);
  --dark: #052231;
  --muted: #6c7a89;
  --glass: rgba(255, 255, 255, 0.06);
  --card-border: rgba(207, 170, 243, 0.12);
  --shadow-strong: rgba(41, 10, 78, 0.18);
  --shadow-soft: rgba(41, 10, 78, 0.06);
}

.text-brand {
  color: var(--primary) !important;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, rgba(10, 27, 40, 0.02), rgba(255, 255, 255, 0));
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #00000047, #06060663);
  padding: 1rem 0;
  box-shadow: 0 6px 24px var(--shadow-soft);
}

.navbar .navbar-brand {
  color: #fff;
  letter-spacing: .2px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.92);
  transition: color .2s ease;
}

.navbar .nav-link:hover {
  color: var(--secondary);
}

/* Hero */
#hero {
  position: relative;
  padding: 5.5rem 0;
  background: linear-gradient(90deg, rgba(41, 10, 78, 0.95), rgba(86, 28, 102, 0.92));
  color: #fff;
  overflow: hidden;
}

/* soft decorative blob behind hero */
#hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(207, 170, 243, 0.18), rgba(41, 10, 78, 0));
  filter: blur(40px);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0;
}

#hero .container {
  position: relative;
  z-index: 1;
}

#hero .accent {
  color: var(--accent);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* Hero image card */
.hero-img {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0));
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 24px 60px var(--shadow-strong);
  overflow: hidden;
  transition: transform .6s cubic-bezier(.17, .67, .12, 1), box-shadow .3s ease;
}

.hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.hero-img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 90px rgba(41, 10, 78, 0.22);
}

.hero-img:hover img {
  transform: scale(1.03) translateZ(0);
}


/* Hero small feature row below CTA */
#hero .hero-features {
  gap: .75rem;
  margin-top: 0.75rem;
}

#hero .hf-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 9px;
  box-shadow: 0 8px 22px rgba(6, 18, 32, 0.06);
}

#hero .hf-icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #1e9b6b, #2fb57a);
  /* green gradient for checks */
  box-shadow: 0 10px 30px rgba(6, 18, 32, 0.12);
  color: #fff;
}

#hero .hf-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

#hero .hf-icon circle {
  stroke: rgba(255, 255, 255, 0.12);
}

/* subtle inner ring if needed */
#hero .hf-text {
  color: #fff;
  line-height: 1;
}

/* make items center on small screens */
@media (max-width: 575.98px) {
  #hero .hero-features {
    justify-content: center;
  }

  #hero .hf-item {
    padding: .45rem .6rem;
    font-size: .92rem;
  }

  #hero .hf-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(41, 10, 78, 0.18);
  transition: transform .18s ease, box-shadow .18s ease;
  border-radius: .85rem;
  padding: .9rem 1.45rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(41, 10, 78, 0.26);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: .6rem .9rem;
  border-radius: .65rem;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 6px rgba(207, 170, 243, 0.12);
}


/* Cards */
.card {
  border-radius: .9rem;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: 0 12px 30px var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(41, 10, 78, 0.12);
}

.card .card-title {
  color: var(--primary);
  font-weight: 700;
}

/* small utilities */
.text-muted {
  color: #363636c7 !important;
}

.text--muted-light {
  color: #b4b4b4c7 !important;
}

.badge.bg-light {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  color: var(--primary);
  border-radius: .65rem;
  padding: .45rem .7rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(41, 10, 78, 0.06);
}

/* why us */
#why-us {
  background: #f1f1f1;
}

/* Testimonial card */
.testimonial-card {
  background: linear-gradient(180deg, #ffffff, #ffffff);
  border: 1px solid rgba(207, 170, 243, 0.08);
  border-radius: 1rem;
  box-shadow: 0 28px 70px rgba(41, 10, 78, 0.08);
  backdrop-filter: blur(6px);
}

.avatar-wrapper {
  width: 84px;
  height: 84px;
}

.avatar {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(41, 10, 78, 0.12);
}

/* stars */
.stars .star {
  color: var(--secondary);
  font-size: 1.05rem;
  margin-right: 4px;
  text-shadow: 0 4px 14px rgba(207, 170, 243, 0.10);
}

/* quote */
.testimonial-quote {
  font-style: italic;
  color: #1e1e1ef2;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* author/extras */
.testimonial-card .author .fw-bold {
  color: var(--primary);
}

.testimonial-card .author .text-success {
  color: #2fb57a;
}

/* Stats cards */
.stat-card {
  background: linear-gradient(180deg, #ffffff, #ffffff);
  border: 1px solid rgba(207, 170, 243, 0.06);
  border-radius: .9rem;
  box-shadow: 0 18px 48px rgba(41, 10, 78, 0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(41, 10, 78, 0.10);
}

.stat-value {
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: -0.6px;
  margin-bottom: .35rem;
}

.stat-label {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.78);
}

/* spacing tweaks for smaller screens */
@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 1.25rem;
  }

  .avatar-wrapper {
    width: 64px;
    height: 64px;
  }

  .avatar {
    width: 64px;
    height: 64px;
  }

  .stat-value {
    font-size: 1.6rem;
  }
}

.hidden-cost {
  background: #fef9f1;
  border: 2px solid #ffdf7e;
}

/* Insight / message preview styles (uses project theme colors) */
.insight-text {
  color: white;
  margin: .5rem 0 0;
  font-size: 20px;
}

/* preview wrapper (green-tinted outer rounded container) */
.preview-wrap {
  background: linear-gradient(180deg, rgba(47, 181, 122, 0.06), rgba(47, 181, 122, 0.02));
  border: 1px solid rgba(47, 181, 122, 0.10);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(18, 28, 40, 0.04);
  padding: 28px;
}

/* white elevated message card inside wrapper */
.message-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(6, 6, 10, 0.04);
  box-shadow: 0 28px 64px rgba(18, 28, 40, 0.06);
  color: var(--dark);
}

.msg-avatar .msg-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(207, 170, 243, 0.06);
  font-size: 20px;
  color: white;
}

/* stronger rule color for message text */
.msg-body p,
.msg-body li {
  color: rgba(8, 28, 38, 0.86);
  line-height: 1.6;
}

/* pill highlights (name/date/id) */
.pill {
  display: inline-block;
  background: linear-gradient(90deg, rgba(207, 170, 243, 0.10), rgba(41, 10, 78, 0.02));
  color: black;
  padding: .18rem .45rem;
  border-radius: .45rem;
  font-weight: 700;
  font-size: .92rem;
  border: 1px solid rgba(207, 170, 243, 0.06);
}

.pill-warning {
  background: #fdecce;
}

.pill-info {
  background: #dce6ec;
}

.pill-success {
  background: #d7f6eb;
}

.pill-grey {
  background: #dae0de;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 8px 24px rgba(18, 28, 40, 0.04);
}

/* Features section — matching project theme, modern card grid */
#features {
  background: linear-gradient(180deg, rgba(250, 250, 252, 1), rgba(246, 247, 249, 1));
}

.feature-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 14px;
  border: 1px solid rgba(6, 6, 10, 0.04);
  box-shadow: 0 28px 70px rgba(18, 28, 40, 0.04);
  transition: transform .22s cubic-bezier(.16, .84, .24, 1), box-shadow .22s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 110px rgba(18, 28, 40, 0.06);
}

.icon-box {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 34px rgba(18, 28, 40, 0.04);
}

/* colored icon backgrounds (soft gradients) */
.icon-blue {
  background: #0b2c75;
  color: white;
  border: 1px solid rgba(49, 91, 134, 0.06);
}

.icon-green {
  background: #1b6f52;
  color: white;
  border: 1px solid rgba(30, 155, 107, 0.06);
}

.icon-amber {
  background: #f59f0a;
  color: white;
  border: 1px solid rgba(192, 127, 20, 0.06);
}

.icon-teal {
  background: #36d399;
  color: white;
  border: 1px solid rgba(11, 138, 120, 0.06);
}

.icon-navy {
  background: #0f3ea3;
  color: white;
  border: 1px solid rgba(49, 91, 134, 0.06);
}

.feature-card h5 {
  color: var(--primary);
  font-size: 1.02rem;
  margin-bottom: .35rem;
}

.feature-card p.small {
  color: rgba(8, 28, 38, 0.74);
  line-height: 1.6;
  margin: 0;
  font-size: .95rem;
}

/* responsive spacing */
@media (max-width: 767.98px) {
  .feature-card {
    padding: .9rem;
    border-radius: 12px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
  }
}

/* Trial / pricing preview */
#trial {
  background: linear-gradient(135deg, #7125be, #954ddb);
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

#trial .text-center h2 {
  color: #fff;
}

/* outer rounded wrapper with subtle green tint */
.trial-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 40px 120px rgba(11, 40, 60, 0.14);
}

/* inner white card */
.trial-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(6, 6, 10, 0.04);
  box-shadow: 0 28px 80px rgba(6, 18, 32, 0.08);
  color: var(--dark);
}

/* perk rows */
.perk-row {
  border-bottom: 1px solid rgba(6, 6, 10, 0.03);
}

.perk-row:last-child {
  border-bottom: 0;
}

.perk-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 8px 24px rgba(47, 181, 122, 0.04);
}

.perk-text {
  color: rgba(8, 28, 38, 0.88);
  font-weight: 600;
}

/* small value badge on right */
.perk-badge {
  background: linear-gradient(180deg, #f7f9fb, #fbfdff);
  border-radius: 999px;
  padding: .35rem .7rem;
  color: rgba(8, 28, 38, 0.7);
  font-size: .85rem;
  border: 1px solid rgba(6, 6, 10, 0.03);
}

/* CTA button */
.btn-cta {
  background: linear-gradient(135deg, #7125be, #954ddb);
  color: #fff;
  border: none;
  padding: .9rem 1.6rem;
  border-radius: .85rem;
  box-shadow: 0 16px 50px rgba(6, 182, 166, 0.14);
  display: inline-block;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(6, 182, 166, 0.16);
}

/* Trial additions: promise block + refinements */

/* ensure trial heading remains visible on gradient */
#trial .text-center h2 {
  color: #fff;
}

/* promise container */
.promise-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 251, 0.98));
  border-radius: 12px;
  padding: 18px;
  margin-top: 18px;
  border: 1px solid rgba(6, 6, 10, 0.04);
  box-shadow: 0 18px 60px rgba(6, 18, 32, 0.06);
}

/* individual promise items */
.promise-item {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 10px;
  border: 1px solid rgba(6, 6, 10, 0.03);
  box-shadow: 0 12px 30px rgba(18, 28, 40, 0.03);
  transition: transform .18s ease, box-shadow .18s ease;
}

.promise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(18, 28, 40, 0.06);
}

/* promise icon */
.promise-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(180deg, rgba(30, 155, 107, 0.08), rgba(30, 155, 107, 0.02)); */
  border: 1px solid rgba(30, 155, 107, 0.06);
}

/* promise text */
.promise-text .fw-semibold {
  color: var(--primary);
  font-weight: 700;
}

.promise-text .small {
  color: rgba(8, 28, 38, 0.68);
}

/* spacing for smaller screens */
@media (max-width: 575.98px) {
  .promise-item {
    padding: .8rem;
  }

  .perk-text,
  .promise-text .small {
    font-size: .92rem;
  }
}

/* small responsive tweaks */
@media (max-width: 767.98px) {
  .trial-wrap {
    padding: 14px;
  }

  .perk-text {
    font-size: .95rem;
  }

  .perk-badge {
    font-size: .8rem;
    padding: .3rem .55rem;
  }

  .btn-cta {
    width: 100%;
    display: block;
  }
}

/* Ready / CTA section */
#ready {
  background: linear-gradient(180deg, rgba(250, 250, 252, 1), rgba(246, 247, 249, 1));
}

#ready .text-center h2 {
  color: var(--primary);
}

/* small info pills above CTA */
.cta-info {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-radius: 12px;
  border: 1px solid rgba(6, 6, 10, 0.03);
  box-shadow: 0 18px 40px rgba(18, 28, 40, 0.04);
  min-width: 180px;
  flex: 1 1 0;
}

.cta-info .text-warning {
  color: #c07f14;
}

.cta-info .text-primary {
  color: var(--primary);
}

.cta-info .text-success {
  color: #1e9b6b;
}

/* large gradient CTA box */
.cta-box {
  background: linear-gradient(135deg, #7125be, #954ddb);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 120px rgba(6, 40, 56, 0.12);
  padding: 28px;
}

/* CTA button / input */
.btn-cta-lg {
  background: white;
  /* color: #fff; */
  border: none;
  padding: .9rem 1.6rem;
  border-radius: .85rem;
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(41, 10, 78, 0.14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-cta-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(41, 10, 78, 0.18);
}

.cta-input {
  max-width: 320px;
  padding: .7rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: inset 0 6px 18px rgba(6, 6, 10, 0.06);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

/* responsive */
@media (max-width: 767.98px) {
  .cta-info {
    min-width: auto;
    width: 100%;
  }

  .cta-box {
    padding: 20px;
  }

  .btn-cta-lg {
    width: 100%;
  }

  .cta-input {
    width: 100%;
    max-width: 100%;
    margin-top: .6rem;
  }
}

/* Smooth light footer (reference style) */
.site-footer {
  background: linear-gradient(180deg, #fbfbfd, #f4f6fb);
  border-top: 4px solid var(--secondary);
  padding-top: 44px;
  padding-bottom: 28px;
  color: rgba(8, 28, 38, 0.85);
}

/* brand */
.footer-brand {
  color: var(--primary);
  margin: 0;
  font-weight: 700;
}

.footer-desc {
  color: rgba(8, 28, 38, 0.65);
}

/* footer logo area */
.footer-logo-wrap {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(107, 43, 216, 0.08), rgba(200, 139, 255, 0.02));
  box-shadow: 0 8px 28px rgba(41, 10, 78, 0.04);
}

/* contact icons */
.footer-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-right: 6px;
  opacity: 0.95;
}

/* columns */
.footer-col-title {
  color: rgba(8, 28, 38, 0.9);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.footer-links li {
  margin-bottom: .45rem;
}

.footer-links a {
  color: rgba(8, 28, 38, 0.68);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* separator */
.footer-sep {
  height: 1px;
  background: #d1d1d1;
  border-radius: 2px;
}

/* social items */
.social-list .social-link {
  color: rgba(8, 28, 38, 0.75);
  text-decoration: none;
}

.social-round {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(41, 10, 78, 0.06);
}

.social-round.web {
  background: linear-gradient(90deg, var(--secondary), rgba(107, 43, 216, 0.18));
}

.social-round.linkedin {
  background: linear-gradient(90deg, rgba(49, 91, 134, 0.95), rgba(49, 91, 134, 0.6));
}

.social-round.twitter {
  background: linear-gradient(90deg, rgba(29, 161, 242, 0.95), rgba(29, 161, 242, 0.6));
}

/* bottom links */
.footer-bottom-link {
  color: rgba(8, 28, 38, 0.6);
  text-decoration: none;
}

.footer-bottom-link:hover {
  color: var(--primary);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .footer-logo-wrap {
    width: 48px;
    height: 48px;
  }

  .social-round {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .footer-col-title {
    margin-top: .6rem;
  }
}

/* /* Trust Badges Section */
.trust-badges-section {
  background: var(--primary);
  position: relative;
  z-index: 2;
}

.trust-badge .bi {
  vertical-align: middle;
}

.trust-badge .fs-4,
.trust-badge .fs-2 {
  filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.18));
}

.trust-badge .fw-bold {
  color: #fff;
  letter-spacing: .2px;
}

.trust-badge .small {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Remove any old #faq or .accordion custom rules before adding this block --- */

/* FAQ / Accordion — smooth, modern, project theme */
#faq {
  background: linear-gradient(180deg, rgba(250,250,252,1), rgba(246,247,249,1));
  padding: 3.5rem 0 4.5rem;
}

#faq .text-center h2 {
  color: var(--primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.2px;
}

/* Make accordion items feel like cards */
#faq .accordion {
  display: block;
  gap: 0.85rem;
}

#faq .accordion-item {
  background: transparent;
  border: none;
  margin: 0;
}

/* Main question button */
#faq .accordion-button {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.25rem;
  color: rgba(8,28,38,0.9);
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(18,28,40,0.04);
  border: 1px solid rgba(6,6,10,0.03);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* make the default chevron subtle and rotate on open */
#faq .accordion-button::after {
  color: rgba(8,28,38,0.48);
  font-size: 1.1rem;
  transition: transform .25s ease, color .18s ease;
  filter: none;
}

#faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(200,139,255,0.06), rgba(107,43,216,0.02));
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(41,10,78,0.06);
  border-color: rgba(107,43,216,0.08);
}

#faq .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: rgba(8,28,38,0.6);
}

/* Answer body styled as a subtle elevated card */
#faq .accordion-body {
  background: #fff;
  margin-top: .7rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  color: rgba(8,28,38,0.72);
  box-shadow: 0 14px 36px rgba(18,28,40,0.03);
  border: 1px solid rgba(6,6,10,0.03);
  line-height: 1.6;
  font-size: .95rem;
}

/* spacing between items */
#faq .accordion-item + .accordion-item { margin-top: 0.9rem; }

/* make collapse animations smoother */
#faq .accordion-collapse {
  transition: height .28s cubic-bezier(.2,.9,.2,1);
}

/* responsive */
@media (max-width: 575.98px){
  #faq .accordion-button { padding: .8rem 1rem; font-size: .95rem; border-radius: 10px; }
  #faq .accordion-body { padding: .8rem 1rem; font-size: .95rem; }
}

/* CTA popup + floating button (project theme) */
.cta-fab{
  position: fixed;
  right: 20px;
  bottom: 28px;
  z-index: 1100;
  width:56px;height:56px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  background: linear-gradient(90deg,var(--secondary),var(--primary));
  color:#fff;border:none;box-shadow: 0 12px 36px rgba(41,10,78,0.18);
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.cta-fab:hover{ transform: translateY(-4px); box-shadow: 0 20px 60px rgba(41,10,78,0.22); }
.cta-fab i{ font-size:1.2rem; }

/* modal content */
.cta-modal{
  border-radius:14px;
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(6,18,32,0.12);
  border: 0;
}

/* header */
.cta-modal .modal-header {
  padding: 18px 20px;
  background: linear-gradient(90deg, rgba(107,43,216,0.04), rgba(200,139,255,0.02));
}
.cta-modal .modal-title { color: var(--primary); font-weight:700; margin:0; font-size:1.1rem; }
.cta-badge{
  width:44px;height:44px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  background: linear-gradient(90deg,var(--secondary),var(--primary));
  color:#fff;font-size:1.05rem; box-shadow:0 8px 28px rgba(41,10,78,0.12);
}

/* body */
.cta-modal .modal-body{ padding:18px 20px 22px; background:#fff; }

/* input with icon improved */
.input-with-icon{ position: relative; }
.input-with-icon .input-icon{
  position: absolute; left:14px; top:50%; transform:translateY(-50%);
  color: rgba(41,10,78,0.85); font-size:1rem;
}
.input-with-icon .form-control{
  padding-left:48px; height:48px; border-radius:10px;
  border:1px solid rgba(11,40,56,0.06); transition: box-shadow .14s ease, border-color .14s ease;
  background: #fff;
}
.input-with-icon .form-control:focus{
  box-shadow: 0 8px 30px rgba(107,43,216,0.10) inset;
  border-color: rgba(107,43,216,0.28);
  outline: none;
}

/* textarea */
.cta-modal textarea.form-control{ min-height:92px; border-radius:10px; border:1px solid rgba(11,40,56,0.06); }

/* submit */
#ctaSubmit{
  border-radius:10px; font-weight:700; padding:12px 18px;
  background: linear-gradient(90deg,var(--secondary),var(--primary));
  border: none; box-shadow: 0 12px 34px rgba(41,10,78,0.14);
}
#ctaSubmit:disabled{ opacity:.7; transform:none; }
#ctaSpinner{ vertical-align:baseline; }

/* form message */
#ctaFormMsg{ color:var(--primary); }
.cta-success{ color:#1e9b6b; }
.cta-error{ color:#e05252; }

/* smaller devices: stack nicely */
@media (max-width: 576px){
  .input-with-icon .form-control{ padding-left:44px; height:46px; }
  .cta-badge{ width:40px;height:40px; font-size:0.95rem; }
}

/* small polish for accessibility */
.cta-modal .form-control{ font-size: .95rem; }