/* ==========================================================================
   Silver Lining Consultant — landing page
   Editorial/architectural system: hairline rules, 2px radii, blueprint blues.
   Order: tokens -> base -> layout -> components -> motion -> breakpoints
   ========================================================================== */

/* --- tokens ------------------------------------------------------------- */

:root {
  --font-heading: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, sans-serif;

  --color-bg: #ffffff;
  --color-text: #0a0a0a;
  --color-ink: #0a0a0a;               /* dark band background */
  --color-on-ink: #f4f5f7;            /* text on dark bands */
  --color-divider: color-mix(in srgb, #000000 16%, transparent);

  --color-neutral-100: #f5f5f5;
  --color-neutral-200: #e8e8e8;
  --color-neutral-300: #d4d4d4;
  --color-neutral-400: #b0b0b0;
  --color-neutral-500: #8a8a8a;
  --color-neutral-600: #6b6b6b;
  --color-neutral-700: #4a4a4a;
  --color-neutral-800: #2a2a2a;
  --color-neutral-900: #141414;

  --color-accent: #2757c9;
  --color-accent-100: #e8f0ff;
  --color-accent-200: #c7dcff;
  --color-accent-300: #9dc0ff;
  --color-accent-400: #6a9dff;
  --color-accent-500: #3b78f0;
  --color-accent-600: #2757c9;
  --color-accent-700: #1b3f99;
  --color-accent-800: #142f73;
  --color-accent-900: #0e2150;

  --color-accent-2: #f5c518;
  --color-accent-2-400: #ffd93d;
  --color-accent-2-700: #a37e00;

  /* Surfaces. The old design used saturated pastel bands (#c7dcff / #fff3b0);
     these restrained tints keep the section rhythm without fighting the
     hairline detailing. */
  --surface-tint: color-mix(in srgb, var(--color-accent) 4%, var(--color-bg));
  --surface-card: color-mix(in srgb, var(--color-accent) 2%, var(--color-bg));

  --radius: 2px;
  --shadow-sm: 0 1px 2px color-mix(in srgb, #0a1533 12%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #0a1533 14%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #0a1533 18%, transparent);

  --container: 1280px;
  --gutter: clamp(18px, 4vw, 56px);
  --section-y: clamp(56px, 8vw, 104px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 68px;
}

/* --- base --------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* clears the sticky header when jumping to an anchor */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  /* room for the fixed contact bar */
  padding-bottom: var(--cta-bar-h, 0px);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

a { color: var(--color-accent-700); text-decoration: none; }
a:hover { color: var(--color-accent-600); }

img, svg { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}
.on-ink :focus-visible { outline-color: var(--color-accent-400); }

::selection { background: color-mix(in srgb, var(--color-accent) 24%, transparent); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--color-ink);
  color: #fff;
  font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --- layout ------------------------------------------------------------- */

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

.section { padding-block: var(--section-y); }
.section--flush-top { padding-top: 0; }
.section--tint { background: var(--surface-tint); }

/* seksi dengan foto latar penuh yang luntur dari kanan ke kiri, teks tetap di
   kolom kiri di atas latar putih */
.section--photo { position: relative; isolation: isolate; }
.section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../img/mall.webp") right center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000 88%);
  mask-image: linear-gradient(90deg, transparent 20%, #000 88%);
}
.section--photo__text { max-width: min(58ch, 100%); }

/* di layar sempit foto ada di belakang teks, jadi diturunkan jadi tekstur tipis */
@media (max-width: 860px) {
  .section--photo::before {
    opacity: 0.16;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.band-ink {
  background: var(--color-ink);
  color: var(--color-on-ink);
}
.band-ink h1, .band-ink h2, .band-ink h3 { color: #fff; }

.rule { border: 0; border-top: 1px solid var(--color-divider); margin: 0; }

/* section heading block */
.head { max-width: 62ch; }
.head__kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-700);
  margin-bottom: 14px;
}
.band-ink .head__kicker { color: var(--color-accent-400); }
.head__title {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.08;
}
.head__lede {
  font-size: 17px;
  line-height: 1.75;
  margin-top: 18px;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}
.band-ink .head__lede { color: color-mix(in srgb, var(--color-on-ink) 78%, transparent); }

.grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--auto-sm { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 5vw, 72px); }

.muted { color: color-mix(in srgb, var(--color-text) 66%, transparent); }
.fine {
  font-size: 13px;
  line-height: 1.85;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}
.tnum { font-feature-settings: 'tnum' 1; }

/* --- buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.btn--primary:hover { background: var(--color-accent-700); border-color: var(--color-accent-700); color: #fff; }

.btn--outline {
  background: transparent;
  border-color: var(--color-divider);
  color: var(--color-text);
}
.btn--outline:hover { border-color: var(--color-accent); color: var(--color-accent-700); }

.btn--ghost-ink {
  background: transparent;
  border-color: var(--color-accent-400);
  color: var(--color-accent-400);
}
.btn--ghost-ink:hover { background: color-mix(in srgb, var(--color-accent-400) 16%, transparent); color: var(--color-accent-400); }

.btn--quiet-ink {
  background: transparent;
  border-color: color-mix(in srgb, var(--color-on-ink) 34%, transparent);
  color: var(--color-on-ink);
}
.btn--quiet-ink:hover { background: color-mix(in srgb, var(--color-on-ink) 12%, transparent); color: var(--color-on-ink); }

/* underlined text link */
.link-arrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 3px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.link-arrow:hover { border-color: var(--color-accent-700); }

/* --- header / nav ------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-divider);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  padding-block: 12px;
}

.brand {
  display: grid;
  gap: 1px;
  margin-right: auto;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
}
.brand span:nth-child(1) { font-size: 15px; letter-spacing: 0.34em; }
.brand span:nth-child(2) { font-size: 15px; letter-spacing: 0.34em; color: var(--color-accent); }
.brand span:nth-child(3) {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: color-mix(in srgb, var(--color-text) 66%, transparent);
}

/* Default (also the no-JS state): links are visible and wrap.
   The toggle only appears once JS confirms it can drive it. */
.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
}
.nav a {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 74%, transparent);
  transition: color 0.2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--color-accent-700); }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius);
  padding: 9px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  cursor: pointer;
}
.nav__toggle-bars {
  display: grid;
  gap: 3px;
  width: 16px;
}
.nav__toggle-bars i {
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* --- hero --------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-divider);
  background:
    radial-gradient(46% 52% at 82% 6%, color-mix(in srgb, var(--color-accent-300) 45%, transparent) 0%, transparent 70%),
    radial-gradient(40% 46% at 4% 96%, color-mix(in srgb, var(--color-accent-2) 16%, transparent) 0%, transparent 70%),
    linear-gradient(158deg, var(--color-accent-100) 0%, var(--color-bg) 46%, var(--color-neutral-100) 100%);
}
/* Building theme: blueprint grid (::before) + city skyline (::after).
   Both are drawn in CSS, no image request. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--color-accent) 12%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--color-accent) 12%, transparent) 1px, transparent 1px),
    linear-gradient(to right, color-mix(in srgb, var(--color-accent) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--color-accent) 6%, transparent) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
  -webkit-mask-image: radial-gradient(120% 90% at 78% 8%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 90% at 78% 8%, #000 0%, transparent 72%);
  pointer-events: none;
}
/* Skyline. City illustration anchored to the bottom edge; the top fade lets
   it dissolve into the hero gradient instead of showing a hard image edge. */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(170px, 39vw, 480px);
  /* 115% wide: the skyline is scaled a touch past the viewport so the buildings
     read bigger; the overflow only eats the empty margins of the artwork, and
     the sky trimmed off the top sits under the fade anyway */
  background: url("../img/hero-bg.jpg") center bottom / 115% auto no-repeat;
  /* kept faint on purpose: the hero copy and CTAs sit on top of this band */
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(44px, 6vw, 88px) clamp(48px, 7vw, 96px);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border: 1px solid var(--color-accent-300);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-bg) 70%, transparent);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-700);
}
.hero__title {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.04;
  margin-top: 26px;
  max-width: 20ch;
}
.hero__title em { font-style: normal; color: var(--color-accent-700); }
.hero__lede {
  font-size: 17px;
  line-height: 1.75;
  margin-top: 22px;
  max-width: 50ch;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.checklist {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 15.5px;
}
.checklist li { display: flex; gap: 11px; }
.checklist svg { flex: none; margin-top: 5px; color: var(--color-accent); }

/* service summary panel */
.hero__panel { position: relative; padding-bottom: 44px; }
.hero__seal {
  position: absolute;
  top: -18px;
  right: -6px;
  z-index: 2;
  width: 84px;
  height: 84px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  background: var(--color-bg);
  display: grid;
  place-items: center;
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.panel {
  border: 1px solid var(--color-divider);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 2.6vw, 34px);
}
.panel__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.panel__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--color-divider);
  background: var(--color-bg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.panel__icon {
  flex: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-accent-300);
  display: grid;
  place-items: center;
  background: var(--color-bg);
  color: var(--color-accent-700);
}
.panel__name { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 18px; line-height: 1.2; }
.panel__price { display: block; font-size: 13.5px; margin-top: 4px; color: color-mix(in srgb, var(--color-text) 66%, transparent); }
.panel__check { flex: none; color: var(--color-accent); }

