/* ============================================================
   Manava Landing / Company Profile
   Dipakai hanya oleh company_profile.php (scope: body.mnv-landing)
   Palet mengikuti dist/css/manava-modern.css
   ============================================================ */

:root {
  --mnv-blue: #1fb6f2;
  --mnv-cyan: #28d2c2;
  --mnv-green: #35dc2f;
  --mnv-bg: #070b14;
  --mnv-bg-2: #0b1220;
  --mnv-ink: #e7edf7;
  --mnv-muted: #93a1b8;
  --mnv-border: rgba(148, 163, 184, .16);
  --mnv-card: rgba(148, 163, 184, .06);
  --mnv-gradient: linear-gradient(135deg, var(--mnv-blue), var(--mnv-cyan) 55%, var(--mnv-green));
  --mnv-ease: cubic-bezier(.83, 0, .17, 1);
  --mnv-ease-out: cubic-bezier(.16, 1, .3, 1);
  --mnv-nav-h: 76px;
}

body.mnv-landing,
body.mnv-landing * ,
body.mnv-landing *::before,
body.mnv-landing *::after {
  box-sizing: border-box;
}

body.mnv-landing {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Source Sans Pro', sans-serif;
  background: var(--mnv-bg);
  color: var(--mnv-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.mnv-landing.mnv-fullpage {
  overflow: hidden;
  height: 100vh;
  height: 100svh;
}

body.mnv-landing ::selection {
  background: rgba(31, 182, 242, .35);
  color: #fff;
}

/* ============ SCROLLBAR ============ */
body.mnv-landing::-webkit-scrollbar { width: 8px; }
body.mnv-landing::-webkit-scrollbar-track { background: transparent; }
body.mnv-landing::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(31, 182, 242, .6), rgba(53, 220, 47, .5));
  border-radius: 999px;
}

/* ============ PRELOADER ============ */
.mnv-preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--mnv-bg);
  transition: opacity .5s ease, visibility .5s ease;
}

.mnv-preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.mnv-preloader-word {
  display: flex;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.mnv-preloader-word span {
  display: inline-block;
  animation: mnvLetterFloat 1.1s var(--mnv-ease) infinite alternate;
  animation-delay: calc(var(--d, 0) * 1ms);
}

.mnv-preloader-word span:nth-child(1) { --d: 0; }
.mnv-preloader-word span:nth-child(2) { --d: 70; }
.mnv-preloader-word span:nth-child(3) { --d: 140; }
.mnv-preloader-word span:nth-child(4) { --d: 210; }
.mnv-preloader-word span:nth-child(5) { --d: 280; }
.mnv-preloader-word span:nth-child(6) { --d: 350; }

.mnv-preloader-word .c-blue { color: var(--mnv-blue); }
.mnv-preloader-word .c-cyan { color: var(--mnv-cyan); }
.mnv-preloader-word .c-green { color: var(--mnv-green); }

@keyframes mnvLetterFloat {
  from { transform: translateY(8px); opacity: .55; }
  to { transform: translateY(-8px); opacity: 1; }
}

.mnv-preloader-bar {
  width: min(280px, 60vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 184, .15);
  overflow: hidden;
}

.mnv-preloader-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--mnv-gradient);
  transition: width .25s ease;
}

.mnv-preloader-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--mnv-muted);
}

/* Curtain dipakai preloader keluar + aksen transisi section */
.mnv-curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(135deg, #0c2a3a, #0b2b28 55%, #0d2b12);
  transform: translateY(100%);
  pointer-events: none;
}

.mnv-curtain.is-reveal {
  animation: mnvCurtainReveal 1s var(--mnv-ease) both;
}

@keyframes mnvCurtainReveal {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* ============ BACKGROUND LAYERS ============ */
.mnv-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mnv-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  filter: blur(70px) saturate(1.2);
}

.mnv-aurora i {
  position: absolute;
  border-radius: 50%;
  opacity: .16;
  will-change: transform;
}

.mnv-aurora .a1 {
  width: 46vw;
  height: 46vw;
  left: -12vw;
  top: -14vw;
  background: radial-gradient(circle, var(--mnv-blue), transparent 65%);
  animation: mnvAurora1 26s ease-in-out infinite alternate;
}

.mnv-aurora .a2 {
  width: 40vw;
  height: 40vw;
  right: -10vw;
  top: 20vh;
  background: radial-gradient(circle, var(--mnv-cyan), transparent 65%);
  animation: mnvAurora2 32s ease-in-out infinite alternate;
}

.mnv-aurora .a3 {
  width: 44vw;
  height: 44vw;
  left: 24vw;
  bottom: -20vw;
  background: radial-gradient(circle, var(--mnv-green), transparent 65%);
  animation: mnvAurora3 38s ease-in-out infinite alternate;
  opacity: .1;
}

@keyframes mnvAurora1 { to { transform: translate(14vw, 10vh) scale(1.18); } }
@keyframes mnvAurora2 { to { transform: translate(-12vw, -8vh) scale(.9); } }
@keyframes mnvAurora3 { to { transform: translate(-10vw, -12vh) scale(1.12); } }

