/* ── Fonts ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.section-wrapper {
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
  background: var(--warm-gradient, linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 233, 225, 0.50) 30%, rgba(233, 217, 255, 0.50) 70%, rgba(255, 255, 255, 0.50) 100%));
}

/* ── Hero Badge ── */

.hero-badge {
  display: inline-flex;
  background: rgb(223,217,255);
  color: #6d3cff;
  font-size: 20px;
  font-weight: 600;
  padding: 7px 22px;
  border-radius: 100px;
  margin-bottom: 26px;
  font-family: "Overused Grotesk";
}

/* ── Hero Heading ── */

.hero-title {
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 4px;
  font-family: "Overused Grotesk";
  font-size: 38px;
  line-height: 120%;
}

.hero-title-accent {
  font-weight: 700;
  color: #6d3cff;
  margin-bottom: 26px;
  display: block;
  font-size: 38px;
  font-family: "Overused Grotesk";
  line-height: 120%;
}

/* ── Hero Description ── */

.hero-desc {
  font-size: 20px;
  color: #2c2c2c;
  max-width: 600px;
  margin: 0 auto 38px;
  line-height: normal;
  font-family: "Overused Grotesk";
  font-weight: 400;
  text-align: center;
}

/* ── CTA Button ── */

.btn-demo {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  background: var(--Purple, #6D3CFF);
  font-family: "Overused Grotesk";
}

/* ── Cards Section Divider ── */

.cards-section {
  padding-top: 80px;
}

/* ── Section Subheading ── */

.section-subheading {
  font-size: 38px;
  font-weight: 700;
  color: #2C2C2C;
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
  font-family: "Overused Grotesk";
  line-height: 120%;
}

/* ── Feature Cards ── */

.feature-card {
  background: rgb(255,255,255);
  border-radius: 15px;
  padding: 34px 28px 38px;
  height: 100%;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.08);
}

/* ── Icon Wrapper ── */

.icon-wrap {
  width: 60px;
  height: 60px;
  background: #e9e2ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 10px;
}

.icon-wrap svg {
  width: 40px;
  height: 40px;
}

/* ── Card Typography ── */

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 11px;
  line-height: normal;
  font-family: "Overused Grotesk";
}

.card-text {
  font-size: 14px;
  color: #2c2c2c;
  line-height: normal;
  margin: 0;
  font-family: "Overused Grotesk";
  font-weight: 400;
}

/* ── Responsive ── */

@media (max-width: 991.98px) {
  .section-wrapper {
    padding: 60px 0 80px;
  }
}

@media (max-width: 991.98px) {
  .cards-section {
    padding-top: 64px;
  }
}

@media (max-width: 767.98px) {
  .section-wrapper {
    padding: 52px 0 70px;
  }
}

@media (max-width: 767.98px) {
  .cards-section {
    padding-top: 52px;
  }
}

@media (max-width: 767.98px) {
  .section-subheading {
    margin-bottom: 32px;
  }
}

@media (max-width: 767.98px) {
  .feature-card {
    padding: 28px 22px 32px;
  }
}

@media (max-width: 575.98px) {
  .hero-title, .hero-title-accent {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .hero-desc {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .section-subheading {
    font-size: 22px;
  }
@media (max-width: 575.98px) {
  .hero-badge {
    font-size: 10px;
  padding: 4px 12px;

  }
}

