/* =====================================================
   MOMENLINK – HOMEPAGE FINAL (REVISED & CLEAN)
   ===================================================== */

:root{
  /* === BRAND PRIMARY === */
  --sage:#9FBC7A;        /* Primary brand color (logo & accent utama) */
  --sage-dark:#7E9C5A;   /* Accent / CTA / hover */
  --sage-darker:#5F7348;

  /* === BACKGROUND === */
  --bg:#FAFAF8;          /* Main background (off white) */
  --white:#FFFFFF;      /* Pure white (card, surface) */

  /* === TEXT === */
  --text:#2E2F2F;       /* Primary text (heading, navbar text) */
  --text-soft:#6B6F6A;  /* Secondary text (paragraph, description) */

  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:14px;

  --shadow-soft:0 10px 28px rgba(0,0,0,.06);
  --shadow-hover:0 16px 40px rgba(0,0,0,.14);

  --transition:all .25s ease;
}


/* ================= RESET ================= */
*{
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  
  font-family:'Inter', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--white);
  box-shadow:var(--shadow-soft);
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  height:46px;
}

.nav-desktop{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-desktop a{
  text-decoration:none;
  color:var(--text);
  font-size:16px;
  font-weight:600;
  position:relative;
}

.nav-desktop a::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:var(--sage);
  transition:var(--transition);
}

.nav-desktop a:hover{
  color:var(--sage-dark);
}

.nav-desktop a:hover::after{
  width:100%;
}

.nav-login{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 16px;
  border-radius:999px;

  background:var(--sage-dark);
  color:#fff !important;
}

.nav-login svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  padding:70px 20px 120px;
  color:#fff;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.15),
      rgba(0,0,0,.35)
    ),
    url('/assets/image/bg-home.jpeg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero{
  position:relative;
}

.hero-container{
  max-width:720px;
  margin:auto;
  text-align:center;
}

.hero h1{
  font-size:clamp(28px,4.5vw,36px);
  line-height:1.25;
  margin-bottom:14px;
  letter-spacing:-.4px;
}

.hero-desc{
  font-size:15px;
  color:rgba(255,255,255,.85);
  margin-bottom:30px;
}

/* ================= BUTTON ================= */
.btn{
  padding:12px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition:var(--transition);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* PRIMARY (UTAMA) */
.btn-primary{
  background:var(--sage-dark);
  color:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.btn-primary:hover{
  background:#6F8B55;
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
}

/* OUTLINE */
.btn-outline{
  border:1.5px solid rgba(255,255,255,.8);
  color:#fff;
}

.btn-outline:hover{
  background:rgba(255,255,255,.15);
  transform:translateY(-2px);
}

/* DARK */
.btn-dark{
  background:#2f3a2f;
  color:#fff;
}

.btn-dark:hover{
  background:#1f271f;
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
}

.btn:active{
  transform:translateY(0);
  box-shadow:none;
}

/* ================= SECTION ================= */
.section{
  padding:70px 20px;
}

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

.container{
  max-width:1100px;
  margin:auto;
}

h2{
  text-align:center;
  font-size:24px;
  margin-bottom:36px;
  letter-spacing:-.3px;
}

.center-desc{
  text-align:center;
  color:var(--text-soft);
  font-size:14px;
  max-width:560px;
  margin:0 auto 36px;
}

/* ================= MOCKUP SECTION ================= */

.mockup-section{
  background:linear-gradient(180deg,#f6f8f5,#ffffff);
  padding:60px 20px 80px;
}

.mockup-container{
  max-width:420px;
  margin:0 auto;
  text-align:center;
}

.mockup-phone{
  position:relative;
  margin:0 auto 22px;
}

.mockup-phone img{
  width:100%;
  max-width:340px;
}

/* caption */
.mockup-caption{
  font-size:14px;
  color:var(--text-soft);
  max-width:320px;
  margin:0 auto;
}

/* mobile tweak */
@media (max-width:768px){
  .mockup-section{
    padding:50px 18px 70px;
  }

  .mockup-phone img{
    max-width:300px;
  }
}

/* ===============================
   STATS SECTION – Momenlink (FINAL)
================================ */

.stats-section{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.65),
    var(--bg)
  );
  padding:56px 20px;
}

/* CONTAINER */
.stats-container{
  max-width:880px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.stat-wide{
  grid-column:1 / -1;
}

/* CARD */
.stat-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:20px 18px;
  text-align:center;
  box-shadow:var(--shadow-soft);
  transition:transform .25s ease, box-shadow .25s ease;
}

.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}

