:root{
  --bg1:#fff5f7;
  --bg2:#f6f0ff;
  --bg3:#f1fbff;

  --pink:#e16b86;
  --pink2:#b1475e;

  --purple:#6a62c9;
  --purple2:#4f46a7;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: linear-gradient(90deg,var(--bg1),var(--bg2),var(--bg3));
  color:#1f1b22;
}

.wrap{width:min(1100px,92vw); margin:0 auto}

/* NAVBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(255,255,255,.75);
  border-bottom:1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  font-weight:900;
  font-size:26px;
  color:#b1475e;
}
.nav-right{display:flex; gap:10px; align-items:center}

/* PILLS */
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-weight:900;
}
.pill-instagram{
  background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* HERO */
.hero{padding:52px 0 20px}
.hero-inner{display:grid; place-items:center}
.hero-card{
  width:min(840px, 92vw);
  text-align:center;
  padding:30px 20px;
  border-radius:20px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(255,255,255,.65);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.hero-mini{
  margin:0;
  font-weight:800;
  color: rgba(31,27,34,.55);
}
.hero-title{
  margin:8px 0 14px;
  font-size:52px;
  line-height:1.05;
  font-weight:1000;
  letter-spacing:.02em;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-text{
  margin:10px 0;
  color: rgba(31,27,34,.68);
  line-height:1.6;
}
.pink{color:var(--pink2); font-weight:900}
.purple{color:var(--purple2); font-weight:900}

/* SECTIONS */
.section-title{
  text-align:center;
  margin: 20px 0 6px;
  font-size:34px;
  font-weight:1000;
}
.section-sub{
  text-align:center;
  margin:0 0 18px;
  color: rgba(31,27,34,.60);
}

/* MINI GUIDE */
.mini-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 18px 0 26px;
}
.mini-box{
  padding:16px 16px;
  border-radius:16px;
  background: rgba(255,255,255,.68);
  border:1px solid rgba(31,27,34,.08);
}
.mini-box h4{margin:0 0 10px; font-weight:1000}
.mini-box ul{margin:0; padding-left:18px; color:rgba(31,27,34,.65); line-height:1.8}
.mini-foot{margin:10px 0 0; font-weight:900}
.mini-pink{outline:1px solid rgba(225,107,134,.35)}
.mini-yellow{outline:1px solid rgba(255,170,60,.35)}
.mini-purple{outline:1px solid rgba(106,98,201,.35)}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius:18px;
  padding:18px 16px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(31,27,34,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  min-height: 360px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.tag{
  display:inline-flex;
  align-self:flex-start;
  font-size:12px;
  font-weight:1000;
  padding:6px 10px;
  border-radius:999px;
  color:#fff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  margin-bottom:10px;
}
.tag-popular{background: linear-gradient(90deg, #ff8a00, #ff4d6d)}
.tag-premium{background: linear-gradient(90deg, var(--purple), #3b82f6)}

.card h3{margin:0 0 8px; font-size:22px; font-weight:1000}
.card-desc{margin:0 0 14px; color:rgba(31,27,34,.65); line-height:1.6}
.price{font-size:34px; font-weight:1000; margin:10px 0 4px}
.small{color:rgba(31,27,34,.55)}

.card-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}

/* BUTTONS */
.cta{
  border:0;
  cursor:pointer;
  padding:12px 14px;
  border-radius:14px;
  font-weight:1000;
  text-decoration:none;
  display:inline-flex;
  justify-content:center;
  align-items:center;
}
.cta-ghost{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(31,27,34,.12);
  color: rgba(31,27,34,.75);
}
.cta-pink{color:#fff; background: linear-gradient(90deg, var(--pink), #ff4d6d)}
.cta-warm{color:#fff; background: linear-gradient(90deg, #ff8a00, #ff4d6d)}
.cta-purple{color:#fff; background: linear-gradient(90deg, var(--purple), #3b82f6)}

/* DETAILS BOX */
.details-box{
  margin:28px auto 10px;
  width:min(760px, 92vw);
  padding:22px 18px;
  border-radius:18px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(31,27,34,.08);
  text-align:center;
}
.detail-foot{
  margin:10px 0 0;
  color: rgba(31,27,34,.60);
  line-height:1.7;
}
.footer-note{
  text-align:center;
  margin: 18px 0 50px;
  color: rgba(31,27,34,.55);
}

/* ===== Package Popup ===== */
.pkg-backdrop{
  position:fixed; inset:0; z-index:60;
  display:none;
  place-items:center;
  padding:24px 16px;
}
.pkg-backdrop.is-open{ display:grid; }
.pkg-backdrop::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(20,10,22,.35);
  backdrop-filter: blur(6px);
}
.pkg-modal{
  position:relative;
  width:min(980px, 94vw);
  max-height: 84vh;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
  z-index:2;
  overflow:hidden;
}
.pkg-close{
  position:absolute;
  right:14px; top:12px;
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(31,27,34,.12);
  background: rgba(255,255,255,.65);
  font-size:26px;
  cursor:pointer;
  color: rgba(31,27,34,.75);
  z-index:3;
}
.pkg-body{
  padding: 24px 22px 18px;
  max-height: 84vh;
  overflow:auto;
}

.pkg-title{
  font-size:42px;
  margin: 6px 0 8px;
  font-weight:1000;
}
.pkg-h{
  font-weight:1000;
  letter-spacing:.02em;
  color: rgba(79,70,167,.92);
  margin: 18px 0 8px;
}
.pkg-p{ color: rgba(31,27,34,.72); line-height:1.65; margin:0 0 10px; }
.pkg-list{ margin:0; padding-left:18px; color: rgba(31,27,34,.70); line-height:1.8; }

.step{
  display:flex; gap:10px;
  padding: 14px 0;
  border-top: 1px solid rgba(31,27,34,.10);
}
.step:first-of-type{ border-top: 0; }
.step-n{
  width:26px; height:26px;
  border-radius:999px;
  display:grid; place-items:center;
  font-weight:1000; font-size:13px;
  color:#fff;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  flex: 0 0 auto;
  margin-top:2px;
}
.step-t{ font-weight:1000; color: rgba(31,27,34,.80); margin-bottom:6px; }
.step ul{ margin:0; padding-left:18px; color: rgba(31,27,34,.70); line-height:1.8; }

.box{
  margin-top:14px;
  border:1px solid rgba(31,27,34,.14);
  border-radius:14px;
  padding: 12px 12px;
  background: rgba(255,255,255,.60);
}
.box-title{
  font-weight:1000;
  letter-spacing:.03em;
  color: rgba(79,70,167,.92);
  margin:0 0 8px;
  display:flex; align-items:center; gap:8px;
}
.checklist{ margin:0; padding-left:18px; color: rgba(31,27,34,.70); line-height:1.8; }
.small-note{ margin:8px 0 0; color: rgba(31,27,34,.55); font-size:13px; }

@media (max-width: 900px){
  .cards{grid-template-columns:1fr}
  .mini-grid{grid-template-columns:1fr}
  .hero-title{font-size:42px}
}
