/* ==========================================================================
   BAS Bank — PT. BPR Angsa Sedanayoga
   Design system: softened orange & green
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — softened from the original logo's saturated orange/green */
  --orange-700: #B85A20;
  --orange-600: #CE6B2A;
  --orange-500: #E07B39;   /* primary accent — warm terracotta */
  --orange-400: #EE9A5E;
  --orange-200: #F7D3B4;
  --orange-100: #FBE7D6;
  --orange-50:  #FDF4EC;

  --green-900: #12362A;
  --green-800: #1A4936;    /* primary dark surface */
  --green-700: #235C44;
  --green-600: #2F7D57;    /* secondary accent */
  --green-500: #489B70;
  --green-200: #BEDCC9;
  --green-100: #DDEDE3;
  --green-50:  #EEF5F0;

  /* Neutrals — warm, paper-like rather than cold grey */
  --paper:     #FCFAF6;
  --surface:   #FFFFFF;
  --sand:      #F5F0E8;
  --ink:       #1D2A23;
  --ink-soft:  #4A5A50;
  --ink-muted: #6E7D74;
  --line:      #E7E1D6;
  --line-soft: #F0EBE2;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Space + shape */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(29, 42, 35, 0.05);
  --shadow-sm: 0 2px 8px rgba(29, 42, 35, 0.06);
  --shadow-md: 0 8px 28px rgba(29, 42, 35, 0.08);
  --shadow-lg: 0 24px 60px rgba(29, 42, 35, 0.12);

  /* 1280 rather than 1200: the Indonesian nav labels are long, and the header
     needs ~1130px of usable width to hold all six on one line each. */
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 48px);

  --header-h: 76px;
  /* Below this the nav can no longer fit on one line, so it becomes the menu. */
  --nav-collapse: 1240px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--green-900);
  font-variation-settings: "SOFT" 20, "WONK" 0;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Line breaking — no widows or orphans
   --------------------------------------------------------------------------
   Headings get `balance`, which evens out the line lengths and so never leaves
   a lone trailing word. Running text gets `pretty`, which keeps the last line
   from collapsing to a single word. Both are applied to the copy itself rather
   than baked in as manual <br> or &nbsp;, so the Indonesian and English
   versions each reflow correctly at every width.

   Browsers without support simply fall back to normal wrapping — the layout is
   unaffected, only the odd widow reappears.
   -------------------------------------------------------------------------- */
h1, h2, h3, h4,
blockquote,
.eyebrow,
.brand-name,
.amount-chip .v,
.guarantee-figure .cap,
.guarantee-figure .sub,
.hero-stat .lbl,
.tenor .u,
.tl-date,
.product-meaning,
.photo-caption,
.btn,
.filter-chip,
.reg-badge {
  text-wrap: balance;
}

/* Short blocks balance better than they "pretty" — Chrome's pretty heuristic
   only trims a short last line, which is too weak for two- and three-line
   list items and labels. */
li,
.subhead,
.trust-item p,
.form-card > p,
.guarantee-figure .sub,
.credit-body p,
.section-sub,
.info-item p,
.report-meta,
.field label {
  text-wrap: balance;
}

/* Long-form prose keeps `pretty`, where balancing every line would read oddly. */
p, dd, figcaption,
.lede,
.hero-lede,
.about-body p,
.page-hero p,
.form-note,
.footer-brand p,
.disclosure p,
.colophon {
  text-wrap: pretty;
}

/* Keep tightly-bound pairs from splitting across lines: a currency amount and
   its value, and the honorifics in the bank's registered name. */