.hero__rating {
  position: absolute;
  bottom: 0;
  left: clamp(-8px, -1vw, 0px);
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-md);
  padding: 12px 20px;
}
.hero__rating-star {
  flex: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-accent-300);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--color-accent);
}

/* --- stats -------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px clamp(20px, 3vw, 48px);
}
.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
  font-feature-settings: 'tnum' 1;
}
.stat--lead .stat__value { color: var(--color-accent); }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 12px;
  color: color-mix(in srgb, var(--color-text) 66%, transparent);
}

/* compact stat row under the hero panel */
.hero__stats {
  margin-top: clamp(26px, 3vw, 38px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid var(--color-divider);
}
.stats--mini {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px clamp(16px, 2.5vw, 36px);
}
.stats--mini .stat__value { font-size: clamp(24px, 2.6vw, 34px); }
.stats--mini .stat__label { font-size: 11px; letter-spacing: 0.12em; margin-top: 7px; }

/* --- cards -------------------------------------------------------------- */

.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-divider);
  background: var(--surface-card);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card__body { padding: clamp(20px, 2vw, 30px); display: flex; flex-direction: column; flex: 1; }
.card__kicker {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-700);
}
.card__title { font-size: 26px; line-height: 1.16; margin-top: 10px; }
.card__text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 12px;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}
.card__foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.card__price { font-family: var(--font-heading); font-size: 30px; font-feature-settings: 'tnum' 1; }
.card__price small {
  font-size: 0.46em;
  letter-spacing: 0.06em;
  margin-left: 5px;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
}

