/* ============================================================
   TEMA — ganti warna & font di sini agar seluruh situs ikut berubah
   ============================================================ */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f2f4f6;      /* kartu abu lembut */
  --ink: #0a0d12;
  --ink-soft: #5a6572;
  --line: #e3e8ee;

  --lime: #c8f31d;           /* aksen utama — tombol & kartu sorotan */
  --lime-dark: #a8ce12;
  --lime-ink: #16200a;       /* teks di atas lime */

  --sky: #1a8fe3;            /* biru langit */
  --sky-deep: #0b5fa5;
  --sky-soft: #e8f4fd;

  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
section { padding: 88px 0; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.03em; font-weight: 500; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.8rem); margin-bottom: 14px; }

/* Label kecil bertitik, seperti "• ABOUT US" */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 18px;
}
.eyebrow::before { content: "•"; color: var(--sky); font-size: 16px; }
.eyebrow-light { color: rgba(255, 255, 255, .85); }
.eyebrow-light::before { color: var(--lime); }
.section-lead { color: var(--ink-soft); max-width: 560px; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* ---------- Tombol ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  font-family: var(--font-body);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--lime); color: var(--lime-ink); }
.btn-primary:hover { background: var(--lime-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #23303f; }
.btn-ghost { border-color: var(--line); background: var(--surface); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-soft); }
/* Tombol transparan di atas langit */
.btn-glass {
  background: rgba(255, 255, 255, .16); color: #fff;
  border-color: rgba(255, 255, 255, .45); backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255, 255, 255, .28); }
.btn-block { display: flex; width: 100%; }

