:root {
  --ink: #1a1a1a;
  --paper: #fffaf7;
  --accent: #e91e8c;
  --accent-soft: #ffe4f3;
  --muted: #5c5c5c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
}

.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-actions a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.2);
  color: var(--ink);
}

.hero {
  padding: 4rem 5% 3rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    #fff0f8 0%,
    var(--paper) 55%,
    var(--paper) 100%
  );
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.services {
  padding: 3rem 5% 4rem;
}

.services h2 {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.08);
  border: 1px solid rgba(233, 30, 140, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
  font-size: 0.95rem;
}

.steps {
  background: #1a1a1a;
  color: #fdf7fa;
  padding: 3.5rem 5%;
}

.steps h2 {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.step {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #ff9acd;
  margin-bottom: 0.35rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: rgba(253, 247, 250, 0.75);
  font-size: 0.9rem;
}

.steps-cta {
  text-align: center;
}

.pros {
  padding: 3.5rem 5%;
  text-align: center;
}

.pros h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pros-sub {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.pros-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 600;
  color: var(--accent);
}

.testimonials {
  padding: 3rem 5% 4rem;
  background: var(--accent-soft);
}

.testimonials h2 {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

blockquote {
  margin: 0;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  font-style: italic;
  color: var(--muted);
}

blockquote footer {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.app-cta {
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.app-cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 0;
}

.site-footer {
  padding: 2rem 5%;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.back-home {
  display: inline-block;
  margin: 1rem 5% 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.back-home:hover {
  color: var(--accent);
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 640px) {
  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions a:not(.btn) {
    display: none;
  }
}
