/* ========== Reset & Tokens ========== */
:root{
  --bg: #0b1220;
  --panel: #0f1a2e;
  --panel2: #0c1628;
  --text: #e9eefc;
  --muted: rgba(233, 238, 252, .75);
  --muted2: rgba(233, 238, 252, .6);
  --stroke: rgba(233, 238, 252, .14);
  --accent: #8be9fd;
  --accent2: #a7f3d0;
  --danger: #fb7185;

  --radius: 18px;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 900px at 20% 10%, rgba(139,233,253,.12), transparent 55%),
              radial-gradient(1000px 800px at 80% 30%, rgba(167,243,208,.12), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; border-radius: var(--radius); }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.small{ font-size:.92rem; color:var(--muted); }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}
.skip-link{
  position:absolute; left:-999px; top:10px; background:var(--text); color:#111; padding:10px 12px; border-radius:12px;
}
.skip-link:focus{ left:10px; z-index:9999; }

/* ========== Header ========== */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid var(--stroke);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 210px;
}
.brand__name{ font-weight:800; letter-spacing:.2px; }
.brand__tagline{ font-size:.86rem; color:var(--muted2); }

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:1;
}
.nav__toggle{
  display:none;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  border-radius: 12px;
}
.nav__menu{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}
.nav__link{
  font-size:.95rem;
  color:var(--muted);
}
.nav__link:hover{ color:var(--text); }

.header__cta{ white-space:nowrap; }

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:focus{ outline: 3px solid rgba(139,233,253,.25); outline-offset:2px; }
.btn:hover{ transform: translateY(-1px); }

.btn--primary{
  background: linear-gradient(135deg, rgba(139,233,253,.22), rgba(167,243,208,.18));
  border-color: rgba(139,233,253,.25);
}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--stroke);
  color: var(--text);
}

/* ========== Hero ========== */
.hero{ padding: 42px 0 22px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  font-size:.92rem;
  color: var(--muted);
  padding:8px 12px;
  border:1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.hero__title{
  margin:14px 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height:1.1;
  letter-spacing:-.4px;
}
.accent{ color: var(--accent); }
.hero__subtitle{ margin:0; color: var(--muted); font-size: 1.05rem; max-width: 54ch; }
.hero__actions{ display:flex; gap:12px; margin:18px 0 12px; flex-wrap:wrap; }

.chips{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.chip{
  font-size:.92rem;
  color: var(--muted);
  padding:8px 10px;
  border:1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}

.hero__media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.hero__media img{ border-radius: 0; aspect-ratio: 4/3; object-fit:cover; }
.hero__mediaCard{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
}
.hero__mediaCardTitle{ margin:0; font-weight:800; }
.hero__mediaCardText{ margin:4px 0 0; color: var(--muted); font-size:.92rem; }

/* ========== Sections & Cards ========== */
.section{ padding: 44px 0; }
.section--alt{ background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); }

.section__head h2{
  margin:0 0 8px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing:-.2px;
}
.section__head p{ margin:0; color: var(--muted); max-width: 72ch; }

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

.card{
  background: rgba(255,255,255,.035);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.card__title{ margin:0 0 10px; letter-spacing:-.1px; }
.card__meta{ margin:12px 0 0; color: var(--muted); }
.card__quote{ margin:0; color: var(--text); }

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:.86rem;
  padding:7px 10px;
  border-radius: 999px;
  border:1px solid rgba(139,233,253,.28);
  background: rgba(139,233,253,.08);
}
.price{
  font-size:1.35rem;
  font-weight:900;
  margin:10px 0 6px;
}
.muted{ color: var(--muted); }
.kv{ display:flex; gap:10px; flex-wrap:wrap; margin:10px 0; }
.kv span{
  font-size:.9rem;
  padding:7px 10px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  color: var(--muted);
}
.list{ margin:10px 0 0; padding-left: 18px; color: var(--muted); }
.list li{ margin:6px 0; }
.divider{ height:1px; background: var(--stroke); margin:14px 0; }
.note{ margin-top:16px; padding:14px 16px; border:1px dashed var(--stroke); border-radius: var(--radius); background: rgba(255,255,255,.02); }

.timeline{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.timeline li{ margin: 8px 0; }

.gallery{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top:18px;
}
.disclaimer{ margin-top:12px; }

/* ========== Tally embed ========== */
.tally-wrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  min-height: 520px;
}
.tally-wrap iframe{
  width:100%;
  height: 560px;
  border:0;
}

/* ========== Footer & FAB ========== */
.footer{
  padding: 22px 0 44px;
  border-top:1px solid var(--stroke);
}
.footer__inner{ display:flex; flex-direction:column; gap:6px; }

.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(167,243,208,.25);
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 800;
}
.fab:hover{ transform: translateY(-1px); }

/* ========== Responsive ========== */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .nav__menu{ gap:12px; }
  .grid--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .brand{ min-width: unset; }
  .header__inner{ gap:10px; }
  .header__cta{ display:none; }

  .nav{ justify-content:flex-end; }
  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute;
    right: 20px;
    top: 64px;
    flex-direction:column;
    align-items:flex-start;
    width: min(320px, calc(100% - 40px));
    padding: 12px;
    border-radius: 16px;
    background: rgba(11,18,32,.92);
    display:none;
  }
  .nav__menu.is-open{ display:flex; }

  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn{ transition:none; }
}
/* ========== Sticky CTA (Mobile) ========== */
.sticky-cta{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 80px; /* kasih jarak dari WA floating */
  z-index: 65;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.sticky-cta__btn{
  flex: 1;
  text-align: center;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
}
.sticky-cta__btn--primary{
  background: linear-gradient(135deg, rgba(139,233,253,.22), rgba(167,243,208,.18));
  border-color: rgba(139,233,253,.25);
}
.sticky-cta__btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--stroke);
}

/* ========== FAQ ========== */
.faq{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.faq__item{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding: 6px 12px;
}
.faq__q{
  cursor: pointer;
  padding: 12px 4px;
  font-weight: 900;
  color: var(--text);
  list-style: none;
}
.faq__q::-webkit-details-marker{ display:none; }
.faq__a{
  padding: 0 4px 14px;
  color: var(--muted);
}
.faq__item[open]{
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

/* Only show on mobile */
@media (max-width: 720px){
  .sticky-cta{ display: flex; }
  /* supaya FAB WA tidak nutup sticky */
  .fab{ bottom: 18px; }
}
/* ========== Sticky CTA (Mobile) ========== */
.sticky-cta{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 80px;
  z-index: 65;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.sticky-cta__btn{
  flex: 1;
  text-align: center;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
}
.sticky-cta__btn--primary{
  background: linear-gradient(135deg, rgba(139,233,253,.22), rgba(167,243,208,.18));
  border-color: rgba(139,233,253,.25);
}
.sticky-cta__btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--stroke);
}

@media (max-width: 720px){
  .sticky-cta{ display: flex; }
  .fab{ bottom: 18px; }
}
/* ========== FAQ ========== */
.faq{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.faq__item{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding: 6px 12px;
}
.faq__q{
  cursor: pointer;
  padding: 12px 4px;
  font-weight: 900;
  color: var(--text);
  list-style: none;
}
.faq__q::-webkit-details-marker{ display:none; }
.faq__a{
  padding: 0 4px 14px;
  color: var(--muted);
}