/* --- portfolio cards + detail modal ------------------------------------- */
/* The whole card is one hit target: the button carries the semantics and a
   stretched ::after covers the card, so keyboard and pointer reach the same
   control without nesting interactive elements. */

.card.project { position: relative; overflow: hidden; }
.card.project:hover { transform: translateY(-3px); box-shadow: 0 14px 34px -22px rgba(10, 10, 10, 0.45); }

.project__media {
  margin: 0;
  height: 132px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-divider);
  background:
    linear-gradient(to right, color-mix(in srgb, var(--color-accent) 8%, transparent) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(to bottom, color-mix(in srgb, var(--color-accent) 8%, transparent) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--surface-tint);
}
/* building photos fill the slot; min-*: 0 keeps a tall image from blowing the
   grid item open, since grid items default to min-height: auto */
.project__media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}
/* empty slot: keeps the card's proportions until a photo is dropped in */
.project__media--empty::after {
  content: "Foto proyek";
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 42%, transparent);
}

.project__name { font-size: 20px; line-height: 1.25; margin-top: 6px; }
.project__open {
  font: inherit;
  color: inherit;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.project__open::after { content: ""; position: absolute; inset: 0; }
.project__open:hover { color: var(--color-accent-700); }
.card.project:focus-within { outline: 2px solid var(--color-accent); outline-offset: 3px; }
.project__open:focus-visible { outline: none; }

.modal {
  width: min(620px, calc(100vw - 32px));
  max-height: min(86vh, 760px);
  padding: 0;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
}
.modal[open] { display: flex; }
.modal::backdrop { background: rgba(10, 10, 10, 0.55); }
.modal__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  border: 1px solid var(--color-divider);
  border-radius: 999px;
  cursor: pointer;
}
.modal__close:hover { border-color: var(--color-accent); color: var(--color-accent-700); }
.modal__body { padding: clamp(22px, 3vw, 34px); overflow: auto; flex: 1; }
.modal__body .project__media {
  height: 190px;
  margin: 18px 0 22px;
  border: 1px solid var(--color-divider);
  border-radius: calc(var(--radius) - 4px);
}
.modal__title { font-size: clamp(24px, 3vw, 32px); line-height: 1.15; margin-top: 8px; }
.modal__text {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
}
.modal__list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.65;
}
.modal__list li { padding-left: 20px; position: relative; }
.modal__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--color-accent-700);
  border-bottom: 1.5px solid var(--color-accent-700);
  transform: rotate(-45deg);
}

