* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at top right, #ffe3f5 0%, #ffeae0 40%, #f9f4ff 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  background: #ffbfe7;
  top: -120px;
  left: -120px;
}

.hero::after {
  background: #ffd3b6;
  bottom: -120px;
  right: -120px;
}

.hero__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-family: "DM Serif Display", "Times New Roman", serif;
  font-size: 46px;
  margin: 12px 0;
  line-height: 1.2;
}

h2,
h3,
h4 {
  font-family: "DM Serif Display", "Times New Roman", serif;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7c4f7d;
  font-weight: 600;
}

.typing {
  position: relative;
  display: inline-block;
  padding-right: 8px;
  min-height: 18px;
}

.typing--name {
  min-height: 44px;
}

.typing--paragraph {
  min-height: 22px;
}

.typing::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 2px;
  height: 14px;
  background: #c04bb6;
  animation: blink 0.9s steps(1) infinite;
}

.typing--done::after {
  display: none;
}

.gradient .typing::after {
  background: #ffffff;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.lead {
  margin: 16px 0 24px;
  color: #3c3f4a;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__image {
  justify-self: end;
  max-width: 420px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ffffff;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.btn--primary {
  background: linear-gradient(135deg, #b23bc8, #e04ea1);
  color: #ffffff;
}

.btn--ghost {
  background: #ffffff;
  color: #b23bc8;
  border: 2px solid #e6b5dd;
}

.btn--light {
  background: #ffffff;
  color: #b23bc8;
  border: 1px solid #ffffff;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(20, 20, 40, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(20, 20, 40, 0.16);
}

.image-card {
  padding: 10px;
  background: #fff7fb;
}

.section {
  padding: 65px 0;
}

.section__title {
  text-align: center;
  margin: 18px 0 26px;
  font-size: 28px;
  position: relative;
}


.section__intro {
  text-align: center;
  margin-bottom: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section__note {
  text-align: center;
  margin-top: 24px;
  color: #4d5665;
}

.soft {
  background: linear-gradient(180deg, #f7fbff, #f1fbff);
}

.warm {
  background: linear-gradient(180deg, #fff6f5, #fff1f7);
}

.gradient {
  background: linear-gradient(135deg, #98259b, #ff4f4f);
  color: #ffffff;
}

.white {
  color: #ffffff;
}

.teal {
  color: #1a8c9b;
}

.pink {
  color: #c14b85;
}

.split {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gap-lg {
  gap: 20px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(20, 20, 40, 0.08);
  border: 1px solid rgba(228, 232, 240, 0.9);
}

.icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e9f7fb;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.pill h4 {
  font-size: 15px;
  color: #2a2f3a;
}

.mini h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.mini p {
  color: #4d5665;
}

.center {
  text-align: center;
}

.form-card {
  margin-top: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.footer {
  background: linear-gradient(135deg, #4a176b, #8f2e6f);
  color: #ffffff;
  padding: 50px 0 22px;
}

.footer__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer__copy {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: #f3d6ef;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials__link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials__link:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.socials__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .hero__content h1 {
    font-size: 38px;
  }
}

@media (max-width: 700px) {
  .hero__content h1 {
    font-size: 32px;
  }

  .form-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

