/* ==============================
   NUGASBOOST — Neo-Brutalism
   ============================== */

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --blue: #b9dcff;
  --blue-deep: #6fb6ff;
  --yellow: #ffe66d;
  --pink: #ffd0e0;
  --mint: #c8f5d4;
  --white: #ffffff;
  --shadow: 4px 4px 0 0 var(--ink);
  --shadow-lg: 6px 6px 0 0 var(--ink);
  --shadow-sm: 2px 2px 0 0 var(--ink);
  --border: 2.5px solid var(--ink);
  --border-thin: 2px solid var(--ink);
  --radius: 4px;
  --radius-sm: 2px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.06) 1px, transparent 0);
  background-size: 22px 22px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

/* ==============================
   SHARED — Buttons & Badges
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 100ms ease, box-shadow 100ms ease;
  font-family: 'Space Grotesk', sans-serif;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 0 0 0 0 var(--ink); }
.btn--primary { background: var(--blue-deep); color: var(--ink); }
.btn--ghost { background: var(--white); }
.btn--white { background: var(--white); }
.btn--dark {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--lg { padding: 12px 20px; font-size: 14.5px; }
.btn--block { display: flex; width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border: var(--border-thin);
  border-radius: 6px;
  background: var(--white);
  font-weight: 700;
  font-size: 12px;
  box-shadow: 2px 2px 0 0 var(--ink);
}
.badge--yellow { background: var(--yellow); }
.badge--white { background: var(--white); }
.status-badge{
  border-radius: 4px !important;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  border: 1.5px solid var(--ink);
}

.kicker {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11.5px;
  background: var(--yellow);
  border: var(--border-thin);
  padding: 3px 8px;
  margin-bottom: 12px;
  box-shadow: 2px 2px 0 0 var(--ink);
  border-radius: var(--radius-sm);
}

/* highlights */
.hl { display: inline-block; }
.hl--blue   { background: var(--blue);   color: var(--ink); padding: 0 6px; border: var(--border-thin); box-shadow: 3px 3px 0 0 var(--ink); border-radius: 4px; }
.hl--rotate { background: var(--yellow); color: var(--ink); padding: 0 6px; border: var(--border-thin); box-shadow: 3px 3px 0 0 var(--ink); border-radius: 4px; transform: rotate(-1.5deg); }
.hl--white  { background: var(--yellow); color: var(--ink); padding: 0 6px; border: var(--border-thin); box-shadow: 3px 3px 0 0 var(--white); border-radius: 4px; }
.underline { background: linear-gradient(transparent 70%, var(--blue) 70%); padding: 0 4px; }

/* ==============================
   NAV
   ============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
}
.logo__mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--blue-deep);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 0 var(--ink);
  font-size: 15px;
  color: var(--ink);
}
.logo__text em { font-style: normal; background: var(--yellow); padding: 0 4px; border: 1.5px solid var(--ink); }

.nav__links { display: flex; gap: 22px; }
.nav__links a {
  font-weight: 600;
  position: relative;
  padding: 4px 2px;
  font-size: 14px;
}
.nav__links a:hover { background: var(--yellow); border: 1.5px solid var(--ink); padding: 2px 6px; border-radius: 4px; }

.nav__cta { padding: 8px 14px; font-size: 13px; }

/* Hamburger toggle button — hidden by default (desktop) */
.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  padding: 0;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 0 var(--ink);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 100ms, box-shadow 100ms;
}
.nav__toggle:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 0 var(--ink); }
.nav__toggle span {
  display: block;
  width: 16px;
  height: 2.2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 180ms, opacity 180ms;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.2px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.2px) rotate(-45deg); }

@media (max-width: 800px) {
  .nav__inner { flex-wrap: wrap; gap: 12px; }
  .nav__toggle { display: flex; }

  /* Default: hide links & CTA on mobile */
  .nav__links, .nav__cta { display: none; }

  /* When open: full-width dropdown below logo row */
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 99;
    border-top: var(--border-thin);
    padding: 6px 0 4px;
    margin-top: 4px;
  }
  .nav.is-open .nav__links a {
    padding: 11px 6px;
    border-bottom: 1.5px dashed rgba(10,10,10,0.18);
    font-size: 14.5px;
  }
  .nav.is-open .nav__links a:last-child { border-bottom: 0; }
  .nav.is-open .nav__links a:hover {
    background: transparent;
    border: none;
    border-bottom: 1.5px dashed rgba(10,10,10,0.18);
    border-radius: 0;
    padding: 11px 6px;
    color: var(--blue-deep);
  }

  .nav.is-open .nav__cta {
    display: flex;
    width: 100%;
    order: 100;
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 11px 18px;
    font-size: 14px;
  }
}

/* ==============================
   STICKER (decor)
   ============================== */