/* Panah dalam lingkaran di ujung tombol */
.btn .arrow {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; margin-right: -12px;
}
.btn-dark .arrow, .btn-glass .arrow { background: #fff; color: var(--ink); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 19px; display: flex; align-items: center; gap: 9px; color: #fff; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--lime); color: var(--lime-ink);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex: none;
}
.nav-links { display: flex; gap: 30px; align-items: center; font-size: 13px; }
.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, .9); letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
}
.nav-links a:not(.btn):hover { color: #fff; }

/* Setelah scroll melewati hero, navbar jadi putih solid */
.nav.scrolled { background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.nav.scrolled .brand { color: var(--ink); }
.nav.scrolled .nav-links a:not(.btn) { color: var(--ink-soft); }
.nav.scrolled .nav-links a:not(.btn):hover { color: var(--ink); }
.nav.scrolled .nav-toggle .bar { background: var(--ink); }

/* Tombol hamburger — hanya tampil di layar kecil */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-right: -10px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle .bar {
  display: block; height: 2px; width: 22px; background: #fff;
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease, background .25s;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 72px 0 auto; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 8px 0 18px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .2s ease, opacity .2s ease, visibility .2s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a:not(.btn) {
    color: var(--ink); padding: 15px 4%; border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .nav-links .btn { margin: 16px 4% 0; }
}

/* ============================================================
   HERO — langit dibuat murni dengan CSS (tanpa file gambar)
   ============================================================ */
.hero-sky {
  position: relative; overflow: hidden;
  padding: 150px 0 90px;
  background: linear-gradient(180deg, #0a5595 0%, #1580d6 38%, #4facea 62%, #a8d8f5 82%, #dceffb 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  text-align: center;
}
/* Awan: gumpalan radial-gradient yang diburamkan */
.clouds { position: absolute; inset: 0; pointer-events: none; }
/* Tiap awan = beberapa gumpalan radial yang tumpang tindih, lalu diburamkan.
   Satu gumpalan saja hasilnya seperti noda; tiga membentuk siluet berkepul. */
.cloud {
  position: absolute;
  background:
    radial-gradient(closest-side at 28% 62%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 70%),
    radial-gradient(closest-side at 50% 38%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 72%),
    radial-gradient(closest-side at 72% 60%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 68%),
    radial-gradient(closest-side at 88% 72%, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 66%);
  filter: blur(10px);
  animation: drift 34s ease-in-out infinite alternate;
}
.cloud.c1 { width: 46vw; height: 22vw; left: -8vw;  top: 14%; opacity: .55; }
.cloud.c2 { width: 38vw; height: 18vw; right: -6vw; top: 26%; opacity: .5; animation-delay: -8s; }
.cloud.c3 { width: 60vw; height: 26vw; left: 12%;   bottom: 2%; opacity: .85; animation-delay: -16s; }
.cloud.c4 { width: 30vw; height: 14vw; right: 14%;  bottom: 16%; opacity: .6; animation-delay: -24s; }
.cloud.c5 { width: 26vw; height: 12vw; left: 30%;   top: 6%; opacity: .35; animation-delay: -12s; }
@keyframes drift { from { transform: translateX(-2.5%) translateY(0); } to { transform: translateX(2.5%) translateY(-1.5%); } }

.hero-content { position: relative; z-index: 2; }
.hero-sky h1 { color: #fff; }
.hero-sky h1 em { font-style: normal; color: rgba(255, 255, 255, .62); }
.hero-sky .tagline {
  color: rgba(255, 255, 255, .9); max-width: 540px; margin: 20px auto 32px; font-size: 16px;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Deretan kartu melayang di bawah hero */
.floaters {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 64px; perspective: 1200px;
}
.floaters .fcard {
  flex: none; width: 150px; border-radius: 12px; overflow: hidden;
  background: var(--surface); border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 22px 45px rgba(6, 40, 75, .28);
  text-align: left; padding: 14px; font-size: 11.5px; line-height: 1.45;
  animation: bob 6s ease-in-out infinite alternate;
}
.fcard b { font-family: var(--font-display); font-size: 17px; display: block; }
.fcard span { color: var(--ink-soft); font-size: 10.5px; }
.fcard.dark { background: var(--ink); color: #fff; border-color: #2a3441; }
.fcard.dark span { color: #93a1b2; }
.fcard.sky { background: linear-gradient(160deg, var(--sky), var(--sky-deep)); color: #fff; border: 0; }
.fcard.sky span { color: rgba(255, 255, 255, .8); }
.fcard.lime { background: var(--lime); color: var(--lime-ink); border: 0; }
.fcard.lime span { color: #4a5c25; }
/* Kartu tepi lebih kecil & miring → kesan melengkung */
.floaters .fcard:nth-child(1) { transform: rotateY(24deg) translateY(16px) scale(.86); opacity: .9; }
.floaters .fcard:nth-child(2) { transform: rotateY(14deg) translateY(4px) scale(.94); animation-delay: -1s; }
.floaters .fcard:nth-child(3) { transform: translateY(-10px); animation-delay: -2s; }
.floaters .fcard:nth-child(4) { transform: rotateY(-14deg) translateY(4px) scale(.94); animation-delay: -3s; }
.floaters .fcard:nth-child(5) { transform: rotateY(-24deg) translateY(16px) scale(.86); opacity: .9; }
/* Pakai properti `translate`, BUKAN margin-top. Margin ikut menghitung ulang
   layout, sehingga ayunan kartu mendorong teks di bawahnya naik-turun.
   `translate` terpisah dari `transform`, jadi lengkungan 3D di atas tetap utuh. */
@keyframes bob { to { translate: 0 -12px; } }

/* Placeholder gambar di dalam kartu — ganti dengan <img> milik Anda */
.fcard .ph {
  aspect-ratio: 4 / 3; border-radius: 7px; margin-bottom: 9px;
  background: linear-gradient(135deg, var(--sky-soft), #dfe6ef);
  display: flex; align-items: center; justify-content: center;
  color: #8f9dad; font-size: 9.5px; text-align: center; padding: 4px;
}

/* Bagian bawah hero sudah memudar jadi biru muda, jadi teks di sini harus
   gelap — putih/lime di atasnya tidak terbaca. */
.rating { margin-top: 54px; position: relative; z-index: 2; }
.rating p { font-size: 13px; color: #2c4257; font-weight: 500; }
.rating .stars { color: #f0a500; letter-spacing: 3px; font-size: 16px; margin-top: 4px; }

/* ---------- Marquee logo ---------- */
.marquee { overflow: hidden; padding: 34px 0; border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; animation: slide 32s linear infinite; }
/* Jarak dipasang DI DALAM grup + padding ekor, bukan sebagai gap di track.
   Dengan begitu lebar 1 grup = tepat 50% track, sehingga translateX(-50%)
   mendarat pas di awal grup kedua — tanpa lompatan. */
.marquee-group { display: flex; gap: 62px; padding-right: 62px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  display: flex; align-items: center; gap: 9px; flex: none;
  color: #9aa7b5; font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.marquee span::before {
  content: ""; width: 19px; height: 19px; border-radius: 50%;
  background: currentColor; opacity: .45;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   HEADER HALAMAN DALAM (/layanan, /portofolio, /harga)
   Versi ringkas dari .hero-sky. WAJIB berlatar gelap: navbar sebelum
   di-scroll berteks putih & transparan, jadi header putih akan membuat
   menu hilang. Tingginya juga harus > 60px agar .nav.scrolled sempat aktif.
   ============================================================ */
.page-head {
  position: relative; overflow: hidden;
  padding: 132px 0 62px; text-align: center;
  background: linear-gradient(180deg, #0a5595 0%, #1580d6 55%, #4facea 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.page-head .page-head-inner { position: relative; z-index: 2; }
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); }
.page-head .lead {
  color: rgba(255, 255, 255, .88); max-width: 560px;
  margin: 16px auto 0; font-size: 15.5px;
}
/* Remah navigasi — konteks "Anda ada di mana" */
.crumb { font-size: 12.5px; color: rgba(255, 255, 255, .7); margin-bottom: 14px; }
.crumb a { color: rgba(255, 255, 255, .9); font-weight: 600; }
.crumb a:hover { color: #fff; }
.crumb span { margin: 0 7px; }

/* Menu yang sedang dibuka ditandai garis bawah lime */
.nav-links a[aria-current="page"]:not(.btn) { color: #fff; position: relative; }
.nav-links a[aria-current="page"]:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px; background: var(--lime); border-radius: 2px;
}
.nav.scrolled .nav-links a[aria-current="page"]:not(.btn) { color: var(--ink); }

/* Tombol "Lihat semua →" di ringkasan section pada beranda */
.section-more { margin-top: 32px; }
.center .section-more { display: flex; justify-content: center; }
.link-more {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--sky-deep);
}
.link-more::after {
  content: "→"; transition: transform .15s ease;
  display: inline-block;
}
.link-more:hover::after { transform: translateX(4px); }

/* Kartu portofolio & layanan yang bisa diklik ke halaman detail */
a.folio { display: block; }
a.folio:hover .folio-thumb { border-color: var(--sky); }
a.folio:hover h3 { color: var(--sky-deep); }

/* ---------- Kartu umum ---------- */
.grid { display: grid; gap: 16px; margin-top: 42px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.card {
  background: var(--surface-2); border: 1px solid transparent;
  border-radius: var(--radius); padding: 28px 26px;
}
.card .icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
/* Ikon garis, bukan emoji: emoji dirender berbeda di tiap OS (dan berwarna
   sendiri), jadi mustahil dibuat konsisten dengan brand. SVG mewarisi
   currentColor sehingga selalu mengikuti tema. */
.icon svg { width: 20px; height: 20px; stroke: var(--sky-deep); }
.icon-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--sky-deep);
}
/* Sprite ikon disembunyikan — ia hanya wadah definisi <symbol> */
.icon-sprite { display: none; }
.card h3 { font-size: 18px; margin-bottom: 7px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Bento statistik ---------- */
.bento { display: grid; gap: 16px; margin-top: 46px; grid-template-columns: repeat(3, 1fr); }
.bento > * { border-radius: var(--radius); padding: 26px; }
.b-sky {
  grid-row: span 2; background: linear-gradient(165deg, var(--sky), var(--sky-deep));
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px;
}
.b-sky .big { font-family: var(--font-display); font-size: 42px; line-height: 1; }
.b-sky p { color: rgba(255, 255, 255, .85); font-size: 13.5px; margin-top: 8px; }
.b-soft { background: var(--surface-2); }
.b-soft .big { font-family: var(--font-display); font-size: 38px; line-height: 1.1; margin: 6px 0 14px; }
.b-soft .label, .b-lime .label, .b-ink .label { font-size: 13px; color: var(--ink-soft); }
.b-lime { background: var(--lime); color: var(--lime-ink); }
.b-lime .label { color: #4a5c25; }
.b-lime .big { font-family: var(--font-display); font-size: 38px; line-height: 1.1; margin: 6px 0 12px; }
.b-lime p { font-size: 13.5px; color: #3d4d1f; }
.b-ink {
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.b-ink .label { color: #93a1b2; }
.b-ink .big { font-family: var(--font-display); font-size: 34px; }
.b-quote { font-size: 14px; color: var(--ink-soft); }
.avatars { display: flex; margin-bottom: 12px; }
.avatars i {
  width: 32px; height: 32px; border-radius: 50%; margin-right: -9px;
  border: 2px solid var(--surface-2); background: var(--sky-soft);
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 11px; font-weight: 700; color: var(--sky-deep);
}

/* Judul dengan pil kecil menyisip di tengah kalimat */
.h-inline { display: inline-flex; align-items: center; gap: 8px; }
.h-pill {
  width: 34px; height: 34px; border-radius: 50%; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; vertical-align: middle;
}
.h-pill.sky { background: var(--sky); color: #fff; }
.h-pill.lime { background: var(--lime); color: var(--lime-ink); }
.h-pill svg { width: 17px; height: 17px; stroke: currentColor; }
.h-muted { color: #a8b2bd; }
@media (max-width: 860px) { .hide-mobile { display: none; } }

/* ---------- Portofolio ---------- */
.folio-thumb {
  aspect-ratio: 16 / 10; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky-soft), #e6ecf5);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 14px;
}
.folio h3 { font-size: 17px; margin-top: 14px; }
.folio p { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   TABEL PERBANDINGAN (custom vs WordPress)
   ============================================================ */
/* Tabel punya lebar minimum; di layar sempit ia menggeser sendiri
   di dalam pembungkus ini, BUKAN mendorong seluruh halaman melebar. */
/* Tersembunyi secara visual, tapi TETAP dibacakan pembaca layar.
   Beda dengan .hidden (display:none) yang juga menghapusnya dari
   pohon aksesibilitas — caption tabel butuh yang ini. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Padding atas memberi ruang untuk kolom "kami" yang sengaja menjulang
   ke atas; tanpa ini, tonjolannya terpotong saat tabel digeser. */
.compare-wrap { margin-top: 46px; overflow-x: auto; padding-top: 18px; -webkit-overflow-scrolling: touch; }
/* border-separate (bukan collapse) wajib: dengan collapse, sudut membulat
   pada kolom gelap diabaikan browser dan garis antar-baris tetap menembusnya. */
.compare {
  width: 100%; min-width: 680px;
  border-collapse: separate; border-spacing: 0; font-size: 14.5px;
}
.compare th, .compare td { padding: 15px 18px; text-align: left; vertical-align: middle; }
.compare thead th { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.compare thead th:first-child {
  color: var(--ink-soft); font-weight: 500; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body);
}
/* Kolom label menempel di kiri saat tabel digeser di layar sempit —
   tanpa ini, menggeser ke kolom WordPress membuat nama aspeknya hilang
   dan pembaca tidak tahu lagi baris itu membandingkan apa. */
.compare tbody th, .compare thead th:first-child {
  position: sticky; left: 0; z-index: 2;
  background: var(--bg); padding-left: 0;
}
/* Bayangan tipis di tepi kanan kolom yang menempel: tanpa ini, teks kolom
   WordPress yang lewat di baliknya terlihat seperti terpotong rusak,
   bukan seperti tergeser ke belakang. Dibatasi ke lebar yang tabelnya
   memang menggeser (tabel min-width 680px + padding container) — di
   desktop tidak ada yang digeser, jadi bayangannya cuma jadi noda. */
@media (max-width: 760px) {
  .compare tbody th::after, .compare thead th:first-child::after {
    content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 14px;
    transform: translateX(100%); pointer-events: none;
    background: linear-gradient(90deg, rgba(10, 13, 18, .07), transparent);
  }
}
.compare tbody th {
  font-weight: 600; font-size: 14px; color: var(--ink);
  font-family: var(--font-body); width: 26%;
}
/* Kolom pembanding: garis pemisah dipasang PER SEL, bukan per baris —
   supaya garisnya berhenti di tepi kolom gelap, tidak memotongnya. */
.compare tbody th, .compare tbody .col-them { border-bottom: 1px solid var(--line); }
.compare tbody tr:last-child th, .compare tbody tr:last-child .col-them { border-bottom: 0; }
.compare .col-them { color: var(--ink-soft); }

/* Kolom "kami": satu blok gelap menyatu, menjulang sedikit di atas
   kolom lain agar terbaca sebagai pilihan yang disorot. */
.compare .col-us { background: var(--ink); color: #fff; }
.compare thead .col-us {
  border-radius: 12px 12px 0 0; padding-top: 20px;
  position: relative; color: #fff;
}
.compare tbody .col-us { border-bottom: 1px solid rgba(255, 255, 255, .09); }
.compare tbody tr:last-child .col-us { border-bottom: 0; border-radius: 0 0 12px 12px; padding-bottom: 20px; }
.col-tag {
  display: block; font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--lime); margin-bottom: 5px;
}

/* Isi sel: tanda dan teks disejajarkan dari baris pertama, bukan di tengah,
   supaya teks yang membungkus dua baris tetap rapi. */
.compare .cell { display: flex; align-items: flex-start; gap: 10px; }
/* Warna tanda mengikuti MAKNANYA (ya/tidak), bukan kolomnya. Lingkaran +
   simbol yang berbeda bentuk — jadi tetap terbaca tanpa mengandalkan warna. */
.mark {
  flex: none; width: 19px; height: 19px; border-radius: 50%; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; line-height: 1;
}
.mark.yes { background: #e4f7c4; color: #4c6b0a; }
.mark.no { background: #f0f2f4; color: #97a2ae; }
.col-us .mark.yes { background: var(--lime); color: var(--lime-ink); }
.col-us .mark.no { background: rgba(255, 255, 255, .13); color: #8e9caa; }

.compare-note {
  font-size: 13.5px; color: var(--ink-soft); margin-top: 22px;
  background: var(--surface-2); border-radius: var(--radius);
  padding: 18px 20px; max-width: 760px;
  /* Section pembungkusnya .center — isi tabel & catatan tetap rata kiri
     agar mudah dipindai; hanya judulnya yang di tengah. */
  margin-inline: auto; text-align: left;
}
.compare-note b { color: var(--ink); font-weight: 600; }
/* Isyarat "tabel ini bisa digeser" — hanya muncul di layar sempit */
.compare-hint { display: none; font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Harga ---------- */
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { background: var(--ink); color: #fff; }
.price-card.featured p, .price-card.featured li { color: #b9c4d3; }
.price-card.featured .price small { color: #93a1b2; }
.badge-populer {
  position: absolute; top: 20px; right: 20px;
  background: var(--lime); color: var(--lime-ink); font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .04em;
}
.price { font-family: var(--font-display); font-size: 32px; margin: 10px 0 16px; line-height: 1.15; }
/* Baris sendiri di bawah angka — kalau inline, ia ikut line-height 32px
   dan saat membungkus jatuh sendirian dengan jarak canggung. */
.price small { display: block; font-size: 13.5px; color: var(--ink-soft); font-family: var(--font-body); margin-top: 3px; }
.price-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.price-card li { font-size: 14.5px; color: var(--ink-soft); padding: 5px 0; display: flex; gap: 9px; }
.price-card li::before { content: "✓"; color: var(--sky); font-weight: 700; }
.price-card.featured li::before { color: var(--lime); }

/* ---------- Strip jaminan ---------- */
/* Band gelap selebar container: janji yang bisa ditagih disajikan sebagai
   satu blok tegas, bukan tiga kartu abu yang menyaru dengan section lain. */
.promise {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 40px 8%; display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.promise-item { display: flex; gap: 14px; align-items: flex-start; }
.promise-item .icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  display: flex; align-items: center; justify-content: center;
}
.promise-item .icon svg { width: 20px; height: 20px; stroke: var(--lime); }
.promise-item h3 { font-size: 16px; margin-bottom: 4px; }
.promise-item p { font-size: 13.5px; color: #9daaba; line-height: 1.55; }

/* Tautan "uji sendiri" di bawah tabel perbandingan */
.proof-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 14px; font-weight: 600; color: var(--sky-deep);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 20px;
  transition: border-color .15s ease;
}
.proof-link:hover { border-color: var(--sky); }
.proof-link svg { width: 15px; height: 15px; stroke: currentColor; }

/* ---------- Paket tambahan opsional (pengelolaan tahunan) ---------- */
/* Sengaja beda bentuk dari kartu paket (memanjang, latar biru muda):
   ini pelengkap opsional, bukan paket keempat — kalau bentuknya sama,
   pengunjung membacanya sebagai tingkatan harga berikutnya. */
.addon {
  margin-top: 18px; padding: 26px 28px; border-radius: var(--radius);
  background: var(--sky-soft); border: 1px solid #d3e9f9;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.addon-body { flex: 1; min-width: 260px; }
.addon .badge-opsional {
  display: inline-block; background: var(--surface); color: var(--sky-deep);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.addon h3 { font-size: 19px; margin-bottom: 6px; }
.addon p { font-size: 14px; color: #33546e; max-width: 560px; }
.addon-price { text-align: right; flex: none; }
.addon-price .price { margin: 0; font-size: 26px; }
.addon-price .price small { text-align: right; }
@media (max-width: 640px) {
  .addon { flex-direction: column; align-items: stretch; }
  .addon-price { text-align: left; }
  .addon-price .price small { text-align: left; }
}

/* ---------- Testimoni ---------- */
.quote { font-size: 16px; }
.quote-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--sky-soft); color: var(--sky-deep);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.quote-person .who b { display: block; font-size: 14.5px; }
.quote-person .who span { font-size: 13px; color: var(--ink-soft); }

/* ---------- Kontak / CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #0a5595, #1580d6 55%, #6fbcee);
  color: #fff; border-radius: var(--radius-lg); padding: 64px 8%; text-align: center;
}
.cta > * { position: relative; z-index: 2; }
.cta .clouds { z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .88); max-width: 500px; margin: 10px auto 30px; }
.form { max-width: 440px; margin: 0 auto; text-align: left; }
.form label { font-size: 13px; font-weight: 600; display: block; margin: 14px 0 6px; }
.form input, .form textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--surface);
  font: inherit; color: var(--ink);
  /* 16px wajib: di bawah itu iOS Safari auto-zoom saat kolom difokus */
  font-size: 16px;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--lime); border-color: transparent; }
.cta .form label { color: rgba(255, 255, 255, .92); }
.form .btn { margin-top: 22px; }

/* ---------- Footer ---------- */
footer { padding: 40px 0 44px; border-top: 1px solid var(--line); margin-top: 88px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 14px; color: var(--ink-soft); }
.foot-inner .socials { display: flex; gap: 18px; font-size: 13px; font-weight: 600; }
.foot-inner .socials a:hover { color: var(--ink); }

/* ============================================================
   HALAMAN AUTH (login / register / dashboard)
   ============================================================ */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0a5595, #1580d6 45%, #7fc4ee 78%, #dceffb);
}
.auth-card {
  position: relative; z-index: 2;
  width: 100%; max-width: 410px; background: var(--surface);
  border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: 0 26px 60px rgba(6, 40, 75, .3);
}
.auth-card h1 { font-size: 26px; margin-bottom: 5px; }
.auth-card .sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.auth-card .divider {
  display: flex; align-items: center; gap: 10px; margin: 18px 0;
  color: var(--ink-soft); font-size: 13px;
}
.auth-card .divider::before, .auth-card .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; }
.alert { display: none; margin-top: 16px; padding: 11px 15px; border-radius: 11px; font-size: 14px; }
.alert.error { display: block; background: #fdecec; color: #9c2b2b; }
.alert.success { display: block; background: var(--sky-soft); color: var(--sky-deep); }
.auth-links { margin-top: 18px; font-size: 14px; text-align: center; color: var(--ink-soft); }
.auth-links a { color: var(--sky-deep); font-weight: 600; }
.hidden { display: none; }

/* Navbar di halaman dalam (dashboard) selalu terang */
.nav-solid { position: sticky; background: var(--surface); border-bottom: 1px solid var(--line); }
.nav-solid .brand { color: var(--ink); }
.nav-solid .nav-toggle .bar { background: var(--ink); }
.page-top { padding-top: 48px; }

/* ============================================================
   PENYESUAIAN LAYAR KECIL
   ============================================================ */
@media (max-width: 860px) {
  section { padding: 60px 0; }
  .hero-sky { padding: 120px 0 64px; }
  .page-head { padding: 106px 0 46px; }
  .page-head .lead { font-size: 15px; }
  /* Di menu hamburger, item aktif jadi baris penuh — garis bawah melayang
     ala desktop akan bertabrakan dengan border pemisah antar baris. */
  .nav-links a[aria-current="page"]:not(.btn) { color: var(--sky-deep); font-weight: 700; }
  .nav-links a[aria-current="page"]:not(.btn)::after { display: none; }
  .hero-sky .tagline { font-size: 15.5px; margin: 16px auto 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; padding: 15px 26px; }

  /* Kartu melayang: dari lengkungan 3D jadi carousel geser — lebih pas di ponsel */
  .floaters {
    margin-top: 44px; perspective: none;
    justify-content: flex-start; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 12px 4% 22px; margin-inline: -4%;
    scrollbar-width: none;
  }
  .floaters::-webkit-scrollbar { display: none; }
  .floaters .fcard,
  .floaters .fcard:nth-child(n) {
    transform: none; opacity: 1; scroll-snap-align: center; animation: none;
    width: 145px;
  }

  .rating { margin-top: 26px; }
  .compare th, .compare td { padding: 13px 14px; }
  .compare-hint { display: block; }
  /* Wajib diubah di .marquee-group, bukan .marquee-track — gap di track
     akan menyelip di antara dua grup dan bikin sambungan loop meloncat. */
  .marquee-group { gap: 40px; padding-right: 40px; }
  .grid { gap: 12px; }
  .card { padding: 24px 20px; }

  /* Bento 3 kolom terlalu sempit di ponsel → 1 kolom */
  .bento { grid-template-columns: 1fr; }
  .b-sky { grid-row: auto; min-height: 220px; }

  .cta { padding: 44px 22px; }
  .auth-card { padding: 30px 22px; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  footer { margin-top: 60px; }
}

/* Target sentuh minimal 44px untuk semua kontrol interaktif */
@media (pointer: coarse) {
  .btn, .nav-links a, .auth-links a, .socials a { min-height: 44px; }
  .socials a { display: inline-flex; align-items: center; }
}

/* Hormati preferensi "kurangi animasi" milik pengguna */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cloud, .fcard, .marquee-track { animation: none; }
  .nav, .nav-links, .nav-toggle .bar, .btn { transition: none; }
}