/* expandable package contents — native <details>, so it works on touch
   and keyboard. The old build gated this behind mouseenter only, which
   made it unreachable on phones. */
.disclose { margin-top: 18px; border-top: 1px solid var(--color-divider); }
.disclose > summary {
  list-style: none;
  cursor: pointer;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-700);
}
.disclose > summary::-webkit-details-marker { display: none; }
.disclose > summary::after {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s var(--ease);
}
.disclose[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.disclose__body {
  list-style: none;
  margin: 0;
  padding: 14px 0 4px;
  display: grid;
  gap: 7px;
  font-size: 14px;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
}
.disclose__body li { padding-left: 16px; position: relative; }
.disclose__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 6px;
  border-top: 1px solid var(--color-accent);
}

/* reason / feature list */
/* government bodies — hairline grid, no logo assets so the abbreviation carries it */
.govt {
  background: var(--color-bg);
  padding: 20px 18px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.govt__abbr {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent-700);
}
.govt__name {
  font-size: 12.5px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.reason { border-top: 2px solid var(--color-accent); padding-top: 18px; }
.reason h3 { font-size: 23px; line-height: 1.2; }
.reason p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 10px;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}

.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.tag {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  color: var(--color-accent-700);
}

/* --- client marquee ----------------------------------------------------- */

.marquee {
  margin-top: 24px;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--color-bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--color-bg), transparent); }

.marquee__track {
  display: flex;
  gap: 1px;
  width: max-content;
  animation: marquee 46s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5px)); }
}

.client {
  flex: 0 0 190px;
  box-shadow: 0 0 0 1px var(--color-divider);
  background: var(--color-bg);
  padding: 20px 16px;
  display: grid;
  gap: 12px;
  justify-items: center;
  align-content: center;
  text-align: center;
}
.client__mark {
  height: 56px;
  display: grid;
  place-items: center;
}
.client__mark img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}
/* typographic fallback for clients with no logo asset */
.client__wordmark {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--color-text);
}
.client__name {
  font-size: 11.5px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}

/* --- process: git-graph roadmap (dark band) ----------------------------- */
/* The trunk is the <ol>'s own rail; each branch <ul> draws its own rail plus
   two quarter-circle elbows (fork out, merge back) as pseudo-elements.
   Geometry: trunk centre x=7.5px, branch rail centre x=40.5px. */

.gitgraph {
  --rail: color-mix(in srgb, var(--color-on-ink) 30%, transparent);
  --rail-branch: color-mix(in srgb, var(--color-accent-400) 60%, transparent);
  list-style: none;
  position: relative;
  margin: clamp(32px, 4vw, 52px) 0 0;
  padding: 0 0 0 44px;
}
.gitgraph::before {                      /* trunk */
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--rail);
}
.gitgraph__node { position: relative; padding-bottom: clamp(28px, 3.5vw, 44px); }
.gitgraph__node:last-child { padding-bottom: 0; }
.gitgraph__node::before {                /* commit dot */
  content: '';
  position: absolute;
  left: -44px;
  top: 2px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--color-accent-400);
  border-radius: 50%;
  background: var(--color-ink);
}
.gitgraph__node:last-child::before { background: var(--color-accent-400); }