.amount-chip .v,
.hours-row .t { white-space: nowrap; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 999;
  background: var(--green-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.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;
}

/* --------------------------------------------------------------------------
   3. Bilingual toggle — only ever hides, so native display is preserved
   -------------------------------------------------------------------------- */
html[data-lang="id"] .lang-en { display: none !important; }
html[data-lang="en"] .lang-id { display: none !important; }

/* --------------------------------------------------------------------------
   4. Typographic helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--orange-400);
  border-radius: 2px;
}

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h2.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-bottom: 18px;
}

.section-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
  line-height: 1.7;
}

.lede { font-size: clamp(17px, 1.8vw, 19.5px); color: var(--ink-soft); }

section { padding-block: clamp(64px, 8vw, 112px); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(224, 123, 57, 0.28);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(224, 123, 57, 0.34);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-200);
}
.btn-ghost:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* --------------------------------------------------------------------------
   6. Utility bar + header
   -------------------------------------------------------------------------- */
.utility {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}
.utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding-block: 7px;
}
.utility-note { display: flex; align-items: center; gap: 9px; line-height: 1.4; }
.utility-note svg { width: 15px; height: 15px; flex: none; color: var(--green-200); }
.utility-actions { display: flex; align-items: center; gap: 14px; }
.utility a { color: rgba(255,255,255,.82); text-decoration: none; }
.utility a:hover { color: #fff; }

.lang-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color .18s, color .18s;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button[aria-pressed="true"] {
  background: var(--orange-500);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 246, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 46px; height: 38px; overflow: hidden; flex: none; }
.brand-mark img { width: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--orange-500);
}
.brand-name span { color: var(--green-700); font-weight: 700; }
.brand-legal {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .18s, background-color .18s;
  /* Each label stays on one line; the menu takes over rather than wrapping. */
  white-space: nowrap;
}
.nav a:hover { color: var(--green-800); background: var(--green-50); }
.nav a.is-active { color: var(--green-800); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
}

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  appearance: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 19px; height: 1.8px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 88px) clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  width: 620px; height: 620px;
  top: -300px; right: -180px;
  background: radial-gradient(circle, rgba(238, 154, 94, 0.20), rgba(238, 154, 94, 0) 68%);
}
.hero::after {
  width: 560px; height: 560px;
  bottom: -320px; left: -220px;
  background: radial-gradient(circle, rgba(72, 155, 112, 0.16), rgba(72, 155, 112, 0) 68%);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-500);
}

.hero-lede { max-width: 50ch; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.1;
  display: block;
}
.hero-stat .lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-top: 4px;
  display: block;
}

.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.35;
  background: var(--sand);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 54, 42, 0.42), rgba(18, 54, 42, 0.04) 46%);
}

.photo-caption {
  position: absolute;
  left: 20px; bottom: 18px; right: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* --------------------------------------------------------------------------
   8. Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
  padding-block: 0;
  margin-bottom: clamp(8px, 2vw, 24px);
}
.trust-inner {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3.5vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ic {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--orange-50);
  color: var(--orange-600);
}
.trust-item .ic svg { width: 20px; height: 20px; }
.trust-item h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 750; margin: 0 0 3px; color: var(--green-900); }
.trust-item p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; margin: 0; }

/* --------------------------------------------------------------------------
   9. About
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(38px, 5vw, 76px);
  align-items: start;
}

.about-body p { color: var(--ink-soft); }
.about-body p:first-of-type {
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--ink);
}

/* Timeline */
.timeline { margin-top: 8px; position: relative; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--orange-200), var(--green-200));
  border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--orange-400);
  box-shadow: 0 0 0 4px var(--paper);
}
.tl-item:nth-child(even)::before { border-color: var(--green-500); }
.tl-date {
  font-size: 12.5px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: block;
  margin-bottom: 5px;
}
.tl-item:nth-child(even) .tl-date { color: var(--green-600); }
.tl-item h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 750; margin: 0 0 4px; }
.tl-item p { font-size: 14.5px; color: var(--ink-muted); margin: 0; line-height: 1.6; }

.about-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.about-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.quote-card {
  background: linear-gradient(150deg, var(--green-800), var(--green-900));
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  right: -90px; top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,154,94,.22), transparent 70%);
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.42;
  color: #fff;
  position: relative;
}
.quote-card cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-200);
  position: relative;
}

/* --------------------------------------------------------------------------
   10. Product cards (savings)
   -------------------------------------------------------------------------- */
.section-tinted { background: var(--green-50); }
.section-sand { background: var(--sand); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-200);
}
.product-card:hover::before { opacity: 1; }

.product-card .ic {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--orange-50);
  color: var(--orange-600);
  margin-bottom: 20px;
}
.product-card .ic svg { width: 24px; height: 24px; }
.product-card.accent-green .ic { background: var(--green-50); color: var(--green-600); }
.product-card.accent-green:hover { border-color: var(--green-200); }
.product-card.accent-green::before { background: linear-gradient(90deg, var(--green-500), var(--green-600)); }

.product-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.product-meaning {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 18px;
  display: block;
}

/* No `margin-top: auto` here: cards are stretched to equal height by the grid,
   and pushing the list to the bottom left a large void under the amount chips
   in the shorter cards. The list now follows its heading directly, and any
   leftover height falls to the bottom of the card instead. */
