/* ============================================================
   digilea — Website Resmi
   Design tokens diturunkan dari gradasi logo (navy -> biru -> cyan)
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #081432;
  --navy-800: #0B1B3F;
  --navy-700: #122350;
  --navy-600: #1B3060;

  --blue-700: #0B3ECB;
  --blue-600: #1450E8;
  --blue-500: #2B7CF0;
  --cyan-400: #2FA8F7;
  --cyan-300: #56C2FF;

  --wa: #25D366;
  --wa-dark: #1DA851;

  /* Nilai rgb --cyan-300, untuk latar & garis tembus pandang */
  --cyan-300-rgb: 86, 194, 255;

  /* Netral */
  --ink: #0D1B3D;
  --ink-2: #44567F;
  --ink-3: #6B7C9E;
  --line: #E4E9F2;
  --tint: #F4F7FC;
  --white: #FFFFFF;

  /* Gradien */
  --grad-brand: linear-gradient(100deg, var(--blue-600) 0%, var(--blue-500) 45%, var(--cyan-400) 100%);
  --grad-dark: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 60%, #050E24 100%);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(13, 27, 61, .06);
  --sh-md: 0 10px 30px rgba(13, 27, 61, .08);
  --sh-lg: 0 24px 60px rgba(13, 27, 61, .12);
  --sh-blue: 0 14px 34px rgba(20, 80, 232, .28);

  /* Layout */
  --wrap: 1200px;
  --gutter: 20px;

  /* Tipografi — judul memakai Onest, subjudul & isi memakai Space Grotesk */
  --font-head: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22, .68, .36, 1);
  --t: .32s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ---------- Tipografi umum ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }

.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Offset anchor supaya judul section tidak tertutup header sticky */
section[id], .problem[id] { scroll-margin-top: 90px; }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--grad-dark); color: #fff; }

.sec-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.sec-head--start { text-align: left; margin-inline: 0; }
.sec-title { font-size: clamp(1.7rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.sec-sub { color: var(--ink-2); font-size: 1.03rem; }
.sec-head--light .sec-sub { color: rgba(255, 255, 255, .72); }
.sec-head--light .sec-title { color: #fff; }

.eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow--light { color: var(--cyan-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; letter-spacing: -.01em;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  cursor: pointer; text-align: center;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-blue); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(20, 80, 232, .36); }

.btn--ghost { background: #fff; color: var(--navy-800); border: 1.5px solid var(--line); box-shadow: var(--sh-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--blue-500); color: var(--blue-600); }

.btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .28); }
.btn--outline:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .55); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--blue-600); box-shadow: var(--sh-md); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 12px; border-radius: var(--r-pill);
  background: rgba(20, 80, 232, .08); color: var(--blue-700);
  font-size: .84rem; font-weight: 700;
  border: 1px solid rgba(20, 80, 232, .14);
}
.badge--light { background: rgba(255, 255, 255, .16); color: #fff; border-color: rgba(255, 255, 255, .25); }

/* Badge hero memakai ikon yang berganti mengikuti pesan tiap slide. */
.badge__ico { width: 17px; height: 17px; flex: none; }
.badge__ico svg { width: 100%; height: 100%; fill: currentColor; display: block; }

.badge__pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--wa); flex: none; }
.badge__pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--wa); opacity: .5; animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(.7); opacity: .6 } 100% { transform: scale(1.5); opacity: 0 } }

/* ============================================================
   1. TICKER
   ============================================================ */
.ticker {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .88);
  font-size: .82rem;
  position: relative; z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.ticker__viewport { overflow: hidden; padding: 9px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker__track { display: flex; align-items: center; gap: 14px; width: max-content; animation: ticker 42s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { white-space: nowrap; }
.ticker__item b { color: var(--cyan-300); font-weight: 700; }
.ticker__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-500); flex: none; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none } }

