:root {
  --p: #0b3b75;
  --p2: #1467b8;
  --ink: #071b33;
  --text: #64748b;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --soft: #eff7ff;
  --bg: #f8fafc;
  --success: #28c76f;
  --shadow: 0 18px 55px rgba(75, 70, 92, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, Poppins, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1180px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 229, 234, 0.75);
  transition: 0.25s;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(75, 70, 92, 0.07);
  background: rgba(255, 255, 255, 0.96);
}
.navbar {
  min-height: 76px;
}
.navbar-brand strong {
  font-size: 1.25rem;
  color: var(--ink);
}
.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  border-radius: 9px;
  padding: 0.6rem 0.85rem !important;
}
.nav-link:hover,
.nav-link.active {
  color: var(--p) !important;
  background: var(--soft);
}
.btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.7rem 1.1rem;
}
.btn-lg {
  padding: 0.9rem 1.25rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--p), var(--p2));
  border-color: var(--p);
  box-shadow: 0 8px 22px rgba(11, 59, 117, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #082f5e;
  border-color: #082f5e;
}
.btn-outline-primary {
  color: var(--p);
  border-color: rgba(11, 59, 117, 0.45);
}
.btn-outline-primary:hover {
  background: var(--p);
  border-color: var(--p);
}
.hero {
  padding: 105px 0 90px;
  background: radial-gradient(circle at 82% 15%, rgba(11, 59, 117, 0.13), transparent 28%),
    linear-gradient(180deg, #fff, #fbfaff);
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--p);
  background: var(--soft);
  border: 1px solid rgba(11, 59, 117, 0.12);
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero h1,
.page-hero h1,
.download-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-weight: 800;
  margin: 20px 0;
}
.hero h1 span,
.page-hero h1 span,
.section-head h2 span,
.download-hero h1 span {
  color: var(--p);
}
.hero .lead {
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-reference {
  min-height: 100vh;
  height: auto;
  overflow: visible;
  padding: 90px 0 60px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.84rem;
}
.trust-row i {
  color: var(--success);
  margin-right: 5px;
}
.product-shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-2deg);
}
.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.shot-top {
  height: 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.shot-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d5dd;
}
.shot-top small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}
.section {
  padding: 95px 0;
}
.section-soft {
  background: var(--bg);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head h2,
.section h2,
.cta-card h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.035em;
  margin: 16px 0;
}
.section-head p {
  line-height: 1.8;
}
.feature-card,
.mini-card,
.solution-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: 0.28s;
  box-shadow: 0 5px 20px rgba(75, 70, 92, 0.035);
}
.feature-card:hover,
.mini-card:hover,
.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 59, 117, 0.3);
  box-shadow: 0 20px 44px rgba(11, 59, 117, 0.11);
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--p);
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.icon-box.big {
  width: 62px;
  height: 62px;
  font-size: 1.6rem;
}
.feature-card h3,
.mini-card h3,
.solution-card h3 {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 650;
}
.feature-card p,
.mini-card p,
.solution-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}
.feature-card a {
  color: var(--p);
  font-weight: 600;
  font-size: 0.86rem;
}
.feature-tall {
  min-height: 235px;
}
.lead-sm {
  line-height: 1.9;
  font-size: 1.02rem;
}
.check-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}
.check-list i {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--soft);
  color: var(--p);
  margin-right: 8px;
}
.section-dark {
  background: linear-gradient(135deg, #2f2b3a, #433d56);
  color: #d9d6df;
}
.section-dark h2 {
  color: #fff;
  max-width: 800px;
  margin: 18px auto;
}
.section-dark p {
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}
.eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.page-hero {
  padding: 100px 0 80px;
  background: radial-gradient(circle at 50% 0, rgba(11, 59, 117, 0.13), transparent 40%), #fbfaff;
}
.page-hero .container {
  max-width: 900px;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
}
.page-hero p {
  max-width: 700px;
  margin: auto;
  line-height: 1.85;
}
.mapping-large {
  transform: none;
  max-width: 1050px;
  margin: auto;
}
.solution-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  min-height: 190px;
}
.solution-card .icon-box {
  flex: 0 0 48px;
}
.download-hero {
  padding: 110px 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 25%),
    linear-gradient(135deg, #082f5e, #56a8ff);
  color: #fff;
}
.download-hero h1 {
  color: #fff;
}
.download-hero h1 span {
  color: #dcedff;
}
.download-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #eeeaff;
}
.app-tile {
  max-width: 320px;
  margin: auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 45px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 25px 60px rgba(30, 25, 70, 0.2);
}
.app-tile i {
  font-size: 4rem;
}
.app-tile strong {
  font-size: 1.5rem;
}
.app-tile small {
  opacity: 0.7;
}
.faq-wrap {
  max-width: 900px;
}
.accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: 13px !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-button {
  font-weight: 600;
  color: var(--ink);
  padding: 20px;
}
.accordion-button:not(.collapsed) {
  color: var(--p);
  background: var(--soft);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  line-height: 1.8;
}
.cta-band {
  padding: 30px 0 90px;
}
.cta-card {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background: var(--soft);
  border: 1px solid rgba(11, 59, 117, 0.14);
  border-radius: 22px;
  padding: 42px;
}
.cta-card h2 {
  font-size: 1.7rem;
  margin-bottom: 0;
  max-width: 680px;
}
.contact-card {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-card h2 {
  font-size: 2rem;
}
.contact-card p {
  line-height: 1.8;
}
.contact-points {
  display: grid;
  gap: 16px;
}
.contact-points > div {
  display: flex;
  gap: 14px;
  padding: 17px;
  background: var(--bg);
  border-radius: 13px;
}
.contact-points i {
  color: var(--p);
  font-size: 1.2rem;
}
.contact-points span {
  display: flex;
  flex-direction: column;
}
.contact-points strong {
  color: var(--ink);
  font-size: 0.9rem;
}
.contact-points small {
  margin-top: 4px;
  line-height: 1.5;
}
.site-footer {
  padding: 65px 0 25px;
  background: #2f2b3a;
  color: #aaa6b2;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.2rem;
}
.site-footer h6 {
  color: #fff;
}
.site-footer a {
  display: block;
  color: #aaa6b2;
  margin: 10px 0;
  font-size: 0.88rem;
}
.site-footer a:hover {
  color: #9dceff;
}
.site-footer p {
  font-size: 0.88rem;
  line-height: 1.75;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 45px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
  z-index: 900;
}
.wa-float:hover {
  color: #fff;
  transform: translateY(-3px);
}
/* Default: konten selalu terlihat */
.reveal {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Efek animasi hanya jika JS memberi class active */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.js .reveal.active {
  opacity: 1;
  transform: none;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 12px;
    margin-top: 10px;
    box-shadow: var(--shadow);
  }
  .nav-actions {
    margin-top: 10px;
  }
  .hero {
    padding: 75px 0;
  }
  .hero .row {
    flex-direction: column;
  }
  .product-shot {
    transform: none;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding: 75px 0;
  }
}
@media (max-width: 575.98px) {
  .hero {
    padding: 58px 0;
  }
  .hero h1 {
    font-size: 2.45rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row {
    gap: 10px 16px;
  }
  .section {
    padding: 62px 0;
  }
  .page-hero {
    padding: 70px 0 55px;
  }
  .feature-card,
  .mini-card,
  .solution-card {
    padding: 22px;
  }
  .solution-card {
    display: block;
  }
  .cta-card,
  .contact-card {
    padding: 28px 22px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .wa-float {
    right: 16px;
    bottom: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* NetMedia-inspired Sisforty visual system */
body {
  background: #fff;
}
.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
}
.navbar-brand strong {
  letter-spacing: -0.03em;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 8% 20%, rgba(56, 189, 248, 0.12), transparent 25%),
    radial-gradient(circle at 80% 12%, rgba(11, 59, 117, 0.18), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f6fbff 45%, #eef7ff 100%);
}
.hero:before,
.hero:after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
}
.hero:before {
  width: 680px;
  height: 260px;
  right: -130px;
  top: 35px;
  background: linear-gradient(135deg, rgba(11, 59, 117, 0.08), rgba(56, 189, 248, 0.22));
  transform: rotate(-18deg);
}
.hero:after {
  width: 520px;
  height: 210px;
  left: -180px;
  bottom: -80px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(11, 59, 117, 0.04));
  transform: rotate(16deg);
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero h1,
.page-hero h1,
.download-hero h1 {
  letter-spacing: -0.055em;
}
.eyebrow {
  border-radius: 999px;
  background: rgba(239, 247, 255, 0.9);
  border-color: rgba(11, 59, 117, 0.12);
}
.btn {
  border-radius: 9px;
}
.btn-primary {
  background: linear-gradient(135deg, #1677ff, #0b8df2);
  border-color: #1677ff;
  box-shadow: 0 9px 25px rgba(11, 59, 117, 0.22);
}
.btn-primary:hover {
  background: #082f5e;
  border-color: #082f5e;
}
.product-shot {
  border-color: #dbe7f3;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
}
.feature-card,
.mini-card,
.solution-card {
  border-color: #e2e8f0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}
.icon-box {
  background: linear-gradient(135deg, #eff7ff, #e5f5ff);
  color: #1677ff;
}
.section-dark {
  background: radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.18), transparent 25%),
    linear-gradient(135deg, #0f172a, #162b4d);
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 0, rgba(56, 189, 248, 0.13), transparent 30%),
    linear-gradient(180deg, #f7fbff, #fff);
}
.download-hero {
  background: radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.32), transparent 25%),
    linear-gradient(135deg, #0b67d4, #1687f5 60%, #39bdf8);
}
.site-footer {
  background: #0f172a;
  color: #94a3b8;
}
.cta-card {
  background: linear-gradient(135deg, #f7fbff, #eef7ff);
  border-color: #d9ebff;
}

/* Premium Navy refinement */
:root {
  --navy: #071b33;
  --navy2: #0b3b75;
  --blue: #1467b8;
  --ice: #edf5fc;
}
.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.96) 38%,
      rgba(239, 247, 253, 0.78) 62%,
      rgba(7, 27, 51, 0.08) 100%
    ),
    radial-gradient(circle at 80% 12%, rgba(20, 103, 184, 0.18), transparent 32%),
    linear-gradient(135deg, #fff 0%, #eef6fc 100%);
}
.hero:before {
  width: 760px;
  height: 520px;
  right: -170px;
  top: -130px;
  border-radius: 0 0 0 70%;
  background: linear-gradient(145deg, rgba(7, 27, 51, 0.03), rgba(11, 59, 117, 0.14));
  transform: rotate(-8deg);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 75%);
}
.hero:after {
  width: 610px;
  height: 170px;
  left: auto;
  right: -90px;
  bottom: -65px;
  background: linear-gradient(90deg, rgba(11, 59, 117, 0.06), rgba(20, 103, 184, 0.2));
  transform: rotate(-8deg);
  border-radius: 60% 0 0 0;
}
.hero h1 span,
.page-hero h1 span,
.section-head h2 span {
  color: #0b4f93;
}
.hero .product-shot {
  border: 1px solid rgba(11, 59, 117, 0.12);
  box-shadow: 0 35px 80px rgba(7, 27, 51, 0.18);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.btn-primary {
  background: linear-gradient(135deg, #071b33, #0b3b75);
  border-color: #0b3b75;
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.2);
}
.btn-primary:hover {
  background: #0b3b75;
  border-color: #0b3b75;
}
.btn-outline-primary {
  color: #0b3b75;
  border-color: rgba(11, 59, 117, 0.42);
}
.btn-outline-primary:hover {
  background: #071b33;
  border-color: #071b33;
}
.eyebrow {
  color: #0b3b75;
  background: #edf5fc;
  border-color: rgba(11, 59, 117, 0.1);
}
.icon-box {
  background: linear-gradient(145deg, #f3f8fc, #e6f1fa);
  color: #0b4f93;
}
.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(7, 27, 51, 0.08);
}
.section-dark,
.site-footer {
  background: linear-gradient(135deg, #06172c, #0a2c53);
}
.wa-float {
  border-radius: 50%;
}

/* Approved reference layout */
.hero-reference {
  padding: 88px 0 68px;
  min-height: 610px;
  background: linear-gradient(90deg, #fff 0%, #f8fbfe 48%, #eaf4fb 100%);
}
.hero-reference:before {
  right: -40px;
  top: 0;
  width: 49%;
  height: 100%;
  border-radius: 0;
  transform: none;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(145deg, rgba(11, 59, 117, 0.04), rgba(11, 59, 117, 0.16));
}
.hero-reference:after {
  display: none;
}
.hero-copy {
  position: relative;
  z-index: 5;
}
.hero-reference h1 {
  font-size: clamp(2.6rem, 4.3vw, 4rem);
  line-height: 1.12;
}
.hero-reference .lead {
  max-width: 640px;
}
.hero-visual {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.building-shape {
  position: absolute;
  inset: -80px -140px -70px 8%;
  background: linear-gradient(135deg, rgba(199, 220, 237, 0.2), rgba(11, 59, 117, 0.1));
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%, 14% 28%);
  border-left: 1px solid rgba(11, 59, 117, 0.08);
}
.hero-dashboard {
  position: relative;
  z-index: 3;
  width: 108%;
  margin-left: -3%;
  transform: perspective(1200px) rotateY(-3deg);
  box-shadow: 0 30px 70px rgba(7, 27, 51, 0.22);
}
.floating-note {
  position: absolute;
  z-index: 6;
  left: -12%;
  bottom: 36px;
  background: #fff;
  border: 1px solid #dfe9f2;
  border-radius: 14px;
  padding: 15px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 16px 38px rgba(7, 27, 51, 0.13);
  transform: rotate(3deg);
}
.note-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #0b3b75;
  color: #fff;
}
.floating-note strong,
.floating-note span {
  display: block;
  color: #071b33;
}
.floating-note span {
  font-size: 0.73rem;
  line-height: 1.35;
}
.hero-slogan {
  position: absolute;
  right: -13%;
  top: 18px;
  z-index: 4;
  color: #fff;
  font-size: 2rem;
  line-height: 0.9;
  font-style: italic;
  font-weight: 500;
  transform: rotate(-7deg);
  text-shadow: 0 2px 8px rgba(7, 27, 51, 0.2);
}
.feature-strip {
  padding: 30px 0;
  background: #fff;
  border-bottom: 1px solid #e5edf4;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) 2fr;
  align-items: center;
  gap: 20px;
}
.strip-item {
  text-align: center;
  color: #071b33;
}
.strip-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #edf5fc;
  color: #1266b4;
  font-size: 1.25rem;
}
.strip-item strong,
.strip-item span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
}
.strip-quote {
  border-left: 1px solid #d7e2ec;
  padding-left: 28px;
}
.strip-quote p {
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 8px;
}
.strip-quote span {
  font-size: 0.75rem;
  color: #071b33;
}
.strip-quote b {
  display: inline-block;
  width: 30px;
  height: 4px;
  border-radius: 3px;
  background: #1467b8;
  margin-right: 8px;
  vertical-align: middle;
}
.trust-band {
  background: linear-gradient(120deg, #06172c, #0b3769);
  padding: 42px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trust-band:after {
  content: '';
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 360px;
  height: 210px;
  background: linear-gradient(135deg, #1674d1, #0a315f);
  border-radius: 70% 0 0 0;
  transform: rotate(-8deg);
}
.trust-band-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  align-items: center;
  gap: 32px;
}
.trust-intro {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.trust-intro h2 {
  color: #fff;
  font-size: 1.55rem;
  margin: 0 0 12px;
}
.trust-intro p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: #bdcad8;
  margin: 0;
}
.trust-benefit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-benefit i {
  font-size: 1.8rem;
  color: #1682ef;
  margin-bottom: 12px;
}
.trust-benefit strong,
.trust-benefit span {
  font-size: 0.76rem;
  color: #fff;
  line-height: 1.45;
}
.feature-showcase {
  background: linear-gradient(180deg, #fff, #f4f9fd);
}
.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #1266b4;
}
.section-kicker b {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #1266b4;
  margin-left: 8px;
  vertical-align: middle;
}
.feature-showcase h2 {
  font-size: 2.15rem;
}
.feature-showcase h2 span {
  display: block;
  color: #1266b4;
}
.showcase-card {
  height: 100%;
  background: #fff;
  border: 1px solid #dfe8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 27, 51, 0.06);
}
.showcase-img {
  height: 135px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #dcecf8, #eef6fc);
  color: #0b3b75;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.showcase-img:after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border: 22px solid rgba(20, 103, 184, 0.08);
  border-radius: 50%;
  right: -50px;
  top: -55px;
}
.showcase-body {
  padding: 17px;
}
.showcase-body h3 {
  font-size: 0.88rem;
  color: #071b33;
  font-weight: 700;
}
.showcase-body p {
  font-size: 0.72rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1199px) {
  .hero-slogan {
    display: none;
  }
  .feature-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .strip-quote {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid #d7e2ec;
    padding: 18px 0 0;
  }
  .trust-band-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-intro {
    grid-column: 1/-1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0 0 22px;
  }
}
@media (max-width: 991.98px) {
  .hero-reference {
    padding-top: 60px;
  }
  .hero-visual {
    min-height: auto;
    margin-top: 20px;
  }
  .hero-dashboard {
    width: 100%;
    margin: 0;
  }
  .floating-note {
    left: 10px;
    bottom: -18px;
  }
  .building-shape {
    inset: -30px -40px -30px 15%;
  }
}
@media (max-width: 575.98px) {
  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-intro {
    grid-column: 1/-1;
  }
  .floating-note {
    display: none;
  }
  .hero-reference h1 {
    font-size: 2.35rem;
  }
  .hero-reference {
    padding-bottom: 48px;
  }
  .showcase-img {
    height: 110px;
  }
}

/* FINAL SISFORTY.COM PREMIUM HERO */
.hero-reference {
  min-height: 650px;
  padding: 84px 0 64px;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.94) 42%,
      rgba(233, 244, 252, 0.66) 68%,
      rgba(7, 27, 51, 0.1) 100%
    ),
    radial-gradient(circle at 82% 16%, rgba(20, 103, 184, 0.18), transparent 30%),
    linear-gradient(135deg, #fff, #eaf4fb);
}
.hero-reference .hero-copy {
  padding-right: 18px;
}
.hero-reference .eyebrow {
  padding: 6px 11px;
  font-size: 0.7rem;
  box-shadow: 0 5px 18px rgba(7, 27, 51, 0.04);
}
.hero-reference h1 {
  font-size: clamp(2.55rem, 4.15vw, 3.85rem);
  max-width: 690px;
}
.hero-reference .lead {
  font-size: 0.98rem;
  line-height: 1.82;
}
.hero-reference .hero-actions {
  margin-top: 26px;
}
.hero-btn {
  padding: 0.72rem 1.05rem !important;
  font-size: 0.88rem !important;
  border-radius: 8px !important;
  min-height: 43px;
}
.hero-btn i {
  margin-right: 5px;
}
.hero-reference .trust-row {
  font-size: 0.77rem;
  margin-top: 24px;
}
.hero-reference .hero-visual {
  min-height: 465px;
}
.hero-reference .hero-dashboard {
  width: 112%;
  margin-left: -5%;
  border-radius: 17px;
  box-shadow: 0 36px 85px rgba(7, 27, 51, 0.24), 0 8px 22px rgba(7, 27, 51, 0.09);
  transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}
.hero-reference .hero-dashboard:after {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  height: 16px;
  bottom: -17px;
  background: linear-gradient(180deg, #aeb9c5, #697887);
  border-radius: 0 0 45% 45%;
  box-shadow: 0 10px 18px rgba(7, 27, 51, 0.18);
}
.hero-reference .floating-note {
  padding: 12px 15px;
  border-radius: 11px;
  left: -9%;
  bottom: 30px;
}
.hero-reference .note-icon {
  width: 37px;
  height: 37px;
  border-radius: 8px;
}
.hero-reference .floating-note strong {
  font-size: 0.78rem;
}
.hero-reference .floating-note span {
  font-size: 0.66rem;
}
.hero-reference .building-shape {
  inset: -80px -150px -72px 2%;
  background: radial-gradient(circle at 70% 28%, rgba(255, 196, 113, 0.2), transparent 16%),
    linear-gradient(145deg, rgba(213, 229, 241, 0.22), rgba(11, 59, 117, 0.13));
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%, 14% 28%);
}
.navbar .btn {
  padding: 0.58rem 0.88rem;
  font-size: 0.8rem;
  border-radius: 8px;
}
.cta-card .btn,
.feature-showcase .btn {
  padding: 0.62rem 0.9rem;
  font-size: 0.8rem;
}
@media (max-width: 991.98px) {
  .hero-reference .hero-dashboard {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
  .hero-reference .hero-visual {
    min-height: auto;
    padding-bottom: 24px;
  }
}

/* SMOOTH PREMIUM MOTION */
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}

.site-header,
.nav-link,
.btn,
.feature-card,
.mini-card,
.solution-card,
.showcase-card,
.strip-item,
.trust-benefit,
.product-shot,
.wa-float,
.icon-box,
.strip-icon {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, opacity 0.28s ease;
}

.nav-link {
  position: relative;
}
.nav-link:after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 2px;
  background: var(--p);
  border-radius: 2px;
  transition: left 0.28s ease, right 0.28s ease;
}
.nav-link:hover:after,
.nav-link.active:after {
  left: 18%;
  right: 18%;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.985);
}

.feature-card:hover,
.mini-card:hover,
.solution-card:hover,
.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.1);
}
.feature-card:hover .icon-box,
.mini-card:hover .icon-box,
.solution-card:hover .icon-box,
.showcase-card:hover .showcase-img i {
  transform: translateY(-2px) scale(1.04);
}