.mnv-grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
  background-image:
    linear-gradient(rgba(148, 163, 184, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
}

/* ============ "PINDAH DIMENSI" ANTAR SECTION ============ */
/* Tiap section punya rona warna latar sendiri; berpindah section
   menggeser hue aurora secara halus seperti berganti dimensi. */
.mnv-aurora { transition: filter 1.4s ease; }
body[data-mnv-dim="1"] .mnv-aurora { filter: blur(70px) saturate(1.35) hue-rotate(30deg); }
body[data-mnv-dim="2"] .mnv-aurora { filter: blur(70px) saturate(1.45) hue-rotate(-40deg); }
body[data-mnv-dim="3"] .mnv-aurora { filter: blur(70px) saturate(1.3) hue-rotate(65deg); }
body[data-mnv-dim="4"] .mnv-aurora { filter: blur(70px) saturate(1.5) hue-rotate(-75deg); }

body.mnv-warping .mnv-aurora {
  animation: mnvAuroraWarp .95s var(--mnv-ease);
}

@keyframes mnvAuroraWarp {
  0% { transform: scale(1); opacity: 1; }
  45% { transform: scale(1.28); opacity: .6; }
  100% { transform: scale(1); opacity: 1; }
}

body.mnv-warp-down .mnv-grid-bg { animation: mnvGridWarpDown .95s var(--mnv-ease); }
body.mnv-warp-up .mnv-grid-bg { animation: mnvGridWarpUp .95s var(--mnv-ease); }

@keyframes mnvGridWarpDown {
  0% { transform: none; opacity: 1; }
  45% { transform: perspective(700px) rotateX(26deg) translateY(-9vh) scale(1.2); opacity: .3; }
  100% { transform: none; opacity: 1; }
}

@keyframes mnvGridWarpUp {
  0% { transform: none; opacity: 1; }
  45% { transform: perspective(700px) rotateX(-26deg) translateY(9vh) scale(1.2); opacity: .3; }
  100% { transform: none; opacity: 1; }
}

/* ============ CURSOR ============ */
.mnv-cursor-dot,
.mnv-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  border-radius: 50%;
  pointer-events: none;
  display: none;
}

body.mnv-has-cursor .mnv-cursor-dot,
body.mnv-has-cursor .mnv-cursor-ring { display: block; }

.mnv-cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--mnv-cyan);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px rgba(40, 210, 194, .9);
}

.mnv-cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(31, 182, 242, .5);
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}

body.mnv-cursor-active .mnv-cursor-ring {
  width: 62px;
  height: 62px;
  border-color: rgba(53, 220, 47, .75);
  background: rgba(53, 220, 47, .07);
}

/* ============ PROGRESS + COUNTER + DOTS ============ */
.mnv-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: var(--mnv-gradient);
  box-shadow: 0 0 16px rgba(31, 182, 242, .6);
  transition: width .9s var(--mnv-ease);
}

.mnv-counter {
  position: fixed;
  left: 34px;
  bottom: 30px;
  z-index: 50;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--mnv-muted);
  font-size: 13px;
  letter-spacing: .2em;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.mnv-counter b {
  font-size: 26px;
  color: var(--mnv-ink);
  background: var(--mnv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mnv-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mnv-dots button {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1.5px solid rgba(148, 163, 184, .5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all .35s var(--mnv-ease-out);
}

.mnv-dots button:hover { border-color: var(--mnv-cyan); }

.mnv-dots button.is-current {
  height: 30px;
  border-radius: 999px;
  border-color: transparent;
  background: var(--mnv-gradient);
  box-shadow: 0 0 14px rgba(40, 210, 194, .55);
}

.mnv-dots button em {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--mnv-ink);
  background: rgba(11, 18, 32, .85);
  border: 1px solid var(--mnv-border);
  padding: 5px 12px;
  border-radius: 999px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: all .25s ease;
}

.mnv-dots button:hover em {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============ NAVBAR ============ */
.mnv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--mnv-nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(7, 11, 20, .82), rgba(7, 11, 20, 0));
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}

.mnv-nav.is-solid {
  background: rgba(9, 14, 26, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.mnv-nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(31, 182, 242, .25));
}

.mnv-nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.mnv-nav-links a {
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--mnv-muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .25s ease, background .25s ease;
}

.mnv-nav-links a:hover { color: var(--mnv-ink); }

.mnv-nav-links a.is-current {
  color: var(--mnv-ink);
  background: rgba(148, 163, 184, .1);
}

.mnv-nav-links a.is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--mnv-gradient);
}

.mnv-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============ BUTTONS ============ */
.mnv-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform .3s var(--mnv-ease-out), box-shadow .3s ease, background .3s ease, color .3s ease;
  will-change: transform;
}

.mnv-btn i { transition: transform .3s var(--mnv-ease-out); }
.mnv-btn:hover i { transform: translateX(4px); }