/* ============================================================
   2. HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}
/* Latar blur dipasang di pseudo-element, bukan di .header sendiri.
   backdrop-filter pada .header akan membentuk containing block baru
   sehingga drawer menu (position: fixed) kolaps ke dalam header. */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.header.is-stuck { box-shadow: var(--sh-md); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.header__logo img { width: auto; height: 38px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 9px 13px; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 600; color: var(--ink-2);
  transition: color var(--t), background var(--t);
}
.nav__link:hover { color: var(--blue-600); background: rgba(20, 80, 232, .06); }
.nav__cta { margin-left: 10px; }
.nav__close { display: none; }

.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); position: relative; }
.burger span {
  position: absolute; left: 11px; width: 22px; height: 2px; border-radius: 2px;
  background: var(--navy-800); transition: transform var(--t), opacity var(--t);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__overlay {
  position: fixed; inset: 0; z-index: 45; background: rgba(8, 20, 50, .5);
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
}
.nav__overlay.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   3. HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 70px) 0 clamp(50px, 7vw, 80px); background: linear-gradient(180deg, #FAFCFF 0%, #EEF4FF 100%); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob--1 { width: 520px; height: 520px; right: -140px; top: -160px; background: radial-gradient(circle, rgba(47, 168, 247, .55), transparent 68%); }
.blob--2 { width: 460px; height: 460px; left: -170px; bottom: -190px; background: radial-gradient(circle, rgba(20, 80, 232, .38), transparent 68%); }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(20, 80, 232, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 80, 232, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000, transparent);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000, transparent);
}

.hero__inner { position: relative; display: grid; gap: clamp(30px, 5vw, 50px); align-items: center; }
.hero__title { font-size: clamp(2.05rem, 5.4vw, 3.65rem); margin: 18px 0 18px; }
/* Slide yang judulnya disambung mematikan ganti baris paksa, supaya kedua
   penggal mengalir jadi satu paragraf dan barisnya tidak banyak menyisakan
   ruang kosong. Dikendalikan per slide dari main.js. */
.hero__title-br.is-off { display: none; }

/* Teks hero berganti mengikuti slide.
   Opacity dipercepat untuk pergantian; transform tetap .6s
   supaya animasi reveal saat halaman dibuka tidak berubah. */
.hero__copy .badge,
.hero__copy .hero__title,
.hero__copy .hero__sub {
  transition: opacity .25s var(--ease), transform .6s var(--ease);
}
.hero__copy.is-swapping .badge,
.hero__copy.is-swapping .hero__title,
.hero__copy.is-swapping .hero__sub { opacity: 0; }
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.14rem); color: var(--ink-2); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__actions .btn--ghost .ico { transform: rotate(0); }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 34px); margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line); }
/* Isinya frasa (durasi, lokasi, jam), bukan angka pendek seperti "120+",
   jadi ukurannya disetel agar ketiga kolom tetap muat satu baris. */