.gitgraph h3 { font-size: 21px; line-height: 1.25; margin-top: 10px; }
.gitgraph p {
  font-size: 14.5px;
  line-height: 1.8;
  margin-top: 8px;
  color: color-mix(in srgb, var(--color-on-ink) 72%, transparent);
}
.gitgraph .gitgraph__ref {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  margin-top: 0;
  color: var(--color-accent-400);
}

.gitgraph__branch {
  list-style: none;
  position: relative;
  margin: 26px 0 26px -4px;              /* branch rail sits 32px right of trunk */
  padding: 0 0 0 28px;
  border-left: 1px solid var(--rail-branch);
}
.gitgraph__branch::before,
.gitgraph__branch::after {
  content: '';
  position: absolute;
  left: -33px;
  width: 33px;
  height: 22px;
  border: 0 solid var(--rail-branch);
}
.gitgraph__branch::before {              /* fork out of the trunk */
  top: -22px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-bottom-left-radius: 22px;
}
.gitgraph__branch::after {               /* merge back into the trunk */
  bottom: -22px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-bottom-right-radius: 22px;
}
.gitgraph__branch > li { position: relative; }
.gitgraph__branch > li + li { margin-top: 18px; }
.gitgraph__branch > li::before {         /* commit dot on the branch */
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rail-branch);
}
.gitgraph__branch .gitgraph__ref { color: color-mix(in srgb, var(--color-on-ink) 66%, transparent); }

.band-ink .rule { border-top-color: color-mix(in srgb, var(--color-on-ink) 26%, transparent); }
.band-ink .fine { color: color-mix(in srgb, var(--color-on-ink) 76%, transparent); }

/* --- table -------------------------------------------------------------- */

.table-wrap { overflow-x: auto; margin-top: clamp(28px, 4vw, 44px); }
.table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
.table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: 12px 10px;
  border-bottom: 1px solid var(--color-text);
}
.table td { padding: 14px 10px; border-bottom: 1px solid var(--color-divider); }
.table tbody tr { transition: background-color 0.2s var(--ease); }
.table tbody tr:hover { background: color-mix(in srgb, var(--color-accent) 5%, transparent); }
.table .num { text-align: right; font-feature-settings: 'tnum' 1; }

/* --- FAQ ---------------------------------------------------------------- */

.faq__item { border-top: 1px solid var(--color-divider); }
.faq__item:first-child { border-top-color: var(--color-text); }
.faq__item:last-child { border-bottom: 1px solid var(--color-divider); }
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 19.5px;
  line-height: 1.3;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq__answer {
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 18px;
  max-width: 68ch;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
}

/* --- testimonials ------------------------------------------------------- */

.quote-lead {
  margin: 0;
  border-left: 2px solid var(--color-accent);
  padding-left: 22px;
}
.quote-lead p { font-family: var(--font-heading); font-size: clamp(20px, 2vw, 25px); line-height: 1.42; }
.quote { margin: 0; border-top: 1px solid var(--color-divider); padding-top: 18px; }
.quote p { font-size: 15px; line-height: 1.8; color: color-mix(in srgb, var(--color-text) 82%, transparent); }
.quote footer, .quote-lead footer {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 12px;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}

/* --- contact form ------------------------------------------------------- */

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 6vw, 88px);
}
.deflist { margin: 0; display: grid; gap: 18px; font-size: 15px; line-height: 1.8; }
.deflist > div { padding-top: 16px; border-top: 1px solid color-mix(in srgb, var(--color-on-ink) 24%, transparent); }
.deflist dt {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-on-ink) 58%, transparent);
}
.deflist dd { margin: 6px 0 0; }
.deflist a { color: var(--color-on-ink); border-bottom: 1px solid color-mix(in srgb, var(--color-on-ink) 40%, transparent); }
.deflist a:hover { color: var(--color-accent-400); border-color: var(--color-accent-400); }