.mnv-btn-gradient {
  color: #04121c;
  background: var(--mnv-gradient);
  background-size: 160% 160%;
  box-shadow: 0 8px 28px rgba(31, 182, 242, .35), 0 2px 10px rgba(53, 220, 47, .25);
}

.mnv-btn-gradient:hover {
  background-position: 90% 50%;
  box-shadow: 0 12px 38px rgba(31, 182, 242, .5), 0 4px 14px rgba(53, 220, 47, .35);
  color: #04121c;
}

.mnv-btn-ghost {
  color: var(--mnv-ink);
  background: rgba(148, 163, 184, .08);
  border: 1px solid var(--mnv-border);
}

.mnv-btn-ghost:hover {
  border-color: rgba(40, 210, 194, .5);
  background: rgba(40, 210, 194, .08);
  color: #fff;
}

.mnv-btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

/* ============ BURGER + MOBILE MENU ============ */
.mnv-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  margin-left: auto;
  background: rgba(148, 163, 184, .08);
  border: 1px solid var(--mnv-border);
  border-radius: 12px;
  cursor: pointer;
}

.mnv-nav-burger span {
  height: 2px;
  border-radius: 2px;
  background: var(--mnv-ink);
  transition: transform .35s var(--mnv-ease), opacity .25s ease;
}

body.mnv-menu-open .mnv-nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mnv-menu-open .mnv-nav-burger span:nth-child(2) { opacity: 0; }
body.mnv-menu-open .mnv-nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mnv-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(7, 11, 20, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

body.mnv-menu-open .mnv-mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mnv-mobile-menu > a:not(.mnv-btn) {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 700;
  color: var(--mnv-ink);
  text-decoration: none;
  opacity: 0;
  transform: translateY(24px);
  transition: transform .5s var(--mnv-ease-out), opacity .5s ease, color .25s ease;
}

.mnv-mobile-menu > a:not(.mnv-btn):hover { color: var(--mnv-cyan); }

body.mnv-menu-open .mnv-mobile-menu > a:not(.mnv-btn) {
  opacity: 1;
  transform: none;
}

body.mnv-menu-open .mnv-mobile-menu > a:nth-child(1) { transition-delay: .06s; }
body.mnv-menu-open .mnv-mobile-menu > a:nth-child(2) { transition-delay: .12s; }
body.mnv-menu-open .mnv-mobile-menu > a:nth-child(3) { transition-delay: .18s; }
body.mnv-menu-open .mnv-mobile-menu > a:nth-child(4) { transition-delay: .24s; }
body.mnv-menu-open .mnv-mobile-menu > a:nth-child(5) { transition-delay: .3s; }

.mnv-mobile-menu .mnv-btn { margin-top: 18px; }

/* ============================================================
   FULLPAGE ENGINE
   ============================================================ */
.mnv-stage { position: relative; z-index: 1; }

body.mnv-fullpage .mnv-stage {
  position: fixed;
  inset: 0;
}

body.mnv-fullpage .mnv-section {
  position: absolute;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
}

body.mnv-fullpage .mnv-section.is-active {
  visibility: visible;
  z-index: 3;
}

body.mnv-fullpage .mnv-section.is-leaving {
  visibility: visible;
  z-index: 2;
}

.mnv-section-inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: calc(var(--mnv-nav-h) + 18px) clamp(18px, 4vw, 48px) 40px;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}

/* Centering vertikal yang aman untuk konten overflow: margin auto menjaga
   konten di tengah saat muat, dan tetap bisa discroll penuh saat konten
   lebih tinggi dari viewport (justify-content: center memotong bagian atas). */
.mnv-section-inner > .mnv-hero,
.mnv-section-inner > .mnv-container {
  margin-top: auto;
  margin-bottom: auto;
}

.mnv-section-inner::-webkit-scrollbar { display: none; }

/* --- Transisi "pindah halaman" --- */
body.mnv-fullpage .mnv-section.enter-down { animation: mnvEnterDown .95s var(--mnv-ease) both; }
body.mnv-fullpage .mnv-section.enter-up { animation: mnvEnterUp .95s var(--mnv-ease) both; }
body.mnv-fullpage .mnv-section.leave-down { animation: mnvLeaveDown .95s var(--mnv-ease) both; }
body.mnv-fullpage .mnv-section.leave-up { animation: mnvLeaveUp .95s var(--mnv-ease) both; }

@keyframes mnvEnterDown {
  0% { clip-path: inset(100% 0 0 0); transform: translateY(9vh); }
  100% { clip-path: inset(0 0 0 0); transform: none; }
}

@keyframes mnvEnterUp {
  0% { clip-path: inset(0 0 100% 0); transform: translateY(-9vh); }
  100% { clip-path: inset(0 0 0 0); transform: none; }
}

@keyframes mnvLeaveDown {
  0% { transform: none; opacity: 1; filter: blur(0); }
  100% { transform: translateY(-12vh) scale(.94); opacity: 0; filter: blur(10px); }
}