.stat__num { font-family: var(--font-head); font-size: clamp(.95rem, 1.35vw, 1.4rem); font-weight: 800; letter-spacing: -.03em; color: var(--navy-800); }
.stat__label { font-size: .85rem; color: var(--ink-3); margin-top: 2px; max-width: 190px; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__stage { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: clamp(360px, 52vw, 560px); }
.hero__ring {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(430px, 88%); aspect-ratio: 1;
  background: var(--grad-brand); border-radius: 50% 50% 46% 46% / 52% 52% 48% 48%;
  opacity: .96;
}
.hero__ring::after {
  content: ""; position: absolute; inset: -18px; border-radius: inherit;
  border: 1.5px dashed rgba(20, 80, 232, .28);
}
/* Bingkai slide dipangkas di bawah supaya garis potong karakter
   (ilustrasi hanya setengah badan) tersembunyi di balik tepi lingkaran. */
.hero__slides {
  position: relative; width: 100%; height: clamp(360px, 52vw, 560px);
  /* Dipotong hanya di sisi bawah — kartu ilustrasi tetap boleh melewati
     tepi kiri/kanan, sementara garis potong karakter tersembunyi
     di balik tepi bawah lingkaran. */
  clip-path: inset(-100% -100% 0 -100%);
}
/* Pergantian slide bergeser horizontal.
   translateX(-50%) menjaga posisi tengah, translateX kedua yang menggeser. */
.hero__slide {
  position: absolute; bottom: 8%; left: 50%;
  height: 84%; width: auto; max-width: none;
  /* Ilustrasi hanya setengah badan: tepi bawahnya dilebur ke dalam
     lingkaran supaya garis potongnya tidak terbaca sebagai garis lurus. */
  -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  object-fit: contain; object-position: bottom center;
  opacity: 0;
  transform: translateX(-50%) translateX(56px);   /* menunggu di kanan */
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  /* Tanpa drop-shadow: ilustrasi sudah membawa bayangannya sendiri, dan
     drop-shadow CSS mengikuti siluet seluruh isi PNG (termasuk tiap kartu UI)
     sehingga menumpuk jadi noda abu-abu. */
}
.hero__slide.is-active  { opacity: 1; transform: translateX(-50%) translateX(0); }
.hero__slide.is-leaving { opacity: 0; transform: translateX(-50%) translateX(-56px); }

/* Arah dibalik saat mundur ke slide sebelumnya */
.hero__slides.is-rev .hero__slide          { transform: translateX(-50%) translateX(-56px); }
.hero__slides.is-rev .hero__slide.is-active  { transform: translateX(-50%) translateX(0); }
.hero__slides.is-rev .hero__slide.is-leaving { transform: translateX(-50%) translateX(56px); }

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide.is-active,
  .hero__slide.is-leaving,
  .hero__slides.is-rev .hero__slide,
  .hero__slides.is-rev .hero__slide.is-active,
  .hero__slides.is-rev .hero__slide.is-leaving {
    transform: translateX(-50%);
    transition: opacity .2s linear;
  }
}

.hero__dots { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero__dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(11, 27, 63, .2); transition: all var(--t); }
.hero__dots button.is-active { width: 26px; border-radius: var(--r-pill); background: var(--blue-600); }


/* ============================================================
   HALAMAN LEGAL  (kebijakan privasi, syarat & ketentuan)
   ============================================================ */