/* LABEL */
.stat-label{
  display:block;
  font-size:15px;
  letter-spacing:.2px;
  color:var(--text-soft);
  margin-bottom:10px;
}

/* NUMBER */
.stat-number{
  font-size:24px;
  font-weight:600;
  letter-spacing:-.2px;
  color:var(--text);
  transition:color .25s ease;
}

/* HOVER NUMBER COLOR */
.stat-card:hover .stat-number{
  color:var(--sage-darker);
}

/* DIVIDER */
.stats-divider{
  width:100px;
  height:3px;
  background:linear-gradient(
    to right,
    transparent,
    var(--sage),
    transparent
  );
  border-radius:3px;
  margin:28px auto 0;
  opacity:.9;
}

/* ================= MOBILE ================= */
@media(max-width:640px){
  .stats-container{
    gap:18px;
  }

  .stat-label{
    font-size:13px;
  }

  .stat-number{
    font-size:22px;
  }
}



/* ================= FEATURES (POLISHED) ================= */

.features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

/* Tablet */
@media (max-width: 900px){
  .features{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media (max-width: 520px){
  .features{
    grid-template-columns:1fr;
  }
}

.feature{
  background:#fff;
  padding:20px 18px;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);

  display:flex;
  align-items:flex-start;
  gap:14px;

  transition:all .25s ease;
}

/* ICON WRAPPER */
.feature-icon{
  width:42px;
  height:42px;
  border-radius:14px;

  background:rgba(159,188,122,.18);
  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

/* SVG */
.feature-icon svg{
  width:20px;
  height:20px;
  stroke:var(--sage-dark);
  transition:transform .25s ease;
  stroke-width:1.8;
  fill:none;
}

/* TEXT */
.feature-text{
  font-size:14px;
  line-height:1.45;
  color:var(--text);
}

/* HOVER (TENANG & DEWASA) */
.feature:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(0,0,0,.12);
}

.feature:hover .feature-icon{
  background:#e9ede6;
  transform:scale(1.08);
}

.feature.is-highlight{
  border:1.5px solid rgba(159,188,122,.35);
  background:#fdfefb;
}

/* ================= CARA KERJA (FINAL) ================= */

.how-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}

/* LEFT */
.how-steps h2{
  text-align:left;
  margin-bottom:28px;
}

.how-desc{
  margin-top:26px;
  text-align:left;
}

/* STEP */
.step{
  display:flex;
  align-items:center;
  gap:16px;

  background:#fff;
  padding:18px 20px;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:pointer;

  margin-bottom:16px;
}

.step:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(0,0,0,.12);
}

.step.is-primary{
  border:1.5px solid rgba(159,188,122,.35);
  background:#fdfefb;
}

/* ANGKA */
.step-number{
  width:42px;
  height:42px;
  border-radius:14px;

  background:#2f3a2f;
  color:#fff;

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

  font-size:16px;
  font-weight:700;
  flex-shrink:0;
  
  transition:transform .25s ease;
}

.step:hover .step-number{
  transform:scale(1.05);
}

/* TEXT */
.step-text{
  font-size:14px;
  color:var(--text);
  line-height:1.45;
}

/* RIGHT VISUAL */
.how-visual{
  position:relative;
  display:flex;
  justify-content:center;
}

/* CIRCLE LINE (BACKGROUND ACCENT) */
.circle-line{
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;

  border:2px solid rgba(156,175,136,.35);
  box-shadow:0 0 0 12px rgba(156,175,136,.08);

  z-index:0;
  transform:translate(20px,-10px);
}

/* IMAGE */
.how-visual img{
  width:100%;
  max-width:320px;
  position:relative;
  z-index:1;
}
@media (max-width:768px){

  .how-layout{
    grid-template-columns:1fr;
    gap:32px;
  }

  /* VISUAL DI ATAS */
  .how-visual{
    order:-1;                 /* ⬅️ KUNCI UTAMA */
    display:flex;
    justify-content:center;
  }

  /* TEXT DI BAWAH */
  .how-steps h2,
  .how-desc{
    text-align:center;
  }

  .step{
    justify-content:flex-start;
  }

  /* CIRCLE LINE MOBILE */
  .circle-line{
    width:260px;
    height:260px;
    transform:translate(0,-6px);
  }

  .how-visual img{
    max-width:240px;
  }
}


