﻿:root {
      --bg: #f4f7fb;
      --paper: #ffffff;
      --ink: #09234a;
      --navy: #062a5f;
      --navy-deep: #031b3f;
      --navy-soft: #e8eef7;
      --muted: #667085;
      --line: #dde4ee;
      --accent: #e51f2f;
      --accent-dark: #b91422;
      --green: #147d58;
      --soft: #eef3f9;
      --shadow: rgba(9, 35, 74, 0.12);
      --white: #ffffff;
      /* Tinggi nav dipatok di sini SAJA. Jangan menimpanya per-halaman:
         tiap penimpaan bikin nav berganti tinggi saat pengunjung berpindah.
         --nav-inner-h: tinggi baris nav. --nav-height: ruang yang dipesan di
         bawahnya (padding-top body, scroll-margin). SENGAJA dua variabel:
         kalau nav.js menulis hasil ukurannya ke variabel yang juga mengatur
         tinggi nav, tiap pengukuran menambah 1px setebal garis bawah. */
      --nav-inner-h: 60px;
      --nav-height: 61px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        linear-gradient(135deg, rgba(229, 31, 47, 0.08), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(6, 42, 95, 0.1), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 48%, #eef3f9 100%);
      color: var(--ink);
      line-height: 1.6;
      padding-top: var(--nav-height);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      overflow-x: hidden;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
      background: rgba(255, 255, 255, 0.92);
      border-bottom: 1px solid rgba(6, 42, 95, 0.1);
      box-shadow: 0 14px 34px rgba(9, 35, 74, 0.08);
    }

    .nav-inner {
      min-height: var(--nav-inner-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
      letter-spacing: 0;
      font-size: 21px;
      color: var(--navy);
    }

    .brand-mark {
      width: 220px;
      height: 38px;
      display: block;
      flex: 0 0 auto;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .brand-mark img[src*="logo-idealbpr"] {
      transform: translateY(3px);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 14px;
      color: var(--muted);
      font-weight: 700;
    }

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

    .nav-links a.is-active {
      color: var(--navy);
      box-shadow: inset 0 -2px 0 #0b4d9a;
    }

    .nav-links .btn.is-active {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: var(--white);
      box-shadow: inset 0 -2px 0 #0b4d9a, 0 18px 35px rgba(229, 31, 47, 0.2);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 13px 20px;
      font-weight: 750;
      font-size: 14px;
      border: 1px solid transparent;
      transition: 0.2s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: var(--white);
      box-shadow: 0 18px 35px rgba(229, 31, 47, 0.2);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #ff3949, var(--accent-dark));
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: var(--white);
      border-color: var(--line);
      color: var(--navy);
    }

    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-1px);
    }

    .hero {
      position: relative;
      padding: 96px 0 72px;
      min-height: calc(100svh - var(--nav-height));
      display: flex;
      align-items: center;
      scroll-margin-top: var(--nav-height);
      scroll-snap-align: start;
      scroll-snap-stop: always;
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(6, 42, 95, 0.08), transparent 42%),
        radial-gradient(circle at 74% 18%, rgba(229, 31, 47, 0.1), transparent 30%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      position: relative;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--accent);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 750;
      margin-bottom: 22px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--navy));
    }

    h1 {
      font-size: clamp(42px, 7vw, 78px);
      line-height: 0.96;
      letter-spacing: -0.04em;
      max-width: 760px;
      margin-bottom: 24px;
      color: var(--navy-deep);
      text-shadow: none;
    }

    .hero p {
      max-width: 670px;
      font-size: 18px;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 28px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .trust-row span {
      padding: 8px 11px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 999px;
      min-width: 116px;
      text-align: center;
      transition: transform 0.28s ease, opacity 0.28s ease, color 0.28s ease, border-color 0.28s ease;
    }

    .trust-row span.is-switching {
      opacity: 0;
      transform: translateY(-8px) rotateX(76deg);
    }

    .trust-row span.is-highlight {
      color: var(--navy);
      border-color: rgba(6, 42, 95, 0.2);
    }

    .mockup {
      background:
        linear-gradient(180deg, rgba(6, 42, 95, 0.04), rgba(229, 31, 47, 0.03)),
        var(--white);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 28px 70px var(--shadow);
      transform: rotate(1deg);
    }

    .mockup-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 13px;
    }

    .mockup-brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(135deg, #ffffff, #f3f6fa);
    }

    .mockup-brand img {
      width: 76px;
      height: 76px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .mockup-brand strong {
      display: block;
      color: var(--navy);
      font-size: 16px;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }

    .mockup-brand span {
      display: block;
      color: var(--muted);
      font-size: 13px;
    }

    .bpr-brand-card {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 12px 30px rgba(9, 35, 74, 0.06);
    }

    .bpr-brand-card img {
      width: 58px;
      height: 74px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .bpr-brand-card strong {
      display: block;
      color: var(--navy-deep);
      font-size: 15px;
      margin-bottom: 3px;
    }

    .bpr-brand-card span {
      color: var(--muted);
      display: block;
      font-size: 13px;
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dots i {
      display: block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--line);
    }

    .score-card {
      background:
        linear-gradient(180deg, #ffffff, #f8fafc);
      border-radius: 14px;
      padding: 24px;
      border: 1px solid var(--line);
    }

    .score-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;
    }

    .score-head h3 {
      font-size: 20px;
      letter-spacing: -0.04em;
    }

    .badge {
      border-radius: 999px;
      background: rgba(103, 196, 155, 0.12);
      color: var(--green);
      padding: 7px 11px;
      font-size: 12px;
      font-weight: 800;
    }

    .big-score {
      font-size: 68px;
      line-height: 1;
      letter-spacing: -0.08em;
      font-weight: 900;
      margin-bottom: 6px;
      color: var(--navy);
    }

    .mini-label {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 22px;
    }

    .bars {
      display: grid;
      gap: 13px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 28px 1fr 46px;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 750;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: var(--soft);
      overflow: hidden;
    }

    .bar i {
      display: block;
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--navy), var(--accent));
    }

    section {
      padding: 78px 0;
      min-height: calc(100svh - var(--nav-height));
      display: flex;
      align-items: center;
      scroll-margin-top: var(--nav-height);
      scroll-snap-align: start;
      scroll-snap-stop: always;
      transition: background-color 0.35s ease;
    }

    section > .container,
    .hero > .container {
      flex: 0 0 auto;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent);
      font-weight: 850;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.04;
      letter-spacing: -0.035em;
      margin-bottom: 16px;
      color: var(--navy-deep);
    }

    .section-head p {
      color: var(--muted);
      font-size: 17px;
    }

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

    .card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px;
      box-shadow: 0 18px 50px var(--shadow);
    }

    .card-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .card h3 {
      font-size: 21px;
      letter-spacing: -0.04em;
      margin-bottom: 9px;
    }

    .card p, .card li {
      color: var(--muted);
      font-size: 15px;
    }

    .ideal-explainer {
      background:
        linear-gradient(135deg, rgba(6, 42, 95, 0.06), transparent 34%),
        linear-gradient(180deg, #f8fafc, #ffffff);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .framework-layout {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 22px;
      align-items: stretch;
    }

    .framework-summary {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      border-radius: 8px;
      padding: 30px;
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      box-shadow: 0 28px 70px rgba(6, 42, 95, 0.2);
    }

    .framework-summary .section-kicker,
    .framework-summary h2 {
      color: var(--white);
    }

    .framework-summary p {
      color: rgba(255, 255, 255, 0.76);
      font-size: 16px;
    }

    .weight-total {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .weight-box {
      padding: 12px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .weight-box strong {
      display: block;
      font-size: 24px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .weight-box span {
      display: block;
      font-size: 11px;
      line-height: 1.3;
      color: rgba(255, 255, 255, 0.72);
    }

    .framework-grid {
      display: grid;
      gap: 12px;
    }

    .framework-card {
      display: grid;
      grid-template-columns: 58px 1fr 70px;
      gap: 14px;
      align-items: start;
      padding: 16px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(9, 35, 74, 0.06);
    }

    .framework-code {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: var(--navy-soft);
      color: var(--navy);
      font-size: 28px;
      font-weight: 900;
    }

    .framework-card h3 {
      color: var(--navy-deep);
      font-size: 18px;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 6px;
    }

    .framework-card p {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 10px;
    }

    .indicator-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .indicator-chips span {
      padding: 4px 8px;
      border-radius: 999px;
      background: var(--soft);
      color: var(--navy);
      font-size: 11px;
      font-weight: 750;
    }

    .framework-weight {
      display: grid;
      place-items: center;
      min-height: 58px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--navy), var(--accent));
      color: var(--white);
      font-size: 22px;
      font-weight: 900;
    }

    .sample {
      background: linear-gradient(180deg, #ffffff, #f3f6fa);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .report-preview {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .ideal-report {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 20px;
      align-items: stretch;
    }

    .ideal-scorecard {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
      box-shadow: 0 18px 50px var(--shadow);
    }

    .report-title-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
    }

    .report-title-row h3 {
      color: var(--navy-deep);
      font-size: 23px;
      line-height: 1.1;
      letter-spacing: -0.035em;
      margin-bottom: 6px;
    }

    .report-title-row p {
      color: var(--muted);
      font-size: 14px;
    }

    .composite-pill {
      min-width: 132px;
      border-radius: 8px;
      padding: 12px;
      background: linear-gradient(135deg, var(--navy), var(--accent));
      color: var(--white);
      text-align: center;
    }

    .composite-pill strong {
      display: block;
      font-size: 34px;
      line-height: 1;
      letter-spacing: -0.06em;
    }

    .composite-pill span {
      display: block;
      margin-top: 5px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .ideal-dimensions {
      display: grid;
      gap: 12px;
    }

    .dimension-row {
      display: grid;
      grid-template-columns: 44px 1fr 56px;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fbfcfe;
    }

    .dimension-letter {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: var(--navy);
      color: var(--white);
      font-size: 22px;
      font-weight: 900;
    }

    .dimension-row strong {
      display: block;
      color: var(--navy-deep);
      font-size: 15px;
      margin-bottom: 5px;
    }

    .dimension-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      color: var(--muted);
      font-size: 12px;
    }

    .dimension-meta span {
      padding: 3px 7px;
      border-radius: 999px;
      background: var(--soft);
    }

    .dimension-score {
      text-align: right;
      color: var(--navy);
      font-size: 20px;
      font-weight: 900;
    }

    .diagnostic-board {
      display: grid;
      gap: 14px;
    }

    .diagnostic-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 18px;
      box-shadow: 0 12px 34px rgba(9, 35, 74, 0.06);
    }

    .diagnostic-card h3 {
      color: var(--navy-deep);
      font-size: 18px;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .diagnostic-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 12px;
    }

    .mini-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .mini-metric {
      border-radius: 8px;
      padding: 10px;
      background: var(--soft);
      border: 1px solid var(--line);
    }

    .mini-metric strong {
      display: block;
      color: var(--navy);
      font-size: 17px;
      line-height: 1;
      margin-bottom: 5px;
    }

    .mini-metric span {
      color: var(--muted);
      font-size: 11px;
      line-height: 1.25;
    }

    .priority-list {
      display: grid;
      gap: 9px;
      margin: 0;
    }

    .priority-list li {
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fbfcfe;
      font-size: 13px;
      color: var(--muted);
    }

    .priority-list strong {
      color: var(--navy-deep);
    }

    .table-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 20px;
      overflow: hidden;
      box-shadow: 0 18px 50px var(--shadow);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    th {
      text-align: left;
      color: var(--muted);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 11px 8px;
      border-bottom: 1px solid var(--line);
    }

    td {
      padding: 12px 8px;
      border-bottom: 1px solid #edf1f6;
      font-weight: 650;
    }

    tr:last-child td {
      border-bottom: none;
    }

    .status {
      display: inline-flex;
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 12px;
      font-weight: 850;
      background: rgba(35, 72, 58, 0.1);
      color: var(--green);
    }

    .status.warn {
      background: rgba(184, 138, 59, 0.14);
      color: #986a11;
    }

    .status.bad {
      background: rgba(217, 166, 74, 0.14);
      background: rgba(229, 31, 47, 0.1);
      color: var(--accent-dark);
    }

    .insight-list {
      display: grid;
      gap: 14px;
    }

    .insight {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 18px;
      box-shadow: 0 12px 34px rgba(9, 35, 74, 0.06);
    }

    .insight strong {
      display: block;
      margin-bottom: 5px;
    }

    .insight p {
      color: var(--muted);
      font-size: 14px;
    }

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

    .price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 26px;
      box-shadow: 0 18px 50px var(--shadow);
    }

    .price-card.featured {
      background:
        linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--paper);
      transform: translateY(-10px);
      box-shadow: 0 26px 70px rgba(6, 42, 95, 0.22);
    }

    .price-card.featured p,
    .price-card.featured li,
    .price-card.featured .price-note {
      color: rgba(255, 255, 255, 0.76);
    }

    .price-card h3 {
      font-size: 24px;
      letter-spacing: -0.045em;
      margin-bottom: 8px;
    }

    .price-card p {
      color: var(--muted);
      margin-bottom: 20px;
      font-size: 14px;
    }

    .price {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: -0.06em;
      margin-bottom: 5px;
      color: var(--accent);
    }

    .price-note {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 20px;
    }

    ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 20px 0 26px;
    }

    li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    li::before {
      content: "✓";
      color: var(--accent);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .price-card .btn {
      margin-top: auto;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .step {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
      box-shadow: 0 12px 34px rgba(9, 35, 74, 0.06);
    }

    .num {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: var(--white);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .step h3 {
      margin-bottom: 6px;
      font-size: 18px;
      letter-spacing: -0.035em;
    }

    .step p {
      color: var(--muted);
      font-size: 14px;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

    details {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 18px 20px;
      box-shadow: 0 10px 28px rgba(9, 35, 74, 0.05);
    }

    summary {
      cursor: pointer;
      font-weight: 850;
      letter-spacing: -0.025em;
    }

    details p {
      color: var(--muted);
      margin-top: 10px;
      font-size: 15px;
    }

    .cta {
      padding: 86px 0;
    }

    .cta-box {
      background:
        linear-gradient(135deg, rgba(229, 31, 47, 0.92), rgba(6, 42, 95, 0.96));
      color: var(--paper);
      border-radius: 8px;
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 28px;
      box-shadow: 0 34px 90px rgba(6, 42, 95, 0.22);
      border: 1px solid var(--line);
    }

    .cta-box h2 {
      color: var(--paper);
      max-width: 780px;
    }

    .cta-box p {
      color: rgba(255, 255, 255, 0.78);
      max-width: 700px;
    }

    .footer-inner {
      margin-top: 28px;
      padding-top: 18px;
      color: var(--muted);
      font-size: 14px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .proof-strip {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 28px;
      padding: 18px 22px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(9, 35, 74, 0.06);
    }

    .proof-stat {
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 64px;
    }

    .proof-stat strong {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -0.05em;
      color: var(--navy);
      line-height: 1;
    }

    .proof-stat span {
      font-size: 13px;
      color: var(--muted);
    }

    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px 28px;
      margin: 0 0 18px;
      box-shadow: 0 12px 30px rgba(9, 35, 74, 0.06);
    }

    .founder-note {
      border-left: 3px solid var(--accent);
      border-radius: 0 8px 8px 0;
    }

    .testimonial-card p {
      color: var(--ink);
      font-size: 15px;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .testimonial-card cite {
      color: var(--muted);
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
    }

    .site-footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--white);
      border-top: 1px solid var(--line);
    }

    .site-footer .footer-inner {
      margin-top: 0;
      border-top: none;
      padding: 14px 0;
    }

    .cta {
      position: relative;
    }

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

    .progress-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(9, 35, 74, 0.2);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.22s ease, transform 0.22s ease;
    }

    .progress-dot:hover {
      background: rgba(9, 35, 74, 0.4);
    }

    .progress-dot.is-active {
      background: var(--accent);
      transform: scale(1.5);
    }

    @media (max-width: 900px) {
      .progress-dots { display: none; }
      .site-footer { position: static; }
    }

    /* Bidang sentuh 44x44 (padding 6px 4px dulu menghasilkan 30x28) — di ponsel
       tombol ini SATU-SATUNYA jalan ke halaman harga & pemesanan, jadi tidak
       boleh lebih kecil dari jempol. Batang tetap 22px; margin negatif menjaga
       ikonnya tetap lurus dengan tepi kanan seperti sebelum bidangnya dilebarkan. */
    .nav-toggle {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      width: 44px;
      height: 44px;
      padding: 0;
      margin: -8px -11px -8px 0;
      flex: 0 0 auto;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (min-width: 901px) {
      html,
      body {
        height: 100%;
        overflow: hidden;
        padding-top: 0;
      }

      .page {
        height: 100svh;
        overflow-y: auto;
        overflow-x: hidden;
        scroll-snap-type: y proximity;
        scroll-padding-top: var(--nav-height);
        scroll-behavior: smooth;
        overscroll-behavior-y: contain;
      }

      .nav {
        position: sticky;
      }

      .container {
        width: min(1180px, calc(100% - 44px));
      }

      .hero,
      section {
        height: calc(100svh - var(--nav-height));
        min-height: auto;
        padding: clamp(14px, 2.4svh, 24px) 0;
        overflow: hidden;
        scroll-margin-top: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
      }

      h1 {
        font-size: clamp(34px, 4.7vw, 54px);
        margin-bottom: 12px;
      }

      h2 {
        font-size: clamp(26px, 2.75vw, 36px);
        margin-bottom: 8px;
      }

      .hero p,
      .section-head p {
        font-size: 14px;
      }

      .hero p,
      .hero-actions {
        margin-bottom: 14px;
      }

      .hero-grid {
        gap: 28px;
        grid-template-columns: 1fr 0.92fr;
      }

      .eyebrow {
        margin-bottom: 10px;
        padding: 6px 10px;
        font-size: 12px;
      }

      .btn {
        padding: 10px 15px;
        font-size: 13px;
      }

      .trust-row {
        gap: 8px;
        font-size: 12px;
      }

      .trust-row span {
        padding: 6px 9px;
      }

      .mockup {
        padding: 12px;
        border-radius: 10px;
        transform: rotate(0.6deg);
      }

      .mockup-top,
      .mockup-brand,
      .bpr-brand-card {
        margin-bottom: 8px;
      }

      .mockup-brand,
      .bpr-brand-card {
        padding: 8px;
      }

      .mockup-brand strong,
      .bpr-brand-card strong {
        font-size: 13px;
      }

      .mockup-brand span,
      .bpr-brand-card span {
        font-size: 11px;
      }

      .mockup-brand img {
        width: 42px;
        height: 42px;
      }

      .bpr-brand-card img {
        width: 34px;
        height: 44px;
      }

      .score-card {
        padding: 12px;
      }

      .score-head {
        margin-bottom: 8px;
      }

      .big-score {
        font-size: 38px;
      }

      .mini-label {
        margin-bottom: 8px;
        font-size: 12px;
      }

      .bars {
        gap: 6px;
      }

      .bar {
        height: 7px;
      }

      .section-head {
        margin-bottom: 14px;
      }

      .card,
      .price-card {
        padding: 14px;
      }

      .card h3,
      .price-card h3 {
        font-size: 17px;
      }

      .card p,
      .card li,
      .price-card p,
      .step p,
      details p {
        font-size: 12px;
      }

      .framework-summary {
        padding: 16px;
      }

      .framework-layout {
        gap: 14px;
        grid-template-columns: 0.8fr 1.2fr;
      }

      .framework-summary {
        gap: 12px;
      }

      .framework-summary p {
        font-size: 12px;
      }

      .weight-total {
        gap: 7px;
      }

      .weight-box {
        padding: 9px;
      }

      .weight-box strong {
        font-size: 18px;
      }

      .framework-grid {
        gap: 7px;
      }

      .framework-card {
        grid-template-columns: 38px 1fr 50px;
        gap: 8px;
        padding: 8px;
      }

      .framework-code {
        width: 38px;
        height: 38px;
        font-size: 19px;
      }

      .framework-card h3 {
        font-size: 14px;
      }

      .framework-card p {
        font-size: 11px;
        margin-bottom: 5px;
      }

      .framework-weight {
        min-height: 38px;
        font-size: 15px;
      }

      .indicator-chips span {
        padding: 2px 6px;
        font-size: 9px;
      }

      .ideal-report {
        gap: 12px;
      }

      .ideal-scorecard,
      .diagnostic-card {
        padding: 10px;
      }

      .report-title-row {
        margin-bottom: 8px;
      }

      .report-title-row h3 {
        font-size: 18px;
      }

      .report-title-row p {
        font-size: 11px;
      }

      .composite-pill {
        min-width: 104px;
        padding: 9px;
      }

      .composite-pill strong {
        font-size: 25px;
      }

      .dimension-row {
        grid-template-columns: 32px 1fr 40px;
        gap: 8px;
        padding: 7px;
      }

      .dimension-letter {
        width: 32px;
        height: 32px;
        font-size: 16px;
      }

      .dimension-row strong {
        font-size: 12px;
      }

      .dimension-meta span {
        padding: 2px 5px;
        font-size: 9px;
      }

      .dimension-score {
        font-size: 15px;
      }

      .diagnostic-card h3 {
        font-size: 15px;
      }

      .diagnostic-card p,
      .priority-list li {
        font-size: 11px;
      }

      .mini-metrics {
        gap: 6px;
      }

      .mini-metric {
        padding: 8px;
      }

      .pricing-grid {
        gap: 10px;
      }

      .price-card p {
        margin-bottom: 8px;
      }

      .price {
        font-size: 24px;
      }

      ul {
        gap: 5px;
        margin: 10px 0 12px;
        font-size: 12px;
      }

      .steps {
        gap: 10px;
      }

      .step {
        padding: 12px;
      }

      details {
        padding: 10px 12px;
      }

      .cta {
        padding: clamp(14px, 2.4svh, 24px) 0;
      }

      .cta-box {
        padding: 26px;
      }

      .proof-strip {
        padding: 10px 14px;
        gap: 14px;
        margin-bottom: 14px;
      }

      .proof-stat strong {
        font-size: 20px;
      }

      .proof-stat span {
        font-size: 11px;
      }

      .testimonial-card {
        padding: 10px 14px;
      }

      .testimonial-card p {
        font-size: 12px;
        margin-bottom: 5px;
      }

      .testimonial-card cite {
        font-size: 10px;
      }

      .footer-inner {
        margin-top: 20px;
        padding-top: 12px;
        font-size: 12px;
      }
    }

    @media (max-width: 900px) {
      :root {
        --nav-inner-h: 56px;
        --nav-height: 57px;
        /* ruang sticky CTA bar di dasar tiap halaman snap */
        --snap-pad-bottom: 82px;
      }

      /* Snap per-halaman di scroller dokumen (bukan inner container):
         address bar tetap bisa collapse, tiap halaman didesain fit 1 layar. */
      html {
        scroll-snap-type: y proximity;
        scroll-padding-top: var(--nav-height);
      }

      [data-snap] {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        scroll-margin-top: var(--nav-height);
      }

      .hero,
      section {
        min-height: calc(100svh - var(--nav-height));
        height: auto;
        display: flex;
        align-items: center;
        padding: 14px 0 var(--snap-pad-bottom);
        scroll-margin-top: var(--nav-height);
      }

      .hero,
      section {
        width: 100%;
      }

      .hero > .container,
      section > .container {
        width: min(100% - 26px, 1120px);
      }

      /* Bar belum tampil di hero, tidak perlu ruang bawah */
      .hero {
        padding-bottom: 18px;
      }

      /* Seksi multi-halaman: kontainer biasa, halaman diatur anak-anaknya */
      #contoh,
      .cta {
        display: block;
        min-height: 0;
        padding: 0;
      }

      /* Cara mulai dihapus dari alur mobile (aktivasi cukup lewat WhatsApp/CTA) */
      #order {
        display: none;
      }

      /* Bagian mockup yang tidak menjual di layar kecil */
      .mockup-top,
      .mockup-brand,
      .bpr-brand-card,
      .trust-row {
        display: none;
      }

      .brand-mark {
        width: 190px;
        height: 40px;
      }

      /* Dots progres di sisi kanan, seperti desktop */
      .progress-dots {
        display: flex;
        right: 5px;
        gap: 7px;
        z-index: 150;
      }

      .progress-dot {
        width: 6px;
        height: 6px;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-inner {
        flex-wrap: nowrap;
        padding: 0;
        gap: 16px;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 14px 34px rgba(9, 35, 74, 0.1);
        padding: 8px 0 16px;
        overflow-x: visible;
        white-space: normal;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links a {
        padding: 12px 20px;
        font-size: 15px;
        border-bottom: 1px solid var(--line);
        color: var(--navy);
        flex: none;
      }

      .nav-links a:last-child {
        border-bottom: none;
      }

      .nav-links a.btn {
        margin: 12px 20px 0;
        width: calc(100% - 40px);
        justify-content: center;
        border-bottom: none;
        border-radius: 999px;
      }

      .hero-grid,
      .report-preview,
      .framework-layout,
      .ideal-report,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .grid-3,
      .pricing-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      /* ── Tipografi dasar mobile ── */
      h1 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.06;
        margin-bottom: 12px;
      }

      h2 {
        font-size: clamp(20px, 5.6vw, 26px);
        line-height: 1.14;
        margin-bottom: 8px;
      }

      .hero p,
      .section-head p {
        font-size: 14px;
      }

      .section-head {
        margin-bottom: 16px;
      }

      /* ── Hal 1: Hero + score card (bukti produk langsung terlihat) ── */
      .eyebrow {
        margin-bottom: 12px;
        padding: 6px 10px;
        font-size: 12px;
      }

      .hero p {
        margin-bottom: 16px;
      }

      .hero-actions {
        gap: 10px;
        margin-bottom: 10px;
      }

      .hero-actions .btn {
        padding: 11px 16px;
        font-size: 13px;
      }

      .hero-note {
        margin: 0 0 10px;
        font-size: 12px;
      }

      .hero-grid {
        gap: 12px;
      }

      .mockup {
        margin-top: 0;
        transform: none;
        padding: 10px;
        border-radius: 10px;
      }

      .score-card {
        padding: 12px 14px;
        border-radius: 8px;
      }

      .score-head {
        margin-bottom: 6px;
      }

      .score-head h3 {
        font-size: 16px;
      }

      .big-score {
        font-size: clamp(32px, 5.2svh, 46px);
        line-height: 1.05;
      }

      .mini-label {
        font-size: 11px;
        margin-bottom: 6px;
      }

      .bars {
        gap: 5px;
      }

      .bar {
        height: 6px;
      }

      /* ── Hal 3: Apa itu IDEAL — tanpa persentase, dengan deskripsi singkat ── */
      .framework-summary {
        padding: 14px 16px;
        gap: 10px;
      }

      .framework-summary p,
      .weight-total {
        display: none;
      }

      .framework-summary h2 {
        margin-bottom: 0;
      }

      .framework-grid {
        gap: 7px;
      }

      .framework-card {
        grid-template-columns: 36px 1fr;
        gap: 10px;
        padding: 9px 12px;
        align-items: center;
      }

      .framework-code {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 6px;
      }

      .framework-card h3 {
        font-size: 14px;
        margin-bottom: 1px;
      }

      .framework-card p {
        display: block;
        font-size: 11.5px;
        line-height: 1.45;
        margin: 0;
        color: var(--muted);
      }

      .framework-card .indicator-chips,
      .framework-weight {
        display: none;
      }

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

    @media (max-width: 560px) {
      :root {
        --nav-inner-h: 56px;
        --nav-height: 57px;
      }

      .container {
        width: min(100% - 26px, 1120px);
      }

      .bar-row {
        grid-template-columns: 28px 1fr 38px;
      }

      .brand {
        gap: 10px;
      }

      .brand-mark {
        width: 180px;
        height: 36px;
      }

      .nav-inner {
        gap: 12px;
      }

      .framework-layout,
      .ideal-report,
      .report-preview,
      .grid-3,
      .steps {
        gap: 10px;
      }

      .footer-inner {
        display: grid;
        gap: 8px;
        font-size: 12px;
      }

      .report-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }

      .composite-pill {
        width: 100%;
      }

      .dimension-row {
        grid-template-columns: 34px 1fr auto;
        gap: 10px;
      }

      .dimension-score {
        text-align: right;
        align-self: center;
      }
    }

    /* ═══════════════════════════════════════════════════════
       Halaman snap mobile — tiap halaman didesain fit 1 layar
       ═══════════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      /* ── Hal 2: Masalah — satu layar: judul + 4 angka + 3 kartu ringkas ── */
      #masalah .section-head p {
        display: none;
      }

      .proof-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 12px;
        padding: 10px 14px;
        margin-bottom: 12px;
      }

      .proof-stat strong {
        font-size: 18px;
      }

      .proof-stat span {
        font-size: 10px;
      }

      .grid-3 {
        gap: 8px;
      }

      .grid-3 .card {
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 4px 12px;
        padding: 11px 14px;
        align-items: center;
      }

      .grid-3 .card-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin: 0;
        grid-row: 1 / 3;
      }

      .grid-3 .card h3 {
        font-size: 15px;
        margin: 0;
      }

      .grid-3 .card p {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
      }

      /* ── Hal 4a & 4b: Laporan interaktif (2 halaman snap) ── */
      #contoh > .container {
        padding-top: 8px;
      }

      #contoh .section-head {
        margin-bottom: 12px;
      }

      #contoh .section-head p {
        font-size: 13px;
      }

      /* Hal 4a mengisi satu layar penuh: judul + kartu skor komposit */
      #contoh .section-head,
      .report-title-row {
        scroll-snap-align: none;
      }

      .ideal-scorecard {
        display: block;
      }

      .ideal-report {
        display: block;
      }

      .ideal-scorecard {
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
      }

      .report-title-row {
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 14px;
        margin-bottom: 0;
      }

      .report-title-row h3 {
        font-size: 17px;
      }

      .report-title-row p {
        font-size: 12px;
      }

      .composite-pill strong {
        font-size: 30px;
      }

      .ideal-dimensions {
        min-height: calc(100svh - var(--nav-height) - var(--snap-pad-bottom));
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding-bottom: 0;
      }

      .dimension-row {
        padding: 10px 12px;
      }

      .dimension-row strong {
        font-size: 14px;
      }

      .dimension-meta span {
        font-size: 10.5px;
      }

      .dimension-letter {
        width: 34px;
        height: 34px;
        font-size: 15px;
      }

      .dimension-score {
        font-size: 20px;
      }

      /* ── Hal 5: Diagnosis + prioritas (1 halaman) ── */
      .diagnostic-board {
        min-height: calc(100svh - var(--nav-height) - var(--snap-pad-bottom));
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
      }

      .diagnostic-card {
        padding: 14px 16px;
      }

      .diagnostic-card h3 {
        font-size: 16px;
      }

      .diagnostic-card p {
        font-size: 12.5px;
        line-height: 1.55;
      }

      .mini-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
      }

      .mini-metric {
        padding: 8px 6px;
      }

      .mini-metric strong {
        font-size: 16px;
      }

      .mini-metric span {
        font-size: 9px;
        line-height: 1.3;
      }

      .priority-list li {
        font-size: 12px;
        line-height: 1.5;
      }

      /* CTA "buka laporan lengkap" diulang terus — cukup sticky bar.
         Selector ber-ID agar menang atas aturan dasar .laporan-cta di bawah. */
      #contoh .laporan-cta {
        display: none;
      }

      /* ── Hal 6: Paket — carousel horizontal, fit 1 layar ── */
      #paket .section-head p {
        display: none;
      }

      #paket .section-head {
        margin-bottom: 10px;
      }

      .price-summary {
        margin-bottom: 8px;
      }

      .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        margin: 0 -13px;
        padding: 4px 13px 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .pricing-grid::-webkit-scrollbar {
        display: none;
      }

      .price-card {
        flex: 0 0 84%;
        scroll-snap-align: center;
        padding: 14px 16px;
      }

      .price-card h3 {
        font-size: 17px;
      }

      .price-card > p {
        font-size: 12px;
      }

      .price {
        font-size: 30px;
      }

      .price-note {
        font-size: 11px;
      }

      .price-card ul {
        margin-bottom: 10px;
      }

      .price-card li {
        padding: 3px 0;
        font-size: 12.5px;
      }

      .price-card .btn {
        width: 100%;
        padding: 10px;
      }

      /* SLA "dibalas < 1 jam" sudah ada di CTA penutup — di sini bikin overflow */
      .pricing-sla {
        display: none;
      }

      /* ── Hal 7: FAQ — 5 pertanyaan fit 1 layar ── */
      #faq details {
        padding: 10px 14px;
      }

      #faq summary {
        font-size: 14px;
      }

      #faq details p {
        font-size: 12.5px;
      }

      .faq {
        gap: 8px;
      }

      /* ── Hal 8: Quote founder — halaman tipografis ── */
      .cta > .container {
        width: min(100% - 26px, 1120px);
      }

      .founder-note {
        min-height: calc(100svh - var(--nav-height));
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        padding: 24px 4px;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
      }

      .founder-note p {
        font-size: clamp(17px, 4.6vw, 22px);
        line-height: 1.55;
        color: var(--navy-deep);
        margin-bottom: 14px;
        border-left: 3px solid var(--accent);
        padding-left: 16px;
      }

      .founder-note cite {
        font-size: 12px;
        padding-left: 19px;
      }

      /* ── Hal 9: CTA penutup + footer ── */
      .cta-box {
        min-height: calc(100svh - var(--nav-height) - 96px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px 20px;
      }

      .cta-box h2 {
        font-size: clamp(22px, 6vw, 28px);
      }

      .cta-box p {
        font-size: 13.5px;
      }

      .cta-actions .btn {
        padding: 11px 18px;
        font-size: 13.5px;
      }

      .site-footer .footer-inner {
        padding: 12px 0;
      }
    }

    /* ── Layar mobile pendek (iPhone SE dkk): kompresi ekstra agar tetap fit ── */
    @media (max-width: 900px) and (max-height: 720px) {
      :root {
        --snap-pad-bottom: 74px;
      }

      /* Hero: info eyebrow & note sudah terwakili sticky bar */
      .eyebrow,
      .hero-note,
      .score-card .mini-label {
        display: none;
      }

      h1 {
        font-size: clamp(21px, 6vw, 26px);
        margin-bottom: 8px;
      }

      h2 {
        font-size: clamp(18px, 5vw, 22px);
      }

      .hero p {
        font-size: 13px;
        margin-bottom: 12px;
      }

      .hero-actions .btn {
        padding: 9px 14px;
        font-size: 12.5px;
      }

      .score-card {
        padding: 10px 12px;
      }

      .score-head {
        margin-bottom: 2px;
      }

      .score-head h3 {
        font-size: 14px;
      }

      .badge {
        font-size: 10px;
      }

      .big-score {
        font-size: 30px;
        margin-bottom: 4px;
      }

      .bars {
        gap: 4px;
      }

      /* Masalah */
      .proof-strip {
        padding: 8px 12px;
        gap: 4px 10px;
        margin-bottom: 8px;
      }

      .proof-stat strong {
        font-size: 16px;
      }

      .grid-3 .card {
        padding: 8px 12px;
      }

      .grid-3 .card p {
        font-size: 11.5px;
      }

      /* Apa itu IDEAL */
      .framework-summary {
        padding: 10px 14px;
      }

      .framework-card {
        padding: 7px 10px;
      }

      .framework-card p {
        font-size: 11px;
      }

      /* Laporan interaktif */
      #contoh .section-head p {
        display: none;
      }

      .composite-pill strong {
        font-size: 26px;
      }

      .dimension-row {
        padding: 8px 10px;
      }

      .diagnostic-card {
        padding: 11px 14px;
      }

      .diagnostic-card p,
      .priority-list li {
        font-size: 11.5px;
      }

      /* Paket */
      #paket .price-summary,
      .pricing-sla,
      .price-card > p {
        display: none;
      }

      #paket .section-head {
        margin-bottom: 6px;
      }

      .price-card {
        padding: 12px 14px;
      }

      .price-card h3 {
        font-size: 15px;
      }

      .price {
        font-size: 24px;
      }

      .price-note {
        font-size: 10px;
      }

      .price-card ul {
        margin-bottom: 8px;
      }

      .price-card li {
        padding: 2px 0;
        font-size: 11.5px;
      }

      .price-card .btn {
        padding: 8px;
      }

      /* FAQ */
      #faq details {
        padding: 8px 12px;
      }

      #faq summary {
        font-size: 13px;
      }

      /* Quote & CTA */
      .founder-note p {
        font-size: clamp(15px, 4.2vw, 18px);
      }

      .cta-box {
        padding: 18px 16px;
      }

      .cta-box p {
        font-size: 12.5px;
      }
    }

    /* ── Floating WhatsApp ── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 24px;
      z-index: 200;
      display: inline-flex;
      align-items: center;
      gap: 0;
      background: #25d366;
      color: #fff;
      padding: 14px;
      border-radius: 999px;
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
      overflow: hidden;
      white-space: nowrap;
      transition: gap 0.28s ease, padding 0.28s ease, box-shadow 0.2s ease;
    }

    .wa-float:hover {
      gap: 8px;
      padding: 14px 20px;
      box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
    }

    .wa-float svg {
      flex: 0 0 auto;
    }

    .wa-float .wa-label {
      max-width: 0;
      overflow: hidden;
      font-weight: 700;
      font-size: 14px;
      transition: max-width 0.28s ease;
    }

    .wa-float:hover .wa-label {
      max-width: 120px;
    }

    /* ── Lead form inside CTA ── */
    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      flex: 0 0 auto;
    }

    .cta-divider {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .lead-form {
      display: flex;
      gap: 8px;
    }

    .lead-input {
      font-family: inherit;
      font-size: 13px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      outline: none;
      width: 210px;
      transition: border-color 0.2s, background 0.2s;
    }

    .lead-input::placeholder {
      color: rgba(255, 255, 255, 0.68);
    }

    .lead-input:focus {
      border-color: rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.18);
    }

    .btn-lead {
      background: rgba(255, 255, 255, 0.92);
      color: var(--navy);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 999px;
      padding: 10px 18px;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
      font-family: inherit;
    }

    .btn-lead:hover {
      background: #ffffff;
    }

    @media (max-width: 560px) {
      .cta-actions {
        width: 100%;
      }

      .lead-form {
        width: 100%;
      }

      .lead-input {
        width: 0;
        flex: 1;
      }
    }

    /* ═══════════════════════════════════════════════════════
       Refinement — pintu ke laporan interaktif & elegansi
       ═══════════════════════════════════════════════════════ */

    /* Hero mockup kini tautan ke laporan interaktif */
    .mockup {
      display: block;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.32s ease;
    }

    .mockup:hover {
      transform: rotate(0deg) translateY(-6px);
      box-shadow: 0 40px 90px rgba(9, 35, 74, 0.22);
    }

    .mockup:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 4px;
    }

    .mockup-cue {
      color: var(--accent);
      font-weight: 750;
    }

    /* Doorway ke laporan di seksi Contoh Output */
    .laporan-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 18px;
      padding: 20px 26px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: #fff;
      text-decoration: none;
      box-shadow: 0 20px 50px rgba(6, 42, 95, 0.2);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .laporan-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 28px 64px rgba(6, 42, 95, 0.3);
    }

    .laporan-cta-text strong {
      display: block;
      font-size: 19px;
      letter-spacing: -0.025em;
      margin-bottom: 4px;
      color: #fff;
    }

    .laporan-cta-text span {
      color: rgba(255, 255, 255, 0.72);
      font-size: 13px;
    }

    .laporan-cta-btn {
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #fff;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 750;
      font-size: 14px;
      white-space: nowrap;
      box-shadow: 0 12px 26px rgba(229, 31, 47, 0.3);
    }

    /* Desktop: ringkas agar seksi tetap muat satu layar snap */
    @media (min-width: 901px) {
      .laporan-cta {
        margin-top: 12px;
        padding: 13px 20px;
      }
      .laporan-cta-text strong {
        font-size: 16px;
        margin-bottom: 2px;
      }
      .laporan-cta-text span {
        font-size: 12px;
      }
      .laporan-cta-btn {
        padding: 10px 16px;
        font-size: 13px;
      }
    }

    @media (max-width: 560px) {
      .laporan-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
      }
      .laporan-cta-btn {
        width: 100%;
        text-align: center;
      }
    }

    /* Badge "Langganan" pada tier Triwulanan */
    .tier-tag {
      display: inline-block;
      vertical-align: middle;
      margin-left: 8px;
      padding: 3px 9px;
      border-radius: 999px;
      background: rgba(20, 125, 88, 0.12);
      color: var(--green);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.02em;
      transform: translateY(-2px);
    }

    /* Tombol demo di CTA penutup (latar gelap) */
    .cta-demo {
      background: var(--white);
      color: var(--navy);
      border-color: var(--white);
    }

    .cta-demo:hover {
      background: #f2f6fc;
      color: var(--navy);
      transform: translateY(-1px);
    }

    /* ═══════════════════════════════════════════════════════
       P0 konversi — microcopy, SLA, sticky CTA bar mobile
       ═══════════════════════════════════════════════════════ */

    .hero-note {
      color: var(--muted);
      font-size: 13px;
      margin: -16px 0 20px;
    }

    .trust-row span {
      color: var(--navy);
      font-weight: 650;
    }

    .sla-note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
    }

    .pricing-sla {
      margin-top: 16px;
      text-align: center;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    /* Sticky CTA bar — hanya mobile, muncul setelah lewat hero.
       Satu bar berisi dua aksi: demo (utama) + WhatsApp (ikon),
       menggantikan WA float yang menutupi konten. */
    .mobile-cta-bar {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: calc(12px + env(safe-area-inset-bottom, 0px));
      z-index: 190;
      gap: 8px;
      align-items: stretch;
      transform: translateY(120%);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mcb-demo {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1px;
      padding: 10px 14px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #fff;
      text-align: center;
      box-shadow: 0 14px 40px rgba(229, 31, 47, 0.4);
    }

    .mcb-demo strong {
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .mcb-demo span {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
    }

    .mcb-wa {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      border-radius: 14px;
      background: #25d366;
      color: #fff;
      box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
    }

    @media (max-width: 900px) {
      .mobile-cta-bar {
        display: flex;
      }

      .mobile-cta-bar.is-visible {
        transform: translateY(0);
        opacity: 1;
      }

      /* WA sudah ada di sticky bar — float terpisah hanya menutupi konten */
      .wa-float {
        display: none;
      }

      /* Di seksi CTA penutup: sembunyikan bar (tombol besar sudah ada di layar) */
      body.cta-in-view .mobile-cta-bar {
        opacity: 0;
        pointer-events: none;
      }

      /* Paket: kartu unggulan (Full) tampil pertama di mobile */
      .pricing-grid .price-card.featured {
        order: -1;
      }

      .hero-note {
        margin: -8px 0 18px;
      }

      /* Backdrop menu hamburger: tap di luar menutup menu */
      .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(3, 27, 63, 0.45);
      }

      body.menu-open .nav-backdrop {
        display: block;
      }

      body.menu-open {
        overflow: hidden;
      }

      /* Strip ringkasan harga: peta harga terlihat sebelum scroll 3 kartu */
      .price-summary {
        display: flex;
        gap: 6px;
        margin-bottom: 14px;
      }

      .price-summary span {
        flex: 1;
        text-align: center;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 8px 4px;
        font-size: 11px;
        font-weight: 650;
        color: var(--muted);
        line-height: 1.35;
      }

      .price-summary strong {
        display: block;
        font-size: 14px;
        color: var(--navy);
        letter-spacing: -0.01em;
      }

    }

    @media (min-width: 901px) {
      .price-summary {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