.form { display: grid; gap: 22px; align-content: start; min-width: 0; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; }
.field { display: grid; gap: 8px; min-width: 0; }
.field > span {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-on-ink) 58%, transparent);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-on-ink) 32%, transparent);
  border-radius: 0;
  color: var(--color-on-ink);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 9px 0;
  transition: border-color 0.2s var(--ease);
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
/* long option labels must not widen the grid column */
.field select { text-overflow: ellipsis; }
.field textarea { resize: vertical; min-height: 84px; }
.field input:hover, .field select:hover, .field textarea:hover { border-bottom-color: color-mix(in srgb, var(--color-on-ink) 60%, transparent); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-accent-400);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--color-accent-400);
  outline-offset: 4px;
}
.field option { color: #0a0a0a; background: #fff; }
.field ::placeholder { color: color-mix(in srgb, var(--color-on-ink) 40%, transparent); }

/* validation — only after a submit attempt, never while first typing */
.form.is-validated .field input:invalid,
.form.is-validated .field select:invalid,
.form.is-validated .field textarea:invalid { border-bottom-color: #ff8f8f; }
.field__error { font-size: 12.5px; color: #ff8f8f; display: none; }
.form.is-validated .field:has(:invalid) .field__error { display: block; }

.form__note { font-size: 12.5px; line-height: 1.75; color: color-mix(in srgb, var(--color-on-ink) 55%, transparent); }
.form__note a { color: var(--color-on-ink); }
.form__status {
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--color-accent-400);
  background: color-mix(in srgb, var(--color-accent-400) 12%, transparent);
  color: var(--color-on-ink);
}

/* --- estimate calculator (harga) ---------------------------------------- */
/* Dark slab inside the light pricing section, so it inherits the .field /
   .form styles above without a light-surface variant. */

.calc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(26px, 3.5vw, 52px);
  align-items: start;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 20px;
}
.calc__out {
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--color-accent-400) 45%, transparent);
  background: color-mix(in srgb, var(--color-accent-400) 10%, transparent);
}
.calc__out-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-on-ink) 62%, transparent);
}
.calc__value {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  margin-top: 6px;
}
.calc__note {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
  color: color-mix(in srgb, var(--color-on-ink) 70%, transparent);
}

/* --- footer + sticky CTA ------------------------------------------------ */

.footer { background: var(--color-bg); border-top: 1px solid var(--color-divider); }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px clamp(24px, 4vw, 64px);
  padding-block: clamp(36px, 5vw, 60px);
  font-size: 14px;
  line-height: 1.85;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
}
.footer h2 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 12px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.footer a { color: inherit; }
.footer a:hover { color: var(--color-accent-700); }
/* closing CTA — last thing above the legal line */
.footer__close {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px clamp(20px, 3vw, 44px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--color-text);
}
.footer__close-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  max-width: 30ch;
  color: var(--color-text);
}
.footer__legal {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--color-divider);
  font-size: 12.5px;
}

.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-ink) 96%, transparent);
  backdrop-filter: blur(8px);
  color: var(--color-on-ink);
  border-top: 1px solid color-mix(in srgb, var(--color-accent) 45%, transparent);
}
.cta-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  padding-block: 12px;
}
.cta-bar p { flex: 1 1 200px; font-size: 13.5px; line-height: 1.6; }
.cta-bar .btn { padding: 11px 22px; font-size: 12.5px; }

/* floating WhatsApp button — clears the fixed contact bar via --cta-bar-h */
.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(var(--cta-bar-h, 0px) + 18px);
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 36px color-mix(in srgb, #128c7e 40%, transparent); }
.wa-fab:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* --- motion ------------------------------------------------------------- */

/* Progressive enhancement: elements are visible by default. Only once JS
   sets .js on <html> do they start hidden, so a JS failure or a crawler
   still sees the full page. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

/* --- package carousel (layanan) ----------------------------------------- */

.head--center { max-width: 62ch; margin-inline: auto; text-align: center; }
.head__kicker--pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--color-accent-900);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.pkg {
  position: relative;
  margin-top: clamp(28px, 4vw, 48px);
  padding-inline: clamp(0px, 3vw, 52px);
}
.pkg__track {
  padding-block: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.pkg__track::-webkit-scrollbar { display: none; }

.pkg__slide {
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.85fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 20px;
  color: var(--color-on-ink);
  background:
    radial-gradient(120% 140% at 100% 0%, color-mix(in srgb, var(--color-accent-600) 55%, transparent) 0%, transparent 58%),
    linear-gradient(150deg, var(--color-accent-900) 0%, #16264f 100%);
  box-shadow: var(--shadow-lg);
}
/* faint blueprint grid, keeps the editorial character on the dark slab */
.pkg__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(color-mix(in srgb, #fff 8%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, #fff 8%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(90% 90% at 20% 10%, #000 0%, transparent 70%);
}
.pkg__slide { position: relative; }
.pkg__info, .pkg__quote { position: relative; z-index: 1; }

.pkg__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--color-accent-300) 42%, transparent);
  background: color-mix(in srgb, #fff 8%, transparent);
  color: var(--color-accent-2-400);
  margin-bottom: 22px;
}
.pkg__name {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  margin: 0;
}
.pkg__tag {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent-300);
}
.pkg__desc {
  margin-top: 14px;
  max-width: 46ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--color-on-ink) 78%, transparent);
}
.pkg__perks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
}
.pkg__perks li { display: flex; align-items: flex-start; gap: 10px; }
.pkg__perks svg { flex: none; margin-top: 3px; color: var(--color-accent-2); }