/* ================= TEMA ================= */

.theme-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  margin-top:36px;
}

/* CARD */
.theme-card{
  background:#fff;
  border-radius:20px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  overflow:hidden;

  transition:all .25s ease;
}

/* IMAGE */
.theme-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

/* INFO */
.theme-info{
  padding:16px 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.theme-info h4{
  margin:0;
  font-size:15px;
  font-weight:600;
  color:var(--text);
}

.theme-card .btn-primary{
  background:var(--sage-darker);
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.theme-card .btn-primary:hover{
  background:#556941; /* sedikit lebih gelap saat hover */
}

/* BUTTON SMALL */
.btn-sm{
  padding:6px 14px;
  font-size:12px;
}


/* CTA */
.theme-cta{
  text-align:center;
  margin-top:46px;
}

/* ================= RESPONSIVE ================= */
@media (max-width:768px){

  .theme-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .theme-card img{
    aspect-ratio:1 / 1;
  }
}


/* ================= PRICING ================= */

.pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:36px;
}

/* CARD */
.price-card{
  background:var(--white);
  padding:34px 28px;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  text-align:center;
  position:relative;   /* ⬅️ PENTING */

  transition:transform .25s ease, box-shadow .25s ease;
}

.price-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}

/* HIGHLIGHT (PREMIUM) */
.price-card.highlight{
  border:2px solid var(--sage);
  background:linear-gradient(180deg,#ffffff,#f4f6f3);
  transform:scale(1.04);
}

/* BADGE */
.badge-best{
  position:absolute;
  top:-12px;
  right:16px;               /* agak masuk ke kiri */
  
  background:var(--sage-dark);
  color:#fff;
  font-size:11px;
  font-weight:600;
  padding:6px 14px;
  border-radius:999px;
  box-shadow:0 4px 12px rgba(0,0,0,.12);
}

/* NAMA PAKET */
.price-card h4{
  font-size:22px;
  font-weight:700;
  margin-bottom:8px;
  letter-spacing:-.3px;
  color:var(--text);
}

/* HARGA */
.price{
  font-size:28px;
  font-weight:700;
  margin:14px 0 22px;
  color:var(--text);
}

/* HARGA CORET */
.price-old{
  font-size:15px;
  color:#9aa0a6;            /* abu-abu soft */
  text-decoration:line-through;
  margin:6px 0 -6px;       /* rapetin ke harga utama */
}

/* WRAPPER FITUR */
.price-features{
  display:flex;
  justify-content:center;
  margin-bottom:26px;
}

/* LIST FITUR */
.list-check{
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  max-width:260px;
}

.list-check li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
  line-height:1.6;
  text-align:left;
}

/* CHECK ICON (SVG INLINE VIA MASK) */
.list-check li::before{
  content:'';
  width:14px;
  height:14px;
  background:var(--sage);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 12-12-1.4-1.4z'/></svg>") no-repeat center;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 12-12-1.4-1.4z'/></svg>") no-repeat center;
  flex-shrink:0;
  margin-top:4px;
}

/* BUTTON INSIDE CARD */
.price-card .btn{
  width:100%;
  justify-content:center;
  font-weight:600;
}

/* ================= CTA AFTER ================= */

.cta-after{
  margin-top:64px;
  text-align:center;
  background:linear-gradient(180deg,#ffffff,#f6f8f5);
  padding:48px 26px;
  border-radius:var(--radius-xl);
}

.cta-after h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:12px;
  color:var(--text);
}

.cta-after .center-desc{
  font-size:14px;
  color:var(--text-soft);
  margin-bottom:22px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .pricing{
    grid-template-columns:repeat(2,1fr);
  }

  .price-card.highlight{
    transform:none;
  }
}

@media (max-width: 560px){
  .pricing{
    grid-template-columns:1fr;
  }

  .price-card{
    padding:30px 22px;
  }

  .price{
    font-size:26px;
  }
}


/* ================= TESTIMONI ================= */

.testimonials-scroll{
  display:flex;
  gap:18px;
  margin-top:36px;
  overflow-x:auto;
  padding-bottom:10px;
  scroll-snap-type:x mandatory;
}

/* CARD */
.testi-card{
  min-width:260px;
  background:#fff;
  padding:20px 18px;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  scroll-snap-align:start;
}

