* {
  box-sizing: border-box;
}

:root {
  --hot-pink: #E91E90;
  --light-pink: #F5C6E0;
  --black: #000000;
  --white: #FFFFFF;
  --soft-shadow: 0 18px 45px rgba(233, 30, 144, 0.14);
  --deep-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Futura, "Futura PT", "Century Gothic", "Josefin Sans", "Nunito Sans", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow-container {
  width: min(900px, calc(100% - 32px));
}

.hero {
  background: radial-gradient(circle at 20% 20%, rgba(245, 198, 224, 0.55), transparent 30%), var(--white);
  padding: 82px 0 56px;
  text-align: center;
}

.hero-inner {
  display: grid;
  justify-items: center;
}

.brand-name {
  margin: 0 0 12px;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
  font-size: 0.82rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(2.45rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 920px;
  font-weight: 900;
}

.subtitle {
  margin-bottom: 0;
  max-width: 720px;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 500;
}

.section {
  padding: 76px 0;
  position: relative;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(245, 198, 224, 0.16), rgba(255, 255, 255, 0.9));
}

.section-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
}

.centered-heading {
  justify-content: center;
  text-align: center;
}

.heading-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--hot-pink);
  background: var(--light-pink);
  box-shadow: 0 12px 28px rgba(233, 30, 144, 0.18);
  font-size: 1.45rem;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.underline-heading h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--hot-pink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 22px 24px;
  border-radius: 24px;
  border-top: 7px solid var(--hot-pink);
  background: var(--light-pink);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(233, 30, 144, 0.2);
}

.pricing-card h3 {
  margin-bottom: 18px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.duration {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--hot-pink);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.price {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(1.45rem, 2.5vw, 1.8rem);
  line-height: 1;
  font-weight: 900;
}

.module-section {
  overflow: hidden;
}

.module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.module-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(233, 30, 144, 0.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
  font-size: 1rem;
  font-weight: 650;
}

.list-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--white);
  background: var(--hot-pink);
  font-size: 0.78rem;
  font-weight: 900;
}

.included-section {
  background: var(--light-pink);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.included-card {
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--deep-shadow);
  border: 1px solid rgba(233, 30, 144, 0.12);
}

.included-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--hot-pink);
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(233, 30, 144, 0.24);
}

.included-card h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.32;
  font-weight: 900;
}

.contact-section {
  text-align: center;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 42px);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--deep-shadow);
  border: 1px solid rgba(233, 30, 144, 0.18);
}

.contact-card p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  font-size: clamp(0.98rem, 2.5vw, 1.12rem);
  font-weight: 650;
}

.contact-card strong {
  font-weight: 900;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--hot-pink);
  background: var(--light-pink);
  font-size: 0.98rem;
}

.cta-section {
  padding: 12px 0 78px;
  background: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 58px;
  padding: 16px 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--hot-pink);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 rgba(233, 30, 144, 0.5), 0 18px 36px rgba(233, 30, 144, 0.28);
  animation: ctaPulse 2.2s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 32px rgba(233, 30, 144, 0.48), 0 22px 42px rgba(233, 30, 144, 0.32);
}

.cta-button:focus-visible {
  outline: 3px solid var(--light-pink);
  outline-offset: 4px;
}

.footer {
  padding: 24px 16px;
  text-align: center;
  background: var(--light-pink);
  color: var(--black);
}

.footer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 144, 0.44), 0 18px 36px rgba(233, 30, 144, 0.28);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(233, 30, 144, 0), 0 24px 48px rgba(233, 30, 144, 0.34);
  }
}

@media (max-width: 1040px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 66px 0 44px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading,
  .centered-heading {
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 14px;
  }

  .underline-heading h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .module-list li {
    padding: 15px 15px;
  }

  .contact-card p {
    align-items: center;
    flex-direction: column;
  }

  .cta-section {
    padding-bottom: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-section {
    opacity: 1;
    transform: none;
  }
}