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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #3e324c;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- nav --- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}

.nav.scrolled {
  background: rgba(255, 88, 149, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.6);
}

/* --- hero --- */
.hero {
  background: linear-gradient(148deg, #ff7293 19.32%, #ff5895 63.81%, #ff2ba3 99.1%);
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 72px;
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.hero-deco--1 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -100px;
}

.hero-deco--2 {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 480px;
  margin-inline: auto;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn--white {
  background: #fff;
  color: #ff2ba3;
  font-size: 1.05rem;
  padding: 16px 38px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.13);
}

.btn--pink {
  background: #ff2ba3;
  color: #fff;
  font-size: 1.05rem;
  padding: 16px 38px;
  box-shadow: 0 4px 20px rgba(255, 43, 163, 0.25);
}

.btn--pink:hover {
  background: #e8249a;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255, 43, 163, 0.32);
}

.hero-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 14px;
}

/* --- steps --- */
.steps {
  background: #f6f6f6;
  padding: 88px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-heading p {
  color: #7a7189;
  font-size: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 36px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(62, 50, 76, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(62, 50, 76, 0.07);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff2ba3;
  line-height: 1;
  flex-shrink: 0;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #f0e8f5;
  border-radius: 1px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff0f6;
  display: grid;
  place-items: center;
  color: #ff2ba3;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: #7a7189;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* --- comparison --- */
.compare {
  background: #fff;
  padding: 88px 0;
}

.compare .section-heading h2 {
  color: #3e324c;
}

.compare-table {
  max-width: 780px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ece7f1;
  background: #fff;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-header__left,
.compare-header__right {
  padding: 20px 28px;
  font-weight: 700;
  font-size: 1rem;
}

.compare-header__left {
  background: #f8f5fa;
  color: #9088a0;
  border-right: 1px solid #ece7f1;
  border-bottom: 1px solid #ece7f1;
}

.compare-header__right {
  background: #fff0f6;
  color: #ff2ba3;
  border-bottom: 1px solid #fce0ee;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-row + .compare-row {
  margin-top: 0;
}

.compare-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 0.92rem;
  line-height: 1.4;
  border-bottom: 1px solid #f2eff5;
}

.compare-row:last-child .compare-cell {
  border-bottom: none;
}

.compare-cell--no {
  color: #8a8098;
  border-right: 1px solid #f2eff5;
}

.compare-cell--yes {
  color: #3e324c;
  font-weight: 500;
}

.ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
}

.ico--no {
  background: #fef0f0;
  color: #e05555;
}

.ico--yes {
  background: #eefbf0;
  color: #3dba55;
}

/* --- pricing --- */
.pricing {
  background: #3e324c;
  padding: 88px 0;
  text-align: center;
  color: #fff;
}

.pricing h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-big {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 20px 0;
  color: #ff7293;
}

.pricing-detail {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 440px;
  margin: 0 auto 36px;
}

/* --- cta final --- */
.cta-final {
  background: linear-gradient(148deg, #ff7293 19.32%, #ff5895 63.81%, #ff2ba3 99.1%);
  padding: 88px 0;
  text-align: center;
}

.cta-final h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.cta-final-tag {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 20px;
}

.cta-final-tag .heart {
  color: #fff;
}

/* --- footer --- */
.footer {
  background: #2e2539;
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo-img {
  height: 20px;
  width: auto;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  font-size: 1.1rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #ff2ba3;
}

/* --- scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* --- responsive --- */
@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .compare-header,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-header__left {
    border-right: none;
    border-bottom: 1px solid #ece7f1;
  }

  .compare-cell--no {
    border-right: none;
    border-bottom: none;
    padding-bottom: 6px;
  }

  .compare-cell--yes {
    padding-top: 6px;
    border-bottom: 1px solid #f2eff5;
  }

  .compare-row:last-child .compare-cell--yes {
    border-bottom: none;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 96px 20px 56px;
  }

  .btn--white,
  .btn--pink {
    font-size: 0.95rem;
    padding: 14px 30px;
  }

  .steps,
  .compare,
  .pricing,
  .cta-final {
    padding: 64px 0;
  }

  .step {
    padding: 28px 22px;
  }

  .compare-cell {
    padding: 12px 20px;
  }

  .compare-header__left,
  .compare-header__right {
    padding: 16px 20px;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .nav-cta {
    font-size: 0.78rem;
    padding: 7px 16px;
  }

  .hero-deco--1 {
    width: 220px;
    height: 220px;
  }

  .hero-deco--2 {
    display: none;
  }
}