/* STARS */
.stars{
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:10px;
  color:#f5b301;          /* gold lembut, bukan kuning neon */
}

/* TEXT */
.testi-card p{
  font-size:14px;
  line-height:1.5;
  margin:0 0 14px;
  color:var(--text);
}

/* USER */
.testi-user{
  display:flex;
  align-items:center;
  gap:8px;
}

.testi-user strong{
  font-size:13px;
}

.testi-user span{
  font-size:12px;
  color:#9aa09a; /* abu lembut */
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  .testimonials-scroll{
    flex-direction:column;
    max-height:480px;      /* tampil ±3 card */
    overflow-y:auto;
    overflow-x:hidden;
  }

  .testi-card{
    min-width:100%;
  }
}

/* ================= FAQ ================= */

.faq-list{
  max-width:760px;
  margin:36px auto 0;
}

/* ITEM */
.faq-item{
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  margin-bottom:14px;
  overflow:hidden;
}

.faq-item[open]{
  background:#fdfefb;
  border:1.5px solid rgba(159,188,122,.35);
}

/* SUMMARY */
.faq-item summary{
  list-style:none;
  cursor:pointer;

  padding:18px 22px;
  font-size:15px;
  font-weight:600;
  color:var(--text);

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* remove default arrow */
.faq-item summary::-webkit-details-marker{
  display:none;
}

/* custom arrow */
.faq-item summary::after{
  content:'+';
  font-size:18px;
  color:#8a918a;
  transition:transform .25s ease;
}

/* open state */
.faq-item[open] summary::after{
  content:'–';
}

/* CONTENT */
.faq-item p{
  padding:0 22px 18px;
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:#4b4b4b;
}

/* hover halus */
.faq-item:hover{
  box-shadow:0 14px 36px rgba(0,0,0,.1);
}

/* ================= MOBILE ================= */
@media (max-width:768px){
  .faq-item summary{
    font-size:14px;
    padding:16px 18px;
  }

  .faq-item p{
    padding:0 18px 16px;
  }
}



/* ================= FOOTER ================= */

.site-footer{
  background:#1A1F1A;
  color:#eef1ec;
  padding:64px 20px 0;
  margin-top:80px;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:48px;
}

/* BRAND */
.footer-brand img{
  height:32px;
  margin-bottom:14px;
}

.footer-brand p{
  font-size:14px;
  line-height:1.6;
  color:#dfe4dc;
  max-width:360px;
}

/* MENU & CONTACT */
.footer-menu h4,
.footer-contact h4{
  font-size:14px;
  margin-bottom:14px;
  color:#ffffff;
}

.footer-menu a,
.footer-contact a{
  display:flex;
  align-items:center;
  gap:10px;

  text-decoration:none;
  font-size:14px;
  color:#dfe4dc;
  margin-bottom:10px;

  transition:all .2s ease;
}

.footer-menu a:hover,
.footer-contact a:hover{
  color:#ffffff;
}

/* ICON */
.footer-contact i{
  font-size:16px;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:14px;
  margin-top:14px;
}

.footer-social a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.12);

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

  color:#fff;
  transition:all .25s ease;
}

.footer-social a:hover{
  background:rgba(255,255,255,.22);
  transform:translateY(-2px);
}

.footer-location{
  display:block;
  margin-top:12px;
  font-size:13px;
  color:#bfc5bc;
}

/* BOTTOM */
.footer-bottom{
  margin-top:48px;
  padding:18px 20px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  font-size:13px;
  color:#d2d8cf;
}

.footer-brand p,
.footer-menu a,
.footer-contact a{
  color:#d3d7cf;
}

.footer-menu a:hover,
.footer-contact a:hover{
  color:#ffffff;
}

.footer-bottom{
  color:#bfc5bc;
  border-top:1px solid rgba(255,255,255,.08);
}


/* ================= RESPONSIVE ================= */
@media (max-width:768px){

  .footer-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .site-footer{
    padding:56px 18px 0;
  }

  .footer-brand p{
    max-width:100%;
  }
}


/* ================= MOBILE BOTTOM NAV ================= */

.bottom-nav{
  position:fixed;
  bottom:0;
  left:0;
  right:0;

  background:#ffffff;
  border-top:1px solid rgba(0,0,0,.06);

  display:none;
  justify-content:space-around;
  align-items:center;

  padding:10px 4px calc(8px + env(safe-area-inset-bottom));
  z-index:1000;
}

