/* ============================================
   HALO MUMU — Full Redesign (Headspace-inspired)
   Font: Plus Jakarta Sans | Colors: Warm, vibrant, clean
   ============================================ */

:root {
  /* Core palette */
  --white:        #FFFFFF;
  --cream:        #FFFBF5;
  --yellow:       #FFD166;
  --yellow-hover: #EFBD4A;
  --yellow-light: #FFF5D6;
  --orange:       #F4845F;
  --orange-light: #FEEAE3;
  --green:        #2D6A4F;
  --green-hover:  #1B4332;
  --green-light:  #D0EDD9;
  --teal:         #06B6A0;
  --teal-light:   #CCFAF4;
  --purple-light: #EDE9FE;
  --purple:       #7C3AED;
  --navy:         #1A2E45;
  --text:         #2D2D3A;
  --text-light:   #595970;
  --text-muted:   #9090A8;
  --border:       #EBEBF0;

  /* Radii */
  --r-sm:   12px;
  --r:      20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  /* Shadows */
  --s-sm:  0 2px 10px rgba(0,0,0,.05);
  --s:     0 6px 28px rgba(0,0,0,.08);
  --s-lg:  0 16px 56px rgba(0,0,0,.11);

  /* Motion */
  --ease:  0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
}

/* ── Type ── */
h1, h2, h3, h4 {
  font-family: "Google Sans Flex", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  line-height: 1.18;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); }

p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.75;
}

/* ── Pill tag ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--green-light);
  color: var(--green-hover);
}
.chip--yellow { background: var(--yellow-light); color: #8B5E00; }
.chip--orange { background: var(--orange-light); color: #9D3B1A; }
.chip--teal   { background: var(--teal-light);   color: #064E45; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  letter-spacing: .2px;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 4px 18px rgba(255,209,102,.45);
}
.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255,209,102,.55);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(45,106,79,.3);
}
.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(45,106,79,.4);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(244,132,95,.35);
}
.btn-orange:hover {
  background: #e0703c;
  transform: translateY(-2px) scale(1.02);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.btn-sm  { padding: 11px 24px; font-size: 0.88rem; }
.btn-lg  { padding: 18px 44px; font-size: 1.1rem;  }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
}
.navbar__logo span { color: var(--orange); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--ease);
}
.navbar__links a:hover { color: var(--green); }
.navbar__cta { margin-left: 4px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: all var(--ease);
}

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: all var(--ease);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
  .navbar__hamburger { display: flex; }
  .navbar__links {
    position: fixed;
    top: 0; right: -100%;
    width: 76%; max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right var(--ease);
    box-shadow: -4px 0 30px rgba(0,0,0,.1);
  }
  .navbar__links.active { right: 0; }
  .navbar__links a { font-size: 1.1rem; }
  .navbar__cta { margin-left: 0; margin-top: 8px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: auto;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero__shape-1,
.hero__shape-2,
.hero__shape-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__shape-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,209,102,.28) 0%, transparent 70%);
  top: -140px; right: -100px;
}
.hero__shape-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(45,106,79,.12) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.hero__shape-3 {
  width: 200px; height: 200px;
  background: rgba(244,132,95,.07);
  border-radius: 40% 60% 55% 45%;
  top: 35%; left: 48%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 560px; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero__headline {
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero__headline em {
  font-style: italic;
  color: var(--orange);
}

.hero__typewriter-wrap {
  min-height: 60px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.hero__typewriter {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: 700;
  color: var(--orange);
  font-style: italic;
  line-height: 1.4;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.cursor {
  display: inline-block;
  width: 2.5px;
  height: .9em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink .75s infinite;
}
@keyframes blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
}
.hero__avatars {
  display: flex;
}
.hero__avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2.5px solid var(--white);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.hero__avatars span:first-child { margin-left: 0; }

/* ── Hero Visual (foto Mumu besar + phone overlay) ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phone-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,102,.28) 0%, transparent 65%);
  z-index: 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Mumu photo card — main large element */
.hero__mumu-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--s-lg);
  background: var(--green-light);
}
.hero__mumu-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.hero__mumu-card:hover .hero__mumu-img {
  transform: scale(1.04);
}
.hero__mumu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,46,69,.70) 0%,
    rgba(26,46,69,.05) 45%,
    transparent 65%
  );
}
.hero__mumu-label {
  position: absolute;
  bottom: 20px; left: 18px; right: 18px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.25);
  text-align: center;
  letter-spacing: .2px;
}

