:root {
  --pink: #ec2b7b;
  --pink-dark: #c91560;
  --black: #090a0f;
  --navy: #111827;
  --muted: #6b7280;
  --soft: #fff0f6;
  --line: #f3c5d8;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 7vw;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid #f5d7e3;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 2px solid var(--pink);
}

.brand strong {
  display: block;
  font-size: 28px;
  letter-spacing: -.04em;
  line-height: .85;
}

.brand strong span { color: var(--pink); }

.brand small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

nav a:hover { color: var(--pink); }

.header-cta,
.btn,
.contact-form button {
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 14px 30px rgba(236,43,123,.24);
  cursor: pointer;
}

.header-cta {
  padding: 14px 22px;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 650px;
  padding: 70px 7vw;
  background:
    radial-gradient(circle at 78% 22%, rgba(236,43,123,.20), transparent 34%),
    linear-gradient(90deg, #fff 0%, #fff 48%, #fff0f6 100%);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

h1::after {
  content: " Built to impress.";
  color: var(--pink);
}

.lede {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.45;
  color: #2d2f36;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 17px 26px;
  font-size: 14px;
}

.btn.secondary {
  background: white;
  color: var(--pink);
  border: 2px solid var(--pink);
  box-shadow: none;
}

.trust-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.trust-row div {
  display: grid;
  gap: 3px;
}

.trust-row strong {
  color: var(--pink);
  font-size: 22px;
}

.trust-row span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art::before {
  content: "✦";
  position: absolute;
  right: 8%;
  top: 14%;
  color: var(--pink);
  font-size: 80px;
}

.hero-art img {
  width: min(590px, 100%);
  border-radius: 34px;
  filter: drop-shadow(0 30px 50px rgba(17,24,39,.16));
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 42px 7vw;
  background: #fbe4ee;
}

.feature-strip article {
  padding: 28px;
  background: rgba(255,255,255,.48);
  border-radius: 22px;
}

.feature-strip span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  color: var(--pink);
  background: white;
  border-radius: 50%;
  font-size: 28px;
}

.feature-strip h3,
.steps h3,
.price-card h3 {
  margin-bottom: 8px;
}

.feature-strip p,
.steps p,
.price-card p,
.cta-section p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 82px 7vw;
  text-align: center;
}

.section h2,
.cta-section h2 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.05em;
  margin-bottom: 32px;
}

.steps, .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.steps article,
.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid #f5c9da;
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 50px rgba(17,24,39,.06);
}

.steps b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
}

.pricing {
  background: linear-gradient(180deg, #fff 0%, #fff6fa 100%);
}

.price {
  color: var(--pink);
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -.05em;
  margin-bottom: 10px;
}

.price-card ul {
  padding-left: 20px;
  margin: 24px 0 0;
  line-height: 2;
  color: #333741;
}

.featured {
  border: 2px solid var(--pink);
  transform: translateY(-12px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.maintenance {
  margin-top: 28px;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 82px 7vw;
  background: var(--black);
  color: white;
}

.cta-section p { color: #d1d5db; }

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: white;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #f0bfd3;
  border-radius: 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  padding: 17px 22px;
  font-size: 14px;
}

.contact-form small {
  color: var(--muted);
  text-align: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 7vw;
  background: #050507;
  color: #aeb4c0;
  font-size: 14px;
}

footer p { margin: 0; }

footer a { color: white; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero,
  .cta-section {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 42px;
  }
  .feature-strip,
  .steps,
  .cards {
    grid-template-columns: 1fr;
  }
  .featured { transform: none; }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }
  .brand strong { font-size: 22px; }
  .brand small { display: none; }
  .header-cta { padding: 12px 16px; }
  .hero, .section, .cta-section, .feature-strip {
    padding-left: 22px;
    padding-right: 22px;
  }
  .trust-row {
    gap: 18px;
  }
  footer {
    flex-direction: column;
  }
}