@keyframes mnvLeaveUp {
  0% { transform: none; opacity: 1; filter: blur(0); }
  100% { transform: translateY(12vh) scale(.94); opacity: 0; filter: blur(10px); }
}

/* --- Stagger konten dalam section --- */
body.mnv-fullpage [data-stagger] {
  opacity: 0;
  transform: translateY(42px);
}

body.mnv-fullpage .mnv-section.is-active [data-stagger] {
  animation: mnvStaggerIn .8s var(--mnv-ease-out) both;
  animation-delay: calc(var(--i, 0) * 90ms + 380ms);
}

@keyframes mnvStaggerIn {
  from { opacity: 0; transform: translateY(42px); }
  to { opacity: 1; transform: none; }
}

/* --- Mode scroll biasa (mobile / reduced motion) --- */
body.mnv-scroll .mnv-section {
  position: relative;
  min-height: 100svh;
  display: flex;
}

body.mnv-scroll .mnv-section-inner {
  height: auto;
  overflow: visible;
  width: 100%;
}

body.mnv-scroll [data-stagger] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s var(--mnv-ease-out), transform .8s var(--mnv-ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}

body.mnv-scroll .mnv-section.in-view [data-stagger] {
  opacity: 1;
  transform: none;
}

body.mnv-scroll .mnv-dots,
body.mnv-scroll .mnv-counter,
body.mnv-scroll .mnv-scroll-hint { display: none; }

/* ============ TIPOGRAFI UMUM ============ */
.mnv-container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.mnv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--mnv-border);
  background: rgba(148, 163, 184, .06);
  color: var(--mnv-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  width: fit-content;
}

.mnv-eyebrow.center { margin-left: auto; margin-right: auto; }

.mnv-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mnv-green);
  box-shadow: 0 0 0 0 rgba(53, 220, 47, .6);
  animation: mnvPulse 2s ease-out infinite;
}

@keyframes mnvPulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 220, 47, .55); }
  70% { box-shadow: 0 0 0 10px rgba(53, 220, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 220, 47, 0); }
}

.mnv-gradient-text {
  background: var(--mnv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mnv-h2 {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.mnv-h2.center { text-align: center; }

.mnv-section-head { margin-bottom: clamp(24px, 3.5vh, 44px); }

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.mnv-hero {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}

.mnv-hero-title {
  margin: 0 0 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5.8vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.mnv-rotator {
  display: inline-block;
  position: relative;
  perspective: 600px;
}

.mnv-rotator b {
  display: inline-block;
  font-weight: 700;
}

.mnv-rotator b.is-out {
  animation: mnvWordOut .4s var(--mnv-ease) both;
}

.mnv-rotator b.is-in {
  animation: mnvWordIn .5s var(--mnv-ease-out) both;
}

@keyframes mnvWordOut {
  to { opacity: 0; transform: rotateX(80deg) translateY(-16px); filter: blur(5px); }
}

@keyframes mnvWordIn {
  from { opacity: 0; transform: rotateX(-80deg) translateY(18px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

.mnv-hero-sub {
  margin: 0 0 30px;
  max-width: 540px;
  color: var(--mnv-muted);
  font-size: clamp(15.5px, 1.35vw, 18px);
  line-height: 1.75;
}

.mnv-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mnv-hero-cta.center { justify-content: center; }

.mnv-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(26px, 4vh, 46px);
}

.mnv-stat b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  background: var(--mnv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mnv-stat span:last-child {
  font-size: 13.5px;
  color: var(--mnv-muted);
}

/* --- Hero visual: orbit kartu glassmorphism --- */
.mnv-hero-visual { position: relative; }

.mnv-orbit {
  position: relative;
  height: clamp(360px, 52vh, 520px);
  transform-style: preserve-3d;
}

.mnv-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(11, 18, 32, .8);
  border: 1px solid rgba(40, 210, 194, .35);
  box-shadow: 0 0 60px rgba(31, 182, 242, .35), inset 0 0 24px rgba(40, 210, 194, .12);
  animation: mnvCoreFloat 5s ease-in-out infinite alternate;
}

.mnv-orbit-core img { width: 52px; }

@keyframes mnvCoreFloat {
  from { transform: translate(-50%, -52%); }
  to { transform: translate(-50%, -46%); }
}

.mnv-glass-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(148, 163, 184, .1), rgba(148, 163, 184, .04));
  border: 1px solid rgba(148, 163, 184, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  font-size: 13px;
  will-change: transform;
  animation: mnvCardFloat 6s ease-in-out infinite alternate;
}

.mnv-glass-card.g1 { left: 0; top: 6%; width: min(250px, 68%); animation-delay: 0s; }
.mnv-glass-card.g2 { right: 0; top: 26%; width: min(260px, 70%); animation-delay: 1.4s; }
.mnv-glass-card.g3 { left: 6%; bottom: 8%; width: min(210px, 60%); animation-delay: .8s; }
.mnv-glass-card.g4 { right: 8%; bottom: 2%; width: min(220px, 62%); animation-delay: 2s; }

@keyframes mnvCardFloat {
  from { margin-top: 0; }
  to { margin-top: -14px; }
}

.mnv-glass-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 10px;
}

.ic-blue { color: var(--mnv-blue); }
.ic-cyan { color: var(--mnv-cyan); }
.ic-green { color: var(--mnv-green); }

.mnv-glass-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  color: rgba(231, 237, 247, .85);
}

.mnv-glass-row.sm { font-size: 12.5px; color: var(--mnv-muted); }

.mnv-check {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border-radius: 5px;
  border: 1.5px solid rgba(148, 163, 184, .5);
  position: relative;
}

.mnv-check.is-done {
  border-color: transparent;
  background: var(--mnv-gradient);
}

.mnv-check.is-done::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #04121c;
  font-weight: 800;
}

.mnv-glass-bar {
  margin-top: 10px;
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, .18);
  overflow: hidden;
}

.mnv-glass-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--mnv-gradient);
  animation: mnvBarGrow 2.4s var(--mnv-ease-out) both;
}