/* Phone mockup — overlay di kanan bawah foto */
.hero__phone-float {
  position: absolute;
  bottom: -20px;
  right: -36px;
  z-index: 3;
  animation: phoneFloat 5.5s ease-in-out infinite;
}
.hero__phone-float .phone-mockup {
  width: 200px;
  animation: none;
}
.hero__phone-float .phone-screen {
  min-height: 340px;
  max-height: 340px;
}

/* ── Font lebih kecil di dalam phone overlay ── */
.hero__phone-float .wa-head {
  padding: 8px 12px;
}
.hero__phone-float .wa-head__ava {
  width: 28px; height: 28px;
  font-size: .85rem;
}
.hero__phone-float .wa-head__name {
  font-size: .72rem;
}
.hero__phone-float .wa-head__status {
  font-size: .58rem;
}
.hero__phone-float .wa-chat {
  padding: 8px;
  gap: 5px;
}
.hero__phone-float .wa-date {
  font-size: .55rem;
  padding: 2px 8px;
}
.hero__phone-float .wa-msg {
  font-size: .66rem;
  padding: 5px 9px;
  border-radius: 10px;
  max-width: 88%;
}
.hero__phone-float .wa-msg__time {
  font-size: .5rem;
}
.hero__phone-float .wa-bar {
  padding: 5px 8px;
  gap: 6px;
}
.hero__phone-float .wa-bar__field {
  font-size: .62rem;
  padding: 5px 10px;
}
.hero__phone-float .wa-bar__send {
  width: 26px; height: 26px;
  font-size: .75rem;
}

/* Base phone mockup (used inside .hero__phone-float) */
.phone-mockup {
  width: 290px;
  background: #18181b;
  border-radius: 46px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.22),
    inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
  animation: phoneFloat 5.5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(-1deg);  }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

.phone-notch {
  width: 96px; height: 24px;
  background: #18181b;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch::after {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #2a2a2e;
  box-shadow: inset 0 0 0 3px #3a3a3e;
}

.phone-screen {
  background: #ECE5DD;
  border-radius: 34px;
  overflow: hidden;
  min-height: 450px;
  max-height: 450px;
  display: flex;
  flex-direction: column;
}

/* WA Header */
.wa-head {
  background: #075E54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wa-head__ava {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B7E4C7, #2D6A4F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wa-head__name {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.wa-head__status {
  font-size: .68rem;
  color: rgba(255,255,255,.75);
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Chat */
.wa-chat {
  flex: 1;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  background: #E5DDD5;
}
.wa-chat::-webkit-scrollbar { display: none; }

.wa-date {
  text-align: center;
  font-size: .64rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-light);
  background: rgba(255,255,255,.65);
  padding: 2px 10px;
  border-radius: 8px;
  align-self: center;
}