.legal { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 90px); background: var(--white); }
.legal__inner { max-width: 760px; margin-inline: auto; }
.legal__kicker { display: inline-block; margin-bottom: 12px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal__tanggal { color: var(--ink-3); font-size: .88rem; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.legal h2 { font-size: clamp(1.1rem, 2vw, 1.28rem); margin: 34px 0 12px; color: var(--navy-800); }
.legal p { color: var(--ink-2); line-height: 1.75; margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 0; }
.legal li { position: relative; padding-left: 22px; margin-bottom: 9px; color: var(--ink-2); line-height: 1.7; }
.legal li::before { content: ""; position: absolute; left: 4px; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); }
.legal a { color: var(--blue-600); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal__catatan { margin-top: 36px; padding: 18px 20px; border-radius: var(--r-md); background: var(--tint); border: 1px solid var(--line); font-size: .9rem; }
.legal__catatan p { margin: 0; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { padding: 30px 0; border-bottom: 1px solid var(--line); background: #fff; }
.trust__label { text-align: center; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 16px; }
.trust__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.trust__list li {
  padding: 7px 16px; border-radius: var(--r-pill);
  background: var(--tint); border: 1px solid var(--line);
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
}

/* ============================================================
   4. PROBLEM
   ============================================================ */
.problem { background: var(--grad-dark); color: #fff; padding: clamp(64px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.problem::before {
  content: ""; position: absolute; width: 600px; height: 600px; right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(20, 80, 232, .35), transparent 70%); filter: blur(60px);
}
.problem > .container { position: relative; }
.problem__grid { display: grid; gap: 20px; }

.pcard {
  padding: 32px 28px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform var(--t), background var(--t), border-color var(--t);
  display: flex; flex-direction: column; height: 100%;
}
.pcard:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .08); border-color: rgba(86, 194, 255, .4); }
.pcard__num {
  display: inline-block; font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; letter-spacing: -.04em;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.pcard__title { font-size: 1.16rem; margin-bottom: 11px; color: #fff; }
.pcard p { color: rgba(255, 255, 255, .7); font-size: .95rem; }
.pcard__tag {
  align-self: flex-start; margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(var(--cyan-300-rgb), .12);
  border: 1px solid rgba(var(--cyan-300-rgb), .28);
  color: var(--cyan-300); font-size: .76rem; font-weight: 700;
}
/* Ikon pengganti titik — satu per kartu, mewarisi warna tag lewat currentColor */
.pcard__tag svg { width: 14px; height: 14px; fill: currentColor; flex: none; }
.pcard p { padding-bottom: 18px; }
.problem__cta { text-align: center; margin-top: 38px; color: rgba(255, 255, 255, .7); font-size: .98rem; }
.problem__cta a { color: var(--cyan-300); font-weight: 700; white-space: nowrap; }
.problem__cta a:hover { text-decoration: underline; }

/* ============================================================
   5. PILLARS
   ============================================================ */
.pillars__grid { display: grid; gap: 22px; align-items: start; }

.pillar {
  position: relative; padding: 34px 28px 30px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%; display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(20, 80, 232, .28); }
.pillar--featured { border-color: rgba(20, 80, 232, .3); box-shadow: var(--sh-md); }
.pillar--featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.pillar__ribbon {
  position: absolute; top: -13px; left: 28px;
  padding: 6px 15px; border-radius: var(--r-pill);
  background: var(--grad-brand); color: #fff; font-size: .74rem; font-weight: 700;
  box-shadow: var(--sh-blue);
}
.pillar__icon { width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: 20px; }
.pillar__icon svg { width: 26px; height: 26px; fill: #fff; }
.pillar__icon--1 { background: linear-gradient(135deg, var(--navy-700), var(--blue-600)); }
.pillar__icon--2 { background: var(--grad-brand); }
.pillar__icon--3 { background: linear-gradient(135deg, var(--blue-500), var(--cyan-300)); }
.pillar__label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.pillar__title { font-size: 1.28rem; margin: 6px 0 12px; }
.pillar__desc { color: var(--ink-2); font-size: .95rem; margin-bottom: 20px; }
.pillar__list { display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.pillar__list li { position: relative; padding-left: 28px; font-size: .92rem; color: var(--ink-2); }
.pillar__list li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(20, 80, 232, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231450E8'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/11px no-repeat;
}
.pillar__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .93rem; color: var(--blue-600); }
.pillar__cta .ico { transition: transform var(--t); }
.pillar__cta:hover .ico { transform: translateX(4px); }

/* ============================================================
   6. SHOWROOM
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 38px; }
.filter {
  padding: 10px 19px; border-radius: var(--r-pill);
  background: #fff; border: 1.5px solid var(--line);
  font-size: .89rem; font-weight: 600; color: var(--ink-2);
  transition: all var(--t);
}
.filter:hover { border-color: var(--blue-500); color: var(--blue-600); }
.filter.is-active { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: var(--sh-blue); }

.showroom__grid { display: grid; gap: 22px; }

.scard {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
  animation: cardIn .4s var(--ease) both;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: none } }

.scard__visual {
  position: relative; padding: 26px 26px 0; min-height: 210px;
  background: linear-gradient(150deg, #EAF2FF 0%, #DCE9FF 100%);
  display: flex; justify-content: center; align-items: flex-end; overflow: hidden;
}
.scard__visual::after {
  content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 168, 247, .4), transparent 70%); filter: blur(34px); top: -40px;
}

/* --- Mockup: laptop --- */
.mock { position: relative; z-index: 2; width: 100%; }
.mock--laptop { max-width: 300px; }
.mock--laptop .mock__screen {
  border-radius: 9px 9px 0 0; background: var(--navy-900);
  padding: 7px 7px 0; box-shadow: 0 16px 30px rgba(8, 20, 50, .26);
}
.mock--laptop .mock__base {
  height: 10px; border-radius: 0 0 8px 8px; margin: 0 -14px;
  background: linear-gradient(180deg, #D3DCEC, #AFBDD4);
}

/* --- Mockup: phone --- */
.mock--phone { max-width: 148px; }
.mock--phone .mock__screen {
  border-radius: 20px 20px 0 0; background: var(--navy-900);
  padding: 9px 7px 0; box-shadow: 0 16px 30px rgba(8, 20, 50, .26);
  position: relative;
}
.mock--phone .mock__screen::before {
  content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 4px; border-radius: 3px; background: rgba(255, 255, 255, .25);
}

.mock__ui { background: #fff; border-radius: 6px 6px 0 0; padding: 9px; display: grid; gap: 6px; }
.mock--phone .mock__ui { border-radius: 13px 13px 0 0; padding: 8px; }
.ui-bar { height: 7px; border-radius: 3px; background: var(--line); }
.ui-bar--title { height: 9px; width: 58%; background: var(--grad-brand); }
.ui-bar--sm { width: 40%; }
.ui-row { display: flex; gap: 6px; }
.ui-box { flex: 1; height: 30px; border-radius: 5px; background: var(--tint); border: 1px solid var(--line); }
.ui-box--accent { background: rgba(20, 80, 232, .1); border-color: rgba(20, 80, 232, .2); }
.ui-list { display: grid; gap: 5px; }
.ui-item { display: flex; align-items: center; gap: 6px; }
.ui-dot { width: 12px; height: 12px; border-radius: 4px; background: rgba(47, 168, 247, .3); flex: none; }
.ui-dot--ok { background: rgba(37, 211, 102, .35); }
.ui-line { height: 6px; border-radius: 3px; background: var(--line); flex: 1; }
.ui-chart { display: flex; align-items: flex-end; gap: 4px; height: 38px; padding-top: 4px; }
.ui-chart span { flex: 1; border-radius: 3px 3px 0 0; background: var(--grad-brand); opacity: .85; }

.scard__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.scard__tag {
  display: inline-block; align-self: flex-start; margin-bottom: 11px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(20, 80, 232, .08); color: var(--blue-700);
  font-size: .73rem; font-weight: 700; letter-spacing: .02em;
}
.scard__title { font-size: 1.1rem; margin-bottom: 9px; }
.scard__desc { font-size: .92rem; color: var(--ink-2); margin-bottom: 16px; }
.scard__feats { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; flex: 1; align-content: flex-start; }
.scard__feats span {
  padding: 5px 11px; border-radius: 7px; background: var(--tint); border: 1px solid var(--line);
  font-size: .76rem; font-weight: 600; color: var(--ink-2);
}
.scard__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: var(--r-pill);
  background: var(--navy-800); color: #fff; font-weight: 700; font-size: .89rem;
  transition: background var(--t), transform var(--t);
}
.scard__btn:hover { background: var(--blue-600); transform: translateY(-2px); }

/* ============================================================
   7. FLOW
   ============================================================ */
.flow__list { display: grid; gap: 22px; counter-reset: step; position: relative; }
.step { position: relative; padding: 30px 26px; border-radius: var(--r-lg); background: var(--tint); border: 1px solid var(--line); transition: transform var(--t), box-shadow var(--t), background var(--t); }
.step:hover { transform: translateY(-5px); background: #fff; box-shadow: var(--sh-md); }
.step__num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  box-shadow: var(--sh-blue); margin-bottom: 18px;
}
.step__title { font-size: 1.1rem; margin-bottom: 9px; }
.step p { font-size: .92rem; color: var(--ink-2); }

/* ============================================================
   8. PRICING
   ============================================================ */
.pricing { position: relative; overflow: hidden; }
.pricing::before {
  content: ""; position: absolute; width: 700px; height: 700px; left: -250px; bottom: -300px;
  background: radial-gradient(circle, rgba(47, 168, 247, .22), transparent 70%); filter: blur(70px);
}
.pricing > .container { position: relative; }
.pricing__grid { display: grid; gap: 22px; align-items: start; }

.plan {
  position: relative; padding: 34px 28px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-direction: column; height: 100%;
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.plan:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .09); border-color: rgba(86, 194, 255, .4); }
.plan--featured { background: rgba(255, 255, 255, .1); border-color: rgba(86, 194, 255, .55); box-shadow: 0 20px 50px rgba(0, 0, 0, .28); }
.plan__ribbon {
  position: absolute; top: -13px; left: 28px; padding: 6px 15px; border-radius: var(--r-pill);
  background: var(--grad-brand); color: #fff; font-size: .74rem; font-weight: 700; box-shadow: var(--sh-blue);
}
.plan__name { font-size: 1.22rem; color: #fff; }
.plan__for { font-size: .87rem; color: rgba(255, 255, 255, .6); margin-top: 4px; }
.plan__price { font-family: var(--font-head); font-size: 2.3rem; font-weight: 800; letter-spacing: -.035em; color: #fff; margin: 18px 0 2px; line-height: 1.1; }
.plan__from { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .02em; color: rgba(255, 255, 255, .55); margin-bottom: 2px; }
.plan__unit { font-size: 1.2rem; font-weight: 700; margin-left: 2px; }
.plan__time { font-size: .83rem; color: var(--cyan-300); font-weight: 600; }
.plan__list { display: grid; gap: 10px; margin: 24px 0 26px; flex: 1; }
.plan__list li { position: relative; padding-left: 27px; font-size: .9rem; color: rgba(255, 255, 255, .78); }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: .32em; width: 17px; height: 17px; border-radius: 50%;
  background: rgba(86, 194, 255, .18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356C2FF'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/11px no-repeat;
}

.custom-box {
  margin-top: 30px; padding: 30px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .06); border: 1px dashed rgba(255, 255, 255, .25);
  display: grid; gap: 20px; align-items: center;
}
.custom-box h3 { font-size: 1.15rem; color: #fff; margin-bottom: 7px; }
.custom-box p { font-size: .92rem; color: rgba(255, 255, 255, .68); }

/* ============================================================
   9. TESTIMONI
   ============================================================ */
.testi__grid { display: grid; gap: 22px; }
.tcard {
  padding: 22px 22px 26px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; height: 100%;
  transition: transform var(--t), box-shadow var(--t);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
/* Pratinjau beranda situs klien — tangkapan layar asli, bukan mockup. */
.tcard__shot {
  display: block; margin-bottom: 18px;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line); background: var(--tint);
  transition: border-color var(--t);
}
.tcard__shot { position: relative; }
.tcard__shot img { width: 100%; height: auto; }
.tcard:hover .tcard__shot { border-color: rgba(var(--cyan-300-rgb), .6); }

/* Penanda bahwa gambar bisa diperbesar dulu sebelum menuju situsnya */
.tcard__zoom {
  position: absolute; right: 10px; bottom: 10px;
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(11, 27, 63, .62); color: #fff;
  opacity: 0; transform: translateY(5px);
  transition: opacity var(--t), transform var(--t);
}
.tcard__zoom svg { width: 16px; height: 16px; fill: currentColor; }
.tcard:hover .tcard__zoom,
.tcard__shot:focus-visible .tcard__zoom { opacity: 1; transform: none; }

/* ---------- Lightbox pratinjau situs ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(8, 20, 50, .72); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.lightbox__panel {
  position: relative; width: min(1100px, 100%); max-height: 100%;
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
}
.lightbox__img { width: 100%; height: auto; max-height: calc(100vh - 160px); object-fit: contain; background: var(--tint); }
.lightbox__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 14px 18px; border-top: 1px solid var(--line);
}
.lightbox__domain { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.lightbox__go { padding: 11px 20px; font-size: .9rem; }
.lightbox__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(11, 27, 63, .58); color: #fff;
  transition: background var(--t);
}
.lightbox__close svg { width: 20px; height: 20px; fill: currentColor; }
.lightbox__close:hover { background: rgba(11, 27, 63, .82); }
body.is-locked { overflow: hidden; }

@media (max-width: 599px) {
  .lightbox { padding: 14px; }
  .lightbox__bar { justify-content: center; }
}

.tcard__body { flex: 1; display: flex; align-items: center; padding: 6px 0 2px; }
.tcard__site {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  color: var(--blue-600); word-break: break-word;
}
.tcard__site .ico { width: 15px; height: 15px; opacity: .75; }
.tcard__site:hover { text-decoration: underline; }

/* Dipakai lagi begitu kutipan asli dari klien tersedia */
.tcard blockquote { flex: 1; }
.tcard blockquote p { font-size: .97rem; color: var(--ink-2); line-height: 1.7; }
.tcard figcaption { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: .88rem; letter-spacing: .02em;
}
.tcard figcaption b { display: block; font-size: .93rem; }
.tcard figcaption small { font-size: .8rem; color: var(--ink-3); }

/* Dot slider testimoni — hanya muncul di mobile */
.testi__dots { display: none; }

/* ============================================================
   10. FAQ
   ============================================================ */
.faq__inner { display: grid; gap: clamp(30px, 5vw, 56px); align-items: start; }
.faq .sec-head .btn { margin-top: 22px; }
.faq__list { display: grid; gap: 12px; }

.qa {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color var(--t), box-shadow var(--t);
}
.qa[open] { border-color: rgba(20, 80, 232, .3); box-shadow: var(--sh-md); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--navy-800);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--blue-600); }
.qa__ico { position: relative; width: 20px; height: 20px; flex: none; }
.qa__ico::before, .qa__ico::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--blue-600);
  transform: translate(-50%, -50%); transition: transform var(--t);
}
.qa__ico::before { width: 13px; height: 2px; border-radius: 2px; }
.qa__ico::after { width: 2px; height: 13px; border-radius: 2px; }
.qa[open] .qa__ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa__body { padding: 0 22px 21px; }
.qa__body p { font-size: .94rem; color: var(--ink-2); }

/* ============================================================
   11. CTA
   ============================================================ */
.cta { background: var(--grad-brand); color: #fff; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 45%),
                    radial-gradient(circle at 85% 80%, rgba(8, 20, 50, .3), transparent 50%);
}
.cta__inner { position: relative; display: grid; gap: 30px; align-items: center; padding: clamp(50px, 7vw, 76px) var(--gutter); }
.cta__copy h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin: 18px 0 14px; }
.cta__copy p { color: rgba(255, 255, 255, .88); font-size: 1.02rem; max-width: 560px; }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.cta__note { font-size: .85rem; color: rgba(255, 255, 255, .8); font-weight: 600; }
.cta__visual img { width: 100%; filter: drop-shadow(0 22px 40px rgba(8, 20, 50, .3)); }

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .68); padding: clamp(50px, 7vw, 76px) 0 0; font-size: .92rem; }
.footer__grid { display: grid; gap: 34px; padding-bottom: 46px; }
.footer__brand img { width: auto; height: 42px; object-fit: contain; margin-bottom: 18px; }
.footer__brand p { max-width: 380px; font-size: .9rem; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); transition: background var(--t), transform var(--t);
}
.footer__social svg { width: 17px; height: 17px; fill: #fff; }
.footer__social a:hover { background: var(--grad-brand); transform: translateY(-3px); }

.footer__col h3 { font-size: .93rem; color: #fff; margin-bottom: 16px; letter-spacing: -.01em; }
.footer__col a { display: flex; align-items: center; gap: 9px; padding: 6px 0; transition: color var(--t); }
.footer__col a:hover { color: var(--cyan-300); }
.footer__contact .ico { color: var(--cyan-300); }
.footer__addr, .footer__hours { display: flex; gap: 9px; margin-top: 12px; font-size: .88rem; line-height: 1.6; }
.footer__hours { padding-left: 24px; color: rgba(255, 255, 255, .5); font-size: .84rem; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--cyan-300); }

/* ============================================================
   FAB
   ============================================================ */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  padding: 14px; border-radius: var(--r-pill);
  background: var(--wa); color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.fab svg { width: 26px; height: 26px; fill: #fff; flex: none; }
.fab__label { font-weight: 700; font-size: .9rem; white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width .4s var(--ease); }
.fab:hover { background: var(--wa-dark); transform: translateY(-3px); }
.fab:hover .fab__label { max-width: 170px; }
.fab::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid var(--wa); animation: pulse 2.4s var(--ease) infinite;
}
@media (prefers-reduced-motion: reduce) { .fab::after { animation: none } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s }
.reveal[data-delay="2"] { transition-delay: .14s }
.reveal[data-delay="3"] { transition-delay: .21s }
.reveal[data-delay="4"] { transition-delay: .28s }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .problem__grid, .showroom__grid, .testi__grid, .flow__list, .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .custom-box { grid-template-columns: 1fr auto; }
}