@keyframes mnvBarGrow { from { width: 0 !important; } }

.mnv-glass-chat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mnv-ava {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  color: #04121c;
  background: var(--mnv-gradient);
}

.mnv-glass-chat b { font-size: 12.5px; display: block; }

.mnv-glass-chat p {
  margin: 3px 0 0;
  color: var(--mnv-muted);
  font-size: 12.5px;
}

.mnv-glass-badge {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mnv-green);
  background: rgba(53, 220, 47, .1);
  border: 1px solid rgba(53, 220, 47, .25);
}

.mnv-glass-badge i { animation: mnvBlink 1.4s ease infinite; }

@keyframes mnvBlink { 50% { opacity: .35; } }

.mnv-glass-kpi {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mnv-glass-kpi svg {
  width: 120px;
  height: 60px;
  overflow: visible;
}

.mnv-glass-kpi polyline {
  fill: none;
  stroke: url(#mnvLineGrad);
  stroke: var(--mnv-cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: mnvLineDraw 2.2s var(--mnv-ease-out) .6s both;
  filter: drop-shadow(0 0 6px rgba(40, 210, 194, .6));
}

@keyframes mnvLineDraw { to { stroke-dashoffset: 0; } }

.mnv-glass-kpi b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--mnv-green);
}

/* --- Marquee --- */
.mnv-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(148, 163, 184, .1);
  background: rgba(7, 11, 20, .5);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.mnv-marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: mnvMarquee 30s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(147, 161, 184, .75);
}

.mnv-marquee-track i {
  font-style: normal;
  color: var(--mnv-cyan);
  font-size: 11px;
}

@keyframes mnvMarquee { to { transform: translateX(-50%); } }

.mnv-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mnv-muted);
  font-size: 11.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.mnv-scroll-hint span {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(148, 163, 184, .45);
  border-radius: 999px;
  position: relative;
}

.mnv-scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--mnv-cyan);
  transform: translateX(-50%);
  animation: mnvWheel 1.6s ease infinite;
}

@keyframes mnvWheel {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 17px; }
  100% { opacity: 0; top: 6px; }
}

/* ============================================================
   SECTION 2: BENTO FITUR
   ============================================================ */
.mnv-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mnv-bento-card {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 20px;
  background: var(--mnv-card);
  border: 1px solid var(--mnv-border);
  transition: transform .4s var(--mnv-ease-out), border-color .35s ease, background .35s ease;
  will-change: transform;
}

.mnv-bento-card.span-2 { grid-column: span 2; }

.mnv-bento-card:hover {
  border-color: rgba(40, 210, 194, .45);
  background: rgba(148, 163, 184, .09);
}

.mnv-bento-ico {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 19px;
  background: rgba(148, 163, 184, .09);
  border: 1px solid var(--mnv-border);
  transition: transform .4s var(--mnv-ease-out), box-shadow .4s ease;
}

.mnv-bento-card:hover .mnv-bento-ico {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 0 26px rgba(40, 210, 194, .25);
}

.mnv-bento-card h3 {
  margin: 0 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.mnv-bento-card p {
  margin: 0;
  color: var(--mnv-muted);
  font-size: 13.8px;
  line-height: 1.65;
}

.mnv-bento-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(31, 182, 242, .14), transparent 65%);
}

.mnv-bento-card:hover .mnv-bento-glow { opacity: 1; }

/* ============================================================
   SECTION 3: AI
   ============================================================ */
.mnv-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4.5vw, 70px);
  align-items: center;
}

.mnv-ai-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.mnv-ai-point {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--mnv-card);
  border: 1px solid var(--mnv-border);
  transition: transform .35s var(--mnv-ease-out), border-color .3s ease;
}

.mnv-ai-point:hover {
  transform: translateX(8px);
  border-color: rgba(31, 182, 242, .4);
}