.wa-msg {
  max-width: 84%;
  padding: 7px 11px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .79rem;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transition: opacity .3s ease, transform .3s ease;
}
.wa-msg.visible { opacity: 1; transform: translateY(0) scale(1); }
.wa-msg--in {
  background: #fff;
  color: #222;
  border-top-left-radius: 3px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,.09);
}
.wa-msg--out {
  background: #DCF8C6;
  color: #222;
  border-top-right-radius: 3px;
  align-self: flex-end;
  box-shadow: 0 1px 2px rgba(0,0,0,.09);
}
.wa-msg__time {
  font-size: .6rem;
  color: #9E9E9E;
  margin-top: 2px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.wa-msg--out .wa-msg__time::after {
  content: '✓✓';
  color: #53BDEB;
  font-size: .68rem;
}

.wa-typing {
  align-self: flex-start;
  background: #fff;
  border-radius: 12px;
  border-top-left-radius: 3px;
  padding: 9px 13px;
  display: none;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.09);
}
.wa-typing.visible { display: flex; }
.wa-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #9E9E9E;
  animation: tdot 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes tdot {
  0%,60%,100% { transform: translateY(0); opacity: .4; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

.wa-bar {
  background: #F0F0F0;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.wa-bar__field {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 7px 14px;
  font-size: .75rem;
  color: #aaa;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.wa-bar__send {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #075E54;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

/* Floating badges */
.phone-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 10px 16px;
  box-shadow: var(--s);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  z-index: 2;
  white-space: nowrap;
}
.badge-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.badge-icon--g  { background: var(--green-light); }
.badge-icon--y  { background: var(--yellow-light); }
.badge-icon--o  { background: var(--orange-light); }

.phone-badge--a { top: 28px;   left: -50px;   animation: bfloat 4s   ease-in-out infinite; }
.phone-badge--b { top: 50%;    right: -50px;  transform: translateY(-50%); animation: bfloat 4.5s ease-in-out .4s infinite; }
.phone-badge--c { bottom: 28px; left: -50px;  animation: bfloat 5s   ease-in-out .8s infinite; }

@keyframes bfloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

@media (max-width: 1024px) {
  .phone-badge--a { left: -12px; }
  .phone-badge--b { right: -12px; }
  .phone-badge--c { right: -12px; }
}
@media (max-width: 768px) {
  /* ── Hero ── */
  .hero { padding: 60px 0 28px; }
  .hero .container { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__chips { justify-content: center; }
  .hero__ctas  { justify-content: center; }
  .hero__trust { justify-content: center; }

  /* Fix visual ordering — grid-row works where 'order' doesn't in Grid */
  .hero__visual  { grid-row: 1; }
  .hero__content { grid-row: 2; }

  /* Hero visual: side-by-side layout (photo left, phone right, no overlap) */
  .hero__visual {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
  }

  /* Photo card — fixed width on left */
  .hero__mumu-card {
    flex: 0 0 auto;
    width: 165px;
    max-width: none;
    aspect-ratio: 4/5;
  }
  .hero__mumu-label { display: none; } /* hide label — too cramped on mobile */

  /* Phone — in normal flow on the right, NOT absolute */
  .hero__phone-float {
    flex: 0 0 auto;
    position: relative;
    bottom: auto;
    right: auto;
    animation: phoneFloat 5.5s ease-in-out infinite;
  }
  .hero__phone-float .phone-mockup {
    width: 152px;
    animation: none;
  }
  .hero__phone-float .phone-screen {
    min-height: 262px;
    max-height: 262px;
  }

  /* Badges — only show top-left one, keep it subtle */
  .phone-badge { font-size: .68rem; padding: 6px 10px; }
  .phone-badge--a { position: absolute; left: -4px; top: 12px; }
  .phone-badge--b { display: none; }
  .phone-badge--c { display: none; }

  /* ── Section padding ── */
  .feels, .why, .how { padding: 52px 0; }
  .benefits { padding: 52px 0; }
  .founder  { padding: 52px 0; }

  /* ── Founder — stack single column ── */
  .founder .container { grid-template-columns: 1fr; gap: 40px; }
  .founder__badge { right: 8px; bottom: -14px; }
}

/* ============================================
   CREDIBILITY BAR
   ============================================ */
.credibility {
  background: var(--cream);
  padding: 0 0 60px;
}
.credibility__wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--s);
  padding: 36px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.cred-item { position: relative; padding: 8px 16px; }
.cred-item + .cred-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.cred-num {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.cred-lbl {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .credibility__wrap {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 16px;
  }
  .cred-item + .cred-item::before { display: none; }
}

/* ============================================
   FEELS LIKE — "Pernah Merasa?" grid
   ============================================ */
.feels {
  padding: 60px 0;
  background: var(--white);
}
.feels .section-header { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.feels .section-header .chip { margin-bottom: 14px; }
.feels .section-header h2 { margin-bottom: 12px; }

.feels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feel-card {
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all var(--ease);
  cursor: default;
}
.feel-card:hover { transform: translateY(-4px); box-shadow: var(--s-lg); }

.feel-card:nth-child(1) { background: var(--yellow-light); }
.feel-card:nth-child(2) { background: var(--orange-light); }
.feel-card:nth-child(3) { background: var(--green-light);  }
.feel-card:nth-child(4) { background: var(--teal-light);   }
.feel-card:nth-child(5) { background: var(--green-light);  }
.feel-card:nth-child(6) { background: var(--yellow-light); }

.feel-card__emoji { font-size: 2rem; margin-bottom: 12px; }
.feel-card h3     { font-size: 1rem; margin-bottom: 8px; }
.feel-card p      { font-size: .88rem; line-height: 1.65; }

@media (max-width: 768px) {
  .feels__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .feels__grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 60px 0;
  background: var(--cream);
}
.how .section-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.how .section-header .chip { margin-bottom: 14px; }
.how .section-header h2   { margin-bottom: 12px; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--s-sm);
  transition: all var(--ease);
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--s-lg); }

.how-step__num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.how-step__icon {
  width: 64px; height: 64px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.how-step:nth-child(1) .how-step__icon { background: var(--yellow-light); }
.how-step:nth-child(2) .how-step__icon { background: var(--orange-light); }
.how-step:nth-child(3) .how-step__icon { background: var(--green-light);  }

.how-step h3 { margin-bottom: 10px; }

/* Arrow connector */
.how__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  position: relative;
  top: -10px;
}

@media (max-width: 768px) {
  .how__steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   FOUNDER
   ============================================ */
.founder {
  padding: 60px 0;
  background: var(--white);
}
.founder .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.founder__img-wrap { position: relative; }
.founder__img-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-lg);
  aspect-ratio: 4/5;
}
.founder__img-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

.founder__badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--yellow);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--s);
  text-align: center;
}
.founder__badge .num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.founder__badge .lbl {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 2px;
}

