:root {
  --background: #fff5f9;
  --foreground: #2a1320;
  --pink-soft: #ffd6e8;
  --pink: #ff6fae;
  --pink-deep: #c2185b;
  --gradient-pink: linear-gradient(135deg, #ff8fc1, #ff4f9a);
  --shadow-pink: 0 18px 40px -18px rgba(255, 79, 154, 0.45);
  --radius: 1.25rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
  filter: blur(80px);
  background: var(--gradient-pink);
}
.blob-tl { top: -8rem; left: -8rem; width: 24rem; height: 24rem; opacity: 0.6; }
.blob-br { bottom: -10rem; right: -8rem; width: 28rem; height: 28rem; opacity: 0.5; }

.container {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
@media (min-width: 640px) { .container { padding: 6rem 1.5rem; } }

.hero { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 111, 174, 0.3);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--pink-deep);
}

.title {
  margin: 1.5rem 0 0;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (min-width: 640px) { .title { font-size: 3.75rem; } }

.subtitle {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(42, 19, 32, 0.8);
}
@media (min-width: 640px) { .subtitle { font-size: 1.25rem; } }

.packages {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pkg {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--pink-soft);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-pink);
  transition: transform 0.2s ease;
  cursor: pointer;
  font: inherit;
}
.pkg:hover { transform: translateY(-4px); }

.pkg-popular {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-pink);
}

.pkg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.pkg-name { font-size: 0.875rem; font-weight: 500; color: var(--pink-deep); margin: 0; }
.pkg-label { font-size: 1.125rem; font-weight: 600; margin: 0.25rem 0 0; }
.pkg-price {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (min-width: 640px) { .pkg-price { font-size: 1.875rem; } }

.pkg-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pink-deep);
}

.footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(42, 19, 32, 0.5);
}