.hero-copy.reveal.visible {
  animation: smoothHeroLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-visual.reveal.visible {
  animation: smoothHeroRight 0.9s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-dashboard {
  will-change: transform;
}
.hero-visual:hover .hero-dashboard {
  transform: perspective(1300px) rotateY(-1.5deg) rotateX(0.5deg) translateY(-4px);
}
.floating-note {
  animation: softFloat 5s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes smoothHeroLeft {
  from {
    opacity: 0;
    transform: translate3d(-22px, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes smoothHeroRight {
  from {
    opacity: 0;
    transform: translate3d(28px, 14px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes softFloat {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-7px);
  }
}

@media (max-width: 991.98px) {
  .hero-visual:hover .hero-dashboard {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* PREMIUM ANIMATION LAYER */
.hero-reference {
  isolation: isolate;
}
.hero-reference:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 103, 184, 0.14), rgba(20, 103, 184, 0) 68%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-reference .eyebrow {
  animation: eyebrowIn 0.75s 0.12s both;
}
.hero-reference h1 {
  animation: titleIn 0.8s 0.2s both;
}
.hero-reference .lead {
  animation: titleIn 0.8s 0.3s both;
}
.hero-reference .hero-actions {
  animation: titleIn 0.8s 0.4s both;
}
.hero-reference .trust-row {
  animation: titleIn 0.8s 0.5s both;
}

.hero-dashboard {
  animation: laptopEnter 1s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-dashboard img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-dashboard:hover img {
  transform: scale(1.012);
}

.building-shape {
  animation: bgDrift 10s ease-in-out infinite alternate;
}
.strip-icon i,
.trust-benefit i {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.strip-item:hover .strip-icon i,
.trust-benefit:hover i {
  transform: translateY(-3px) scale(1.08);
}

.feature-strip .strip-item.visible:nth-child(2) {
  transition-delay: 0.05s;
}
.feature-strip .strip-item.visible:nth-child(3) {
  transition-delay: 0.1s;
}
.feature-strip .strip-item.visible:nth-child(4) {
  transition-delay: 0.15s;
}
.feature-strip .strip-item.visible:nth-child(5) {
  transition-delay: 0.2s;
}
.feature-strip .strip-item.visible:nth-child(6) {
  transition-delay: 0.25s;
}

.showcase-card {
  overflow: hidden;
}
.showcase-card:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.42) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}
.showcase-card {
  position: relative;
}
.showcase-card:hover:before {
  transform: translateX(130%);
}

.wa-float {
  animation: waPulse 3.4s ease-in-out infinite;
}

@keyframes eyebrowIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes laptopEnter {
  from {
    opacity: 0;
    transform: perspective(1300px) rotateY(-8deg) rotateX(3deg) translate3d(55px, 25px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: perspective(1300px) rotateY(-3deg) rotateX(1deg) translate3d(0, 0, 0) scale(1);
  }
}
@keyframes heroGlow {
  from {
    transform: translate3d(-15px, 0, 0) scale(0.95);
    opacity: 0.65;
  }
  to {
    transform: translate3d(18px, 18px, 0) scale(1.08);
    opacity: 1;
  }
}
@keyframes bgDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-12px, 8px, 0);
  }
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
  }
  50% {
    box-shadow: 0 12px 38px rgba(37, 211, 102, 0.38);
  }
}

@media (max-width: 991.98px) {
  .hero-dashboard {
    animation: mobileLaptopEnter 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes mobileLaptopEnter {
    from {
      opacity: 0;
      transform: translateY(22px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-reference:after,
  .hero-reference .eyebrow,
  .hero-reference h1,
  .hero-reference .lead,
  .hero-reference .hero-actions,
  .hero-reference .trust-row,
  .hero-dashboard,
  .building-shape,
  .wa-float {
    animation: none !important;
  }
}

html {
  scroll-behavior: smooth;
}
.site-header,
.btn,
.card,
.feature-card {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 22px;
  transition: 0.3s ease;
  color: #071b33;
  min-height: 240px;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #1467b8;
  box-shadow: 0 20px 40px rgba(20, 103, 184, 0.1);
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
}

.blog-meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}

.blog-card p {
  color: #475569;
  line-height: 1.7;
}

.read-more {
  color: #1467b8;
  font-weight: 600;
}

/* ================= BLOG SISFORTY ================= */

.blog-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
  color: #071b33;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #1467b8;
  box-shadow: 0 18px 40px rgba(20, 103, 184, 0.1);
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: #071b33;
}

.blog-meta {
  font-size: 14px;
  color: #64748b;
}

.blog-excerpt {
  color: #475569;
  line-height: 1.7;
}

.read-more {
  color: #1467b8;
  font-weight: 600;
}

/* =====================================
   SISFORTY MOBILE NAVBAR FIX
===================================== */

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 12px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5ecf5;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(7, 27, 51, 0.08);
  }

  .navbar-nav {
    gap: 6px;
  }

  .navbar-nav .nav-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #64748b !important;
    font-weight: 600;
    transition: 0.25s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: #eef5ff;
    color: #1467b8 !important;
  }

  /* Hilangkan garis bawah menu aktif di mobile */
  .navbar-nav .nav-link::after {
    display: none !important;
  }

  .navbar-nav .active::after {
    display: none !important;
  }

  .navbar-buttons {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .navbar-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #e5ecf5;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  transition: 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 103, 184, 0.12);
  border-color: #1467b8;
}
.blog-card h3 {
  font-size: 22px;
  color: #071b33;
  margin: 12px 0;
}
.blog-content h2 {
  margin-top: 36px;
  color: #071b33;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }
  .navbar-nav .nav-link::after {
    display: none !important;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #e5ecf5;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  transition: 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 103, 184, 0.12);
  border-color: #1467b8;
}
.blog-card h3 {
  font-size: 22px;
  color: #071b33;
  margin: 12px 0;
}
.blog-content h2 {
  margin-top: 36px;
  color: #071b33;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }
  .navbar-nav .nav-link::after {
    display: none !important;
  }
}

/* ==========================================
   SISFORTY BLOG ARTICLE V6
   ========================================== */

.blog-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.blog-header {
  margin-bottom: 36px;
  border-bottom: 1px solid #e5ecf5;
  padding-bottom: 24px;
}

.blog-category {
  display: inline-block;
  background: #eaf3ff;
  color: #1467b8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.blog-header h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #071b33;
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #64748b;
  font-size: 15px;
}

.blog-content {
  font-size: 18px;
  line-height: 1.9;
  color: #334155;
}

.blog-content p {
  margin-bottom: 22px;
}

.blog-content h2 {
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 18px;
  color: #071b33;
  font-weight: 700;
}

.blog-content h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 14px;
  color: #0b3b75;
  font-weight: 600;
}

.blog-content ul,
.blog-content ol {
  padding-left: 26px;
  margin: 20px 0;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 5px solid #1467b8;
  background: #f8fbff;
  border-radius: 12px;
  color: #0f3e72;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
}

.blog-content table th {
  background: #1467b8;
  color: white;
  padding: 14px;
}

.blog-content table td {
  border: 1px solid #e5ecf5;
  padding: 14px;
}

.blog-content img {
  max-width: 100%;
  border-radius: 18px;
  margin: 28px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-article {
    padding: 28px 18px 60px;
  }

  .blog-header h1 {
    font-size: 34px;
  }

  .blog-content {
    font-size: 17px;
  }

  .blog-content h2 {
    font-size: 26px;
  }

  .blog-content h3 {
    font-size: 22px;
  }
}

.docs-editor {
  max-width: 980px;
  margin: auto;
  padding: 32px;
}
.docs-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.docs-toolbar button {
  background: #1467b8;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}
.docs-title {
  width: 100%;
  padding: 16px;
  font-size: 28px;
  border: 1px solid #e5ecf5;
  border-radius: 14px;
  margin-bottom: 16px;
}
#editor {
  width: 100%;
  min-height: 380px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5ecf5;
  font-size: 16px;
  line-height: 1.8;
  font-family: inherit;
}
.docs-preview {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5ecf5;
}
.docs-preview img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

/* =========================================
   SISFORTY MOBILE CONTENT FIX
========================================= */

@media (max-width: 991.98px) {
  /* Semua section tampil normal */
  section {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
  }

  /* Hero */
  .hero-section,
  .landing-hero,
  .hero-wrapper {
    position: relative !important;
    min-height: auto !important;
    height: auto !important;
    padding: 90px 0 40px !important;
    display: flex !important;
    align-items: center;
  }

  /* Konten hero jangan absolute */
  .hero-content,
  .hero-text,
  .hero-image {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
  }

  /* Hilangkan overflow yang menyembunyikan isi */
  body,
  main,
  .landing-page-wrapper {
    overflow-x: hidden;
    overflow-y: visible !important;
  }
}

/* =========================================
   SISFORTY MOBILE HOTFIX (Samsung J8)
========================================= */

@media screen and (max-width: 991.98px) {
  /* Semua elemen animasi langsung ditampilkan */
  .fade-up,
  .fade-in,
  .zoom-in,
  .slide-up,
  [data-aos],
  .animate,
  .hero-content,
  .hero-image,
  .hero-text {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
  }

  /* Hero */
  .hero-section,
  .landing-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 90px 20px 50px !important;
    display: block !important;
  }

  /* Semua section jangan absolute */
  section {
    position: relative !important;
    overflow: visible !important;
  }

  /* Hindari bug Samsung dengan backdrop-filter */
  .glass,
  .hero-card,
  .feature-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body,
  html {
    overflow-x: hidden;
  }
}

/* =========================================================
   SISFORTY v7.5.1 - MOBILE FIX
   Samsung J8, S10, Android Chrome
========================================================= */

/* Hero */
.hero-reference {
  position: relative;
  min-height: 100vh;
  height: auto;
  overflow: visible !important;
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero-reference .container {
  position: relative;
  z-index: 5;
}

/* Reveal selalu tampil jika JS gagal */
.reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Hero text */
.hero-copy {
  position: relative;
  z-index: 10;
}

.hero-copy h1 {
  font-size: 3rem;
  line-height: 1.15;
}

.hero-copy .lead {
  font-size: 1.05rem;
}

/* Dashboard gambar */
.hero-dashboard img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating note */
.floating-note {
  position: absolute;
  right: 10px;
  bottom: 15px;
  z-index: 15;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero-reference {
    padding-top: 90px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .hero-copy .lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .feature-strip-grid,
  .trust-band-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .showcase-card {
    height: 100%;
  }
}

/* HP kecil seperti Samsung J8 */
@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .eyebrow {
    font-size: 13px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 12px 16px;
  }
}

/* ==========================================
   SISFORTY DOKUMENTASI
========================================== */

.docs-wrapper {
  padding: 0 0 60px;
  background: #fff;
}

.docs-frame {
  width: 100%;
  height: calc(100vh - 180px);
  border: 1px solid #e5ecf5;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.docs-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Mobile */
@media (max-width: 991.98px) {
  .docs-wrapper .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .docs-frame {
    height: calc(100vh - 150px);
    border-radius: 14px;
  }
}