.feature-list { display: grid; gap: 12px; }
.feature-list li {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F7D57' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.amount-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.amount-chip {
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  line-height: 1.25;
}
.amount-chip .k {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 2px;
}
.amount-chip .v {
  font-size: 15px;
  font-weight: 750;
  color: var(--green-900);
  font-variant-numeric: tabular-nums;
}
.accent-green .amount-chip { background: var(--green-50); border-color: var(--green-100); }
.accent-green .amount-chip .k { color: var(--green-700); }

/* Deposito panel */
.deposito {
  margin-top: clamp(20px, 2.6vw, 28px);
  background: linear-gradient(140deg, var(--green-800), var(--green-900) 60%);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Grid items default to min-width:auto, so a long nowrap button inside would
   push the column past the panel's padding and get clipped. */
.deposito > * { min-width: 0; }
.deposito::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -160px; bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 154, 94, 0.20), transparent 70%);
}
.deposito > * { position: relative; z-index: 1; }
.deposito h3 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.deposito .eyebrow { color: var(--orange-200); }
.deposito .eyebrow::before { background: var(--orange-400); }
.deposito p { color: rgba(255, 255, 255, 0.78); }
.deposito .feature-list li { color: rgba(255, 255, 255, 0.85); }
.deposito .feature-list li::before {
  background-color: rgba(255, 255, 255, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BEDCC9' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.tenor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tenor {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 20px 10px;
  text-align: center;
  transition: background-color .2s, transform .2s, border-color .2s;
}
.tenor:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(238, 154, 94, 0.55);
  transform: translateY(-3px);
}
.tenor .n {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.tenor .u {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange-200);
  margin-top: 7px;
}

/* --------------------------------------------------------------------------
   11. Credit
   -------------------------------------------------------------------------- */
.credit-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.credit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.credit-head {
  padding: clamp(26px, 3vw, 32px) clamp(26px, 3vw, 32px) 20px;
  background: linear-gradient(160deg, var(--orange-50), transparent 70%);
  border-bottom: 1px solid var(--line-soft);
}
.credit-card:nth-child(2) .credit-head { background: linear-gradient(160deg, var(--green-50), transparent 70%); }
.credit-card:nth-child(3) .credit-head { background: linear-gradient(160deg, #FBF3E4, transparent 70%); }

.credit-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange-600);
  display: block;
  margin-bottom: 10px;
}
.credit-card:nth-child(2) .credit-num { color: var(--green-600); }
.credit-head h3 { font-size: 21px; margin: 0; }

.credit-body {
  padding: 24px clamp(26px, 3vw, 32px) clamp(26px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.credit-body p { font-size: 14.8px; color: var(--ink-soft); }

.subhead {
  font-size: 12.5px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  margin: 6px 0 12px;
}

/* --------------------------------------------------------------------------
   12. Guarantee band
   -------------------------------------------------------------------------- */
.guarantee {
  background:
    radial-gradient(760px 320px at 82% 0%, rgba(238, 154, 94, 0.13), transparent 68%),
    var(--green-900);
  color: rgba(255, 255, 255, 0.86);
}
.guarantee h2 { color: #fff; }
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.guarantee p { color: rgba(255, 255, 255, 0.76); }
.guarantee .eyebrow { color: var(--orange-200); }
.guarantee .eyebrow::before { background: var(--orange-400); }

.guarantee-figure {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 40px);
  text-align: center;
}
.guarantee-figure .cap {
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-200);
  margin-bottom: 12px;
}
.guarantee-figure .big {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 66px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.guarantee-figure .sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 12px;
  line-height: 1.55;
}
.regulator-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.reg-badge svg { width: 14px; height: 14px; color: var(--green-200); }

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 4.5vw, 64px);
  align-items: start;
}

.info-list { display: grid; gap: 22px; margin-bottom: 30px; }
.info-item { display: flex; gap: 16px; }
.info-item .ic {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--orange-50);
  color: var(--orange-600);
}
.info-item:nth-child(even) .ic { background: var(--green-50); color: var(--green-600); }
.info-item .ic svg { width: 21px; height: 21px; }
.info-item h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 5px;
}
.info-item p, .info-item a {
  font-size: 15.5px;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
}
.info-item a:hover { color: var(--orange-600); text-decoration: underline; }
.info-item .stack { display: grid; gap: 2px; }

