/* ==========================================================================
   Nusawork — CSS terpusat (design system).
   Diekstrak dari design_files/*.dc.html. Token brand = README bagian 6.
   Konvensi: .block, .block__el, .block--modifier. Tema per halaman via --accent.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --integrity-blue: #1B3FB5;
  --energy-green:   #23E396;
  --gradient-blue:  #1667F4;
  --white:          #FFFFFF;
  --rich-black:     #0D0D0D;
  --body-text:      rgba(13, 13, 13, 0.66);
  --surface-tint:   #F5F8FF;
  --whatsapp:       #25D366;

  --smiley-orange:   #F66441;
  --friendly-purple: #A564D7;
  --greeting-blue:   #238DE3;
  --calming-aqua:    #23DDE3;

  --green-text:     #0F9D6B;
  --orange-text:    #C94E2C;
  --purple-text:    #8B44C4;
  --greetblue-text: #1E6FB0;
  --aqua-text:      #0FA5B5;
  --check-green:    #23C368;

  --line: rgba(27, 63, 181, 0.08);
  --gradient-main: linear-gradient(135deg, #23E396 0%, #1667F4 100%);

  --radius: 24px;
  --radius-pill: 50px;
  --container: 1180px;

  --font-head: 'Urbanist', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Tema default (homepage) */
  --accent: var(--smiley-orange);
  --surface: var(--surface-tint);
}

