/* =============================================================================
   JPOWER — KOMPONEN
   Token (warna, jarak, tipografi) ada di tokens.css — file ini hanya komponen.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--ink); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 32px); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface); }
.section--dark { background: var(--brand-900); color: #eaf0f8; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead, .section--dark p { color: #b9c6da; }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.section-head { max-width: 680px; margin-bottom: clamp(26px, 4vw, 44px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-600);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--accent); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand-900); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; }
.btn--accent { --btn-bg: var(--accent); --btn-fg: #1b0f00; }
.btn--accent:hover { background: var(--accent-600); }
.btn--wa { --btn-bg: var(--wa); --btn-fg: #063a1a; }
.btn--wa:hover { background: var(--wa-600); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand-900); background: var(--surface); }
.section--dark .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.28); }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--brand-700); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
/* flex: none + max-width: none -> logo TIDAK PERNAH gepeng walau layar sempit.
   Tanpa ini, di HP logo terhimpit tombol dan menyusut jadi coretan tipis. */
.brand-logo { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-logo .logo-mark { width: 38px; height: 38px; flex: none; }
.brand-logo .logo-img { height: 40px; width: auto; max-width: none; flex: none; display: block; }
.site-footer .brand-logo .logo-img { height: 34px; }
@media (max-width: 520px) { .brand-logo .logo-img { height: 34px; } }
.brand-logo .logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; color: var(--brand-900); }
.brand-logo .logo-text .j { color: var(--accent); }
.brand-sub { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: block; margin-top: -3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--ink); padding: 9px 12px; border-radius: 9px; transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--surface); color: var(--brand-700); }
.nav-links a.active { color: var(--accent-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.nav-links li { position: relative; }
.has-menu > a { display: inline-flex; align-items: center; gap: 3px; }
.caret { transition: transform .2s ease; opacity: .55; }
.submenu {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 214px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s ease;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.has-menu:hover .caret, .has-menu:focus-within .caret { transform: rotate(180deg); }
.submenu a { padding: 9px 12px; border-radius: 9px; font-size: .9rem; white-space: nowrap; }
.submenu a:hover { background: var(--surface); color: var(--brand-700); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white);
  border-radius: 11px; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); border-bottom: 1px solid var(--line); padding: 12px clamp(18px,4vw,32px) 20px;
    box-shadow: var(--shadow-lg); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .2s;
  }
  body.nav-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 10px; font-size: 1rem; border-bottom: 1px solid var(--surface-2); border-radius: 0; }
  .nav-cta .btn:not(.nav-cta-primary) { display: none; }
  .nav-links li { position: static; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; padding: 2px 0 8px 14px;
    background: transparent; display: block;
  }
  .submenu a { color: var(--muted); font-size: .95rem; }
  .caret { display: none; }
}

/* ---------- Hero ----------
   Sisi kiri (tempat teks) diberi efek KACA BURAM: salinan foto yang di-blur
   ditumpuk di atas foto tajam, lalu dilebur ke kanan. Hasilnya area teks
   tenang & mudah dibaca, sementara produk di kanan tetap tajam. */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #eef1f6;
  isolation: isolate;
}
.hero-shot { position: absolute; inset: 0; z-index: 0; }
.hero-shot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 50%;
}
/* Lapisan buram — hanya di sisi kiri, memudar ke kanan */
.hero-shot .hs-blur {
  filter: blur(26px) saturate(1.12) brightness(1.05);
  transform: scale(1.12);          /* cegah tepi blur terlihat */
  -webkit-mask-image: linear-gradient(95deg, #000 0%, #000 32%, transparent 60%);
          mask-image: linear-gradient(95deg, #000 0%, #000 32%, transparent 60%);
}

/* Lapisan cahaya: menjaga keterbacaan + sentuhan warna brand */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.74) 30%,
                           rgba(255,255,255,.24) 50%, rgba(255,255,255,0) 66%),
    radial-gradient(46% 58% at 6% 88%, rgba(90, 46, 148, .14), transparent 72%);
}
/* Butiran halus — memberi kedalaman, khas situs kelas atas */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Peralihan halus ke bagian putih di bawahnya */
.hero-fade {
  position: absolute; inset: auto 0 0 0; height: clamp(60px, 9vw, 120px); z-index: 0;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; padding-block: clamp(72px, 10vw, 140px); }
.hero-copy { max-width: 560px; }

@media (max-width: 900px) {
  .hero-shot img { object-position: 72% 46%; }
  /* Di layar kecil seluruh foto diburamkan agar teks tetap tajam */
  .hero-shot .hs-blur {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 88%);
            mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 88%);
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 46%,
                                        rgba(255,255,255,.30) 80%, rgba(255,255,255,0) 100%);
  }
  .hero-copy { max-width: 100%; }
}