.mnv-ai-point > i {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 17px;
  color: #04121c;
  background: var(--mnv-gradient);
  box-shadow: 0 6px 18px rgba(31, 182, 242, .35);
}

.mnv-ai-point h4 {
  margin: 0 0 5px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16.5px;
}

.mnv-ai-point p {
  margin: 0;
  color: var(--mnv-muted);
  font-size: 13.8px;
  line-height: 1.65;
}

/* --- Mockup ponsel WhatsApp --- */
.mnv-ai-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mnv-ai-ring {
  position: absolute;
  inset: -8% -14%;
  border-radius: 50%;
  border: 1px dashed rgba(40, 210, 194, .25);
  animation: mnvSpin 40s linear infinite;
  pointer-events: none;
}

.mnv-ai-ring::before,
.mnv-ai-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mnv-gradient);
  box-shadow: 0 0 16px rgba(31, 182, 242, .8);
}

.mnv-ai-ring::before { top: 8%; left: 12%; }
.mnv-ai-ring::after { bottom: 6%; right: 14%; }

@keyframes mnvSpin { to { transform: rotate(360deg); } }

.mnv-phone {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  border-radius: 30px;
  overflow: hidden;
  background: #0d1524;
  border: 1px solid rgba(148, 163, 184, .22);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 50px rgba(31, 182, 242, .12);
  will-change: transform;
}

.mnv-phone-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(148, 163, 184, .07);
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.mnv-ava-ai {
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(40, 210, 194, .4);
}

.mnv-ava-ai img { width: 60%; }

.mnv-phone-head b {
  display: block;
  font-size: 14.5px;
}

.mnv-phone-head small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--mnv-muted);
  font-size: 12px;
}

.mnv-online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mnv-green);
  box-shadow: 0 0 8px rgba(53, 220, 47, .9);
}

.mnv-phone-wa {
  margin-left: auto;
  font-size: 22px;
  color: var(--mnv-green);
}

.mnv-phone-body {
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 330px;
  background:
    radial-gradient(circle at 80% 10%, rgba(31, 182, 242, .06), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(53, 220, 47, .05), transparent 40%);
}

.mnv-bubble {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 13.2px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(14px) scale(.96);
}

.mnv-bubble.is-shown {
  animation: mnvBubbleIn .5s var(--mnv-ease-out) both;
}

@keyframes mnvBubbleIn {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: none; }
}

.mnv-bubble.me {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(53, 220, 47, .22), rgba(40, 210, 194, .18));
  border: 1px solid rgba(53, 220, 47, .28);
  border-bottom-right-radius: 5px;
}

.mnv-bubble.ai {
  align-self: flex-start;
  background: rgba(148, 163, 184, .1);
  border: 1px solid rgba(148, 163, 184, .16);
  border-bottom-left-radius: 5px;
}

.mnv-bubble .warn { color: #fbbf24; font-size: 12.3px; }
.mnv-bubble .ok { color: var(--mnv-green); font-size: 12.3px; }

.mnv-typing {
  display: none;
  gap: 5px;
  padding: 13px 16px;
}

.mnv-typing.is-shown {
  display: inline-flex;
  opacity: 1;
  transform: none;
  animation: none;
}

.mnv-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mnv-muted);
  animation: mnvTypingDot 1.1s ease infinite;
}

.mnv-typing span:nth-child(2) { animation-delay: .18s; }
.mnv-typing span:nth-child(3) { animation-delay: .36s; }

@keyframes mnvTypingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* ============================================================
   SECTION 4: PAKET
   ============================================================ */
#paket .mnv-section-head { text-align: center; }
#paket .mnv-eyebrow { margin-left: auto; margin-right: auto; }

.mnv-cycle {
  position: relative;
  display: inline-flex;
  margin-top: 18px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--mnv-border);
  background: rgba(148, 163, 184, .07);
}

.mnv-cycle button {
  position: relative;
  z-index: 1;
  padding: 9px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mnv-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color .3s ease;
}

.mnv-cycle button.is-active { color: #04121c; }

.mnv-cycle button em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 8px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(53, 220, 47, .2);
  color: var(--mnv-green);
  vertical-align: 2px;
}

.mnv-cycle button.is-active em {
  background: rgba(4, 18, 28, .22);
  color: #04121c;
}

/* Posisi & lebar pill diatur JS mengikuti tombol aktif, sehingga selalu
   pas meski lebar teks tombol berbeda (mis. "Tahunan" + badge Hemat). */
.mnv-cycle-pill {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 0;
  border-radius: 999px;
  background: var(--mnv-gradient);
  transition: left .45s var(--mnv-ease), width .45s var(--mnv-ease);
  box-shadow: 0 4px 18px rgba(31, 182, 242, .4);
}

.mnv-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

.mnv-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: 22px;
  background: var(--mnv-card);
  border: 1px solid var(--mnv-border);
  transition: transform .4s var(--mnv-ease-out), border-color .35s ease, box-shadow .35s ease;
  will-change: transform;
}

