:root {
  --novha-purple: #7b2cbf;
  --novha-purple-dark: #5b1892;
  --novha-purple-soft: #f3eafd;
  --novha-ink: #252733;
  --novha-muted: #687080;
  --novha-bg: #fbfbfd;
  --novha-border: #e8e9ef;
  --novha-white: #ffffff;
  --novha-dark: #20212b;
  --shadow-sm: 0 8px 24px rgba(37, 39, 51, .07);
  --shadow-lg: 0 24px 70px rgba(37, 39, 51, .13);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--novha-ink);
  background: var(--novha-bg);
  line-height: 1.65;
}

a { text-decoration: none; }
section { scroll-margin-top: 82px; }

.topbar {
  background: var(--novha-ink);
  color: rgba(255,255,255,.86);
  font-size: .78rem;
  padding: .5rem 0;
  letter-spacing: .01em;
}

.navbar {
  min-height: 76px;
  z-index: 1030;
}

.brand-logo {
  width: 142px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-link {
  color: #555a68 !important;
  font-size: .92rem;
  font-weight: 600;
  padding: .55rem .75rem !important;
}

.nav-link:hover { color: var(--novha-purple) !important; }

.btn-primary {
  --bs-btn-bg: var(--novha-purple);
  --bs-btn-border-color: var(--novha-purple);
  --bs-btn-hover-bg: var(--novha-purple-dark);
  --bs-btn-hover-border-color: var(--novha-purple-dark);
  --bs-btn-active-bg: var(--novha-purple-dark);
  --bs-btn-active-border-color: var(--novha-purple-dark);
  font-weight: 700;
  border-radius: 10px;
}

.btn-outline-dark {
  border-color: #d9dbe3;
  color: var(--novha-ink);
  font-weight: 700;
  border-radius: 10px;
}

.btn-outline-dark:hover {
  background: var(--novha-ink);
  border-color: var(--novha-ink);
}

.hero-section {
  position: relative;
  padding: 94px 0 82px;
  background:
    radial-gradient(circle at 84% 14%, rgba(123,44,191,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #faf9fd 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.orb-one {
  width: 320px;
  height: 320px;
  right: -150px;
  top: 160px;
  background: rgba(123,44,191,.08);
}

.orb-two {
  width: 170px;
  height: 170px;
  left: -100px;
  bottom: 50px;
  background: rgba(123,44,191,.06);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--novha-purple);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .73rem;
  margin-bottom: 1rem;
}

.eyebrow-light { color: #d9b9f6; }

.hero-section h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
  max-width: 780px;
  margin-bottom: 1.35rem;
}

.text-gradient {
  color: var(--novha-purple);
}

.hero-lead {
  color: var(--novha-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  max-width: 700px;
  margin-bottom: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: #666b78;
  font-size: .83rem;
  font-weight: 600;
}

.trust-row i { color: var(--novha-purple); margin-right: .3rem; }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--novha-border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  max-width: 470px;
  margin-inline: auto;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--novha-border);
}

.hero-card-header small {
  display: block;
  color: #9095a1;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}

.hero-card-header strong { font-size: 1.08rem; }

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  color: #4d5564;
}

.status-dot span {
  width: 7px;
  height: 7px;
  background: #41bd77;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(65,189,119,.12);
}

.pipeline-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f3;
}

.pipeline-item:last-of-type { border-bottom: 0; }

.pipeline-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--novha-purple);
  background: var(--novha-purple-soft);
}

.pipeline-icon.purple { background: #eee3f8; }
.pipeline-icon.dark { background: #ececf0; color: var(--novha-ink); }

.pipeline-item strong { display: block; font-size: .88rem; }
.pipeline-item small { display: block; color: #9297a2; font-size: .72rem; }
.pipeline-item > b { color: var(--novha-purple); }

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #8b909c;
  font-size: .68rem;
  padding-top: 14px;
}

.metrics-section {
  position: relative;
  margin-top: -1px;
  padding-bottom: 40px;
}

.metric-card {
  height: 100%;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--novha-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.metric-card strong {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.metric-card span {
  color: var(--novha-purple);
  font-weight: 800;
}

.metric-card small {
  display: block;
  color: #858b98;
  line-height: 1.4;
  margin-top: .35rem;
  font-size: .77rem;
}

.section-padding { padding: 105px 0; }

.section-heading { max-width: 770px; }

.section-heading h2,
.process-section h2,
.data-panel h2,
.benefits-section h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--novha-muted);
  font-size: 1.05rem;
}

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--novha-border);
  border-radius: 18px;
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #d9c4e8;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: .68rem;
  font-weight: 800;
  color: #b2b5bf;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--novha-purple);
  background: var(--novha-purple-soft);
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: .7rem;
}

.feature-card p {
  color: #737987;
  font-size: .88rem;
  margin: 0;
}