.hours-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-xs);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14.5px;
  padding: 8px 0;
}
.hours-row + .hours-row { border-top: 1px dashed var(--line); }
.hours-row .d { font-weight: 650; color: var(--green-900); }
.hours-row .t { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-row .t.closed { color: var(--orange-600); font-weight: 650; }

.map-frame {
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  background: var(--sand);
  aspect-ratio: 16 / 9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.6vw, 40px);
  box-shadow: var(--shadow-sm);
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card > p { font-size: 14.5px; color: var(--ink-muted); margin-bottom: 26px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .18s, box-shadow .18s, background-color .18s;
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--orange-400);
  box-shadow: 0 0 0 4px rgba(238, 154, 94, 0.16);
}
.field input::placeholder, .field textarea::placeholder { color: #A9B3AC; }

.form-note {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   14. Reports page
   -------------------------------------------------------------------------- */
.page-hero {
  background:
    radial-gradient(620px 280px at 88% 10%, rgba(238, 154, 94, 0.16), transparent 66%),
    var(--green-900);
  color: rgba(255, 255, 255, 0.84);
  padding-block: clamp(52px, 6.5vw, 88px);
}
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 16px; }
.page-hero .eyebrow { color: var(--orange-200); }
.page-hero .eyebrow::before { background: var(--orange-400); }
.page-hero p { color: rgba(255, 255, 255, 0.76); max-width: 62ch; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

.report-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.filter-chip {
  appearance: none;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 650;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s;
}
.filter-chip:hover { border-color: var(--green-500); color: var(--green-800); }
.filter-chip[aria-pressed="true"] {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.report-list { display: grid; gap: 12px; }
.report-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px clamp(18px, 2.4vw, 26px);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.report-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--orange-200);
}
.report-item .doc-ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
  flex: none;
}
.report-item .doc-ic svg { width: 21px; height: 21px; }
.report-item[data-type="tata-kelola"] .doc-ic,
.report-item[data-type="keberlanjutan"] .doc-ic { background: var(--green-50); color: var(--green-600); }

.report-item h3 { font-family: var(--font-sans); font-size: 16.5px; font-weight: 700; margin: 0 0 4px; }
.report-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12.5px; color: var(--ink-muted); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--green-50);
  color: var(--green-700);
}
.report-item.is-hidden { display: none; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.68);
  padding-top: clamp(52px, 6vw, 76px);
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 44px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-mark {
  background: #fff;
  border-radius: 10px;
  padding: 3px 4px;
  width: 52px; height: 44px;
}
.footer-brand .brand-name { color: var(--orange-400); }
.footer-brand .brand-name span { color: var(--green-200); }
.footer-brand .brand-legal { color: rgba(255, 255, 255, 0.55); }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 34ch; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.68); text-decoration: none; transition: color .18s; }
.footer-col a:hover { color: var(--orange-400); }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: background-color .2s, color .2s, transform .2s;
}
.social-row a:hover { background: var(--orange-500); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 17px; height: 17px; }

.disclosure {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 26px;
  display: grid;
  gap: 9px;
}
.disclosure p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.disclosure p svg { width: 14px; height: 14px; flex: none; margin-top: 4px; color: var(--green-500); }
.disclosure a { color: var(--orange-200); }

.colophon {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 20px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   16. Scroll reveal
   -------------------------------------------------------------------------- */
/* Content is only ever hidden when JavaScript is confirmed running, so a script
   failure degrades to a fully visible page rather than a blank one. */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 620px; }
  .about-grid, .guarantee-grid, .contact-grid, .deposito { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Nav collapses to the menu button well before the other mobile layout changes,
   because the six Indonesian labels run out of room long before the page does. */
@media (max-width: 1240px) {
  .nav-toggle { display: grid; }

  .nav {
    /* Anchored to the sticky header itself rather than a hardcoded offset, so
       it stays put however tall the utility bar becomes at narrow widths. */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 14px var(--gutter) 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease, opacity .22s ease, padding .3s ease;
  }
  .nav.is-open {
    max-height: 78vh;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 13px 12px; font-size: 16px; border-radius: var(--radius-sm); }
  .nav a.is-active::after { display: none; }
  .nav a.is-active { background: var(--green-50); }

  .header-cta { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }

  /* Long button labels (notably the Indonesian LPS link) must be allowed to
     wrap on narrow screens rather than force horizontal overflow. */
  .btn { white-space: normal; text-align: center; }

  .trust-inner { grid-template-columns: 1fr; gap: 20px; }
  .tenor-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .report-item { grid-template-columns: auto 1fr; }
  .report-item .btn { grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 720px) {
  .utility .container { flex-direction: column; align-items: flex-start; gap: 8px; }
  .utility-note { font-size: 12px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .hero-stat { display: flex; align-items: baseline; gap: 12px; }
  .hero-stat .lbl { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-legal { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .utility, .nav-toggle, .site-footer, .map-frame, .form-card { display: none; }
  body { background: #fff; }
}
