@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --cream: #F6F1FB;
  --cream-2: #E6D9F5;
  --lavender: #BEA0DC;
  --skyblue: #AAD7EB;
  --purple: #7A4FB5;
  --purple-dark: #43276E;
  --pink: #F2478A;
  --yellow: #FDB833;
  --blue: #2FA3D6;
  --green: #52A83E;
  --ink: #2C1B47;
  --ink-soft: #5B4A73;
  --white: #FFFFFF;
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
}

h1, h2, h3, .display {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.12;
  margin: 0 0 .4em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; max-width: 62ch; }

a { color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 243, 227, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--purple);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 46px;
  width: 46px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--purple);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--purple-dark);
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color .15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--pink);
}

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  border-bottom: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 0 #4c8c2f;
}
.nav-cta:hover { transform: translateY(1px); box-shadow: 0 3px 0 #4c8c2f; }

.nav-toggle { display: none; }

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    border-bottom: 3px solid var(--purple);
    transform: translateY(-130%);
    transition: transform .2s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 2px solid var(--purple);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 1.2rem;
    color: var(--purple);
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 1.08rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 5px 0 #4c8c2f;
}
.btn-primary:hover { transform: translateY(2px); box-shadow: 0 3px 0 #4c8c2f; }

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 2.5px solid var(--purple);
}
.btn-secondary:hover { background: var(--purple); color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .92rem;
  margin-bottom: 16px;
}

.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-trust {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--purple-dark);
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }

.hero-media {
  position: relative;
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 18px 0 -6px rgba(106,47,176,.18), 0 14px 30px rgba(44,27,71,.18);
  aspect-ratio: 4/3;
}

.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

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

/* ---------- PLACEHOLDER IMG ---------- */
.img-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(135deg, #EFE1C6, #EFE1C6 10px, #E6D5B4 10px, #E6D5B4 20px);
  color: var(--purple-dark);
  font-weight: 800;
  font-family: 'Baloo 2', sans-serif;
  padding: 18px;
  border: 3px dashed var(--purple);
  border-radius: inherit;
}
.img-placeholder small {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  margin-top: 6px;
  font-size: .82rem;
  opacity: .8;
}

/* ---------- SECTIONS ---------- */
section { padding: 64px 0; }

.section-alt { background: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head p { margin: 0 auto; }

/* Value strip */
.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--white);
}
.value-strip .item { display: flex; align-items: center; gap: 14px; }
.value-strip .icon { font-size: 1.8rem; }
.value-strip strong { font-family: 'Baloo 2', sans-serif; display: block; font-size: 1.05rem; }
.value-strip small { opacity: .85; }

@media (max-width: 720px) {
  .value-strip { grid-template-columns: 1fr; }
}

/* Problem section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.problem-list { list-style: none; padding: 0; margin: 0; }
.problem-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 2px dashed var(--cream-2);
  font-weight: 700;
  color: var(--ink-soft);
}
.problem-list li:last-child { border-bottom: none; }
.problem-list .mark {
  color: var(--pink);
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.3rem;
}
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }

/* Plan steps */
.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.plan-step {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 3px solid var(--purple-dark);
  position: relative;
}
.plan-step .num {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.2rem;
  color: var(--pink);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 820px) { .plan-steps { grid-template-columns: 1fr; } }

/* Cards / products */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--purple-dark);
  display: flex;
  flex-direction: column;
}
.product-card .img-frame {
  border-radius: 0;
  border: none;
  box-shadow: none;
  aspect-ratio: 4/3;
}
.product-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card .tag {
  align-self: flex-start;
  background: var(--yellow);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: .82rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.product-card .specs {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 6px;
}
.product-card .grow { flex: 1; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 780px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 3px solid var(--purple-dark);
}
.testi-card .stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.testi-card p { font-style: italic; color: var(--ink); }
.testi-card .author { font-family: 'Baloo 2', sans-serif; color: var(--purple); font-weight: 700; }
.testi-card .source { color: var(--ink-soft); font-size: .88rem; }

/* Final CTA band */
.cta-band {
  background: var(--pink);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); margin-left: auto; margin-right: auto; }