.mnv-plan:hover {
  border-color: rgba(31, 182, 242, .4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.mnv-plan.is-popular {
  background: linear-gradient(160deg, rgba(31, 182, 242, .12), rgba(40, 210, 194, .07) 50%, rgba(53, 220, 47, .09));
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1.5px rgba(40, 210, 194, .55), 0 28px 70px rgba(31, 182, 242, .18);
}

.mnv-plan-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 6px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #04121c;
  background: var(--mnv-gradient);
  box-shadow: 0 8px 22px rgba(31, 182, 242, .45);
}

.mnv-plan-name {
  margin: 6px 0 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  letter-spacing: -.01em;
}

.mnv-plan-desc {
  margin: 0 0 16px;
  color: var(--mnv-muted);
  font-size: 13.3px;
  line-height: 1.6;
}

.mnv-plan-price {
  margin-bottom: 6px;
  min-height: 52px;
}

.mnv-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

/* Harga bulanan asli dicoret saat mode tahunan aktif */
.mnv-plan-old {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mnv-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(244, 63, 94, .8);
  text-decoration-thickness: 2px;
  margin-bottom: 2px;
}

.mnv-plan-old em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 500;
}

.mnv-plan-old[hidden] { display: none; }

.mnv-plan-billed {
  display: block;
  margin-top: 4px;
  font-size: 12.3px;
  color: var(--mnv-muted);
}

.mnv-plan-billed[hidden] { display: none; }

.mnv-plan-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.mnv-plan-price.is-flipping .mnv-plan-amount {
  animation: mnvPriceFlip .5s var(--mnv-ease) both;
}

@keyframes mnvPriceFlip {
  0% { opacity: 0; transform: translateY(-14px) rotateX(50deg); }
  100% { opacity: 1; transform: none; }
}

.mnv-plan-unit {
  color: var(--mnv-muted);
  font-size: 13.5px;
}

.mnv-plan-saving {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11.8px;
  font-weight: 700;
  color: var(--mnv-green);
  background: rgba(53, 220, 47, .12);
  border: 1px solid rgba(53, 220, 47, .25);
  width: fit-content;
}

.mnv-plan-features {
  list-style: none;
  margin: 8px 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mnv-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.6px;
  color: rgba(231, 237, 247, .88);
  line-height: 1.5;
}

.mnv-plan-features i {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 9px;
  color: #04121c;
  background: var(--mnv-gradient);
}

/* Baris pembuka "Semua fitur di paket X, plus:" — tampil paling atas
   sebagai judul kecil daftar fitur. */
.mnv-plan-features li.is-inherit {
  color: var(--mnv-cyan);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 2px;
  border-bottom: 1px dashed rgba(40, 210, 194, .28);
}

.mnv-plan-features li.is-inherit i {
  background: rgba(40, 210, 194, .16);
  color: var(--mnv-cyan);
  border: 1px solid rgba(40, 210, 194, .4);
}

.mnv-plan-cta { width: 100%; }

/* Empty state paket */
.mnv-plans-empty {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(30px, 5vh, 54px) 30px;
  border-radius: 24px;
  background: var(--mnv-card);
  border: 1px dashed rgba(148, 163, 184, .3);
}

.mnv-plans-empty-ico {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 25px;
  color: #04121c;
  background: var(--mnv-gradient);
  box-shadow: 0 14px 34px rgba(31, 182, 242, .35);
}

.mnv-plans-empty h3 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
}

.mnv-plans-empty p {
  margin: 0 0 22px;
  color: var(--mnv-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.mnv-topups {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.mnv-topups-label {
  color: var(--mnv-muted);
  font-size: 13.5px;
  font-weight: 600;
}

.mnv-topups-label i { color: var(--mnv-cyan); margin-right: 5px; }

.mnv-topup-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--mnv-muted);
  background: rgba(148, 163, 184, .07);
  border: 1px solid var(--mnv-border);
  transition: border-color .3s ease, transform .3s var(--mnv-ease-out);
}

.mnv-topup-chip:hover {
  border-color: rgba(40, 210, 194, .5);
  transform: translateY(-3px);
}

.mnv-topup-chip b { color: var(--mnv-ink); }

.mnv-plans-note {
  margin: 22px auto 0;
  text-align: center;
  color: var(--mnv-muted);
  font-size: 13px;
  max-width: 560px;
}

/* ============================================================
   SECTION 5: KONTAK / CTA + FOOTER
   ============================================================ */
.mnv-final {
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 4vh, 48px);
}

.mnv-final-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(34px, 6vh, 70px) clamp(22px, 4vw, 60px);
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(31, 182, 242, .1), rgba(11, 18, 32, .6) 45%, rgba(53, 220, 47, .08));
  border: 1px solid rgba(148, 163, 184, .2);
}

.mnv-final-glow {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(31, 182, 242, .25) 82%, rgba(53, 220, 47, .22) 92%, transparent 100%);
  animation: mnvSpin 14s linear infinite;
  opacity: .6;
}