.hero h1 { color: var(--ink); }
.hero .tagline-id { color: var(--ink-soft); margin-top: 18px; font-size: clamp(1.05rem,1.7vw,1.25rem); max-width: 48ch; }
.hero .btn-row { margin-top: 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.85); border: 1px solid rgba(14,23,38,.12); color: var(--ink);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 22px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,122,0,.25); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(14,23,38,.14); }
.hero-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--ink); }
.hero-stat .lab { font-size: .82rem; color: var(--muted); }


/* ---------- Product bottle (SVG wrapper) ---------- */
.bottle-card {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border-radius: var(--radius); padding: 22px; aspect-ratio: 4/3;
}
.bottle-card .bottle { width: min(150px, 60%); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
  overflow: hidden; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4deec; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.12rem; }

/* Product card */
.product-card .bottle-card { border-radius: 0; border-bottom: 1px solid var(--line); }

/* Foto produk (dengan fallback ke gambar botol bila file belum ada) */
.bottle-card.photo { aspect-ratio: 4 / 5; background: radial-gradient(120% 110% at 50% 12%, #1c1030, #000 78%); padding: 0; }
.bottle-card.photo .pimg { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.bottle-card.photo .pfallback { display: none; }
.bottle-card.noimg { background: linear-gradient(160deg, var(--surface), var(--surface-2)); padding: 22px; }
.bottle-card.noimg .pimg { display: none; }
.bottle-card.noimg .pfallback { display: flex; width: 100%; justify-content: center; }
.bottle-card.noimg .pfallback .bottle { width: min(150px, 60%); }

/* Harga */
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 8px; margin-top: 2px; }
.price-main { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--brand-700); line-height: 1.1; }
.price-unit { color: var(--muted); font-size: .9rem; }
.price-sub { width: 100%; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.price--lg .price-main { font-size: 2.1rem; }
.price--lg .price-sub { font-size: .92rem; }
.price-dl { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--brand-700); margin-top: 2px; }
.price-dl svg { color: var(--accent-600); }
.price-dl:hover { color: var(--accent-600); }

/* Band download price list */
.pricelist-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; margin-bottom: 28px; border-radius: var(--radius); background: linear-gradient(120deg, var(--surface), var(--accent-050)); border: 1px solid #f3d9c2; }
.pricelist-band strong { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 1.05rem; }
.pricelist-band span { display: block; color: var(--muted); font-size: .9rem; margin-top: 3px; }
.pricelist-band svg { color: var(--accent-600); }

/* Galeri produk (halaman detail) */
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(120% 110% at 50% 10%, #1c1030, #000 78%); aspect-ratio: 1/1; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumb { width: 82px; height: 82px; border-radius: 12px; overflow: hidden; border: 2px solid var(--line); background: #0c0714; padding: 0; cursor: pointer; transition: border-color .15s; }
.thumb.active, .thumb:hover { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Tabel spesifikasi */
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table th { width: 40%; background: var(--surface); font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.spec-table td { color: var(--muted); }
.pill { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--accent-050); color: var(--accent-600); }
.pill--muted { background: var(--surface-2); color: var(--muted); }
.pill--blue { background: #f2e9fb; color: #6f3bb0; }
.spec-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.spec-chip { font-size: .78rem; font-weight: 600; color: var(--ink); background: var(--surface); border: 1px solid var(--line); padding: 4px 9px; border-radius: 8px; }
.product-card .desc { color: var(--muted); font-size: .92rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 6px; }

/* Feature card */
.feature { padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.section--dark .feature { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.feature .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-050); color: var(--accent-600); margin-bottom: 14px; }
.section--dark .feature .ic { background: rgba(255,122,0,.16); color: var(--accent); }
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .95rem; }
.section--dark .feature p { color: #b9c6da; }

/* Step / number card */
.step { position: relative; padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step .n { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--brand-900); color: #fff; margin-bottom: 14px; }
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .94rem; }

/* Channel / buy card */
.channel {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: .18s;
}
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.channel .ch-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); flex: none; }
.channel .ch-ic svg, .channel .ch-ic img { width: 26px; height: 26px; }
/* Pembungkus teks: label & isi harus BERTUMPUK, bukan sebaris */
.channel > span:not(.ch-ic) { min-width: 0; flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; }
.channel .ch-name { display: block; font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
.channel .ch-sub { display: block; font-size: .84rem; color: var(--muted); line-height: 1.4; overflow-wrap: anywhere; }

/* Dealer card */
.dealer { padding: 18px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 8px; }
.dealer .d-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.dealer .d-name { font-family: var(--font-head); font-weight: 700; }
.dealer .d-addr { color: var(--muted); font-size: .9rem; }
.dealer .d-actions { display: flex; gap: 10px; margin-top: 4px; }

/* Article card */
.article-card { display: flex; flex-direction: column; }
.article-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--brand-700), var(--brand-900)); position: relative; display: grid; place-items: center; }
.article-card .thumb .glyph { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: rgba(255,255,255,.14); letter-spacing: .1em; }
.article-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.article-card time { font-size: .82rem; color: var(--muted); }
.article-card h3 { font-size: 1.1rem; }
.article-card .excerpt { color: var(--muted); font-size: .92rem; }