.process-section { background: #fff; }

.process-timeline {
  position: relative;
  max-width: 980px;
  margin: auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: #d9dbe2;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  padding: 0 0 58px;
}

.process-step:last-child { padding-bottom: 0; }

.step-marker {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--novha-purple);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 0 8px #fff, 0 0 0 9px #e3d6ec;
}

.step-content {
  background: #fbfbfd;
  border: 1px solid var(--novha-border);
  border-radius: 18px;
  padding: 28px 30px;
}

.step-content > span {
  color: var(--novha-purple);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .7rem;
  font-weight: 800;
}

.step-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: .35rem 0 .65rem;
}

.step-content p {
  color: #747a87;
  margin-bottom: .8rem;
}

.step-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  padding-left: 1rem;
  margin: 0;
  color: #505663;
  font-size: .84rem;
  font-weight: 600;
}

.data-section {
  background: #fff;
  padding-top: 40px;
}

.data-panel,
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(175,100,232,.35), transparent 32%),
    linear-gradient(135deg, #242530 0%, #2f203b 100%);
  padding: clamp(35px, 6vw, 72px);
}

.data-panel::after,
.cta-box::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  bottom: -130px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.data-panel h2,
.cta-box h2 { max-width: 650px; }

.data-panel p,
.cta-box p {
  color: rgba(255,255,255,.72);
  max-width: 620px;
  font-size: 1rem;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.data-chip {
  min-height: 145px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}

.data-chip i { color: #d9b9f6; font-size: 1.2rem; }
.data-chip span { color: rgba(255,255,255,.62); font-size: .74rem; }
.data-chip b { font-size: 1rem; }

.benefits-section { background: #fff; }

.benefit-list {
  border-top: 1px solid var(--novha-border);
}

.benefit-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--novha-border);
}

.benefit-item > i {
  color: var(--novha-purple);
  font-size: 1.35rem;
  margin-top: 2px;
}

.benefit-item strong {
  display: block;
  font-size: .98rem;
  font-weight: 800;
  margin-bottom: .2rem;
}

.benefit-item span {
  display: block;
  color: #777d8a;
  font-size: .84rem;
}

.cta-section {
  padding: 0 0 105px;
  background: #fff;
}

.cta-box {
  text-align: center;
  padding: clamp(45px, 7vw, 82px);
}

.cta-box h2 { margin-inline: auto; }
.cta-box p { margin: 0 auto 1.7rem; }

.faq-section { background: var(--novha-bg); }

.faq-list { max-width: 850px; }

.accordion-item {
  background: transparent;
  border-color: var(--novha-border);
}

.accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--novha-ink);
  font-size: .98rem;
  font-weight: 800;
  padding: 22px 4px;
}

.accordion-button:not(.collapsed) { color: var(--novha-purple); }

.accordion-body {
  color: #737987;
  padding: 0 4px 24px;
  font-size: .9rem;
}

.footer {
  background: #20212b;
  color: rgba(255,255,255,.58);
  padding: 60px 0 30px;
  font-size: .82rem;
}

.footer-logo {
  width: 130px;
  background: #fff;
  border-radius: 6px;
  padding: 3px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: #fff; }
.footer-contact i { color: #d1a5ed; margin-right: 8px; }
.footer hr { border-color: rgba(255,255,255,.1); margin: 35px 0 20px; }
.back-top { font-weight: 700; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1020;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .hero-section { padding-top: 70px; }
  .hero-card { margin-top: 15px; }
  .navbar-collapse {
    padding: 15px 0 8px;
  }
}

@media (max-width: 767.98px) {
  .topbar { font-size: .68rem; }
  .hero-section { padding: 60px 0 55px; }
  .hero-section h1 { font-size: clamp(2.35rem, 13vw, 3.6rem); }
  .hero-lead { font-size: 1rem; }
  .trust-row { flex-direction: column; gap: .5rem; }
  .hero-card { padding: 17px; border-radius: 17px; }
  .hero-card-footer { flex-direction: column; }
  .section-padding { padding: 76px 0; }
  .section-heading h2,
  .process-section h2,
  .data-panel h2,
  .benefits-section h2,
  .cta-box h2 { font-size: 2.15rem; }
  .process-step { grid-template-columns: 38px 1fr; gap: 18px; padding-bottom: 40px; }
  .process-timeline::before { left: 18px; }
  .step-marker { width: 38px; height: 38px; font-size: .82rem; box-shadow: 0 0 0 6px #fff, 0 0 0 7px #e3d6ec; }
  .step-content { padding: 22px; }
  .data-grid { gap: 9px; }
  .data-chip { min-height: 120px; padding: 15px; }
  .cta-section { padding-bottom: 76px; }
}

@media (max-width: 420px) {
  .brand-logo { width: 122px; }
  .hero-card-header { gap: 10px; }
  .data-grid { grid-template-columns: 1fr; }
  .floating-whatsapp { right: 16px; bottom: 16px; }
}
