:root {
  --pink-100: #ffe3f3;
  --pink-300: #ff9fd6;
  --pink-500: #ff5fc2;
  --pink-700: #e0299f;
  --blue-100: #dff1ff;
  --blue-300: #8fd0ff;
  --blue-500: #4aa8ff;
  --blue-700: #1f6fe0;
  --ink: #241a2e;
  --white-soft: #fffaff;
  --shadow: 0 10px 30px rgba(224, 41, 159, 0.18);
  --radius: 20px;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(160deg, var(--pink-100) 0%, var(--blue-100) 55%, var(--pink-100) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
  cursor: default;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Background blobs ---------- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite alternate;
}
.blob-pink {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--pink-500), transparent 70%);
  top: -180px; left: -140px;
}
.blob-blue {
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--blue-500), transparent 70%);
  bottom: -220px; right: -180px;
  animation-duration: 28s;
  animation-delay: -6s;
}
.blob-pink2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--pink-300), transparent 70%);
  top: 40%; left: 50%;
  animation-duration: 18s;
  animation-delay: -3s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.1); }
}

/* ---------- Floating emoji ---------- */
.floaters {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.floater {
  position: absolute;
  bottom: -60px;
  font-size: 22px;
  animation: rise linear forwards;
  opacity: 0.85;
}
@keyframes rise {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.cursor-sparkle {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-500);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px 2px var(--pink-300);
  transition: opacity 0.3s;
  opacity: 0;
}

main, header, footer { position: relative; z-index: 2; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 255, 0.65);
  border-bottom: 2px solid rgba(255, 95, 194, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(90deg, var(--pink-700), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub { font-size: 12px; color: #6b5b75; }

.site-nav {
  display: flex;
  gap: 22px;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
  transition: width 0.25s ease;
}
.site-nav a:hover::after { width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 12px 26px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-secondary {
  background: white;
  color: var(--pink-700);
  border: 2px solid var(--pink-300);
}
.btn-secondary:hover { border-color: var(--pink-500); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(36, 26, 46, 0.15);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-700); }
.btn-lg { font-size: 18px; padding: 16px 36px; }
.nav-cta { font-size: 14px; padding: 10px 20px; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 60px;
  position: relative;
}
.hero-inner { text-align: center; max-width: 820px; }
.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.pill {
  background: white;
  border: 1px solid rgba(255, 95, 194, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--pink-700), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: #4d4056;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 640px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fine-print { font-size: 12px; color: #8a7a93; }

.disco {
  position: absolute;
  top: 40px;
  right: 6%;
  font-size: 64px;
  animation: spin 6s linear infinite;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
  color: white;
  padding: 12px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: scroll-left 26s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section shared ---------- */
section { padding: 80px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 10px;
}
.section-sub {
  text-align: center;
  color: #6b5b75;
  margin: 0 auto 44px;
  max-width: 560px;
}
.asterisk { color: var(--pink-500); }

/* ---------- Features ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(74, 168, 255, 0.25);
}
.card-icon { font-size: 34px; margin-bottom: 12px; }
.card h3 { font-family: var(--font-display); margin: 0 0 8px; font-size: 19px; }
.card p { font-size: 14.5px; color: #52465b; line-height: 1.55; margin: 0 0 14px; }
.stat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
}
.stat-bad { background: var(--pink-100); color: var(--pink-700); }

/* ---------- Ask section ---------- */
.chat-panel {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.6);
}
.chat-log {
  padding: 20px;
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.msg { display: flex; gap: 10px; align-items: flex-start; }
.msg-user { flex-direction: row-reverse; }
.msg-avatar { font-size: 22px; }
.msg-bubble {
  background: var(--blue-100);
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 420px;
}
.msg-user .msg-bubble {
  background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
  color: white;
}
.chat-form {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #eee;
}
.chat-form input {
  flex: 1;
  border: 2px solid var(--pink-100);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s;
}
.chat-form input:focus { border-color: var(--pink-500); }

/* ---------- Meter ---------- */
.meter-inner { text-align: center; }
.meter-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.meter-slider {
  width: 100%;
  appearance: none;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--pink-500));
  outline: none;
  margin-bottom: 18px;
  cursor: pointer;
}
.meter-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--pink-500);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: grab;
}
.meter-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--pink-500);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: grab;
}
.meter-readout {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--pink-700), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  margin: 0;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--pink-500);
}
.testimonial p { font-size: 15px; line-height: 1.55; margin: 0 0 12px; color: #3e3345; }
.testimonial cite { font-size: 13px; color: #8a7a93; font-style: normal; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}
.price-featured {
  border-color: var(--pink-500);
  transform: scale(1.04);
  background: linear-gradient(180deg, #fff, var(--pink-100));
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-family: var(--font-display); font-size: 20px; margin: 6px 0 12px; }
.price { font-family: var(--font-display); font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.price span { font-size: 15px; font-weight: 500; color: #8a7a93; }
.price-desc { font-size: 14px; color: #6b5b75; margin-bottom: 18px; line-height: 1.5; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card li { font-size: 14px; margin-bottom: 10px; color: #4d4056; }
.price-card .btn { width: 100%; }

/* ---------- FAQ ---------- */
.accordion { max-width: 700px; margin: 0 auto; }
.acc-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  overflow: hidden;
}
.acc-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.acc-icon {
  font-size: 20px;
  color: var(--pink-500);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}
.acc-item.open .acc-panel {
  max-height: 200px;
  padding: 0 22px 20px;
}
.acc-panel p { margin: 0; font-size: 14.5px; color: #52465b; line-height: 1.6; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 40px);
  margin: 0 0 10px;
}
.final-cta-inner p { color: #6b5b75; margin: 0 0 28px; font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0;
  border-top: 2px solid rgba(255, 95, 194, 0.25);
  background: rgba(255,255,255,0.5);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.footer-note { font-size: 12.5px; color: #8a7a93; max-width: 560px; line-height: 1.5; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--pink-700); text-decoration: none; font-weight: 500; font-size: 14px; }
.footer-links a:hover { color: var(--blue-700); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; }
  .disco { display: none; }
  section { padding: 56px 0; }
  .price-featured { transform: none; }
}