.founder__content .chip { margin-bottom: 16px; }
.founder__content h2 { margin-bottom: 20px; }
.founder__content p  { margin-bottom: 14px; }

.founder__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 20px 0 28px;
}
.founder__chip {
  font-size: .8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--cream);
  color: var(--green-hover);
  border: 1.5px solid var(--green-light);
}

@media (max-width: 768px) {
  .founder .container { grid-template-columns: 1fr; gap: 48px; }
  .founder__badge { right: 8px; bottom: -14px; }
}

/* ============================================
   WHY HALO MUMU
   ============================================ */
.why {
  padding: 80px 0;
  background: var(--white);
}

.why .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.why .section-header .chip {
  margin-bottom: 14px;
}

.why__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--s-sm);
  transition: all var(--ease);
  text-align: center;
}
.why-step:hover { transform: translateY(-6px); box-shadow: var(--s-lg); }

.why-step__icon {
  width: 64px; height: 64px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.why-step:nth-child(1) .why-step__icon { background: var(--yellow-light); }
.why-step:nth-child(2) .why-step__icon { background: var(--orange-light); }
.why-step:nth-child(3) .why-step__icon { background: var(--green-light);  }

.why-step h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.why-step p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .why {
    padding: 60px 0;
  }
  .why__steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .why-step {
    padding: 32px 24px;
  }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
  padding: 100px 0;
  background: var(--white);
}

.benefits__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.benefits__header .chip { margin-bottom: 14px; }
.benefits__header h2   { margin-bottom: 0; }

/*
  Bento grid — 6 cards, 3 columns:
  Row 1: [===Card1 wide (span 2)===] [Card2]
  Row 2: [Card3] [Card4] [Card5]
  Row 3: [========Card6 full (span 3)========]
*/
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card base */
.ben-card {
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: default;
  overflow: hidden;
}
.ben-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-lg);
}

/* Wide: spans 2 cols, icon + text side by side */
.ben-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  padding: 36px 32px;
}

/* Full: spans all 3 cols */
.ben-card--full {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 40px 44px;
}

/* Color variants */
.ben-card--green  { background: var(--green-light);  }
.ben-card--yellow { background: var(--yellow-light); }
.ben-card--orange { background: var(--orange-light); }
.ben-card--teal   { background: var(--teal-light);   }
.ben-card--purple { background: var(--purple-light); }
.ben-card--navy   { background: var(--navy); }
.ben-card--navy h3 { color: var(--white); }
.ben-card--navy p  { color: rgba(255,255,255,.7); }

.ben-card__emoji {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--r);
  background: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease);
}
.ben-card--navy .ben-card__emoji { background: rgba(255,255,255,.1); }
.ben-card:hover .ben-card__emoji { transform: scale(1.12) rotate(-5deg); }

.ben-card__body { flex: 1; }
.ben-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--text);
}
.ben-card__body p {
  font-size: .88rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-light);
}

/* Full-width card: larger text */
.ben-card--full .ben-card__body h3 {
  font-size: 1.2rem;
  color: var(--white);
}
.ben-card--full .ben-card__body p {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
}
.ben-card--full .ben-card__emoji {
  width: 68px; height: 68px;
  font-size: 2.6rem;
}