.sticker {
  position: fixed;
  z-index: 60;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  pointer-events: none;
}
.sticker--top {
  top: 72px; right: 18px;
  transform: rotate(6deg);
}
.sticker span {
  display: inline-block;
  background: var(--pink);
  border: var(--border-thin);
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 6px;
  box-shadow: 2px 2px 0 0 var(--ink);
}
@media (max-width: 800px) {
  .sticker--top { display: none; }
}

/* ==============================
   HERO
   ============================== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 50px;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero__title {
  font-size: clamp(30px, 4.8vw, 56px);
  margin-top: 16px;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 15.5px;
  max-width: 520px;
  margin: 0 0 24px;
}
.hero__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__stats { display: flex; gap: 22px; flex-wrap: wrap; }
.stat {
  display: flex; flex-direction: column;
  padding: 8px 14px;
  border-left: 3px solid var(--ink);
}
.stat__num { font-family: 'Archivo Black', sans-serif; font-size: 22px; }
.stat__lbl { font-size: 12px; font-weight: 600; opacity: 0.75; }

.success__box{
  border-radius: 4px !important;
}
/* hero right (card stack) */
.hero__right {
  position: relative;
  min-height: 400px;
}
.card {
  position: absolute;
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.card--blue {
  background: var(--blue);
  top: 0; right: 30px;
  width: 260px;
  transform: rotate(-3deg);
}
.card--tilt-l { transform: rotate(-3deg); }
.card--tilt-r { transform: rotate(4deg); }

.card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.card__chip {
  font-family: 'Archivo Black', sans-serif;
  background: var(--white);
  border: var(--border-thin);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
}
.card__dot { width: 10px; height: 10px; border-radius: 50%; background: #ff5577; border: 1.5px solid var(--ink); }
.card__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 34px;
  line-height: 1;
}
.card__num--sm { font-size: 22px; }
.card__lbl { font-weight: 600; font-size: 13px; margin-top: 4px; }
.card__bar {
  margin-top: 10px;
  height: 10px;
  border: var(--border-thin);
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
}
.card__bar span {
  display: block;
  height: 100%;
  background: var(--blue-deep);
  border-right: var(--border-thin);
}

.card--likes {
  top: 170px; right: 180px;
  background: var(--white);
  width: 190px;
}
.like-row { display: flex; align-items: center; gap: 12px; }
.heart {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #ff5577;
  border: var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 22px;
  box-shadow: 2px 2px 0 0 var(--ink);
}

.card--review {
  top: 270px; right: 10px;
  background: var(--yellow);
  width: 240px;
  transform: rotate(2deg);
  font-size: 13px;
}
.card--review p { margin: 5px 0 8px; font-weight: 600; }
.stars { font-size: 18px; letter-spacing: 2px; }

.shape {
  position: absolute;
  display: inline-block;
}

.shape--zig {
  top: 210px; left: -8px;
  font-size: 32px;
  color: var(--ink);
  transform: rotate(-12deg);
}

@media (max-width: 960px) {
  .hero__right { min-height: 540px; max-width: 460px; margin: 0 auto; }
  .card--blue { right: auto; left: 0; }
  .card--likes { right: auto; left: 180px; }
  .card--review { right: auto; left: 20px; }
}

/* Mobile: stop pakai absolute, ganti jadi stack vertikal */
@media (max-width: 640px) {
  .hero { padding: 40px 20px 50px; }
  .hero__right {
    position: relative;
    min-height: 0;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 18px 6px 12px;
  }
  .card {
    position: static;
    width: 100%;
    max-width: 360px;
    padding: 20px;
  }
  .card--blue {
    align-self: flex-start;
    transform: rotate(-2deg);
  }
  .card--likes {
    align-self: flex-end;
    transform: rotate(2deg);
  }
  .card--review {
    align-self: flex-start;
    transform: rotate(-1.5deg);
  }
  .card__num { font-size: 38px; }

  /* shape ulang biar nggak nutupin card */
  .shape--circle {
    width: 52px; height: 52px;
    top: -8px; left: auto; right: 14px;
  }
  .shape--zig {
    top: auto; bottom: 30%;
    left: 6px;
    font-size: 28px;
  }
}

/* ==============================
   MARQUEE
   ============================== */
.marquee {
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--blue-deep);
  overflow: hidden;
  padding: 10px 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
}
.marquee__track {
  display: inline-flex;
  gap: 26px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee__track span { padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==============================
   SECTIONS
   ============================== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}
.section--alt {
  max-width: none;
  background: var(--blue);
  border-top: var(--border);
  border-bottom: var(--border);
  padding-left: 0; padding-right: 0;
}
.section--alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

.section__head { margin-bottom: 36px; max-width: 700px; }
.section__head--left { margin-left: 0; margin-right: auto; }
.section__head--right { margin-left: auto; margin-right: 0; text-align: right; }
.section__title {
  font-size: clamp(26px, 3.8vw, 42px);
  margin-top: 8px;
}

/* ==============================
   SERVICES
   ============================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

.service {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.service:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 0 var(--ink); }
.service--1 { transform: rotate(-0.8deg); background: var(--white); }
.service--2 { transform: rotate(0.5deg);  background: var(--blue); }
.service--3 { transform: rotate(-0.4deg); background: var(--yellow); }
.service:hover.service--1, .service:hover.service--2, .service:hover.service--3 { transform: translate(-2px, -2px) rotate(0deg); }

.service__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  font-size: 24px;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 3px 3px 0 0 var(--ink);
  margin-bottom: 14px;
}
.service h3 { font-size: 20px; margin-bottom: 8px; }
.service p { margin: 0 0 14px; font-weight: 500; font-size: 14px; }
.service .btn { margin-top: auto; align-self: flex-start; }

.check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}
.check li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 16px; height: 16px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
}

/* ==============================
   STEPS
   ============================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.step--a { background: var(--white); transform: translateY(0); }
.step--b { background: var(--yellow); transform: translateY(20px); }
.step--c { background: var(--mint); transform: translateY(6px); }
.step__num {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  background: var(--ink);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transform: rotate(-2deg);
}
.step h4 { font-size: 18px; margin-bottom: 6px; }
.step p { margin: 0; font-weight: 500; font-size: 14px; }

@media (max-width: 900px) {
  .step--b, .step--c { transform: none; }
}

/* ==============================
   PRICING
   ============================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

.price {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex; flex-direction: column;
}
.price--featured {
  background: var(--blue);
  transform: scale(1.03);
  z-index: 2;
}
@media (max-width: 900px) { .price--featured { transform: none; } }

.ribbon {
  position: absolute;
  top: -12px; right: 16px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Archivo Black', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  transform: rotate(2deg);
  box-shadow: 2px 2px 0 0 var(--blue-deep);
}
.price__head { margin-bottom: 10px; }
.price__head h3 { font-size: 22px; margin-bottom: 6px; }
.price__amount {
  display: flex; align-items: flex-end; gap: 3px;
  margin: 6px 0 16px;
  font-family: 'Archivo Black', sans-serif;
}
.price__amount .rp { font-size: 16px; padding-bottom: 9px; }
.price__amount .big { font-size: 46px; line-height: 0.9; }
.price__amount .kilo { font-size: 24px; padding-bottom: 4px; }
.price .check { margin-bottom: 18px; flex: 1; }
.price .btn { margin-top: auto; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testis { grid-template-columns: 1fr; } }

.testi {
  margin: 0;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.testi--1 { transform: rotate(-0.7deg); background: var(--white); }
.testi--2 { transform: rotate(0.9deg);  background: var(--yellow); }
.testi--3 { transform: rotate(-0.4deg); background: var(--pink); }
.testi blockquote {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 14px;
}
.testi figcaption { display: flex; gap: 10px; align-items: center; font-size: 13px; }
.testi figcaption span { opacity: 0.7; font-weight: 500; }
.avatar {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--blue-deep);
  border: var(--border);
  border-radius: 50%;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
}

/* ==============================
   FAQ
   ============================== */
.faq { display: grid; gap: 12px; max-width: 820px; margin-left: auto; margin-right: 0; }
.faq__item {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
}
.faq__item[open] { background: var(--blue); }
.faq__item summary {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--ink);
  color: var(--white);

  border-radius: var(--radius-sm);

  font-size: 16px;
  line-height: 1;
  font-weight: 700;

  transition: transform 200ms ease;
}