/* ---------- Reset ringan ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--rich-black);
  background: var(--white);
}
h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: -0.025em; margin: 0; }
p { margin: 0; }
a { text-decoration: none; color: var(--integrity-blue); }
img { max-width: 100%; }
::selection { background: rgba(35, 227, 150, 0.28); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 24px; background: var(--white); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--rich-black); position: relative; overflow: hidden; }
.section--tour, .section--split { overflow: hidden; padding: 96px 24px; }
.section__head { max-width: 600px; margin-bottom: 48px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  /* a11y: gelapkan sedikit warna aksen agar kontras teks kecil >= 4.5:1 (progressive; override eksplisit di section gelap tetap menang) */
  color: color-mix(in srgb, var(--accent) 72%, black);
  margin: 0 0 14px;
}
.section__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.15;
  color: var(--integrity-blue); margin: 0 0 16px;
}
.section__desc { font-size: 1.0625rem; line-height: 1.7; color: var(--body-text); margin: 0; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: var(--integrity-blue);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; padding: 16px 34px; cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s, border-color .2s;
  text-align: center;
}
.btn--primary { background: var(--gradient-main); color: #fff; box-shadow: 0 12px 30px rgba(22,103,244,0.3); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(22,103,244,0.4); }
.btn--ghost { background: #fff; border: 2px solid rgba(27,63,181,0.18); color: var(--integrity-blue); padding: 14px 30px; font-weight: 600; }
.btn--ghost:hover { border-color: var(--integrity-blue); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 22px; font-size: 0.9rem; }

/* Reusable bits */
.icon-box {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(27,63,181,0.09); color: var(--integrity-blue);
}
.icon-box--md { width: 52px; height: 52px; border-radius: 15px; }
.icon-box--sm { width: 46px; height: 46px; border-radius: 13px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; border-radius: var(--radius-pill);
  padding: 6px 14px; font-family: var(--font-head); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.check-item { display: flex; gap: 9px; align-items: flex-start; }
.check-item svg { margin-top: 2px; flex-shrink: 0; }
.check-item span { font-size: 0.88rem; color: rgba(13,13,13,0.7); }

/* Grid 2 kolom generik (problem, split sections) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split > * { min-width: 0; }   /* cegah item grid memaksa lebar > viewport (overflow mobile) */
.split--start { align-items: start; }

/* ========================================================================
   HEADER
   ======================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); font-family: var(--font-body);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header__logo { display: flex; align-items: center; gap: 11px; }
.site-header__logo img { height: 32px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px; font-weight: 500; font-size: 0.92rem;
  color: rgba(13,13,13,0.72); padding: 9px 13px; border-radius: 10px; white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--integrity-blue); background: rgba(27,63,181,0.05); }
.nav__caret { opacity: 0.5; transition: transform .2s; }

.dd { position: relative; }
.dd__menu { position: absolute; top: 100%; left: 0; display: none; padding-top: 14px; z-index: 200; }
.dd__menu--right { left: auto; right: 0; }
.dd:hover .dd__menu, .dd:focus-within .dd__menu { display: block; }
.dd:hover > .nav__link .nav__caret, .dd:focus-within > .nav__link .nav__caret { transform: rotate(180deg); }

.megamenu {
  width: 740px; background: #fff; border: 1px solid rgba(27,63,181,0.1);
  border-radius: 20px; box-shadow: 0 24px 60px rgba(27,63,181,0.16);
  padding: 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px 20px;
}
.megamenu__title {
  font-family: var(--font-head); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--integrity-blue);
  margin: 0 0 8px; padding: 0 8px;
}
.megamenu__link {
  display: block; font-size: 0.85rem; color: rgba(13,13,13,0.66);
  padding: 6px 8px; border-radius: 8px; transition: color .15s, background .15s;
}
.megamenu__link:hover { color: var(--integrity-blue); background: rgba(27,63,181,0.05); }
.megamenu__foot {
  grid-column: 1/-1; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.megamenu__foot span { font-size: 0.8rem; color: rgba(13,13,13,0.5); }
.megamenu__foot a { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--integrity-blue); }

.dropdown {
  width: 180px; background: #fff; border: 1px solid rgba(27,63,181,0.1);
  border-radius: 16px; box-shadow: 0 20px 50px rgba(27,63,181,0.16); padding: 8px;
}
.dropdown a {
  display: block; font-size: 0.88rem; color: rgba(13,13,13,0.7);
  padding: 9px 12px; border-radius: 10px; transition: color .15s, background .15s;
}
.dropdown a:hover { color: var(--integrity-blue); background: rgba(27,63,181,0.05); }

.site-header__cta { display: flex; align-items: center; gap: 10px; }
.site-header__login { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--integrity-blue); padding: 8px 6px; }
.site-header__contact {
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--integrity-blue);
  padding: 10px 20px; border: 1.5px solid rgba(27,63,181,0.25); border-radius: var(--radius-pill); white-space: nowrap;
  transition: border-color .15s;
}
.site-header__contact:hover { border-color: var(--integrity-blue); }

.burger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 0; }

/* Drawer mobile */
.drawer { display: none; border-top: 1px solid var(--line); background: #fff; padding: 14px 24px 22px; box-shadow: 0 24px 44px rgba(27,63,181,0.12); }
.drawer.is-open { display: block; }
.drawer__links { display: flex; flex-direction: column; }
.drawer__links a { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--rich-black); padding: 13px 8px; border-bottom: 1px solid rgba(27,63,181,0.06); }
.drawer__links a:last-child { color: var(--integrity-blue); border-bottom: none; }
.drawer__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer { background: var(--rich-black); color: rgba(255,255,255,0.7); padding: 64px 24px 32px; font-family: var(--font-body); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer__offices { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; margin-bottom: 40px; }
.office-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 14px; }
.site-footer__logo { height: 30px; width: auto; display: block; margin-bottom: 16px; }
.site-footer__about { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.5); max-width: 320px; margin: 0 0 20px; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background .18s; }
.social a:hover { background: var(--integrity-blue); }
.foot-col__title { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: #fff; margin: 0 0 16px; }
.foot-col__links { display: flex; flex-direction: column; gap: 11px; }
.foot-col__links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color .15s; }
.foot-col__links a:hover { color: #fff; }
.office { display: flex; flex-direction: column; gap: 14px; }
.office__city { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; color: var(--energy-green); margin: 0 0 3px; }
.office__addr { font-size: 0.8rem; line-height: 1.5; color: rgba(255,255,255,0.5); margin: 0; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.site-footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.site-footer__tagline { font-family: var(--font-head); font-weight: 600; color: rgba(255,255,255,0.5) !important; }

.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px;
  background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }

/* ========================================================================
   Responsive (breakpoint desain: 900px & 560px)
   ======================================================================== */
@media (max-width: 900px) {
  .nav, .site-header__cta { display: none !important; }
  .burger { display: inline-flex !important; }
  .split, .compare, .tour__grid, .pricing-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .site-footer__grid { grid-template-columns: 1fr 1fr !important; gap: 30px !important; }
  .form-cta__inner { grid-template-columns: 1fr !important; padding: 40px 26px !important; }
  .tour__tabs { flex-direction: row !important; flex-wrap: wrap !important; }
  .tour__tab { flex: 1 1 45% !important; }
}
@media (max-width: 560px) {
  .hero__badge { display: none !important; }
  .site-footer__grid { grid-template-columns: 1fr !important; }
}

/* ========================================================================
   HELPERS
   ======================================================================== */
.grad-text { background: linear-gradient(120deg,#23E396 0%,#1667F4 60%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.em { font-style: normal; font-weight: 600; color: var(--rich-black); }
.hl { color: var(--integrity-blue); font-weight: 600; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.avatar--sm { width: 34px; height: 34px; font-size: 0.74rem; }
.tag { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; border-radius: var(--radius-pill); padding: 4px 12px; white-space: nowrap; }
.tag--green { color: #0F9D6B; background: #E8F7F0; }
.tag--blue { color: #1B3FB5; background: #EAF0FF; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 64px 24px 0; overflow: hidden; }
.hero__wave { position: absolute; right: -120px; top: -60px; opacity: 0.5; pointer-events: none; z-index: 0; }
.hero__inner { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(27,63,181,0.06); border: 1px solid rgba(27,63,181,0.12); color: var(--integrity-blue); border-radius: var(--radius-pill); padding: 7px 16px; font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 26px; }
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--energy-green); }
.hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.5rem,5.6vw,4.2rem); line-height: 1.06; letter-spacing: -0.035em; color: var(--rich-black); margin: 0 0 24px; }
.hero__desc { font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.7; color: var(--body-text); max-width: 660px; margin: 0 auto 34px; }
.hero__hl { color: var(--integrity-blue); font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: center; margin-bottom: 44px; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 500; color: rgba(13,13,13,0.6); }
.hero__visual { max-width: 1060px; margin: 0 auto; position: relative; }
.hero__visual img { display: block; width: 100%; height: auto; aspect-ratio: 16/8; max-height: 420px; object-fit: cover; object-position: top center; border-radius: 26px 26px 0 0; border: 1px solid rgba(27,63,181,0.08); border-bottom: none; box-shadow: 0 -5px 0 0 var(--integrity-blue), 0 24px 70px rgba(27,63,181,0.18); }

/* ---------- MARQUEE ---------- */
.marquee-section { padding: 44px 0 40px; border-top: 1px solid rgba(27,63,181,0.07); border-bottom: 1px solid rgba(27,63,181,0.07); background: #fff; overflow: hidden; }
.marquee__label { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(13,13,13,0.58); margin: 0 0 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee__track { display: flex; width: max-content; animation: nw-marquee 46s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 60px; padding: 0 30px; }
.marquee__group img { height: 76px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
@keyframes nw-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- COMPARE ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.compare-card { border-radius: var(--radius); padding: clamp(26px,3vw,36px); }
.compare-card--bad { background: #FBF4F2; border: 1px solid rgba(201,78,44,0.16); }
.compare-card--good { background: linear-gradient(150deg,#1B3FB5 0%,#1667F4 100%); position: relative; overflow: hidden; }
.compare-card__wave { position: absolute; right: -40px; bottom: -46px; opacity: 0.28; pointer-events: none; }
.compare-card__body { position: relative; }
.pill--bad { background: rgba(246,100,65,0.12); color: #AC3E1F; margin-bottom: 22px; }
.pill--good { background: rgba(35,227,150,0.16); color: #23E396; margin-bottom: 22px; }
.compare-list { display: flex; flex-direction: column; gap: 18px; }
.compare-item { display: flex; gap: 13px; align-items: flex-start; }
.compare-item svg { flex-shrink: 0; margin-top: 1px; }
.compare-item p { font-size: 0.98rem; line-height: 1.55; margin: 0; }
.compare-card--bad .compare-item p { color: rgba(13,13,13,0.72); }
.compare-card--good .compare-item p { color: rgba(255,255,255,0.9); }

/* ---------- RIBBON ---------- */
.ribbon-section { padding: 34px 24px; background: #fff; border-top: 1px solid rgba(27,63,181,0.07); border-bottom: 1px solid rgba(27,63,181,0.07); }
.ribbon__label { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(13,13,13,0.58); margin: 0 0 22px; }
.ribbon { max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 30px; }
.ribbon__item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--rich-black); }
.ribbon__ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- FEATURES ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 22px; }
.feature-card { background: #fff; border: 1px solid rgba(27,63,181,0.07); border-radius: var(--radius); padding: 30px; transition: transform .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(27,63,181,0.12); }
.feature-card--dark { background: linear-gradient(150deg,#1B3FB5 0%,#0D2A80 100%); color: #fff; border: none; }
.feature-card--dark:hover { box-shadow: 0 18px 44px rgba(27,63,181,0.3); }
.feature-card .icon-box { margin-bottom: 20px; }
.feature-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--rich-black); margin: 0 0 10px; }
.feature-card__desc { font-size: 0.92rem; line-height: 1.65; color: rgba(13,13,13,0.6); margin: 0 0 16px; }
.feature-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.feature-card__list li { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; color: rgba(13,13,13,0.62); }
.feature-card__more { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: #8ff0c6; }

/* ---------- PRODUCT TOUR ---------- */
.tour__grid { display: grid; grid-template-columns: 330px 1fr; gap: 34px; align-items: start; }
.tour__grid > * { min-width: 0; }   /* cegah item grid melebar > viewport (tab & mock kepotong di mobile) */
.tour__tabs { display: flex; flex-direction: column; gap: 12px; }
.tour__tab { width: 100%; text-align: left; display: flex; flex-direction: column; gap: 3px; border-radius: 16px; padding: 15px 18px; cursor: pointer; transition: all .18s; background: #fff; border: 1.5px solid rgba(27,63,181,0.12); border-left: 4px solid transparent; }
.tour__tab.is-active { background: #F5F8FF; border-color: #1B3FB5; border-left: 4px solid #1B3FB5; }
.tour__tab-label { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--rich-black); }
.tour__tab.is-active .tour__tab-label { color: var(--integrity-blue); }
.tour__tab-sub { font-size: 0.85rem; color: rgba(13,13,13,0.55); }
.tour__stage { background: linear-gradient(160deg,#EEF3FF 0%,#F6FAF8 100%); border: 1px solid rgba(27,63,181,0.1); border-radius: 24px; padding: 24px; min-height: 452px; box-shadow: 0 24px 60px rgba(27,63,181,0.12); display: flex; align-items: center; justify-content: center; }
.tour__panel { width: 100%; max-width: 620px; }
@media (min-width: 961px) { .tour__stage { min-height: 620px; } }  /* tinggi seragam antar tab, tanpa layout jump */
.tour__panel[hidden] { display: none; }

/* mock UI */
.mock { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 26px rgba(27,63,181,0.09); }
.mock--phone { max-width: 340px; margin: 0 auto; border-radius: 24px; }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 18px; border-bottom: 1px solid rgba(13,13,13,0.06); }
.mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.mock__bar-label { margin-left: 8px; font-size: 0.8rem; color: rgba(13,13,13,0.45); }
.mock__body { padding: 22px 24px; }
.mock__hi { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--rich-black); margin: 0 0 3px; }
.mock__meta { font-size: 0.86rem; color: rgba(13,13,13,0.5); margin: 0 0 20px; }
.mock__stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-bottom: 22px; }
.mock__stat { border-radius: 14px; padding: 16px; }
.mock__stat p { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; margin: 0; line-height: 1; }
.mock__stat span { font-size: 0.78rem; color: rgba(13,13,13,0.55); margin-top: 6px; display: block; }
.mock__label { font-weight: 600; font-size: 0.82rem; color: rgba(13,13,13,0.6); margin: 0 0 12px; }
.mock__chart { display: flex; align-items: flex-end; gap: 16px; padding: 0 4px; } /* tinggi auto: kolom tertinggi (bar+label) tidak lagi meluap menabrak judul */
.mock__bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mock__bar-fill { width: 100%; background: linear-gradient(180deg,#23E396,#1667F4); border-radius: 7px 7px 0 0; }
.mock__bar-col small { font-size: 0.72rem; color: rgba(13,13,13,0.45); }
.mock__row-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(13,13,13,0.06); }
.mock__row-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--rich-black); }
.mock-abs__head { background: linear-gradient(150deg,#1B3FB5,#1667F4); padding: 22px 22px 26px; color: #fff; }
.mock-abs__date { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin: 0 0 2px; }
.mock-abs__time { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; margin: 0; line-height: 1; }
.mock-abs__loc { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; background: rgba(255,255,255,0.16); border-radius: var(--radius-pill); padding: 6px 13px; font-size: 0.8rem; }
.mock-abs__body { padding: 22px; }
.mock-abs__verify { display: flex; align-items: center; gap: 10px; background: #E8F7F0; border-radius: 12px; padding: 12px 14px; margin-bottom: 16px; font-weight: 600; font-size: 0.88rem; color: #0F9D6B; }
.mock-abs__note { font-size: 0.8rem; color: rgba(13,13,13,0.5); text-align: center; margin: 14px 0 0; }
.pay-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(13,13,13,0.05); font-size: 0.9rem; }
.pay-row span { color: rgba(13,13,13,0.6); }
.pay-row b { font-weight: 600; color: var(--rich-black); }
.pay-row--last { border-bottom: none; }
.pay-total { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; background: #EAF0FF; border-radius: 12px; padding: 14px 16px; font-family: var(--font-head); }
.pay-total span:first-child { font-weight: 700; font-size: 0.92rem; color: var(--integrity-blue); }
.pay-total span:last-child { font-weight: 800; font-size: 1.25rem; color: var(--integrity-blue); }
.leave-card { border: 1px solid rgba(27,63,181,0.12); border-radius: 14px; padding: 16px; }
.leave-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.leave-card__name { font-family: var(--font-head); font-weight: 700; font-size: 0.94rem; color: var(--rich-black); margin: 0; }
.leave-card__meta { font-size: 0.8rem; color: rgba(13,13,13,0.55); margin: 0; }
.leave-flow { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.74rem; }
.leave-flow span { display: inline-flex; align-items: center; gap: 5px; }
.leave-flow__line { flex: 1; height: 1.5px; background: rgba(13,13,13,0.1); }
.leave-card__actions { display: flex; gap: 10px; }
.btn-approve { flex: 1; padding: 11px; border: none; border-radius: 10px; background: linear-gradient(135deg,#23E396,#0F9D6B); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; cursor: pointer; }
.btn-reject { flex: 1; padding: 11px; border: 1.5px solid rgba(13,13,13,0.14); border-radius: 10px; background: #fff; color: rgba(13,13,13,0.6); font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; cursor: pointer; }
/* Tombol di dalam mockup product tour = pajangan, bukan aksi (jangan tampak bisa diklik) */
.tour__panel .btn, .tour__panel .btn-approve, .tour__panel .btn-reject { pointer-events: none; }
.leave-row { display: flex; align-items: center; gap: 12px; padding: 14px 4px 2px; }
.leave-row__name { font-weight: 600; font-size: 0.86rem; color: var(--rich-black); margin: 0; }
.leave-row__status { font-size: 0.74rem; color: rgba(13,13,13,0.4); white-space: nowrap; }
/* Mock product tour di layar sempit (S24 FE ~384px): rapatkan supaya tidak meluber */
@media (max-width: 480px) {
  .mock__stat { padding: 12px 10px; }
  .mock__stat p { font-size: 1.4rem; }
  .mock__stat span { font-size: 0.68rem; }
  .mock__row-head { padding: 14px 16px; gap: 10px; }
  .mock__row-title { font-size: 0.95rem; }
  .pay-total { flex-direction: column; align-items: flex-start; gap: 2px; }
  .pay-total span:last-child { font-size: 1.2rem; }
}

/* ---------- SPLIT visuals (smile) ---------- */
.smile-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.smile-visual > img { width: min(300px, 86%); height: auto; filter: drop-shadow(0 24px 48px rgba(13,13,13,0.18)); }
.ticks { display: flex; flex-direction: column; gap: 16px; }
.tick { display: flex; gap: 14px; align-items: flex-start; }
.tick__ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(35,227,150,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tick h3 { font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; color: var(--rich-black); margin: 0 0 3px; }
.tick p { font-size: 0.9rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0; }

/* ---------- CHAT ---------- */
.chat { background: #fff; border: 1px solid rgba(27,63,181,0.1); border-radius: 24px; box-shadow: 0 24px 60px rgba(27,63,181,0.14); overflow: hidden; }
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.chat__avatar { width: 38px; height: 38px; border-radius: 12px; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; }
.chat__name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--rich-black); margin: 0; }
.chat__status { font-size: 0.72rem; color: #0F9D6B; margin: 0; display: flex; align-items: center; gap: 5px; }
.chat__status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--energy-green); display: inline-block; }
.chat__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; background: #FBFCFE; }
.bubble { max-width: 82%; padding: 11px 15px; font-size: 0.9rem; line-height: 1.5; }
.bubble--in { align-self: flex-start; background: #F0F3FA; color: var(--rich-black); border-radius: 16px 16px 16px 4px; }
.bubble--out { align-self: flex-end; background: var(--gradient-main); color: #fff; border-radius: 16px 16px 4px 16px; }
.chat__input { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-top: 1px solid var(--line); }
.chat__field { flex: 1; background: #F0F3FA; border-radius: var(--radius-pill); padding: 11px 16px; font-size: 0.86rem; color: rgba(13,13,13,0.4); }
.chat__send { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- WHY (dark) ---------- */
.why-glow { position: absolute; top: -120px; right: -100px; width: 420px; height: 420px; background: radial-gradient(circle,rgba(35,227,150,0.13) 0%,transparent 70%); pointer-events: none; }
.section--dark .container { position: relative; }
.why__p { font-size: 1.0625rem; line-height: 1.75; color: rgba(255,255,255,0.62); margin: 0 0 16px; }
.why__p + .why__p { margin-bottom: 28px; }
.why__stat { display: inline-flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 20px 26px; }
.why__stat-num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.why__stat-label { font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.7); }
.why__list { display: flex; flex-direction: column; gap: 14px; }
.why__item { display: flex; gap: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 24px 26px; }
.why__num { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: rgba(35,227,150,0.5); flex-shrink: 0; }
.why__item h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; margin: 0 0 6px; }
.why__item p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.58); margin: 0; }

/* ---------- INDUSTRY ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 18px; }
.industry-card { background: #fff; border: 1px solid rgba(27,63,181,0.09); border-radius: var(--radius); padding: 26px; display: block; transition: transform .2s, box-shadow .2s; }
.industry-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(27,63,181,0.1); }
.industry-card .icon-box { margin-bottom: 16px; }
.industry-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--rich-black); margin: 0 0 6px; }
.industry-card p { font-size: 0.88rem; line-height: 1.55; color: rgba(13,13,13,0.6); margin: 0; }

/* ---------- STATS ---------- */
.stats { background: #1B3FB5; border-radius: 32px; padding: 56px 40px; position: relative; overflow: hidden; }
.stats__wave { position: absolute; right: -40px; bottom: -40px; opacity: 0.14; pointer-events: none; }
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 36px; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.3rem,4vw,3.2rem); line-height: 1; color: #fff; margin: 0 0 8px; }
.stat__num span { color: var(--energy-green); }
.stat__label { font-size: 0.92rem; color: rgba(255,255,255,0.72); margin: 0; }

/* ---------- BENEFITS ---------- */
.benefits { --accent: var(--green-text); }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px; }
.benefit-card { background: #fff; border: 1px solid rgba(27,63,181,0.07); border-radius: var(--radius); padding: 28px; }
.benefit-card .icon-box { margin-bottom: 16px; }
.benefit-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--rich-black); margin: 0 0 8px; }
.benefit-card p { font-size: 0.9rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0; }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; max-width: 1160px; margin: 0 auto; }
.pricing-card { background: #fff; border: 1px solid rgba(27,63,181,0.12); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.pricing-card--highlight { background: #1B3FB5; border: none; box-shadow: 0 20px 50px rgba(27,63,181,0.28); }
.pricing-card--growth { border: 2px solid #23E396; overflow: hidden; }
.pricing-card__ic { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pricing-card > * { position: relative; }
.pricing-card__glow { position: absolute; top: -70px; right: -60px; width: 190px; height: 190px; background: radial-gradient(circle,rgba(35,227,150,0.16) 0%,transparent 70%); pointer-events: none; }
.pricing-card__badge { position: absolute; top: 20px; right: 20px; background: rgba(35,227,150,0.2); color: #8ff0c6; border-radius: var(--radius-pill); padding: 4px 12px; font-family: var(--font-head); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; }
.pricing-card__badge--green { background: rgba(35,227,150,0.16); color: #0F9D6B; }
.pricing-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--rich-black); margin: 0 0 6px; }
.pricing-card__desc { font-size: 0.88rem; line-height: 1.55; color: rgba(13,13,13,0.6); margin: 0 0 18px; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 0 0 22px; }
.price__amount { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--integrity-blue); }
.price__per { font-size: 0.82rem; color: rgba(13,13,13,0.5); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.growth-highlight { background: linear-gradient(135deg,rgba(35,227,150,0.13),rgba(22,103,244,0.09)); border: 1px solid rgba(35,227,150,0.3); border-radius: 12px; padding: 11px 13px; margin-bottom: 24px; }
.growth-highlight__head { display: flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 800; font-size: 0.94rem; color: #0F9D6B; }
.growth-highlight__sub { display: block; font-size: 0.8rem; line-height: 1.5; color: rgba(13,13,13,0.6); margin-top: 5px; }
.pricing-note { text-align: center; font-size: 0.85rem; color: rgba(13,13,13,0.45); margin: 24px 0 0; }
.pricing-note a { text-decoration: underline; text-underline-offset: 3px; }
.pricing-custom { max-width: 760px; margin: 28px auto 0; background: var(--surface); border: 1px solid rgba(27,63,181,0.1); border-radius: 18px; padding: 20px 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px; text-align: center; }
.pricing-custom span { font-size: 0.95rem; color: rgba(13,13,13,0.72); }

/* ---------- TESTIMONI ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px; }
.testi-card { background: #fff; border: 1px solid rgba(27,63,181,0.07); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 18px; transition: transform .22s, box-shadow .22s, border-color .22s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(27,63,181,0.12); border-color: rgba(27,63,181,0.14); }
.testi-card__stars { color: #F5A623; font-size: 0.95rem; letter-spacing: 2px; }
.testi-card__quote { font-size: 0.96rem; line-height: 1.7; color: var(--rich-black); margin: 0; flex: 1; }
.testi-card__by { display: flex; align-items: center; gap: 12px; }
.testi-card__name { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--rich-black); margin: 0; }
.testi-card__role { font-size: 0.78rem; color: rgba(13,13,13,0.5); margin: 0; }
.testi-card__arrow { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: #0F9D6B; white-space: nowrap; }

/* ---------- TRUST ---------- */
.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.badge-item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid rgba(27,63,181,0.1); border-radius: 16px; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--rich-black); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid rgba(27,63,181,0.09); border-radius: 16px; padding: 4px 24px; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--rich-black); cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__plus { flex-shrink: 0; transition: transform .2s; }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__a { font-size: 0.95rem; line-height: 1.7; color: var(--body-text); margin: 0 0 20px; }

/* ---------- APP CTA ---------- */
.appcta { background: linear-gradient(135deg,#23E396 0%,#1667F4 100%); border-radius: 32px; padding: 52px 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.appcta__wave { position: absolute; right: 120px; top: -30px; opacity: 0.16; pointer-events: none; }
.appcta__text { color: #fff; position: relative; }
.appcta__text h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem,2.6vw,2.1rem); line-height: 1.15; margin: 0 0 10px; }
.appcta__text p { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 420px; margin: 0; }
.appcta__stores { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; position: relative; }
.store-btn { display: flex; align-items: center; gap: 11px; background: #0D0D0D; color: #fff; padding: 13px 22px; border-radius: 16px; transition: opacity .2s; }
.store-btn:hover { opacity: 0.88; }
.store-btn small { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.store-btn b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; }
.store-badge { display: inline-flex; transition: transform .2s; }
.store-badge:hover { transform: translateY(-2px); }
.store-badge img { display: block; width: auto; }

/* ---------- ECOSYSTEM ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 22px; }
.eco-card { background: #fff; border: 1px solid rgba(27,63,181,0.1); border-radius: var(--radius); padding: 30px; display: block; position: relative; transition: transform .2s, box-shadow .2s; }
a.eco-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(27,63,181,0.12); }
.eco-card--current { border: 2px solid #1B3FB5; }
.eco-card__tag { position: absolute; top: 22px; right: 22px; background: rgba(27,63,181,0.1); color: #1B3FB5; border-radius: var(--radius-pill); padding: 4px 12px; font-family: var(--font-head); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; }
.eco-card__ic { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.eco-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--rich-black); margin: 0 0 8px; }
.eco-card p { font-size: 0.92rem; line-height: 1.6; color: rgba(13,13,13,0.62); margin: 0 0 18px; }
.eco-card__now { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--integrity-blue); }
.eco-card__more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }

/* ---------- FORM CTA ---------- */
.form-cta__inner { background: #0D0D0D; border-radius: 32px; padding: 60px 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; position: relative; overflow: hidden; }
.form-cta__glow { position: absolute; top: -100px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle,rgba(35,227,150,0.12) 0%,transparent 70%); pointer-events: none; }
.form-cta__text { position: relative; }
.form-cta__desc { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.62); margin: 0 0 24px; }
.form-cta__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.form-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-pill); padding: 7px 14px; font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.form { position: relative; display: flex; flex-direction: column; gap: 12px; }
.field { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); border-radius: 12px; color: #fff; font-family: var(--font-body); font-size: 0.92rem; outline: none; }
.field::placeholder { color: rgba(255,255,255,0.35); }
select.field { appearance: none; cursor: pointer; color: rgba(255,255,255,0.6); }
.field:user-invalid { border-color: #FF6B6B; }
.field:user-invalid:focus { box-shadow: 0 0 0 3px rgba(255,107,107,0.2); }
select.field option { background: #1a1a1a; color: #fff; }

/* footer email */
.site-footer__email { display: inline-block; font-size: 0.9rem; color: rgba(255,255,255,0.66); margin: 0 0 20px; transition: color .15s; }
.site-footer__email:hover { color: #fff; }

/* ========================================================================
   HALAMAN FITUR
   ======================================================================== */
html { scroll-behavior: smooth; }
.fsec { scroll-margin-top: 134px; }   /* offset anchor di bawah header + sub-nav */

/* Hero fitur */
.fhero { position: relative; padding: 74px 24px 60px; overflow: hidden; background: linear-gradient(180deg,#F5F8FF 0%,#fff 100%); }
.fhero__wave { position: absolute; left: -170px; top: -30px; opacity: 0.5; pointer-events: none; z-index: 0; }
.fhero__inner { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.fhero__desc { font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.7; color: var(--body-text); max-width: 620px; margin: 0 auto 32px; }
.fhero__pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.fpill { font-weight: 500; font-size: 0.9rem; color: rgba(13,13,13,0.72); padding: 9px 18px; border-radius: var(--radius-pill); border: 1px solid rgba(27,63,181,0.16); background: #fff; transition: color .15s, border-color .15s; }
.fpill:hover { border-color: var(--integrity-blue); color: var(--integrity-blue); }
.fhero__visual { max-width: 1000px; margin: 44px auto 0; position: relative; z-index: 1; }
.fhero__visual img { display: block; width: 100%; height: auto; aspect-ratio: 16/7.6; object-fit: cover; border-radius: 24px; border: 1px solid rgba(27,63,181,0.08); box-shadow: 0 -5px 0 0 var(--energy-green), 0 24px 70px rgba(27,63,181,0.18); }

/* Sticky sub-nav */
.snav { position: sticky; top: 69px; z-index: 80; background: rgba(255,255,255,0.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: transform .28s ease; }
.snav.is-hidden { transform: translateY(-130%); }
.snav__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.snav__inner::-webkit-scrollbar { display: none; }
.snav__link { white-space: nowrap; font-weight: 500; font-size: 0.9rem; color: rgba(13,13,13,0.6); padding: 15px 14px; border-bottom: 2px solid transparent; transition: color .15s; }
.snav__link:hover { color: var(--integrity-blue); }
.snav__link.is-active { color: var(--integrity-blue); border-bottom-color: var(--integrity-blue); }

/* Feature split: item-list (kolom copy) */
.feat-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-item__ic { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--rich-black); margin: 0 0 3px; }
.feat-item p { font-size: 0.92rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0; }
.feat-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; color: var(--accent); }
.feat-checks { display: flex; flex-direction: column; gap: 16px; }
.feat-checks > div { display: flex; gap: 12px; align-items: flex-start; }
.feat-checks svg { flex-shrink: 0; margin-top: 2px; }
.feat-checks p { font-size: 0.96rem; line-height: 1.55; color: rgba(13,13,13,0.72); margin: 0; }
.feat-checks strong { color: var(--rich-black); font-weight: 600; }

/* Feature visual + floating badge */
.feat-visual { position: relative; }
.feat-visual__img { border-radius: 22px; overflow: hidden; box-shadow: 0 20px 50px rgba(27,63,181,0.14); border: 1px solid rgba(27,63,181,0.08); }
.feat-visual__img img { display: block; width: 100%; height: auto; object-fit: cover; }
.feat-badge { position: absolute; left: -14px; bottom: 34px; background: #fff; border: 1px solid rgba(27,63,181,0.08); border-radius: 16px; padding: 12px 15px; display: flex; align-items: center; gap: 11px; box-shadow: 0 14px 34px rgba(27,63,181,0.14); animation: nw-float 5.4s ease-in-out infinite; }
.feat-badge__ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(35,227,150,0.16); display: flex; align-items: center; justify-content: center; }
.feat-badge p:first-child { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--rich-black); }
.feat-badge p:last-child { margin: 0; font-size: 0.7rem; color: rgba(13,13,13,0.45); }
@keyframes nw-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .feat-badge { animation: none; } }

/* Kartu fitur (payroll, self-service) */
.fcard-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.fcard { background: #fff; border: 1px solid rgba(27,63,181,0.07); border-radius: 22px; padding: 28px; }
.fcard__ic { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.fcard h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--rich-black); margin: 0 0 8px; }
.fcard p { font-size: 0.92rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0; }
.ewa-banner { margin-top: 22px; background: #fff; border: 1px solid rgba(15,157,107,0.28); border-radius: 18px; padding: 18px 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.ewa-banner p { font-size: 0.94rem; line-height: 1.6; color: rgba(13,13,13,0.7); margin: 0; flex: 1; min-width: 260px; }
.ewa-banner a { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--green-text); white-space: nowrap; }

/* Kinerja */
.perf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.perf-item { padding: 4px 0 4px 22px; border-left: 3px solid; }
.perf-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--rich-black); margin: 0 0 8px; }
.perf-item p { font-size: 0.94rem; line-height: 1.65; color: rgba(13,13,13,0.62); margin: 0; }

/* AI section (dark) */
.section--ai { background: #0D1226; }
.ai-card { max-width: 1120px; margin: 0 auto; background: linear-gradient(135deg,rgba(35,227,150,0.16) 0%,rgba(22,103,244,0.2) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: clamp(32px,5vw,60px); }
.ai-card .split { align-items: center; }
.ai-card .eyebrow { color: var(--energy-green); }
.ai-card h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem,3.4vw,2.7rem); line-height: 1.14; letter-spacing: -0.025em; color: #fff; margin: 0 0 18px; }
.ai-card__desc { font-size: 1.0625rem; line-height: 1.75; color: rgba(255,255,255,0.72); margin: 0 0 28px; }
.ai-chat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 22px; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.ai-bubble { font-size: 0.9rem; line-height: 1.5; padding: 12px 16px; }
.ai-bubble--out { align-self: flex-end; max-width: 82%; background: #fff; color: var(--rich-black); border-radius: 16px 16px 4px 16px; }
.ai-bubble--in { align-self: flex-start; max-width: 88%; background: rgba(255,255,255,0.14); color: #fff; border-radius: 16px 16px 16px 4px; line-height: 1.55; }
.btn--white { background: #fff; color: var(--integrity-blue); }
.btn--white:hover { transform: translateY(-2px); }

/* Ekosistem (fitur) */
.feco-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feco-card { background: #fff; border: 1px solid rgba(27,63,181,0.08); border-radius: 22px; padding: 32px; }
.feco-head { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.feco-head__ic { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.feco-head span { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--rich-black); }
.feco-tag { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill); margin: 0 0 14px; }
.feco-card > p:last-child { font-size: 0.94rem; line-height: 1.65; color: rgba(13,13,13,0.62); margin: 0; }

/* CTA fitur */
.fcta { max-width: 960px; margin: 0 auto; background: linear-gradient(135deg,#1B3FB5 0%,#1667F4 100%); border-radius: 30px; padding: clamp(40px,5vw,64px); text-align: center; position: relative; overflow: hidden; }
.fcta__wave { position: absolute; right: -50px; bottom: -46px; opacity: 0.35; pointer-events: none; }
.fcta h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem,3.4vw,2.6rem); line-height: 1.15; letter-spacing: -0.025em; color: #fff; margin: 0 0 16px; position: relative; }
.fcta__desc { font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 30px; position: relative; }
.fcta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }
.btn--outline-white { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.35); color: #fff; font-weight: 600; }
.btn--outline-white:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 900px) {
  .perf-grid, .feco-grid { grid-template-columns: 1fr !important; }
  .snav__inner { -webkit-mask-image: linear-gradient(90deg,#000 86%,transparent); mask-image: linear-gradient(90deg,#000 86%,transparent); }
}

/* ---------- Fitur: visual mockup (facescan & orgchart) — responsif via container query ---------- */
.facescan { position: relative; container-type: inline-size; width: 100%; aspect-ratio: 900/760; border-radius: 22px; overflow: hidden; background: linear-gradient(158deg,#1B3FB5 0%,#1667F4 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 50px rgba(27,63,181,0.18); }
.facescan__wave { position: absolute; right: -9%; top: -8%; width: 54%; opacity: 0.4; pointer-events: none; }
.facescan__ring { position: relative; width: 47cqw; aspect-ratio: 1; }
.facescan__ring > img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 22%; border: 4px dashed #23E396; box-shadow: 0 0 0 3cqw rgba(35,227,150,0.12); box-sizing: border-box; display: block; }
.facescan__badge { position: absolute; top: -6cqw; left: 50%; transform: translateX(-50%); background: rgba(13,13,13,0.76); border-radius: 14px; padding: 2cqw 3.2cqw; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; box-shadow: 0 12px 30px rgba(13,13,13,0.24); font-family: var(--font-head); font-weight: 700; font-size: clamp(0.7rem,2.4cqw,1.05rem); color: #fff; }
.facescan__badge svg { width: clamp(16px,3cqw,26px); height: auto; flex-shrink: 0; }
.facescan__clockin { position: absolute; left: 5%; bottom: 6%; background: #fff; border-radius: 18px; padding: 2.4cqw 3cqw; display: flex; align-items: center; gap: 2cqw; box-shadow: 0 18px 40px rgba(13,13,13,0.22); }
.facescan__clockin-photo { width: clamp(34px,5.1cqw,46px); aspect-ratio: 1; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.facescan__clockin-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.facescan__clockin b { font-family: var(--font-head); font-weight: 700; font-size: clamp(0.82rem,2cqw,1rem); color: var(--rich-black); display: block; }
.facescan__clockin small { font-size: clamp(0.68rem,1.6cqw,0.85rem); color: rgba(13,13,13,0.45); }

.orgchart { container-type: inline-size; width: 100%; aspect-ratio: 900/740; border-radius: 22px; overflow: hidden; background: linear-gradient(158deg,#F7F2FD 0%,#EEF3FF 100%); padding: 6cqw 5cqw; box-sizing: border-box; display: flex; flex-direction: column; box-shadow: 0 20px 50px rgba(27,63,181,0.14); border: 1px solid rgba(27,63,181,0.08); }
.orgchart__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 2cqw; }
.orgchart__head p { font-family: var(--font-head); font-weight: 700; font-size: clamp(1rem,3cqw,1.5rem); color: var(--rich-black); margin: 0; }
.orgchart__head span { font-family: var(--font-body); font-weight: 600; font-size: clamp(0.78rem,2cqw,1rem); color: #8B44C4; background: rgba(139,68,196,0.12); border-radius: 50px; padding: 1.2cqw 2.4cqw; white-space: nowrap; }
.orgchart__body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.orgchart__top { display: flex; justify-content: center; }
.org-node { background: #fff; border: 1px solid rgba(139,68,196,0.16); border-radius: 18px; padding: 2cqw 2.6cqw; display: flex; align-items: center; gap: 2cqw; box-shadow: 0 12px 30px rgba(27,63,181,0.08); }
.org-av { border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; flex-shrink: 0; width: clamp(40px,6.2cqw,56px); aspect-ratio: 1; font-size: clamp(0.9rem,2.6cqw,1.25rem); }
.org-node__name { font-family: var(--font-head); font-weight: 700; font-size: clamp(0.95rem,2.6cqw,1.25rem); color: var(--rich-black); white-space: nowrap; margin: 0; }
.org-node__role { font-family: var(--font-body); font-size: clamp(0.8rem,2cqw,1rem); color: rgba(13,13,13,0.5); white-space: nowrap; margin: 0; }
.org-line-v { width: 3px; height: 3.6cqw; background: rgba(139,68,196,0.3); margin: 0 auto; }
.org-line-h { height: 3px; width: 68%; background: rgba(139,68,196,0.3); margin: 0 auto; }
.org-branches { display: flex; gap: 2.4cqw; align-items: stretch; }
.org-branch { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; }
.org-branch .org-line-v { height: 3.2cqw; }
.org-branch__card { width: 100%; background: #fff; border: 1px solid rgba(139,68,196,0.14); border-radius: 16px; padding: 2.4cqw 1.2cqw; display: flex; flex-direction: column; align-items: center; gap: 1.4cqw; box-shadow: 0 10px 24px rgba(27,63,181,0.06); text-align: center; }
.org-branch .org-av { width: clamp(38px,6cqw,54px); font-size: clamp(0.85rem,2.5cqw,1.15rem); }
.org-branch__name { font-family: var(--font-head); font-weight: 700; font-size: clamp(0.88rem,2.4cqw,1.1rem); color: var(--rich-black); white-space: nowrap; margin: 0; }
.org-branch__role { font-family: var(--font-body); font-size: clamp(0.74rem,1.8cqw,0.92rem); color: rgba(13,13,13,0.5); margin: 0; }

/* ---------- Trust strip & security note (halaman konten) ---------- */
.trust-strip { background: var(--surface-tint); border-bottom: 1px solid var(--line); padding: 15px 24px; }
.trust-strip__inner { max-width: var(--container); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 24px; }
.trust-strip__item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 500; color: rgba(13,13,13,0.62); }
.trust-strip__item svg { flex-shrink: 0; }
.feat-note { display: flex; gap: 11px; align-items: flex-start; margin-top: 22px; padding: 13px 16px; background: rgba(27,63,181,0.04); border: 1px solid var(--line); border-radius: 12px; font-size: 0.88rem; line-height: 1.55; color: rgba(13,13,13,0.66); }
.feat-note svg { flex-shrink: 0; margin-top: 1px; }
.feat-note strong { color: var(--rich-black); font-weight: 600; }

/* ============ Halaman Paket ============ */
.theme-paket { --accent: var(--smiley-orange); }

.phero { position: relative; padding: 72px 24px 44px; overflow: hidden; text-align: center; }
.phero__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.phero__wave { position: absolute; left: -140px; top: -40px; opacity: 0.5; pointer-events: none; z-index: 0; }
.phero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.5rem,5.6vw,4.2rem); line-height: 1.06; letter-spacing: -0.035em; color: var(--rich-black); margin: 0 0 22px; }
.phero__sub { font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.7; color: rgba(13,13,13,0.66); max-width: 640px; margin: 0 auto 30px; }
.phero__checks { display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center; }
.phero__check { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 500; color: rgba(13,13,13,0.62); }

/* ---------- Paket: kartu harga ---------- */
.pkg-sec { padding: 16px 24px 0; background: var(--white); }
.pkg-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; align-items: stretch; }
.pkg { background: var(--white); border: 1px solid rgba(27,63,181,0.12); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; position: relative; min-width: 0; }
.pkg--pop { background: var(--integrity-blue); border: none; box-shadow: 0 24px 56px rgba(27,63,181,0.3); } /* Advanced */
.pkg--growth { border: 2px solid var(--energy-green); overflow: hidden; } /* Growth */
.pkg__glow { position: absolute; top: -70px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle,rgba(35,227,150,0.16) 0%,transparent 70%); pointer-events: none; }
.pkg__head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; position: relative; }
.pkg__ic { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pkg__ic--business { background: rgba(27,63,181,0.08); }
.pkg__ic--pop { background: rgba(255,255,255,0.14); }
.pkg__ic--growth { background: rgba(35,227,150,0.16); }
.pkg__name { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; color: var(--rich-black); margin: 0; }
.pkg__desc { font-size: 0.9rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0 0 22px; min-height: 44px; position: relative; }
.pkg__price-row { display: flex; align-items: baseline; gap: 6px; }
.pkg__price { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--integrity-blue); line-height: 1; }
.pkg__per { display: block; font-size: 0.82rem; color: rgba(13,13,13,0.5); }
.pkg__price-block { margin: 0 0 24px; position: relative; }
.pkg__cta { text-align: center; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; text-decoration: none; padding: 14px; border-radius: var(--radius-pill); margin-bottom: 26px; display: block; position: relative; }
.pkg__cta--business { color: var(--integrity-blue); border: 1.5px solid rgba(27,63,181,0.25); }
.pkg__cta--business:hover { border-color: var(--integrity-blue); background: rgba(27,63,181,0.04); }
.pkg__cta--pop { font-weight: 700; color: #fff; background: var(--gradient-main); box-shadow: 0 10px 24px rgba(35,227,150,0.3); }
.pkg__cta--pop:hover { opacity: 0.92; }
.pkg__cta--growth { font-weight: 700; color: var(--green-text); border: 1.5px solid rgba(35,227,150,0.5); }
.pkg__cta--growth:hover { background: rgba(35,227,150,0.08); border-color: var(--energy-green); }
.pkg__label { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(13,13,13,0.4); margin: 0 0 14px; position: relative; }
.pkg__feats { display: flex; flex-direction: column; gap: 11px; position: relative; }
.pkg__feat { display: flex; gap: 9px; align-items: flex-start; font-size: 0.9rem; line-height: 1.45; color: rgba(13,13,13,0.72); }
.pkg__feat svg { margin-top: 2px; flex-shrink: 0; }
.pkg__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gradient-main); color: #fff; border-radius: var(--radius-pill); padding: 6px 16px; font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; box-shadow: 0 8px 20px rgba(22,103,244,0.4); white-space: nowrap; }
.pkg__badge--new { top: 22px; left: auto; right: 22px; transform: none; background: rgba(35,227,150,0.16); color: var(--green-text); box-shadow: none; padding: 5px 12px; font-size: 0.66rem; letter-spacing: 0.05em; }
.pkg__growthbox { position: relative; background: linear-gradient(135deg,rgba(35,227,150,0.14),rgba(22,103,244,0.1)); border: 1px solid rgba(35,227,150,0.3); border-radius: 14px; padding: 13px 15px; margin: 0 0 24px; }
.pkg__growthbox-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.pkg__growthbox-title { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--green-text); line-height: 1.15; }
.pkg__growthbox-sub { display: block; font-size: 0.82rem; line-height: 1.5; color: rgba(13,13,13,0.6); }
/* modifier warna teks utk kartu highlight Advanced (teks putih) */
.pkg--pop .pkg__name, .pkg--pop .pkg__price { color: #fff; }
.pkg--pop .pkg__desc { color: rgba(255,255,255,0.74); }
.pkg--pop .pkg__per { color: rgba(255,255,255,0.6); }
.pkg--pop .pkg__label { color: rgba(255,255,255,0.5); }
.pkg--pop .pkg__feat { color: rgba(255,255,255,0.9); }
.pkg--growth .pkg__price { color: var(--green-text); }
.pkg__gratis { color: var(--green-text); }
.pkg-note { text-align: center; font-size: 0.85rem; color: rgba(13,13,13,0.45); max-width: 720px; margin: 26px auto 0; }
.pkg-custom { max-width: 760px; margin: 22px auto 0; background: var(--surface); border: 1px solid rgba(27,63,181,0.1); border-radius: 18px; padding: 20px 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px; text-align: center; }
.pkg-custom__text { font-size: 0.95rem; color: rgba(13,13,13,0.72); }
.pkg-custom__link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--integrity-blue); }
.pkg-custom__link:hover { gap: 11px; }

/* ===================== PAKET: RIBBON "SUDAH TERMASUK" ===================== */
.included { padding: 44px 24px; background: #fff; }
.included__box { max-width: 1180px; margin: 0 auto; background: var(--surface,#F5F8FF); border-radius: var(--radius,24px); padding: 34px 36px; }
.included__eyebrow { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: #1B3FB5; margin: 0 0 26px; }
.included__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 22px; }
.included__item { display: flex; gap: 13px; align-items: flex-start; }
.included__ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(27,63,181,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.included__item h3 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--rich-black); margin: 0 0 3px; }
.included__item p { font-size: 0.84rem; line-height: 1.5; color: rgba(13,13,13,0.58); margin: 0; }

/* ===================== PAKET: ESTIMATOR BIAYA ===================== */
.est-sec { padding: 64px 24px; background: var(--surface,#F5F8FF); }
.est-head { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.est-head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem,3vw,2.4rem); line-height: 1.15; letter-spacing: -0.025em; color: #1B3FB5; margin: 0 0 14px; }
.est { max-width: 1080px; margin: 0 auto; background: #fff; border: 1px solid rgba(27,63,181,0.1); border-radius: var(--radius,24px); padding: 38px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; box-shadow: 0 20px 50px rgba(27,63,181,0.08); }
.est > * { min-width: 0; }
.est__label-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.est__label { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--rich-black); }
.est__count { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: #1B3FB5; line-height: 1; }
.est__scale { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.76rem; color: rgba(13,13,13,0.4); }
.est__cards { display: flex; flex-direction: column; gap: 14px; }
.est__note { margin-top: 24px; background: rgba(35,227,150,0.09); border: 1px solid rgba(35,227,150,0.28); border-radius: 14px; padding: 15px 17px; display: flex; gap: 11px; align-items: flex-start; }
.est__card { border: 1px solid rgba(27,63,181,0.12); border-radius: 16px; padding: 20px 22px; }
.est__card--pop { border: 2px solid #1B3FB5; background: rgba(27,63,181,0.03); position: relative; }
.est__badge { position: absolute; top: -11px; left: 20px; background: var(--gradient-main); color: #fff; border-radius: var(--radius-pill); padding: 3px 11px; font-family: var(--font-head); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.05em; text-transform: uppercase; }
.est__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.est__row span:first-child { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--rich-black); }
.est__price { font-size: 0.78rem; color: rgba(13,13,13,0.45); }
.est__per { font-family: var(--font-head); font-weight: 400; font-size: 0.82rem; color: rgba(13,13,13,0.5); }
.est__year { font-size: 0.8rem; color: rgba(13,13,13,0.5); margin: 4px 0 0; }
.est__total { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: #1B3FB5; margin: 0; line-height: 1.1; }
.nw-range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 50px; background: rgba(27,63,181,0.14); outline: none; }
.nw-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid #1667F4; box-shadow: 0 4px 12px rgba(22,103,244,0.4); cursor: pointer; }
.nw-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid #1667F4; box-shadow: 0 4px 12px rgba(22,103,244,0.4); cursor: pointer; }

@media (max-width: 900px) {
  .est { grid-template-columns: 1fr; padding: 26px; }
}

/* ---------- GROWTH SPOTLIGHT ---------- */
.growth { padding: 92px 24px; background: #0D0D0D; position: relative; overflow: hidden; }
.growth__glow { position: absolute; top: -120px; right: -90px; width: 440px; height: 440px; background: radial-gradient(circle,rgba(35,227,150,0.14) 0%,transparent 70%); pointer-events: none; }
.growth__inner { max-width: 1080px; margin: 0 auto; position: relative; }
.growth__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.growth__eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: #23E396; margin: 0 0 14px; }
.growth__head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem,3.4vw,2.7rem); line-height: 1.15; letter-spacing: -0.025em; color: #fff; margin: 0 0 16px; }
.growth__head p { font-size: 1.0625rem; line-height: 1.75; color: rgba(255,255,255,0.62); margin: 0; }

/* Illustration: 50 -> 100 */
.growth__illus { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 28px; padding: 40px 36px; margin-bottom: 20px; }
.growth__bars { display: flex; align-items: flex-end; justify-content: center; gap: 44px; }
.growth__bar-col { flex: 1; max-width: 280px; text-align: center; }
.growth__bar-label { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 14px; }
.growth__bar-caption { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin: 14px 0 0; }
.growth__bar-accent { color: #23E396; }
.growth__bar-start { height: 150px; border-radius: 16px; background: linear-gradient(180deg,#2A6FDB,#1B3FB5); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.14); }
.growth__bar-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: #fff; line-height: 1; }
.growth__bar-num--sm { font-size: 2.2rem; }
.growth__bar-unit { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.growth__bar-unit--sm { font-size: 0.76rem; }
.growth__bar-end { height: 230px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); display: flex; flex-direction: column; }
.growth__bar-bonus { flex: 1; background: linear-gradient(180deg,rgba(35,227,150,0.9),#0F9D6B); display: flex; align-items: center; justify-content: center; position: relative; }
.growth__bar-tag { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); background: #0D0D0D; color: #23E396; border-radius: 50px; padding: 3px 12px; font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; white-space: nowrap; }
.growth__bar-plus { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #0D2A2A; }
.growth__bar-base { height: 150px; background: linear-gradient(180deg,#2A6FDB,#1B3FB5); display: flex; align-items: center; justify-content: center; }
.nw-growth-arrow { padding-bottom: 64px; }

/* Lock pill */
.growth__lockwrap { text-align: center; margin-bottom: 24px; }
.growth__lock { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: #fff; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 12px 24px; }
.growth__lock-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.growth__lock-accent { color: #23E396; }

/* 3 steps */
.growth__steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.growth__step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 26px; }
.growth__step-num { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: rgba(35,227,150,0.55); }
.growth__step h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; margin: 8px 0 6px; }
.growth__step p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.58); margin: 0; }

/* Budget certainty panel */
.growth__budget { margin-top: 40px; }
.growth__budget-eyebrow { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: #23E396; margin: 0 0 8px; }
.growth__budget-title { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem,2.4vw,1.8rem); color: #fff; margin: 0 auto 26px; max-width: 560px; line-height: 1.25; }
.growth__cmp { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; max-width: 820px; margin: 0 auto; }
.growth__cmp-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 26px; }
.growth__cmp-card--growth { background: linear-gradient(150deg,rgba(35,227,150,0.14),rgba(22,103,244,0.1)); border: 1px solid rgba(35,227,150,0.35); }
.growth__cmp-label { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.growth__cmp-label--accent { color: #23E396; }
.growth__cmp-desc { font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 10px 0 16px; }
.growth__cmp-desc--accent { color: rgba(255,255,255,0.75); }
.growth__cmp-figures { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.growth__cmp-old { color: rgba(255,255,255,0.5); }
.growth__cmp-new { color: #F66441; }
.growth__cmp-price { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; }
.growth__cmp-price-sub { font-family: var(--font-body); font-weight: 400; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.growth__cmp-note { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 12px 0 0; }
.growth__cmp-note--accent { color: #23E396; }

/* CTA */
.growth__cta { text-align: center; margin-top: 34px; }
.growth__cta .btn--primary { box-shadow: 0 12px 30px rgba(35,227,150,0.28); }

/* ---------- COMPARISON TABLE (Paket) ---------- */
.cmp-sec { padding: 92px 24px; background: #fff; }
.cmp-wrap { overflow-x: auto; border: 1px solid rgba(27,63,181,0.1); border-radius: var(--radius,24px); }
.cmp { width: 100%; min-width: 640px; border-collapse: collapse; }
.cmp th, .cmp td { padding: 16px 18px; }
.cmp thead th { font-family: var(--font-head); font-weight: 700; border-bottom: 1px solid rgba(27,63,181,0.1); }
.cmp td:first-child, .cmp th:first-child { text-align: left; padding-left: 24px; font-size: 0.9rem; color: rgba(13,13,13,0.75); }
.cmp td:not(:first-child) { text-align: center; border-bottom: 1px solid rgba(27,63,181,0.06); }
.cmp .adv { background: rgba(27,63,181,0.03); }
.cmp .grw { background: rgba(35,227,150,0.05); }
.cmp__no { display: inline-block; width: 14px; height: 2px; background: rgba(13,13,13,0.2); border-radius: 2px; }

/* ---------- FAQ (Paket) ---------- */
.pfaq { padding: 20px 24px 92px; background: #fff; }
.pfaq__head { text-align: center; margin-bottom: 44px; }
.pfaq__wrap { max-width: 820px; margin: 0 auto; }

/* ---------- Paket: breakpoint mobile ---------- */
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .growth__steps, .growth__cmp { grid-template-columns: 1fr; gap: 22px; }
  .growth__bars { flex-direction: column; align-items: stretch; gap: 22px; }
  .nw-growth-arrow { transform: rotate(90deg); align-self: center; }
}

/* ===== Halaman Hubungi Kami ===== */
.theme-hubungi { --accent: var(--green-text); --surface: #F1FBF6; }

.chero { position: relative; padding: 70px 24px 40px; overflow: hidden; }
.chero__wave { position: absolute; right: -120px; top: -60px; opacity: 0.5; pointer-events: none; z-index: 0; }
.chero__inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.chero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,5.2vw,3.8rem); line-height: 1.08; letter-spacing: -0.035em; color: var(--rich-black); margin: 0 0 20px; }
.chero__sub { font-size: clamp(1rem,1.5vw,1.18rem); line-height: 1.7; color: rgba(13,13,13,0.66); max-width: 600px; margin: 0 auto; }
/* eyebrow hijau varian untuk hero kontak */
.chero .eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(15,157,107,0.08); border: 1px solid rgba(15,157,107,0.2); color: var(--green-text); border-radius: var(--radius-pill); padding: 7px 16px; margin: 0 0 24px; letter-spacing: 0.06em; }
.chero .eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--energy-green); }

/* ---------- Hubungi Kami: Form + Channels ---------- */
.contact { padding: 36px 24px 80px; background: #fff; }
.contact-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 0.85fr; gap: 44px; align-items: start; }
.contact-form { background: var(--rich-black); border-radius: 28px; padding: 48px 44px; position: relative; overflow: hidden; }
.contact-form__glow { position: absolute; top: -90px; right: -70px; width: 340px; height: 340px; background: radial-gradient(circle,rgba(35,227,150,0.13) 0%,transparent 70%); pointer-events: none; }
.contact-form__inner { position: relative; }
.contact-form h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; color: #fff; margin: 0 0 8px; }
.contact-form__desc { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 0 0 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
textarea.field { resize: vertical; min-height: 84px; font-family: var(--font-body); }
.form__note { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 6px 0 0; text-align: center; }
.channels { display: flex; flex-direction: column; gap: 16px; }
.channel { text-decoration: none; display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid rgba(27,63,181,0.1); border-radius: 20px; padding: 22px 24px; transition: transform .2s, box-shadow .2s; }
.channel:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(27,63,181,0.12); }
.channel--soft { background: var(--surface-tint); }
.channel__ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 15px; display: flex; align-items: center; justify-content: center; }
.channel__title { margin: 0 0 3px; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--rich-black); }
.channel__desc { margin: 0; font-size: 0.88rem; color: rgba(13,13,13,0.55); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 40px 26px; }
}

/* ---------- Hubungi Kami: Offices ---------- */
.offices { padding: 20px 24px 92px; background: #fff; }
.offices__inner { max-width: var(--container); margin: 0 auto; }
.offices__head { max-width: 560px; margin-bottom: 40px; }
.offices__head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem,3.2vw,2.5rem); line-height: 1.15; letter-spacing: -0.025em; color: #1B3FB5; margin: 0; }
.office-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.office-card { background: #fff; border: 1px solid rgba(27,63,181,0.09); border-radius: var(--radius); padding: 30px; }
.office-card__head { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.office-card__head h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--rich-black); margin: 0; }
.office-card__addr { font-size: 0.92rem; line-height: 1.65; color: rgba(13,13,13,0.62); margin: 0; }

@media (max-width: 900px) {
  .office-grid { grid-template-columns: 1fr; }
}
/* Di HP sempit, kolom Nama + Perusahaan menyusut & placeholder terpotong -> stack 1 kolom */
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ===== Halaman Tentang Kami ===== */
.theme-tentang { --accent: var(--smiley-orange); --surface: #FBF4F2; }

/* Eyebrow-pill+dot (hanya hero; eyebrow section lain pakai base .eyebrow polos) */
.about-hero .eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(246,100,65,0.08); border: 1px solid rgba(246,100,65,0.18); color: #C94E2C; border-radius: var(--radius-pill); padding: 7px 16px; margin: 0 0 26px; letter-spacing: 0.06em; }
.about-hero .eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.about-hero { position: relative; padding: 74px 24px 68px; overflow: hidden; }
.about-hero__wave { position: absolute; right: -130px; top: -70px; opacity: .5; pointer-events: none; z-index: 0; }
.about-hero__inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.about-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.5rem,5.6vw,4.2rem); line-height: 1.07; letter-spacing: -0.035em; color: var(--rich-black); margin: 0 0 24px; }
.about-hero h1 .grad { background: linear-gradient(120deg,var(--accent) 0%,#1667F4 70%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about-hero__lead { font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.7; color: rgba(13,13,13,0.66); max-width: 660px; margin: 0 auto; }

.about-story__media { position: relative; }
.about-story__img { display: block; width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(27,63,181,0.16); border: 1px solid rgba(27,63,181,0.08); }
.about-story__badge { position: absolute; left: -16px; bottom: -18px; background: #fff; border: 1px solid rgba(27,63,181,0.08); border-radius: 18px; padding: 15px 20px; box-shadow: 0 16px 38px rgba(27,63,181,0.16); animation: nw-float 5.4s ease-in-out infinite; }
.about-story__badge b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #1B3FB5; line-height: 1; }
.about-story__badge b small { font-size: 1rem; }
.about-story__badge p { margin: 4px 0 0; font-size: 0.76rem; color: rgba(13,13,13,0.5); }
@media (max-width:900px){ .about-story__media { order: -1; } }
@media (max-width:560px){ .about-story__badge { display: none; } }

/* Fix: gap between consecutive .section__desc paragraphs in "Perjalanan kami" */
.theme-tentang .section__desc + .section__desc { margin-top: 16px; }

/* Section header wrapper for "Empat Nilai" & "Ekosistem" sections */
.about-sec-head { max-width: 600px; margin-bottom: 48px; }

.about-mission { padding: 0 24px; }
.about-mission__box { max-width: 1180px; margin: 0 auto; background: linear-gradient(150deg,#1B3FB5 0%,#1667F4 100%); border-radius: 32px; padding: clamp(44px,5vw,72px); position: relative; overflow: hidden; }
.about-mission__box .eyebrow { color: #23E396; }
.about-mission__inner { position: relative; max-width: 760px; }
.about-mission h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem,3.4vw,2.6rem); line-height: 1.2; letter-spacing: -0.025em; color: #fff; margin: 0 0 18px; }
.about-mission p { font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,0.78); margin: 0; }

.about-ceo { padding: 92px 24px; }
.about-ceo__grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: center; }
.about-ceo__photo { position: relative; justify-self: center; }
.about-ceo__photo img { display: block; width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: center 20%; box-shadow: 0 20px 50px rgba(27,63,181,0.18); border: 4px solid #fff; }
.about-ceo__mark { position: absolute; right: -6px; bottom: 6px; width: 52px; height: 52px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(246,100,65,0.35); }
.about-ceo__quote { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.4rem,2.6vw,2rem); line-height: 1.32; letter-spacing: -0.02em; color: var(--rich-black); margin: 0 0 24px; }
.about-ceo__by { display: flex; align-items: center; gap: 14px; }
.about-ceo__bar { width: 44px; height: 3px; border-radius: 3px; background: linear-gradient(90deg,#23E396,#1667F4); }
.about-ceo__name { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: #1B3FB5; margin: 0; }
.about-ceo__role { font-size: 0.9rem; color: rgba(13,13,13,0.55); margin: 2px 0 0; }
@media (max-width:900px){ .about-ceo__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; } .about-ceo__by { justify-content: center; } }

.about-values__grid, .about-cred__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.about-values__grid > *, .about-cred__grid > * { min-width: 0; }
.about-card { background: #fff; border: 1px solid rgba(27,63,181,0.08); border-radius: var(--radius); padding: 30px; transition: transform .25s, box-shadow .25s; }
.about-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(27,63,181,0.12); }
.about-card__ic { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.about-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: var(--rich-black); margin: 0 0 10px; }
.about-card p { font-size: 0.92rem; line-height: 1.65; color: rgba(13,13,13,0.6); margin: 0; }
.about-cred .about-card { padding: 28px; }
.about-cred .about-card__ic { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 18px; }
.about-cred .about-card h3 { font-size: 1.02rem; margin: 0 0 8px; }
.about-cred .about-card p { font-size: 0.88rem; line-height: 1.6; }
.about-cred__head { max-width: 600px; margin: 0 auto 48px; text-align: center; }
@media (max-width:900px){ .about-values__grid, .about-cred__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .about-values__grid, .about-cred__grid { grid-template-columns: 1fr; } }

.about-stats__grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.about-stats__grid > * { min-width: 0; }
.about-stats__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,4vw,3rem); line-height: 1; margin: 0 0 8px; letter-spacing: -0.02em; }
.about-stats__lbl { font-size: 0.92rem; color: rgba(13,13,13,0.6); margin: 0; }
@media (max-width:560px){ .about-stats__grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }

.about-cta { padding: 20px 24px 96px; }
.about-cta__box { max-width: 1180px; margin: 0 auto; background: var(--rich-black); border-radius: 32px; padding: clamp(48px,5vw,72px); position: relative; overflow: hidden; text-align: center; }
.about-cta__glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 420px; height: 420px; background: radial-gradient(circle,rgba(246,100,65,0.14) 0%,transparent 70%); pointer-events: none; }
.about-cta__inner { position: relative; max-width: 640px; margin: 0 auto; }
.about-cta .eyebrow { color: #23E396; }
.about-cta h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem,3.2vw,2.5rem); line-height: 1.16; letter-spacing: -0.025em; color: #fff; margin: 0 0 18px; }
.about-cta__lead { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.66); margin: 0 0 30px; }
.about-cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
/* Tombol di atas background gelap: reuse .btn + override warna agar kontras.
   .btn/.btn--primary/.btn--ghost SUDAH ada (style.css baris 89-99); .btn--ghost default
   putih-untuk-terang, jadi override khusus CTA gelap di bawah ini. */
.about-cta__btns .btn--primary { background: linear-gradient(135deg,#23E396 0%,#1667F4 100%); box-shadow: 0 12px 30px rgba(22,103,244,0.35); }
.about-cta__btns .btn--ghost { background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18); color: #fff; }
.about-cta__btns .btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }

/* ===== Halaman Legal (Kebijakan Privasi + Syarat & Ketentuan) ===== */
.theme-legal { --accent: #238DE3; --surface: var(--surface-tint); }

/* Hero */
.legal-hero { position: relative; padding: 66px 24px 52px; background: var(--surface); border-bottom: 1px solid rgba(27,63,181,0.07); overflow: hidden; }
.legal-hero__wave { position: absolute; right: -90px; top: -50px; opacity: .4; pointer-events: none; z-index: 0; }
.legal-hero__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.legal-pill { display: inline-flex; align-items: center; gap: 9px; background: rgba(35,141,227,0.09); border: 1px solid rgba(35,141,227,0.2); color: #1E6FB0; border-radius: var(--radius-pill); padding: 7px 16px; font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; }
.legal-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: #238DE3; }
.legal-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,4.6vw,3.2rem); line-height: 1.1; letter-spacing: -0.03em; color: var(--rich-black); margin: 0 0 16px; }
.legal-hero__sub { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.7; color: rgba(13,13,13,0.6); margin: 0 0 18px; max-width: 620px; }
.legal-hero__date { font-family: var(--font-body); font-size: 0.85rem; color: rgba(13,13,13,0.45); margin: 0; }

/* Body grid */
.legal-body { padding: 56px 24px 92px; background: #fff; }
.legal-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 230px 1fr; gap: 56px; align-items: start; }

/* ToC */
.legal-toc { position: sticky; top: 96px; }
.legal-toc__label { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(13,13,13,0.4); margin: 0 0 14px; }
.legal-toc__list { display: flex; flex-direction: column; gap: 2px; border-left: 2px solid rgba(27,63,181,0.1); }
.legal-toc__link { font-family: var(--font-body); font-size: 0.9rem; color: rgba(13,13,13,0.66); text-decoration: none; padding: 7px 0 7px 16px; margin-left: -2px; border-left: 2px solid transparent; transition: color .15s, border-color .15s; }
.legal-toc__link:hover { color: #1B3FB5; border-left-color: #1B3FB5; }
.legal-toc__cross { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: #1B3FB5; text-decoration: none; }

/* Content */
.legal-content { min-width: 0; font-family: var(--font-body); }
.legal-content h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; color: #1B3FB5; margin: 52px 0 16px; scroll-margin-top: 100px; }
.legal-content h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--rich-black); margin: 30px 0 10px; }
.legal-content p { font-size: 1rem; line-height: 1.82; color: rgba(13,13,13,0.72); margin: 0 0 16px; }
.legal-content ol, .legal-content ul { padding-left: 24px; margin: 0 0 18px; }
.legal-content li { font-size: 1rem; line-height: 1.8; color: rgba(13,13,13,0.72); margin-bottom: 12px; }
.legal-content ol { list-style: decimal; }
.legal-content ol ol { list-style: lower-alpha; margin: 12px 0; }
.legal-content ol ol ol { list-style: lower-roman; }
.legal-content strong { color: var(--rich-black); font-weight: 600; }
.legal-content a { color: #1E6FB0; text-decoration: underline; text-underline-offset: 2px; }
.legal-content__foot { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(27,63,181,0.1); }

/* Contact box (di dalam .legal-content) */
.legal-contact { margin: 14px 0 4px; padding: 20px 22px; background: var(--surface); border: 1px solid rgba(27,63,181,0.1); border-radius: 16px; }
.legal-contact__name { margin: 0 0 4px; font-family: var(--font-head); font-weight: 700; color: #1B3FB5; }
.legal-contact p { font-size: 0.95rem; margin: 0 0 4px; line-height: 1.6; }
.legal-contact p:last-child { margin-bottom: 0; }

/* Mobile */
@media (max-width: 960px) {
  .legal-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; margin-bottom: 20px; }
}
@media (max-width: 560px) {
  .legal-body { padding: 40px 20px 72px; }
  .legal-content { overflow-wrap: break-word; }
}

/* ===== Halaman Referral ===== */
.theme-referral { --accent: var(--friendly-purple); --surface: #F9F5FD; }

.ref-hero { position: relative; padding: 72px 24px 60px; overflow: hidden; }
.ref-hero__wave { position: absolute; right: -130px; top: -70px; opacity: .5; pointer-events: none; z-index: 0; }
.ref-hero__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.ref-hero__grid > * { min-width: 0; }
.ref-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,5.2vw,3.9rem); line-height: 1.07; letter-spacing: -0.035em; color: var(--rich-black); margin: 0 0 20px; }
.ref-hero h1 .grad { background: linear-gradient(120deg,var(--accent) 0%,#1667F4 70%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ref-hero__lead { font-size: clamp(1rem,1.5vw,1.18rem); line-height: 1.7; color: rgba(13,13,13,0.66); margin: 0 0 30px; max-width: 520px; }
.ref-hero__lead strong { color: var(--rich-black); font-weight: 600; }
.ref-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Pill eyebrow (hero) — ungu */
.ref-pill { display: inline-flex; align-items: center; gap: 9px; background: rgba(165,100,215,0.09); border: 1px solid rgba(165,100,215,0.2); color: var(--purple-text); border-radius: var(--radius-pill); padding: 7px 16px; font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.ref-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--friendly-purple); }

/* Tombol ungu->biru (scoped) */
.btn--ref { background: linear-gradient(135deg,#A564D7 0%,#1667F4 100%); color: #fff; box-shadow: 0 12px 30px rgba(139,68,196,0.3); }
.btn--ref:hover { transform: translateY(-2px); }
.btn--ref-ghost { background: #fff; border: 2px solid rgba(165,100,215,0.25); color: var(--purple-text); padding: 14px 28px; font-weight: 600; }
.btn--ref-ghost:hover { border-color: var(--purple-text); }

/* Estimator (kartu gelap) */
.ref-est { background: var(--rich-black); border-radius: 28px; padding: 40px 38px; position: relative; overflow: hidden; }
.ref-est__glow { position: absolute; top: -90px; right: -70px; width: 320px; height: 320px; background: radial-gradient(circle,rgba(165,100,215,0.18) 0%,transparent 70%); pointer-events: none; }
.ref-est__inner { position: relative; }
.ref-est__eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--friendly-purple); margin: 0 0 8px; }
.ref-est__note { font-size: 0.9rem; line-height: 1.55; color: rgba(255,255,255,0.55); margin: 0 0 26px; }
.ref-est__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.ref-est__row-l { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.ref-est__row-v { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff; }
.ref-est__minmax { display: flex; justify-content: space-between; margin-top: 8px; }
.ref-est__minmax span { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.ref-est__result { margin-top: 28px; padding: 24px; background: linear-gradient(135deg,rgba(165,100,215,0.18),rgba(22,103,244,0.16)); border: 1px solid rgba(165,100,215,0.3); border-radius: 18px; }
.ref-est__result-l { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0 0 6px; }
.ref-est__result-v { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; color: #fff; margin: 0; letter-spacing: -0.02em; }
.ref-est__disc { font-size: 0.76rem; color: rgba(255,255,255,0.4); margin: 16px 0 0; }

/* Slider (di atas kartu gelap) */
.ref-range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 50px; background: rgba(255,255,255,0.16); outline: none; }
.ref-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.3); border: 3px solid #A564D7; }
.ref-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: #fff; cursor: pointer; border: 3px solid #A564D7; }

@media (max-width:900px){ .ref-hero__grid { grid-template-columns: 1fr; gap: 36px; } .ref-est { padding: 40px 26px; } }

.ref-calc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ref-calc__grid > * { min-width: 0; }
.ref-calc-card { background: #fff; border: 1px solid rgba(165,100,215,0.16); border-radius: var(--radius); padding: 32px; }
.ref-calc-card__tag { display: inline-flex; align-items: center; gap: 8px; border-radius: var(--radius-pill); padding: 6px 14px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.ref-calc-card__tag--green { background: rgba(35,227,150,0.14); color: #0F9D6B; }
.ref-calc-card__tag--blue { background: rgba(35,141,227,0.12); color: #1E6FB0; }
.ref-calc-card p.ref-calc-card__desc { font-size: 0.95rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0 0 18px; }
.ref-calc-card__rows { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }
.ref-calc-card__rows > div { display: flex; justify-content: space-between; color: rgba(13,13,13,0.7); }
.ref-calc-card__num { font-weight: 600; }
.ref-calc-card__comm { font-family: var(--font-head); font-weight: 800; color: var(--purple-text); font-size: 1.15rem; }

.ref-steps__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.ref-steps__grid > * { min-width: 0; }
.ref-step { position: relative; padding: 30px; border: 1px solid rgba(27,63,181,0.08); border-radius: var(--radius); background: #fff; }
.ref-step--hl { border-color: rgba(165,100,215,0.25); background: linear-gradient(160deg,#faf5fe,#fff); }
.ref-step__n { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: rgba(165,100,215,0.25); line-height: 1; margin-bottom: 16px; }
.ref-step--hl .ref-step__n { color: rgba(165,100,215,0.4); }
.ref-step h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: var(--rich-black); margin: 0 0 10px; }
.ref-step p { font-size: 0.92rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0; }

@media (max-width:900px){ .ref-calc__grid, .ref-steps__grid { grid-template-columns: 1fr; } }

.ref-benefit__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ref-benefit__grid > * { min-width: 0; }
.ref-benefit-card { background: var(--surface); border-radius: var(--radius); padding: 32px; }
.ref-benefit-card__ic { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ref-benefit-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: var(--rich-black); margin: 0 0 10px; }
.ref-benefit-card p { font-size: 0.92rem; line-height: 1.65; color: rgba(13,13,13,0.6); margin: 0; }

.ref-cta { padding: 20px 24px 96px; }
.ref-cta__box { max-width: 1180px; margin: 0 auto; background: var(--rich-black); border-radius: 32px; padding: clamp(48px,5vw,72px); position: relative; overflow: hidden; text-align: center; }
.ref-cta__glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 440px; height: 440px; background: radial-gradient(circle,rgba(165,100,215,0.16) 0%,transparent 70%); pointer-events: none; }
.ref-cta__inner { position: relative; max-width: 640px; margin: 0 auto; }
.ref-cta__eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--friendly-purple); margin: 0 0 16px; }
.ref-cta h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem,3.2vw,2.5rem); line-height: 1.16; letter-spacing: -0.025em; color: #fff; margin: 0 0 18px; }
.ref-cta__lead { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.66); margin: 0 0 30px; }
.ref-cta .btn--ref { justify-content: center; }

@media (max-width:640px){ .ref-benefit__grid { grid-template-columns: 1fr; } }

/* ===== Success Story ===== */
.theme-story { --accent: var(--green-text); --surface: #F1FBF6; }

/* Placeholder gambar bermerek (ganti foto asli nanti) */
.story-ph { display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; background: linear-gradient(150deg, var(--ph-bg, #E8F7F0), #fff); color: var(--ph-fg, #0F9D6B); font-family: var(--font-head); font-weight: 700; }
/* Foto asli (assets/story). Kartu: isi tile absolut; hero detail: blok 16/7.6. */
.story-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.story-himg { display: block; width: 100%; aspect-ratio: 16/7.6; object-fit: cover; }
.story-ph span { font-size: 1.05rem; line-height: 1.3; opacity: .85; }

/* Detail */
.story-dhero { padding: 40px 24px 0; background: var(--surface); border-bottom: 1px solid rgba(15,157,107,0.12); }
.story-dhero__inner { max-width: 1080px; margin: 0 auto; }
.story-crumb { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: rgba(13,13,13,0.5); margin-bottom: 24px; }
.story-crumb a { color: var(--green-text); font-weight: 500; }
.story-chip { display: inline-flex; align-items: center; gap: 8px; border-radius: var(--radius-pill); padding: 6px 14px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.story-dhero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem,3.8vw,2.9rem); line-height: 1.14; letter-spacing: -0.03em; color: var(--rich-black); margin: 0 0 20px; max-width: 820px; }
.story-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-bottom: 36px; }
.story-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(13,13,13,0.6); }
.story-dimg { padding: 0 24px; background: linear-gradient(180deg, var(--surface) 50%, #fff 50%); }
.story-dimg__box { max-width: 1080px; margin: 0 auto; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(27,63,181,0.16); border: 1px solid rgba(27,63,181,0.08); }
.story-dimg .story-ph { aspect-ratio: 16/7.6; }
.story-metric { padding: 52px 24px 20px; }
.story-metric__grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.story-metric__grid > * { min-width: 0; }
.story-mtile { background: var(--surface); border: 1px solid rgba(15,157,107,0.14); border-radius: 20px; padding: 30px; }
.story-mtile--dark { background: var(--rich-black); border: none; }
.story-mtile__big { font-family: var(--font-head); font-weight: 800; line-height: 1.05; margin: 0; color: #1B3FB5; font-size: 2.8rem; }
.story-mtile--dark .story-mtile__big { color: #23E396; }
.story-mtile__big--sm { font-size: 2rem; }
.story-mtile__small { font-size: 0.92rem; margin: 10px 0 0; color: rgba(13,13,13,0.6); }
.story-mtile--dark .story-mtile__small { color: rgba(255,255,255,0.66); }
.story-body { padding: 36px 24px 88px; }
.story-body__grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.story-article { min-width: 0; }
.story-article h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em; color: #1B3FB5; margin: 44px 0 16px; }
.story-article h2:first-child { margin-top: 0; }
.story-article p { font-size: 1.06rem; line-height: 1.85; color: rgba(13,13,13,0.72); margin: 0 0 18px; }
.story-article ul { margin: 0 0 18px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.story-article li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; line-height: 1.6; color: rgba(13,13,13,0.72); }
.story-article li svg { flex-shrink: 0; margin-top: 2px; }
.story-quote { margin: 32px 0; padding: 28px 32px; background: var(--surface); border-left: 4px solid var(--green-text); border-radius: 0 16px 16px 0; }
.story-quote p:first-child { font-family: var(--font-head); font-weight: 600; font-size: 1.24rem; line-height: 1.5; letter-spacing: -0.01em; color: var(--rich-black); margin: 0 0 14px; }
.story-quote p:last-child { font-size: 0.92rem; color: rgba(13,13,13,0.55); margin: 0; }
.story-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.story-side__card { background: #fff; border: 1px solid rgba(27,63,181,0.1); border-radius: 20px; padding: 26px; }
.story-side__label { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(13,13,13,0.4); margin: 0 0 18px; }
.story-side__rows { display: flex; flex-direction: column; gap: 16px; }
.story-side__k { font-size: 0.78rem; color: rgba(13,13,13,0.45); margin: 0 0 3px; }
.story-side__v { font-size: 0.95rem; color: rgba(13,13,13,0.75); margin: 0; }
.story-side__v--name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--rich-black); }
.story-side__mods { display: flex; flex-wrap: wrap; gap: 6px; }
.story-side__mods span { font-size: 0.78rem; color: #1B3FB5; background: rgba(27,63,181,0.07); border-radius: var(--radius-pill); padding: 4px 11px; }
.story-side__cta { background: linear-gradient(150deg,#1B3FB5,#1667F4); border-radius: 20px; padding: 26px; }
.story-side__cta h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0 0 8px; }
.story-side__cta p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.75); margin: 0 0 18px; }
.story-side__cta a { display: flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: #1B3FB5; padding: 13px; border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.story-related { padding: 20px 24px 88px; }
.story-related__inner { max-width: 1080px; margin: 0 auto; }
.story-related__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.story-related__head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem,2.6vw,2rem); letter-spacing: -0.02em; color: #1B3FB5; margin: 0; }
.story-related__head a { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--green-text); white-space: nowrap; }
.story-related__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.story-related__grid > * { min-width: 0; }
/* Kartu kisah (dipakai grid list & related) */
.story-card { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(27,63,181,0.09); border-radius: 20px; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.story-card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(27,63,181,0.13); }
.story-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.story-card__media .story-ph { position: absolute; inset: 0; }
.story-card__tag { position: absolute; top: 14px; left: 14px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; background: rgba(255,255,255,0.94); border-radius: var(--radius-pill); padding: 5px 13px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.story-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.story-card__body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--rich-black); margin: 0 0 8px; }
.story-card__body p { font-size: 0.92rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0 0 18px; flex: 1; }
.story-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.story-card__outcome { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--green-text); background: rgba(35,227,150,0.12); border-radius: var(--radius-pill); padding: 5px 12px; }
.story-card__more { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-head); font-weight: 700; font-size: 0.86rem; color: #1B3FB5; white-space: nowrap; }
@media (max-width:900px){
  .story-body__grid { grid-template-columns: 1fr; gap: 40px; }
  .story-side { position: static; }
  .story-related__grid, .story-metric__grid { grid-template-columns: 1fr; }
}

/* List */
.story-hero { position: relative; padding: 70px 24px 44px; overflow: hidden; }
.story-hero__wave { position: absolute; right: -120px; top: -60px; opacity: .5; pointer-events: none; z-index: 0; }
.story-hero__inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.story-hero .eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(15,157,107,0.08); border: 1px solid rgba(15,157,107,0.2); color: var(--green-text); border-radius: var(--radius-pill); padding: 7px 16px; margin: 0 0 24px; letter-spacing: 0.06em; }
.story-hero .eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--energy-green); }
.story-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,5.2vw,3.9rem); line-height: 1.08; letter-spacing: -0.035em; color: var(--rich-black); margin: 0 0 20px; }
.story-hero h1 .grad { background: linear-gradient(120deg,#23E396 0%,#1667F4 70%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.story-hero__lead { font-size: clamp(1rem,1.5vw,1.18rem); line-height: 1.7; color: rgba(13,13,13,0.66); max-width: 640px; margin: 0 auto; }
.story-hero__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 44px; margin-top: 38px; }
.story-hero__stats > div p:first-child { font-family: var(--font-head); font-weight: 800; font-size: 2rem; margin: 0; line-height: 1; }
.story-hero__stats > div p:last-child { font-size: 0.86rem; color: rgba(13,13,13,0.55); margin: 6px 0 0; }
.story-featured { padding: 36px 24px 20px; }
.story-featured__box { max-width: 1180px; margin: 0 auto; background: linear-gradient(150deg,#0D0D0D 0%,#14261d 100%); border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.story-featured__text { padding: clamp(36px,4vw,56px); display: flex; flex-direction: column; justify-content: center; }
.story-featured__pill { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; background: rgba(35,227,150,0.16); color: #23E396; border-radius: var(--radius-pill); padding: 6px 14px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; }
.story-featured__text h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem,2.8vw,2.2rem); line-height: 1.2; letter-spacing: -0.02em; color: #fff; margin: 0 0 16px; }
.story-featured__text > p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.66); margin: 0 0 28px; }
.story-featured__stats { display: flex; align-items: center; gap: 24px; margin-bottom: 30px; }
.story-featured__stats b { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; display: block; }
.story-featured__stats small { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 6px; display: block; }
.story-featured__div { width: 1px; height: 48px; background: rgba(255,255,255,0.14); }
.story-featured__media { position: relative; min-height: 280px; }
.story-featured__media .story-ph { position: absolute; inset: 0; }
.story-filter { padding: 44px 24px 92px; }
.story-filter__inner { max-width: 1180px; margin: 0 auto; }
.story-filter__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.story-chip-btn { padding: 9px 18px; border-radius: var(--radius-pill); border: 1.5px solid rgba(27,63,181,0.15); background: #fff; color: rgba(13,13,13,0.66); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; cursor: pointer; white-space: nowrap; transition: all .18s; }
.story-chip-btn.is-active { border-color: var(--green-text); background: var(--green-text); color: #fff; font-weight: 700; }
.story-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.story-grid a.story-card { text-decoration: none; }
.story-cta { padding: 20px 24px 96px; }
.story-cta__box { max-width: 1180px; margin: 0 auto; background: var(--surface); border: 1px solid rgba(15,157,107,0.14); border-radius: 28px; padding: clamp(40px,4vw,60px); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.story-cta__btns { display: flex; flex-direction: column; gap: 12px; }
@media (max-width:900px){
  .story-featured__box { grid-template-columns: 1fr; }
  .story-featured__media { order: -1; min-height: 220px; }
  .story-cta__box { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Detail Fitur (shell .fd-*) ===== */
.theme-attendance { --accent: #1667F4; }
.theme-payroll { --accent: #0F9D6B; --surface: #F1FBF6; }
.theme-selfservice { --accent: #C94E2C; --surface: #FBF3F0; }
.theme-employee { --accent: #8B44C4; --surface: #F9F5FD; }
.theme-kinerja { --accent: #1E6FB0; --surface: #F0F6FB; }
.theme-ai { --accent: #6C4BF4; --surface: #F4F3FE; }

/* Tema per-industri (halaman /industri/<slug>) */
.theme-ind-konstruksi { --accent: #E8792B; --surface: #FDF4EE; }
.theme-ind-retail-fnb { --accent: #E5484D; --surface: #FDF1F1; }
.theme-ind-hospitality { --accent: #0E9AA7; --surface: #EEFAFB; }
.theme-ind-manufaktur { --accent: #4B6584; --surface: #F1F4F8; }
.theme-ind-kesehatan { --accent: #12A594; --surface: #EDFAF7; }
.theme-ind-telco { --accent: #2563EB; --surface: #EEF3FE; }
.theme-ind-outsource { --accent: #7C5CBF; --surface: #F6F3FC; }
.theme-ind-properti { --accent: #9A7B4F; --surface: #F8F4EC; }

/* Kartu kapabilitas yang bisa diklik (dipakai di halaman industri) */
.fd-cap--link { display: block; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.fd-cap--link:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(27,63,181,0.1); }
.fd-cap--link h3 { display: inline-flex; align-items: center; gap: 6px; }
.fd-cap__ic--accent { background: color-mix(in srgb, var(--accent) 12%, transparent); }

.fd-hero { position: relative; padding: 56px 24px 72px; overflow: hidden; background: linear-gradient(180deg, var(--surface-tint) 0%, #fff 100%); }
.fd-hero__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.fd-hero__grid > * { min-width: 0; }
.fd-crumb { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: rgba(13,13,13,0.5); margin-bottom: 22px; }
.fd-crumb a { color: rgba(13,13,13,0.5); }
.fd-crumb span.cur { color: var(--accent); font-weight: 500; }
.fd-pill { display: inline-flex; align-items: center; gap: 9px; background: color-mix(in srgb, var(--accent) 8%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); border-radius: var(--radius-pill); padding: 6px 14px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.fd-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,4.6vw,3.4rem); line-height: 1.08; letter-spacing: -0.03em; color: var(--rich-black); margin: 0 0 20px; }
.fd-hero__lead { font-size: 1.1rem; line-height: 1.7; color: rgba(13,13,13,0.66); margin: 0 0 30px; }
.fd-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.fd-hero__media { position: relative; }
.fd-shot { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(27,63,181,0.18); border: 1px solid rgba(27,63,181,0.08); aspect-ratio: 9/8.2; background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 12%, #fff), #fff); display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.fd-shot span { font-family: var(--font-head); font-weight: 700; color: var(--accent); opacity: .75; font-size: 1.05rem; }
.fd-shot--photo { padding: 0; background: #fff; }
.fd-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fd-shot--icon { flex-direction: column; }
/* Hero dengan frame HP bersih (tanpa kartu/latar), spt section Smile homepage */
.fd-hero__media--phone { display: flex; justify-content: center; }
.fd-hero__media--phone img { width: min(280px, 78%); height: auto; filter: drop-shadow(0 24px 48px rgba(13,13,13,0.18)); }
.fd-shot--icon img { width: 88px; height: 88px; }
/* Floating transparent product mockup (no card frame), mis. laptop hero payroll */
.fd-mockup { width: 100%; height: auto; display: block; }
.fd-float { position: absolute; left: -14px; top: 40px; background: #fff; border: 1px solid rgba(27,63,181,0.08); border-radius: 16px; padding: 12px 15px; display: flex; align-items: center; gap: 11px; box-shadow: 0 14px 34px rgba(27,63,181,0.14); animation: nw-float 5.4s ease-in-out infinite; }
.fd-float__ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(35,227,150,0.16); display: flex; align-items: center; justify-content: center; }
.fd-float b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--rich-black); }
.fd-float small { display: block; font-size: 0.7rem; color: rgba(13,13,13,0.45); }

/* Capabilities */
.fd-caps__head { max-width: 620px; margin-bottom: 44px; }
.fd-caps__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.fd-caps__grid > * { min-width: 0; }
.fd-cap { background: #fff; border: 1px solid rgba(27,63,181,0.07); border-radius: 22px; padding: 28px; box-shadow: 0 4px 20px rgba(27,63,181,0.04); }
.fd-cap__ic { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.fd-cap h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--rich-black); margin: 0 0 8px; }
.fd-cap p { font-size: 0.92rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0; }

/* How it works */
.fd-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fd-steps > * { min-width: 0; }
.fd-step { background: #fff; border: 1px solid rgba(27,63,181,0.07); border-radius: 22px; padding: 30px; }
.fd-step__n { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; margin-bottom: 14px; }
.fd-step h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: var(--rich-black); margin: 0 0 8px; }
.fd-step p { font-size: 0.94rem; line-height: 1.65; color: rgba(13,13,13,0.62); margin: 0; }

/* Benefit strip */
.fd-benefit__inner { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px 60px; justify-content: space-between; align-items: center; }
.fd-benefit__text { max-width: 440px; }
.fd-benefit__text h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem,2.8vw,2.2rem); line-height: 1.2; letter-spacing: -0.02em; color: var(--accent); margin: 0 0 12px; }
.fd-benefit__text p { font-size: 1.02rem; line-height: 1.7; color: rgba(13,13,13,0.66); margin: 0; }
.fd-benefit__stats { display: flex; gap: 44px; flex-wrap: wrap; }
.fd-benefit__stats b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--rich-black); line-height: 1; }
.fd-benefit__stats small { display: block; font-size: 0.9rem; color: rgba(13,13,13,0.55); margin-top: 6px; }

/* Related */
.fd-related__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fd-related__grid > * { min-width: 0; }
.fd-rel { display: block; background: #fff; border: 1px solid rgba(27,63,181,0.08); border-radius: 20px; padding: 26px; transition: transform .2s, box-shadow .2s; }
.fd-rel:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(27,63,181,0.1); }
.fd-rel h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--accent); margin: 0 0 6px; }
.fd-rel p { font-size: 0.9rem; line-height: 1.6; color: rgba(13,13,13,0.6); margin: 0; }

/* CTA */
.fd-cta__box { max-width: 960px; margin: 0 auto; background: linear-gradient(135deg,#1B3FB5 0%,#1667F4 100%); border-radius: 30px; padding: clamp(40px,5vw,60px); text-align: center; }
.fd-cta__box h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem,3.2vw,2.4rem); line-height: 1.15; letter-spacing: -0.025em; color: #fff; margin: 0 0 16px; }
.fd-cta__box p { font-size: 1.02rem; line-height: 1.65; color: rgba(255,255,255,0.82); max-width: 500px; margin: 0 auto 28px; }
.fd-cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.fd-cta__btns .btn--ghost { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.35); color: #fff; }
.fd-cta__btns .btn--ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* Signature-feature spotlight (opsional per halaman, mis. Smile Factor di attendance) */
.fd-spot__box { max-width: 960px; margin: 0 auto; background: var(--surface); border: 1px solid rgba(27,63,181,0.08); border-radius: var(--radius); padding: clamp(26px,3.5vw,44px); }
.fd-spot__head { display: flex; gap: 18px; align-items: flex-start; }
.fd-spot__ic { width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,rgba(35,227,150,0.18),rgba(22,103,244,0.16)); }
.fd-spot__head .section__title { margin: 6px 0 0; }
.fd-spot > .container > .fd-spot__box > .section__desc { margin: 18px 0 0; }
.fd-spot__points { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.fd-spot__points > * { min-width: 0; }

/* ===== Insight (blog listing) — reuse .story-* shell, override aksen biru ===== */
body.theme-insight { --accent: #2563EB; --surface: #EEF3FE; }
.theme-insight .story-hero .eyebrow { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.2); color: #2563EB; }
.theme-insight .story-hero .eyebrow__dot { background: #2563EB; }
.theme-insight .story-hero h1 .grad { background: linear-gradient(120deg,#2563EB 0%,#23E396 90%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.theme-insight .story-chip-btn.is-active { border-color: #2563EB; background: #2563EB; }
.theme-insight .story-cta__box { border-color: rgba(37,99,235,0.14); }
.insight-card__meta { font-size: 0.8rem; color: rgba(13,13,13,0.55); }
.insight-more { display: flex; justify-content: center; margin-top: 40px; }
.insight-more[hidden] { display: none; }
.insight-msg { text-align: center; color: rgba(13,13,13,0.6); font-size: 0.95rem; }
.insight-msg a { color: #2563EB; font-weight: 600; }
.story-grid > .insight-msg { grid-column: 1 / -1; }
.insight-skel { border-radius: 20px; min-height: 340px; background: linear-gradient(100deg,#eef1f6 30%,#f7f9fc 50%,#eef1f6 70%); background-size: 200% 100%; animation: insight-shimmer 1.15s linear infinite; }
@keyframes insight-shimmer { to { background-position: -200% 0; } }

@media (max-width:900px){
  .fd-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .fd-steps, .fd-related__grid { grid-template-columns: 1fr; }
}
@media (max-width:700px){
  .fd-spot__points { grid-template-columns: 1fr; gap: 18px; }
  .fd-spot__head { gap: 14px; }
  .fd-spot__ic { width: 52px; height: 52px; border-radius: 14px; }
}

/* Anchor deep-link dari mega-menu ke kartu kapabilitas: beri ruang di bawah sticky header */
.fd-cap h3[id] { scroll-margin-top: 100px; }

/* Mega-menu: strip Asisten AI (full-width) */
.megamenu__ai { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 6px; padding: 14px 16px; border-radius: 12px; background: linear-gradient(100deg, rgba(108,75,244,0.08), rgba(35,141,227,0.06)); border: 1px solid rgba(108,75,244,0.15); }
.megamenu__ai-title { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--rich-black); margin: 0 0 3px; display: flex; align-items: center; gap: 8px; }
.megamenu__ai-badge { font-family: var(--font-head); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: #6C4BF4; background: rgba(108,75,244,0.12); border-radius: var(--radius-pill); padding: 2px 8px; }
.megamenu__ai-desc { font-size: 0.8rem; color: rgba(13,13,13,0.6); margin: 0; max-width: 440px; line-height: 1.5; }
.megamenu__ai-link { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: #6C4BF4; white-space: nowrap; }