/* ---------- Split / media blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,5vw,56px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split.split--top { align-items: start; }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.media-panel { aspect-ratio: 5/4; background: radial-gradient(600px 400px at 30% 20%, var(--brand-700), var(--brand-900)); display: grid; place-items: center; padding: 30px; }
.media-panel.photo { background: radial-gradient(120% 110% at 50% 12%, #1c1030, #05030b 80%); padding: 0; }
.media-panel.photo img { width: 100%; height: 100%; object-fit: contain; padding: 26px; }

/* checklist */
.checklist { display: grid; gap: 12px; margin-top: 18px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-050); color: var(--accent-600); display: grid; place-items: center; margin-top: 2px; }
.checklist .ck svg { width: 15px; height: 15px; }
.section--dark .checklist .ck { background: rgba(255,122,0,.18); color: var(--accent); }

/* ---------- Peta (Kontak) ---------- */
.map-frame { width: 100%; height: 340px; border: 0; border-radius: var(--radius); display: block; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  min-height: 220px; justify-content: center; padding: 26px;
  border-radius: var(--radius); color: #e8ddfa; text-decoration: none;
  background-image: linear-gradient(120deg, rgba(26,14,51,.92), rgba(10,5,20,.9)), url("../img/page-hero-bg.jpg");
  background-size: cover; background-position: center;
  border: 1px solid rgba(255,255,255,.1); transition: transform .18s ease, box-shadow .2s ease;
}
.map-placeholder:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.map-placeholder strong { font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.map-placeholder .map-addr { font-size: .9rem; color: #bcaad8; margin-bottom: 6px; }
.map-pin { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(242,101,34,.18); color: var(--accent); margin-bottom: 4px; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(22px, 3vw, 34px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.field label .req { color: var(--accent-600); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 4px rgba(28,79,143,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--brand-700); font-weight: 600; }

/* ---------- Marquee / logos ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }
.trust .chip { font-family: var(--font-head); font-weight: 700; color: var(--muted); border: 1px dashed var(--line); border-radius: 10px; padding: 8px 14px; font-size: .86rem; }

/* ---------- CTA band ---------- */
.cta-band { background-image: linear-gradient(120deg, rgba(26,14,51,.92), rgba(10,5,20,.92)), url("../img/page-hero-bg.jpg"); background-size: cover; background-position: center; color: #fff; border-radius: var(--radius-lg); padding: clamp(28px,4vw,48px); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,0,.35), transparent 65%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #c4d3e8; position: relative; }
.cta-band .btn-row { position: relative; margin-top: 22px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; overflow: hidden; background: #140a2b; color: #fff; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(90deg, rgba(16,8,34,.84), rgba(16,8,34,.5)), url("../img/page-hero-bg.jpg");
  background-size: cover; background-position: center;
}
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(44px, 7vw, 84px); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #c4d3e8; max-width: 60ch; margin-top: 14px; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #9fb4d1; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .6; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn { font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: .16s; }
.filter-btn:hover { border-color: var(--brand-600); }
.filter-btn.active { background: var(--brand-900); color: #fff; border-color: var(--brand-900); }

/* ---------- Article body ---------- */
.prose { max-width: 720px; }
.prose h2 { margin-top: 34px; margin-bottom: 10px; font-size: 1.5rem; }
.prose p { margin-bottom: 16px; color: #33445c; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; display: grid; gap: 8px; }
.prose ul li { color: #33445c; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex: none; transition: transform .2s; color: var(--accent-600); }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq .ans { padding: 0 20px 18px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-900); color: #b9c6da; padding-block: clamp(44px,6vw,72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .logo-text { color: #fff; }
.footer-about p { color: #90a3bf; font-size: .92rem; margin-top: 14px; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: #a9bcd6; padding: 5px 0; font-size: .92rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #cdd9ea; transition: .16s; }
.footer-social a:hover { background: var(--accent); color: #1b0f00; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .84rem; color: #8598b5; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .18s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 620px) { .wa-float { width: 52px; height: 52px; } }

/* ---------- Misc ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #1b0f00; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200; font-weight: 700; }
.skip-link:focus { left: 0; }
.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; }
.notice { background: var(--accent-050); border: 1px solid #ffd8b0; color: #7a3d00; border-radius: var(--radius-sm); padding: 12px 16px; font-size: .9rem; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } .btn:hover, .card:hover, .channel:hover { transform: none; } }