@media (min-width: 900px) {
  .problem__grid, .pillars__grid, .testi__grid, .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .flow__list { grid-template-columns: repeat(4, 1fr); }
  .flow__list::before {
    content: ""; position: absolute; top: 53px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(20, 80, 232, .3), rgba(47, 168, 247, .3), transparent);
  }
  .faq__inner { grid-template-columns: .85fr 1.15fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .cta__inner { grid-template-columns: 1.1fr .9fr; }
}

@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .showroom__grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Mobile nav --- */
@media (max-width: 959px) {
  .burger { display: block; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 46;
    width: min(320px, 86vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    padding: 76px 22px 30px;
    background: #fff; box-shadow: -20px 0 50px rgba(8, 20, 50, .2);
    transform: translateX(100%); transition: transform var(--t);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__link { padding: 13px 14px; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { margin: 18px 0 0; }
  .nav__close {
    display: block; position: absolute; top: 18px; right: 18px;
    width: 40px; height: 40px; border-radius: 50%; background: var(--tint);
    font-size: 1.7rem; line-height: 1; color: var(--ink-2);
  }
}

@media (max-width: 599px) {
  /* Hero dibuat rata tengah */
  .hero__copy { text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .stat { text-align: center; }

  /* Tiga fakta hero tetap satu baris tiga kolom; karena isinya frasa
     ("Depok, Jawa Barat") dan bukan angka pendek, ukurannya dikecilkan
     supaya tiap kolom cukup pecah jadi dua baris, bukan empat. */
  .hero__stats { flex-wrap: nowrap; gap: 10px; margin-top: 26px; padding-top: 20px; }
  .stat { flex: 1 1 0; min-width: 0; }
  .stat__num { font-size: .86rem; line-height: 1.25; }
  .stat__label { font-size: .62rem; line-height: 1.35; max-width: none; }

  /* Testimoni jadi slider geser horizontal */
  .testi__grid {
    position: relative;
    display: flex; gap: 14px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* kartu boleh mepet tepi layar, tapi tetap punya gutter */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .testi__grid::-webkit-scrollbar { display: none; }
  .tcard { flex: 0 0 86%; scroll-snap-align: center; }

  .testi__dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .testi__dots button {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(11, 27, 63, .2); transition: all var(--t);
  }
  .testi__dots button.is-active { width: 26px; border-radius: var(--r-pill); background: var(--blue-600); }

  /* CTA penutup rata tengah */
  .cta__copy { text-align: center; }
  .cta__copy p { margin-inline: auto; }
  .cta__actions { justify-content: center; }

  /* Footer rata tengah */
  .footer__grid { text-align: center; }
  .footer__brand img { margin-inline: auto; }
  .footer__brand p { margin-inline: auto; }
  .footer__social { justify-content: center; }
  .footer__col a { justify-content: center; }
  .footer__addr, .footer__hours { justify-content: center; }
  .footer__hours { padding-left: 0; }

  /* Alamat dirapatkan agar muat 2 baris: nama jalan, lalu kota */
  .footer__addr { font-size: .72rem; gap: 5px; line-height: 1.5; }

  .hero__actions .btn { width: 100%; }
  .fab__label { display: none; }
  .sec-head { text-align: left; }
  /* Link legal di atas, copyright paling bawah */
  .footer__bottom { flex-direction: column; justify-content: center; text-align: center; gap: 14px; }
  .footer__legal { order: 1; }
  .footer__bottom p { order: 2; }
}
