:root {
  --mother-pink: #ee2a7b;
  --baby-pink: #fee7e1;
  --text-dark: #212121;
  --text-muted: #666666;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: radial-gradient(800px 500px at 80% -10%, #ffd7e6 0%, transparent 60%),
              radial-gradient(600px 400px at -10% 100%, #ffeef5 0%, transparent 55%),
              #fff;
  background-attachment: fixed;
  padding: 24px;
  line-height: 1.6;
}

/* --- Modern hero layout --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg::after {
  background: radial-gradient(1200px 700px at 100% 0%, rgba(238, 42, 123, 0.08) 0%, transparent 60%),
              radial-gradient(900px 600px at 0% 100%, rgba(254, 231, 225, 0.8) 0%, transparent 55%);
}

.brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 20px 0 10px;
}

.brand-logo {
  width: clamp(160px, 26vw, 220px);
  height: auto;
  display: block;
}

.tagline {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--mother-pink);
  text-transform: uppercase;
}

.content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border: 1px solid rgba(238, 42, 123, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(238, 42, 123, 0.12);
  padding: clamp(20px, 4vw, 36px);
  margin-inline: auto;
  width: min(900px, 100%);
}

.title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
  font-size: clamp(28px, 5vw, 40px);
  text-align: center;
}

.subtitle {
  margin-top: 10px;
  color: var(--text-muted);
  text-align: center;
  font-size: clamp(16px, 2.2vw, 18px);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 22px 0 6px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--mother-pink) 0%, #ff6ba3 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(238, 42, 123, 0.35);
}
.btn.primary:hover { transform: translateY(-2px); }

.btn.outline {
  background: transparent;
  color: var(--mother-pink);
  border-color: var(--mother-pink);
}
.btn.outline:hover {
  background: var(--baby-pink);
  transform: translateY(-2px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 16px 18px;
  border-radius: 16px;
  background: rgba(254, 231, 225, 0.7);
  border: 1px solid rgba(238, 42, 123, 0.12);
}
.info-card:hover { box-shadow: 0 10px 28px rgba(238, 42, 123, 0.12); }

.info-card .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--mother-pink);
  background: #fff;
  border: 1px solid rgba(238, 42, 123, 0.15);
}

.info-card .details h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--mother-pink);
}
.info-card .details p { font-size: 15px; }
.info-card a { color: var(--mother-pink); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

.legal {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .info-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
}
