:root {
  --primary: #6d35f5;
  --dark: #15152e;
  --muted: #667085;
  --soft: #f6f2ff;
  --green: #18b66f;
  --border: #e6e1f2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--dark);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffffd9;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8%;
  box-shadow: 0 4px 24px #4b20a212;
}

.brand {
  font-weight: 800;
  font-size: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.brand span {
  background: var(--primary);
  color: white;
  border-radius: 10px;
  padding: 3px 7px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7b3ff6, #5d27dd);
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  box-shadow: 0 10px 22px #6d35f533;
}

nav {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 14px;
}

.menu-btn {
  display: none;
}

/* BUTTONS */
.btn {
  background: linear-gradient(135deg, #7b3ff6, #5d27dd);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 12px 24px #6d35f533;
}

.btn.small {
  padding: 10px 18px;
}

.btn.light {
  background: white;
  color: var(--primary);
}

/* HERO */
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 70px 8%;
  background:
    radial-gradient(circle at 20% 20%, #f2eaff, transparent 30%),
    linear-gradient(90deg, #fff 55%, #f8f2ff);
}

.pill {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  margin: 24px 0;
}

.hero h1 span,
.stats span {
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

.mini-features {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.mini-features div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px #36107d0d;
}

.mini-features small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

/* CARDS & FORMS */
.planner-card,
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 24px 70px #36107d20;
}

.planner-card h2 {
  margin-top: 0;
}

label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin: 14px 0 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ddd6ef;
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  outline: none;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px #6d35f514;
}

.planner-card small {
  text-align: center;
  display: block;
  color: var(--muted);
  margin-top: 12px;
}

/* SECTIONS */
section {
  padding: 70px 8%;
}

.stats {
  text-align: center;
}

.stats h2 {
  margin-bottom: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stat-grid div,
.steps div,
.testimonial-grid div,
.vendor-card,
.plan-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px #36107d0d;
}

.stat-grid strong {
  font-size: 30px;
  color: var(--primary);
  display: block;
}

.stat-grid small {
  color: var(--muted);
}

/* HOW IT WORKS */
.how,
.testimonials {
  background: linear-gradient(180deg, #fbf9ff, #fff);
}

.how h2,
.packages h2,
.results h2,
.testimonials h2 {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  margin-top: 40px;
}

.steps span {
  background: var(--primary);
  color: white;
  border-radius: 50%;
  padding: 8px 12px;
  font-weight: 800;
}

.steps p,
.section-top p,
.register p,
footer p {
  color: var(--muted);
  line-height: 1.6;
}

/* PACKAGES */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.popular {
  border-color: var(--primary);
  transform: translateY(-8px);
}

.tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.price {
  font-size: 32px;
  font-weight: 800;
  margin: 18px 0;
}

.line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed #e5def5;
  padding: 10px 0;
  color: #344054;
}

.plan-actions {
  margin-top: auto;
  padding-top: 18px;
}

.plan-actions .btn {
  width: 100%;
  text-align: center;
  display: block;
}

.whatsapp,
.plan-actions .whatsapp {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.hidden {
  display: none !important;
}

/* VENDORS */
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.section-top input {
  max-width: 420px;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.filter {
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
}

.filter.active {
  background: var(--primary);
  color: white;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vendor-card .image {
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eee6ff, #fff0d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: 16px;
}

.vendor-card h3 {
  margin: 6px 0;
}

.vendor-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* REGISTER */
.register {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  background: var(--soft);
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.success {
  background: #eafff4;
  color: #0f8d55;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-grid div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
}

.testimonial-grid p {
  margin: 0;
}

.testimonial-grid b {
  display: block;
  margin-top: auto;
  padding-top: 20px;
}

/* CTA */
.cta {
  margin: 30px 8%;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7b3ff6, #d9c8ff);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta p {
  opacity: 0.9;
}

/* FOOTER */
footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 55px 8%;
  background: #fbfaff;
}

footer a {
  display: block;
  margin: 10px 0;
  color: #475467;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu-btn {
    display: block;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 11px;
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 5%;
    right: 5%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
  }

  nav.open {
    display: flex;
  }

  .nav {
    padding: 16px 5%;
  }

  .nav > .btn {
    display: none;
  }

  .hero,
  .register {
    grid-template-columns: 1fr;
    padding: 42px 5%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .mini-features,
  .section-top,
  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-grid,
  .steps,
  .cards,
  .vendor-grid,
  .testimonial-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .two {
    grid-template-columns: 1fr;
  }

  .cta {
    margin: 20px 5%;
  }

  .testimonial-grid div {
    min-height: auto;
  }
}