/* ==========================================================================
   PT Kaibangshike Network Indonesia — 凯邦仕科网络
   Official Website Stylesheet (Government / Institutional profile)
   ========================================================================== */

:root {
  /* ── Deep forest palette — tuned to the brand hill artwork (#162C12 / #A19C57) ── */
  --navy-900: #061B0E;
  --navy-800: #0B2A17;
  --navy-700: #103A20;
  --green-700: #12602E;
  --blue-600: #15803D;      /* primary accent (green) */
  --blue-500: #2FA35F;      /* secondary accent */
  --lime-400: #C2E86A;      /* highlight lime */
  --gold-400: #CBB86B;      /* warm highlight from the artwork */
  --red: #CE1126;           /* Indonesia red accent */
  --teal-400: #25F4EE;      /* platform accent */
  --ink: #0F172A;
  --ink-2: #243044;
  --muted: #5B6B7F;
  --muted-2: #7A899C;
  --line: #E3E9F0;
  --line-soft: #EDF1F6;
  --bg: #FFFFFF;
  --soft: #F5F8FC;
  --soft-2: #EEF3F9;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .06), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 18px 40px rgba(10, 31, 56, .12);
  --maxw: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial,
          "Noto Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ------------------------------- Header --------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.hdr.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }

.hdr__in {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700) 60%, var(--blue-600));
  display: grid; place-items: center; color: #fff;
  font-weight: 700; font-size: 15px; letter-spacing: .02em;
  box-shadow: 0 3px 10px rgba(18, 53, 92, .28);
}
.brand__txt { min-width: 0; }
.brand__name {
  font-weight: 700; font-size: 15px; color: var(--navy-800);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand__sub {
  font-size: 11.5px; color: var(--muted-2); letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px; color: var(--ink-2); padding: 8px 11px; border-radius: 8px;
  font-weight: 500; transition: background .18s, color .18s;
}
.nav a:hover { background: var(--soft-2); color: var(--navy-700); }
.nav a.is-active { color: var(--green-700); background: rgba(21, 128, 61, .09); font-weight: 650; }

.lang { display: flex; align-items: center; gap: 2px; margin-left: 8px; padding-left: 12px; border-left: 1px solid var(--line); }
.lang button {
  font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  padding: 5px 9px; border-radius: 7px; border: 1px solid transparent;
  background: transparent; color: var(--muted);
}
.lang button.is-on { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.burger {
  display: none; margin-left: auto; width: 40px; height: 40px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; border-radius: 9px; padding: 0;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink-2); margin: 4px auto; border-radius: 2px; }

/* --------------------------------- Hero ---------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(96deg, rgba(4, 22, 11, .88) 0%, rgba(5, 30, 16, .62) 44%, rgba(6, 33, 18, .30) 76%, rgba(6, 33, 18, .24) 100%),
    linear-gradient(180deg, rgba(4, 22, 11, .38) 0%, rgba(4, 22, 11, 0) 34%, rgba(4, 22, 11, 0) 60%, rgba(4, 22, 11, .52) 100%),
    url(../img/hero-bg-wide.jpg) center 32% / cover no-repeat,
    linear-gradient(152deg, #04160B 0%, #0B3A1F 100%);
  color: #fff;
  min-height: min(86vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 78%);
}
.hero__in {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 84px 24px 76px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .22);
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em; color: #E7F5DC;
}
.pill b { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--lime-400); color: #0A2A0E; font-size: 12px; font-weight: 800; }

.hero h1 { font-size: clamp(30px, 4.1vw, 48px); font-weight: 800; margin: 20px 0 6px; }
.hero h1 .cn { display: block; font-size: clamp(18px, 2vw, 23px); font-weight: 600; color: var(--lime-400); margin-top: 8px; letter-spacing: .04em; }
.hero__lead { font-size: 17px; color: #C9DCC3; max-width: 640px; margin-top: 20px; }

/* hero value chips */
.hero__chips { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; max-width: 620px; }
.hero__chips li {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: #DCE9D6;
}
.hero__chips .tick {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(194, 232, 106, .18); border: 1px solid rgba(194, 232, 106, .42);
}
.hero__chips .tick svg { width: 11px; height: 11px; stroke: var(--lime-400); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 10px; font-size: 14.5px; font-weight: 650;
  border: 1px solid transparent; cursor: pointer; transition: transform .16s, box-shadow .2s, background .2s;
}
.btn--primary { background: #fff; color: var(--navy-800); box-shadow: 0 8px 20px rgba(0, 0, 0, .18); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0, 0, 0, .24); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }

/* Hero stat panel */
.hero__panel {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px; padding: 22px; backdrop-filter: blur(6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
}
.hero__panel h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: #9FC5FF; font-weight: 700; margin-bottom: 16px;
}
.kv { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,.16); }
.kv:last-child { border-bottom: 0; }
.kv span { font-size: 13.5px; color: #C3D2E8; }
.kv b { font-size: 15px; color: #fff; font-weight: 700; white-space: nowrap; }

/* ------------------------------- Stat bar -------------------------------- */
.stats { background: var(--soft); border-bottom: 1px solid var(--line); }
.stats__in { max-width: var(--maxw); margin: 0 auto; padding: 34px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat { text-align: center; padding: 6px 10px; }
.stat b { display: block; font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: var(--navy-800); letter-spacing: -.02em; }
.stat span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* ------------------------------- Sections -------------------------------- */
section { padding: 88px 0; }
section.soft { background: var(--soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.head { max-width: 760px; margin-bottom: 44px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-600); margin-bottom: 12px;
}
.head h2 { font-size: clamp(25px, 3vw, 34px); font-weight: 800; color: var(--navy-800); }
.head p { margin-top: 14px; font-size: 16.5px; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D6E0EC; }
.card h3 { font-size: 17px; font-weight: 700; color: var(--navy-800); margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--muted); }

.ico {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(21, 128, 61, .13), rgba(194, 232, 106, .22));
  border: 1px solid rgba(21, 128, 61, .18); margin-bottom: 16px;
}
.ico svg { width: 21px; height: 21px; stroke: var(--green-700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.card ul { list-style: none; margin: 14px 0 0; padding: 0; }
.card ul li { position: relative; padding-left: 18px; font-size: 13.8px; color: var(--muted); margin-bottom: 7px; }
.card ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); opacity: .55; }

/* --------------------------- Company fact table -------------------------- */
.facts { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.facts .row { display: grid; grid-template-columns: 300px 1fr; gap: 20px; padding: 14px 22px; border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.facts .row:last-child { border-bottom: 0; }
.facts .row:nth-child(odd) { background: #FBFCFE; }
.facts dt { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.facts dd { margin: 0; font-size: 14.5px; color: var(--ink); font-weight: 500; }

.ph { color: #9AA7B8; font-style: normal; }

/* ------------------------------ Impact list ------------------------------ */
.impact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.impact .card { position: relative; overflow: hidden; }
.impact .card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--blue-600), var(--teal-400)); }
.impact .num { font-size: 12px; font-weight: 800; color: #C3CFE0; letter-spacing: .1em; }

/* ----------------------------- Evidence box ------------------------------ */
.evid {
  margin-top: 30px; background: var(--navy-800); color: #DCE7F7; border-radius: var(--radius);
  padding: 30px 32px; display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start;
}
.evid h4 { font-size: 16px; color: #fff; font-weight: 700; }
.evid p.evid__note { font-size: 13px; color: #9FB6D4; margin-top: 8px; }
.evid ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.evid li { font-size: 13.8px; padding-left: 16px; position: relative; }
.evid li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400); }
.evid li b { color: #fff; }
.evid li em { display: block; font-style: normal; font-size: 12px; color: #8FA8C7; margin-top: 2px; }

/* ---------------------------- Compliance table --------------------------- */
.tbl-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.tbl th {
  text-align: left; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding: 14px 20px; background: var(--soft-2); border-bottom: 1px solid var(--line);
}
table.tbl td { padding: 14px 20px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl td:first-child { font-weight: 600; color: var(--ink); width: 34%; }
.tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  background: #E6F5EB; color: #146A32; border: 1px solid #C3E6CF; white-space: nowrap;
}
.tag--pending { background: #FFF6E5; color: #8A5A00; border-color: #FBE3B8; }

/* ------------------------------- Cases ---------------------------------- */
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.case__top { padding: 24px 26px 18px; border-bottom: 1px solid var(--line-soft); }
.case__cat { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); }
.case h3 { font-size: 17.5px; font-weight: 700; color: var(--navy-800); margin-top: 8px; }
.case p { font-size: 14px; color: var(--muted); margin-top: 10px; }
.case__kpi { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); }
.case__kpi div { padding: 16px 14px; text-align: center; border-right: 1px solid var(--line-soft); }
.case__kpi div:last-child { border-right: 0; }
.case__kpi b { display: block; font-size: 19px; font-weight: 800; color: var(--navy-800); }
.case__kpi span { font-size: 11.5px; color: var(--muted); }

/* ------------------------------ Partners -------------------------------- */
.logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.logo {
  height: 92px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  display: grid; place-items: center; text-align: center; padding: 14px;
  font-size: 13.5px; font-weight: 650; color: var(--navy-700);
  transition: box-shadow .2s, transform .2s;
}
.logo:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.logo small { display: block; font-size: 11px; font-weight: 500; color: var(--muted-2); margin-top: 3px; }

/* ------------------------------- Contact -------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.contact__list { display: grid; gap: 14px; }
.citem { display: flex; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.citem .ico { width: 38px; height: 38px; margin: 0; flex: none; }
.citem .ico svg { width: 18px; height: 18px; }
.citem span { display: block; font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.citem b, .citem p { font-size: 14.5px; font-weight: 600; color: var(--ink); }

.note {
  background: #FFFBEB; border: 1px solid #FBE3B8; border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: 13.5px; color: #7A5300;
}

/* ------------------------------- Footer --------------------------------- */
.ftr { background: var(--navy-900); color: #9FB3CE; padding: 54px 0 26px; font-size: 13.5px; }
.ftr__in { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.ftr h5 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.ftr p { color: #9FB3CE; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: 8px; }
.ftr a:hover { color: #fff; }
.ftr__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ftr__brand .brand__mark { background: linear-gradient(135deg, #103A20, #15803D); }
.ftr__brand .brand__name { color: #fff; }
.ftr__bottom {
  max-width: var(--maxw); margin: 34px auto 0; padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: #7E93B0;
}

/* ------------------------------ Reveal anim ------------------------------ */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.rv.in { opacity: 1; transform: none; }

/* --------------------------- Brand logo image ---------------------------- */
.brand__logo {
  width: 52px; height: 38px; border-radius: 10px; flex: none;
  background: linear-gradient(140deg, #04160B, #0B2A17 70%, #177A3A);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 3px 10px rgba(6, 27, 14, .40);
}
.brand__logo img { width: 42px; height: auto; }

/* ------------------------------- Hero side ------------------------------- */
.hero__visual {
  margin: 0; position: relative; display: grid; place-items: center;
}
.hero__visual img {
  width: min(430px, 92%); height: auto; display: block;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, .5));
  animation: heroFloat 5.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero { padding-bottom: 0; }
.hero__in { padding-bottom: 96px; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 3; }
.hero__wave svg { width: 100%; height: 64px; }

/* ------------------------------ Tech strip ------------------------------- */
.tech {
  margin-top: 30px; border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(6, 27, 14, .95) 0%, rgba(6, 27, 14, .88) 45%, rgba(16, 58, 32, .66) 100%),
    url("../img/tech-ops.jpg") center / cover no-repeat;
  color: #fff; padding: 28px 30px; display: grid; grid-template-columns: 300px 1fr; gap: 26px; align-items: center;
  border: 1px solid rgba(194, 232, 106, .14);
}
.tech__txt h4 { font-size: 16.5px; font-weight: 800; }
.tech__txt p { font-size: 13px; color: #B4CBBA; margin-top: 8px; }
.tech__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 13px; font-weight: 650; padding: 8px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .20); color: #E8F3E4;
  transition: background .2s, border-color .2s;
}
.chip:hover { background: rgba(194, 232, 106, .18); border-color: rgba(194, 232, 106, .55); }

/* ------------------------------- Roadmap --------------------------------- */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.phases::before {
  content: ""; position: absolute; top: 33px; left: 8%; right: 8%; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--lime-400)); opacity: .55;
}
.phase {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; position: relative; transition: transform .2s, box-shadow .2s;
}
.phase:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.phase__dot {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--green-700));
  color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(18, 96, 46, .32); position: relative; z-index: 2;
}
.phase__tag {
  display: inline-block; font-size: 11.5px; font-weight: 750; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-700); background: rgba(21, 128, 61, .09);
  border: 1px solid rgba(21, 128, 61, .18); border-radius: 999px; padding: 3px 11px; margin-bottom: 10px;
}
.phase h3 { font-size: 17.5px; font-weight: 800; color: var(--navy-800); }
.phase > p { font-size: 13.8px; color: var(--muted); margin-top: 8px; min-height: 62px; }
.phase__kpi { margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 12px; display: grid; gap: 8px; }
.phase__kpi div { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.phase__kpi b { font-size: 15.5px; color: var(--navy-800); font-weight: 800; white-space: nowrap; }
.phase__kpi span { font-size: 12.5px; color: var(--muted); text-align: right; }

.promises {
  margin-top: 34px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  padding: 30px 32px; color: #fff;
}
.promises h4 { font-size: 17px; font-weight: 800; margin-bottom: 20px; }
.promises__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.promises__grid > div { border-left: 3px solid var(--teal-400); padding-left: 14px; }
.promises__grid b { display: block; font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; letter-spacing: -.02em; }
.promises__grid span { font-size: 12.5px; color: #A9BDD9; line-height: 1.45; display: block; margin-top: 4px; }

/* ------------------------------ Case note -------------------------------- */
.case__note { margin-top: 22px; font-size: 13px; color: var(--muted-2); text-align: center; }

/* --------------------------- Legal & narrative --------------------------- */
.legal-block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 26px;
}
.legal-block__title {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
  font-weight: 700; padding: 18px 22px 0; margin: 0;
}
.legal-block .facts { border: 0; border-radius: 0; margin-top: 10px; }
.narrative { display: grid; gap: 14px; font-size: 15.5px; color: var(--muted); }

/* ---------------------------- Contact accent ----------------------------- */
.contact-sec {
  background:
    radial-gradient(760px 340px at 12% 0%, rgba(21, 128, 61, .08), transparent 60%),
    radial-gradient(640px 320px at 95% 100%, rgba(194, 232, 106, .16), transparent 60%),
    var(--soft);
}

/* ---------------------------- Section banners ---------------------------- */
.sec-banner {
  margin: 0 0 36px; border-radius: 18px; overflow: hidden; position: relative;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.sec-banner img {
  width: 100%; height: auto; aspect-ratio: 21 / 9; object-fit: cover; display: block;
  transition: transform .8s ease;
}
.sec-banner:hover img { transform: scale(1.025); }
.sec-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 27, 14, .08), transparent 42%, rgba(6, 27, 14, .22));
}

/* ---------------------------- Workflow steps ---------------------------- */
.steps { list-style: none; margin: 0; padding: 0; }
.step {
  display: grid; grid-template-columns: 88px 1fr 210px; gap: 20px; align-items: start;
  padding: 18px 20px; border-bottom: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); transition: background .2s;
}
.step:hover { background: #fff; }
.step__n {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-weight: 800; font-size: 17px; color: var(--green-700);
  background: linear-gradient(135deg, rgba(21, 128, 61, .10), rgba(194, 232, 106, .26));
  border: 1px solid rgba(21, 128, 61, .18);
}
.step__b h4 { font-size: 16px; font-weight: 700; color: var(--navy-800); }
.step__b p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.step__out {
  font-size: 13px; font-weight: 650; color: var(--green-700);
  background: rgba(21, 128, 61, .07); border: 1px dashed rgba(21, 128, 61, .28);
  border-radius: 8px; padding: 8px 12px; text-align: center;
}

/* ------------------------------ Tables ---------------------------------- */
.tbl-title {
  font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); font-weight: 700; padding: 18px 22px 0; margin: 0;
}
.tbl-wrap table.tbl { margin-top: 12px; }
.tbl-note {
  font-size: 12.5px; color: var(--muted-2); padding: 12px 22px;
  border-top: 1px solid var(--line-soft); background: #FBFCFE; margin: 0;
}
table.tbl td:nth-child(2), table.tbl td:nth-child(3) { white-space: nowrap; }

/* ------------------------------ City map -------------------------------- */
.cities {
  margin-top: 34px; border-radius: var(--radius); padding: 28px 30px;
  background:
    radial-gradient(620px 260px at 8% 0%, rgba(21, 128, 61, .10), transparent 62%),
    var(--soft);
  border: 1px solid var(--line);
}
.cities__head { max-width: 720px; margin-bottom: 22px; }
.cities__head h4 { font-size: 17px; font-weight: 800; color: var(--navy-800); }
.cities__head p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.cities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 16px 14px; transition: transform .2s, box-shadow .2s;
}
.city:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.city__tag {
  display: inline-block; font-size: 10.5px; font-weight: 750; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green-700); background: rgba(21, 128, 61, .08);
  border-radius: 999px; padding: 2px 9px; margin-bottom: 8px;
}
.city h5 { font-size: 15px; font-weight: 800; color: var(--navy-800); margin: 0; }
.city p { font-size: 12.5px; color: var(--muted); margin-top: 5px; }

/* --------------------------- Generic grids ------------------------------ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.card--flat { background: var(--soft); border-color: var(--line-soft); }
.card--flat:hover { background: #fff; }
.unit__n { font-size: 11.5px; font-weight: 800; color: #A9BCB2; letter-spacing: .12em; margin-bottom: 8px; }
.unit__owner {
  display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 650;
  color: var(--green-700); background: rgba(21, 128, 61, .08);
  border-radius: 6px; padding: 4px 9px;
}

/* ---------------------------- Governance list --------------------------- */
.gov {
  margin-top: 30px; border-radius: var(--radius); padding: 28px 30px;
  background: linear-gradient(120deg, #061B0E, #103A20); color: #fff;
}
.gov h4 { font-size: 17px; font-weight: 800; margin-bottom: 18px; }
.gov ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.gov li { position: relative; padding-left: 18px; font-size: 13.6px; }
.gov li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-400); }
.gov li b { display: block; color: #fff; font-size: 14px; font-weight: 700; }
.gov li span { color: #A9C3AC; }

/* -------------------------------- FAQ ---------------------------------- */
.faq { display: grid; gap: 12px; }
.qa {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: box-shadow .2s, border-color .2s;
}
.qa:hover { border-color: #CFDFD2; box-shadow: var(--shadow-sm); }
.qa summary {
  list-style: none; cursor: pointer; padding: 17px 52px 17px 20px; position: relative;
  font-size: 15.5px; font-weight: 700; color: var(--navy-800);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary i {
  position: absolute; right: 20px; top: 22px; width: 11px; height: 11px;
  border-right: 2px solid var(--green-700); border-bottom: 2px solid var(--green-700);
  transform: rotate(45deg); transition: transform .22s ease;
}
.qa[open] summary i { transform: rotate(-135deg); top: 24px; }
.qa[open] summary { border-bottom: 1px solid var(--line-soft); }
.qa p { padding: 16px 20px 18px; font-size: 14.5px; color: var(--muted); }

/* -------------------------------- About -------------------------------- */
.about-vision {
  background: var(--soft); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 30px; margin-bottom: 30px;
}
.about-vision h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--green-700); font-weight: 800; margin-bottom: 14px;
}
.about-vision blockquote {
  margin: 0; font-size: 17.5px; line-height: 1.6; font-weight: 600; color: var(--navy-800);
  border-left: 3px solid var(--blue-500); padding-left: 16px;
}
.about-vision ol { margin: 22px 0 0; padding-left: 20px; }
.about-vision ol li { font-size: 15px; color: var(--muted); margin-bottom: 8px; }
.sub-head { margin: 6px 0 18px; }
.sub-head h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--green-700); font-weight: 800; }
.value {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 18px; transition: transform .2s, box-shadow .2s;
}
.value:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value h5 { font-size: 15.5px; font-weight: 800; color: var(--navy-800); margin: 0; }
.value p { font-size: 13.5px; color: var(--muted); margin-top: 7px; }

.legal-block__lead { font-size: 13.5px; color: var(--muted-2); padding: 6px 22px 0; margin: 0; }

/* ------------------------------ Responsive ------------------------------- */
@media (max-width: 1000px) {
  .hero__in { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 84px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .hero__visual img { width: min(360px, 88%); }
  .stats__in { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  .grid-3, .impact { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .evid { grid-template-columns: 1fr; gap: 18px; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .ftr__in { grid-template-columns: 1fr 1fr; }
  .tech { grid-template-columns: 1fr; gap: 18px; }
  .promises__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cities__grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 72px 1fr; }
  .step__out { grid-column: 2; justify-self: start; padding: 6px 12px; }
  .gov ul { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .hdr__in { height: 62px; }
  .nav {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    max-height: calc(100dvh - 62px); overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 10px 16px 18px; gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px; font-size: 15px; }
  .lang { margin: 10px 0 0; padding: 10px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .lang button { padding: 9px 14px; }
  .burger { display: block; }
  .brand__sub { display: none; }
  section { padding: 56px 0; }
  .head { margin-bottom: 30px; }
  .head p { font-size: 15.5px; }
  .hero {
    min-height: 0;
    /* darker uniform veil so text stays readable over the photo on small screens */
    background:
      linear-gradient(180deg, rgba(4, 22, 11, .80) 0%, rgba(5, 30, 16, .66) 55%, rgba(4, 22, 11, .74) 100%),
      url(../img/hero-bg-wide.jpg) center 36% / cover no-repeat,
      linear-gradient(152deg, #04160B 0%, #0B3A1F 100%);
  }
  .hero__in { padding: 48px 18px 76px; gap: 34px; }
  .hero__visual { max-width: 300px; margin: 0 auto; transform: none; }
  .hero__visual img { animation: none; }
  .hero__lead { font-size: 16px; margin-top: 16px; }
  .hero__chips { margin-top: 20px; }
  .hero__cta { margin-top: 26px; }
  .btn { padding: 13px 20px; min-height: 46px; }
  .sec-banner { margin-bottom: 26px; border-radius: 14px; }
  .sec-banner img { aspect-ratio: 16 / 9; }
  .grid-2, .grid-3, .impact, .contact { grid-template-columns: 1fr; }
  .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .cities__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step__out { grid-column: 1; }
  .facts .row { grid-template-columns: 1fr; gap: 4px; }
  .evid ul { grid-template-columns: 1fr; }
  .gov ul { grid-template-columns: 1fr; }
  .stats__in { grid-template-columns: repeat(2, 1fr); }
  .phases { grid-template-columns: 1fr; }
  .phases::before { display: none; }
  .phase > p { min-height: 0; }
  .promises { padding: 24px 22px; }
  .promises__grid { grid-template-columns: 1fr; gap: 16px; }
  .case__img { height: 150px; }
  .case__kpi b { font-size: 17px; }
  /* tables scroll horizontally on phones instead of squashing */
  .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table.tbl { min-width: 640px; }
  .qa summary { padding: 15px 48px 15px 16px; font-size: 15px; }
  .qa p { padding: 14px 16px 16px; }
  .ftr__in { grid-template-columns: 1fr; gap: 28px; }
  .ftr__bottom { justify-content: center; text-align: center; }
  .wrap, .hdr__in, .hero__in, .stats__in, .ftr__in { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .hero h1 { font-size: 27px; }
  .hero h1 .cn { font-size: 17px; }
  .head h2 { font-size: 23px; }
  .stats__in { padding: 26px 18px; }
  .card { padding: 20px 18px; }
  .facts .row { padding: 12px 16px; }
  .case__kpi span { font-size: 10.5px; }
  .promises__grid b { font-size: 20px; }
  .evid { padding: 24px 20px; }
  .cities { padding: 22px 18px; }
  .gov { padding: 24px 20px; }
  .tech { padding: 24px 20px; }
}

/* -------------------------------- Print --------------------------------- */
@media print {
  .hdr, .hero__cta, .burger, .lang { display: none !important; }
  .hero { background: #0B2A17 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .hero::after { display: none; }
  section { padding: 26px 0; }
  .card, .case, .tbl-wrap, .step, .city, .qa, .sec-banner { break-inside: avoid; box-shadow: none; }
  .case__img { height: 110px; }
  .sec-banner img { aspect-ratio: 21 / 9; }
  .rv { opacity: 1 !important; transform: none !important; }
  .qa p { display: block !important; }
  .tbl-title { padding-left: 0; }
}