.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 10px 0 0; font-weight: 500; font-size: 14px; }

/* ==============================
   CTA
   ============================== */
.cta {
  max-width: 1200px;
  margin: 60px auto 70px;
  padding: 0 24px;
}
.cta__box {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 50px 32px;
  text-align: center;
  box-shadow: 8px 8px 0 0 var(--blue-deep);
  overflow: hidden;
}
.cta__box h2 { font-size: clamp(24px, 4vw, 42px); margin-bottom: 12px; }
.cta__box p { font-size: 15px; opacity: 0.85; margin: 0 auto 22px; max-width: 520px; }
.cta__btns { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.shape--star {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 50px;
  color: var(--yellow);
  transform: rotate(18deg);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  border-top: var(--border);
  background: var(--white);
  padding: 44px 0 22px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 36px;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand p { max-width: 320px; margin-top: 10px; font-weight: 500; font-size: 13.5px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.footer__cols h5 { font-family: 'Archivo Black', sans-serif; margin-bottom: 10px; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; }
.footer__cols a { display: block; padding: 3px 0; font-weight: 600; font-size: 13.5px; }
.footer__cols a:hover { text-decoration: underline; }

.footer__bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 18px 24px 0;
  border-top: var(--border-thin);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0.8;
}

/* ==============================
   Reduced motion
   ============================== */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .btn, .service { transition: none; }
}