/* ITEM */
.bottom-nav a{
  flex:1;
  text-decoration:none;
  color:#7a7f79;

  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:4px;
  font-size:11px;
  font-weight:500;
  line-height:1;

  transition:color .2s ease, transform .15s ease;
}

/* ICON */
.bottom-nav svg{
  width:20px;
  height:20px;
  stroke:currentColor;
  stroke-width:1.8;
  fill:none;
}

/* TAP FEEDBACK */
.bottom-nav a:active{
  transform:scale(.96);
}

/* ================= MOBILE NAV ACTIVE (FINAL) ================= */

.bottom-nav a{
  position:relative;
  color:#7a7f79;
}

/* ACTIVE STATE */
.bottom-nav a.active{
  color:var(--sage-darker);
  font-weight:600;
}

/* ACTIVE ICON */
.bottom-nav a.active svg{
  stroke-width:2.2;
}


/* SHOW ONLY ON MOBILE */
@media (max-width:768px){
  .bottom-nav{
    display:flex;
  }
}



/* ===============================
   WHATSAPP FLOATING WIDGET
================================ */

.wa-widget{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

/* ===============================
   FLOATING BUTTON (WA STYLE)
================================ */
.wa-fab{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;

    /* WA GRADIENT */
    background: linear-gradient(135deg, #6BC59E, #56B28D);



    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    /* STRONG SHADOW */
    box-shadow: var(--shadow-soft),
        0 10px 28px rgba(0,0,0,.12);

    transition: all .25s ease;
}

.wa-fab i{
    font-size: 22px;
}

.wa-fab:hover{
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-soft),
        0 10px 28px rgba(0,0,0,.12);
}

/* ===============================
   POPUP CONTAINER (ROOT STYLE)
================================ */
.wa-popup{
    position: absolute;
    bottom: 82px;
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: var(--transition);
    
    box-shadow: var(--shadow-soft),
        0 10px 28px rgba(0,0,0,.12);
}

/* ACTIVE STATE */
.wa-popup.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===============================
   POPUP HEADER
================================ */
.wa-popup-header{
    background: linear-gradient(
        135deg,
        var(--sage),
        var(--sage-dark)
    );
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.wa-popup-header span{
    display: flex;
    align-items: center;
}

.wa-popup-header i{
    margin-right: 8px;
}

.wa-popup-header button{
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* ===============================
   POPUP BODY
================================ */
.wa-popup-body{
    padding: 16px;
    font-size: 14px;
    color: var(--text);
}

.wa-popup-body p{
    margin-bottom: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* ===============================
   WHATSAPP BUTTON
================================ */
.wa-popup-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.wa-popup-btn i{
    font-size: 18px;
}

.wa-popup-btn:hover{
    opacity: .9;
}

/* ===============================
   MOBILE SAFE AREA
================================ */
@media (max-width: 768px){
    .wa-widget{
        bottom: 92px; /* aman dari navbar mobile */
        right: 16px;
    }

    .wa-popup{
        bottom: 82px;
        width: 260px;
    }
}



/* ================= FIX: BUTTON GRATIS DI PRICE CARD ================= */

/* tombol outline di dalam kartu harga */
.price-card .btn-outline{
  border:1.5px solid #cfd6cc;
  color:var(--text);
  background:transparent;
}

/* hover state */
.price-card .btn-outline:hover{
  background:#f2f4f1;
  border-color:#bfc7bb;
  transform:translateY(-2px);
}


/* === ICON GLOBAL === */
svg{
  stroke:currentColor;
  stroke-width:1.8;
  fill:none;
}

/* icon di tombol */
.btn{
  gap:8px;
}

.btn svg{
  width:16px;
  height:16px;
  stroke-width:2;
}

/* icon di fitur */
.feature-icon svg{
  width:20px;
  height:20px;
}

/* ================= MOBILE ================= */
@media (max-width:768px){
  body{
    padding-bottom:70px;
  }
  
  .logo{
  height:40px;
  }
  .nav-desktop{
    display:none;
  }

  .hero{
    padding:60px 18px 130px;
  }

  .hero h1{
    font-size:28px;
  }

  .hero-desc{
    font-size:14px;
  }

  .btn{
    font-size:13px;
    padding:11px 22px;
  }

  h2{
    font-size:22px;
  }

  .section{
    padding:60px 18px;
  }

  .bottom-nav{
    display:flex;
  }
}