.pkg__quote {
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: 14px;
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: var(--shadow-md);
}
.pkg__quote-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}
.pkg__quote-value {
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-accent-900);
}
.pkg__specs { margin: 22px 0 0; }
.pkg__specs > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-divider);
}
.pkg__specs dt { font-size: 14px; color: color-mix(in srgb, var(--color-text) 66%, transparent); }
.pkg__specs dd {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  text-align: right;
}
.pkg__cta {
  width: 100%;
  margin-top: 22px;
  gap: 10px;
  border-radius: 10px;
  background: var(--color-accent-900);
  border-color: var(--color-accent-900);
  font-size: 16px;
  padding-block: 15px;
}
.pkg__cta:hover { background: var(--color-accent-700); border-color: var(--color-accent-700); }

.pkg__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  translate: 0 -50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--color-accent-200);
  background: var(--color-bg);
  color: var(--color-accent-700);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.pkg__nav:hover { background: var(--color-accent-900); border-color: var(--color-accent-900); color: #fff; }
.pkg__nav--prev { left: 0; }
.pkg__nav--next { right: 0; }

.pkg__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.pkg__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-neutral-300);
  cursor: pointer;
  transition: width 0.25s var(--ease), background 0.25s var(--ease);
}
.pkg__dot[aria-current="true"] { width: 26px; background: var(--color-accent); }
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* kill transforms everywhere, including hover lifts — the previous build
     only neutralised the reveal and let hover transforms through */
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .card:hover, .panel__row:hover, .project:hover { transform: none !important; }

  /* Simply freezing the marquee would strand 7 of the 13 clients outside the
     overflow with no way to reach them. Reflow to a static grid so the motion
     stops *and* every client stays visible. */
  .marquee { overflow: visible; }
  .marquee::before, .marquee::after { display: none; }
  .marquee__track {
    animation: none !important;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
    width: auto;
  }
  .marquee__track .client[aria-hidden="true"] { display: none; }
}

/* --- breakpoints -------------------------------------------------------- */

@media (max-width: 899px) {

  .pkg { padding-inline: 0; }
  .pkg__slide { grid-template-columns: 1fr; padding: clamp(22px, 5vw, 32px); }
  .pkg__nav { display: none; }
  :root { --header-h: 60px; }

  /* JS present: collapse the nav behind a toggle. Without JS the rules
     above keep every link visible and wrapped. */
  .js .nav__toggle { display: inline-flex; }
  .js .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
  }
  .js .nav.is-open { display: flex; }
  .js .nav a {
    padding: 13px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-divider);
  }
  .js .nav .btn { margin-top: 16px; }

  .header__inner { position: relative; }
  .header .btn--primary { display: none; }
  .js .nav .btn--primary { display: inline-flex; }

  .hero__seal { width: 64px; height: 64px; top: -12px; }
  .hero__rating { position: static; margin-top: 18px; }
  .hero__panel { padding-bottom: 0; }
}

@media (max-width: 560px) {
  .cta-bar p { display: none; }
  .cta-bar__inner { gap: 10px; }
  .cta-bar .btn { flex: 1 1 auto; }
  .marquee::before, .marquee::after { width: 32px; }
}

@media print {
  .header, .cta-bar, .marquee, .skip-link, .wa-fab { display: none !important; }
  .hero::before, .hero::after { display: none; }
  body { padding-bottom: 0; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