/* Package page */
.package-card {
  background: var(--white);
  border: 4px solid var(--purple-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.package-card .img-frame { border-radius: 0; border: none; box-shadow: none; aspect-ratio: auto; height: 100%; }
.package-card .body { padding: 36px; }
.package-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--purple-dark);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.price-tag {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.6rem;
  color: var(--purple);
  font-weight: 800;
  margin: 10px 0 4px;
}
.price-tag small { font-size: 1rem; color: var(--ink-soft); font-family: 'Nunito', sans-serif; font-weight: 700; }
.check-list { list-style: none; padding: 0; margin: 18px 0 26px; }
.check-list li { display: flex; gap: 10px; padding: 6px 0; font-weight: 700; }
.check-list li::before { content: "✔"; color: var(--green); font-weight: 800; }

@media (max-width: 820px) {
  .package-card { grid-template-columns: 1fr; }
  .package-card .img-frame { aspect-ratio: 4/3; }
}

/* Package grid (mini cards for the other packages) */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
  background: var(--white);
  border: 3px solid var(--purple-dark);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card .pkg-num {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--pink);
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  padding: 5px 14px;
  border-radius: 999px;
}
.pkg-card h3 { margin-top: 10px; }
.pkg-card .pkg-items {
  list-style: none;
  padding: 0;
  margin: 4px 0 14px;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: .95rem;
}
.pkg-card .pkg-items li { padding: 3px 0; }
.pkg-card .pkg-price {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.9rem;
  color: var(--purple);
  font-weight: 800;
  margin: 4px 0;
}
.pkg-card .pkg-price s {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 700;
  margin-left: 8px;
}
.pkg-card .grow { flex: 1; }

.choice-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0 24px; }
.choice-chip {
  border: 2.5px solid var(--purple);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  color: var(--purple);
  background: var(--cream);
}

.next-package {
  border: 3px dashed var(--purple);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 700;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-card h3 { color: var(--white); }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-weight: 700;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon { font-size: 1.3rem; }

.faq-item {
  border-bottom: 2px dashed var(--cream-2);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin-bottom: 6px; font-size: 1.1rem; }

/* Footer */
.site-footer {
  background: var(--purple-dark);
  color: var(--cream);
  padding: 46px 0 26px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: 'Baloo 2', sans-serif;
  color: var(--yellow);
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.site-footer a { color: var(--cream); text-decoration: none; opacity: .9; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(252,243,227,.2);
  padding-top: 18px;
  font-size: .88rem;
  opacity: .75;
  text-align: center;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--green);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 60;
}

/* Page hero (inner pages) */
.page-hero { padding: 48px 0 20px; text-align: center; }
.page-hero p { margin: 0 auto; }

/* ---------- MOTION ---------- */
@media (prefers-reduced-motion: no-preference) {

  body { animation: page-fade .5s ease both; }
  @keyframes page-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  .reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal-scale.is-visible { opacity: 1; transform: scale(1); }

  .site-header {
    transition: box-shadow .25s ease, background .25s ease;
  }
  .site-header.is-scrolled {
    box-shadow: 0 6px 18px rgba(67,39,110,.12);
    background: rgba(252, 249, 255, .96);
  }

  .btn, .nav-cta, .choice-chip, .product-card, .testi-card, .plan-step {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .product-card:hover, .testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 26px rgba(67,39,110,.14);
  }

  .plan-step:hover { transform: translateY(-4px); border-color: var(--pink); }

  .img-frame img { transition: transform .5s ease; }
  .product-card:hover .img-frame img { transform: scale(1.06); }

  /* Decorative floating blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .55;
    z-index: 0;
    pointer-events: none;
    animation: float-blob 9s ease-in-out infinite;
  }
  @keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -18px) scale(1.05); }
  }
  .hero { position: relative; }
  .hero .blob-1 { width: 180px; height: 180px; background: var(--skyblue); top: -30px; left: -60px; animation-delay: 0s; }
  .hero .blob-2 { width: 130px; height: 130px; background: var(--lavender); bottom: -20px; right: 6%; animation-delay: 2s; }
  .hero .container, .hero-copy, .hero-media { position: relative; z-index: 1; }

  .cta-band { position: relative; overflow: hidden; }
  .cta-band .blob { background: rgba(255,255,255,.25); }
  .cta-band .blob-1 { width: 160px; height: 160px; top: -50px; left: -40px; }
  .cta-band .blob-2 { width: 120px; height: 120px; bottom: -40px; right: -20px; animation-delay: 3s; }
  .cta-band > * { position: relative; z-index: 1; }

  /* WhatsApp pulse */
  .wa-float {
    animation: wa-pulse 2.6s ease-in-out infinite;
  }
  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 16px rgba(0,0,0,.25), 0 0 0 0 rgba(82,168,62,.55); }
    50% { box-shadow: 0 6px 16px rgba(0,0,0,.25), 0 0 0 12px rgba(82,168,62,0); }
  }
  .wa-float:hover { transform: scale(1.08); }

  /* Hero image gentle float */
  .hero-media .img-frame { animation: gentle-float 5.5s ease-in-out infinite; }
  @keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .nav-links a { position: relative; }

  .stat-count { display: inline-block; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}