.mnv-final-card > * { position: relative; }

.mnv-final-sub {
  margin: 14px auto 28px;
  max-width: 520px;
  color: var(--mnv-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.mnv-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 60px);
  padding-top: 8px;
}

.mnv-footer-brand img { height: 28px; width: auto; margin-bottom: 14px; }

.mnv-footer-brand p {
  margin: 0;
  color: var(--mnv-muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.mnv-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mnv-footer-links h5 {
  margin: 0 0 13px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mnv-ink);
}

.mnv-footer-links a {
  display: block;
  padding: 5px 0;
  color: var(--mnv-muted);
  text-decoration: none;
  font-size: 13.8px;
  transition: color .25s ease, transform .25s ease;
}

.mnv-footer-links a:hover {
  color: var(--mnv-cyan);
  transform: translateX(4px);
}

.mnv-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, .12);
  color: var(--mnv-muted);
  font-size: 12.8px;
}

.mnv-footer-love i {
  color: #f43f5e;
  animation: mnvHeart 1.4s ease infinite;
}

@keyframes mnvHeart {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.25); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .mnv-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mnv-bento-card.span-2 { grid-column: span 2; }
}

/* Layar desktop pendek (laptop): rapatkan konten agar section muat
   di viewport; sisanya tetap bisa discroll di dalam section. */
@media (min-width: 992px) and (max-height: 880px) {
  :root { --mnv-nav-h: 64px; }
  .mnv-h2 { font-size: clamp(24px, 3.6vw, 40px); }
  .mnv-section-head { margin-bottom: 18px; }
  .mnv-eyebrow { margin-bottom: 12px; padding: 6px 14px; font-size: 12px; }
  .mnv-bento { gap: 12px; }
  .mnv-bento-card { padding: 15px 17px; border-radius: 16px; }
  .mnv-bento-ico { width: 38px; height: 38px; font-size: 16px; margin-bottom: 10px; border-radius: 12px; }
  .mnv-bento-card h3 { font-size: 15.5px; }
  .mnv-bento-card p { font-size: 12.8px; line-height: 1.55; }
  .mnv-ai-points { gap: 12px; margin-top: 18px; }
  .mnv-ai-point { padding: 12px 14px; }
  .mnv-ai-point p { font-size: 13px; }
  .mnv-phone-body { min-height: 270px; }
  .mnv-plan { padding: 18px 20px; }
  .mnv-plan-features { gap: 8px; margin-bottom: 16px; }
  .mnv-hero-stats { margin-top: 20px; }
  .mnv-final-card { padding: 30px; }
  .mnv-footer { gap: 20px; }
}

@media (max-width: 991px) {
  .mnv-nav-links,
  .mnv-nav-actions { display: none; }
  .mnv-nav-burger { display: flex; }
  .mnv-dots { display: none; }
  .mnv-counter { display: none; }

  .mnv-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 50px;
  }

  .mnv-orbit { height: clamp(280px, 38vh, 400px); }
  .mnv-marquee { position: relative; margin: 34px -18px 0; }
  .mnv-scroll-hint { display: none; }

  .mnv-ai-grid { grid-template-columns: 1fr; }
  .mnv-footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .mnv-section-inner {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 28px;
  }

  .mnv-hero-title { font-size: clamp(32px, 10.5vw, 44px); }
  .mnv-h2 { font-size: clamp(25px, 7.6vw, 34px); }
  .mnv-hero-sub { font-size: 14.5px; }

  .mnv-hero-cta { gap: 10px; }
  .mnv-hero-cta .mnv-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .mnv-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-top: 24px;
  }

  .mnv-orbit { height: 290px; }
  .mnv-orbit-core { width: 72px; height: 72px; border-radius: 22px; }
  .mnv-orbit-core img { width: 40px; }
  .mnv-glass-card { font-size: 12px; padding: 13px 14px; }
  .mnv-glass-card.g3 { display: none; }
  .mnv-glass-card.g4 { display: none; }
  .mnv-glass-card.g1 { width: min(230px, 72%); }
  .mnv-glass-card.g2 { width: min(240px, 74%); }

  .mnv-bento { grid-template-columns: 1fr; }
  .mnv-bento-card.span-2 { grid-column: span 1; }

  .mnv-phone { width: 100%; }
  .mnv-ai-ring { display: none; }

  .mnv-cycle {
    width: 100%;
    max-width: 340px;
  }
  .mnv-cycle button {
    flex: 1;
    padding: 9px 8px;
    font-size: 13px;
  }

  .mnv-plan { padding: 20px 18px; }
  .mnv-topups { gap: 8px; }
  .mnv-plans-note { font-size: 12.3px; }

  .mnv-final-card { padding: 32px 20px; border-radius: 22px; }
  .mnv-final-sub { font-size: 14px; }

  .mnv-footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mnv-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  body.mnv-landing *,
  body.mnv-landing *::before,
  body.mnv-landing *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