@media (max-width: 768px) {
  .benefits__grid { grid-template-columns: 1fr; gap: 14px; }
  .ben-card--wide,
  .ben-card--full {
    grid-column: span 1;
    flex-direction: column;
  }
}

/* ============================================
   INFAQ — Simplified, standalone
   ============================================ */
.infaq {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.infaq::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,102,.07) 0%, transparent 70%);
  top: -160px; right: -80px;
  pointer-events: none;
}
.infaq::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,.14) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.infaq__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  position: relative; z-index: 1;
}
.infaq__header .chip { margin-bottom: 14px; }
.infaq__header h2   { color: var(--white); margin-bottom: 12px; }
.infaq__header p    { color: rgba(255,255,255,.6); font-size: 1rem; }

/* Centered box */
.infaq__box {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 44px 44px;
  position: relative; z-index: 1;
}

.infaq__label {
  font-size: .75rem;
  font-weight: 800;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

.infaq__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.amount-btn {
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: all var(--ease);
}
.amount-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.amount-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--text);
  font-weight: 900;
  box-shadow: 0 4px 18px rgba(255,209,102,.4);
}

.infaq__custom-wrap { margin-bottom: 32px; }
.infaq__custom-label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
  display: block;
}
.infaq__custom-input-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  overflow: hidden;
  transition: border-color var(--ease);
}
.infaq__custom-input-row:focus-within { border-color: var(--yellow); }
.infaq__currency {
  padding: 0 14px;
  font-weight: 800;
  font-size: .88rem;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}
.infaq__custom-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 14px 13px 0;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
}
.infaq__custom-input::placeholder { color: rgba(255,255,255,.25); }

.infaq__action {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.infaq__action .btn { width: 100%; }
.infaq__note {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 600px) {
  .infaq__box { padding: 28px 22px; }
  .amount-btn { font-size: .83rem; padding: 10px 16px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 60px 0;
  background: var(--cream);
}
.faq .section-header { text-align: center; max-width: 520px; margin: 0 auto 48px; }
.faq .section-header .chip { margin-bottom: 14px; }
.faq .section-header h2 { margin-bottom: 12px; }

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-sm);
  transition: box-shadow var(--ease);
}
/* Gunakan class faq--open (bukan active) agar tidak bentrok dengan reveal.active */
.faq__item.faq--open {
  box-shadow: var(--s);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--ease);
}
.faq__q:hover { color: var(--green); }

.faq__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: all var(--ease);
}
.faq__item.faq--open .faq__icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.faq--open .faq__a {
  max-height: 500px;
}
.faq__a-inner {
  padding: 4px 24px 22px;
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 500;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 60px 0;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -180px; right: -100px;
}
.cta-final::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,209,102,.08);
  bottom: -100px; left: -60px;
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-final p {
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1.08rem;
  font-weight: 500;
  position: relative; z-index: 1;
}
.cta-final .btn { position: relative; z-index: 1; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 28px;
  background: var(--navy);
  text-align: center;
}
.footer__brand {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__brand span { color: var(--yellow); }
.footer p { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer__copy {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .77rem;
  color: rgba(255,255,255,.25);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Section header utility */
.section-header { margin-bottom: 52px; }
.section-header .chip { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 12px; }

/* ============================================
   INFAQ MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 35, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.modal-overlay.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 44px 44px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  transform: translateY(28px) scale(.97);
  transition: transform 0.35s var(--ease);
  overflow: hidden;
}
.modal-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,102,.07) 0%, transparent 70%);
  top: -160px; right: -80px;
  pointer-events: none;
}
.modal-overlay.modal--open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.7);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  z-index: 1;
}
.modal-close:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.modal-header .chip { margin-bottom: 14px; }
.modal-header h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.modal-header p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* Reuse existing .infaq__* styles inside modal */
.modal-box .infaq__label { position: relative; z-index: 1; }
.modal-box .infaq__amounts { position: relative; z-index: 1; }
.modal-box .infaq__custom-wrap { position: relative; z-index: 1; }
.modal-box .infaq__action { position: relative; z-index: 1; }

@media (max-width: 600px) {
  .modal-box { padding: 36px 22px 28px; }
}
