/* ==========================================================================
   Kunci Pintar — web publik (kuncipintar.com)
   Brand: navy #0b2a4c · biru #2e6fe0 (selaras dengan aplikasi di
   account.kuncipintar.com)
   ========================================================================== */

:root {
  color-scheme: only light;

  --navy-950: #081e38;
  --navy-900: #0b2a4c;
  --navy-800: #123a66;
  --navy-700: #1a4a80;
  --blue-600: #2e6fe0;
  --blue-500: #3d7ff0;
  --blue-400: #5b8ff0;
  --blue-100: #dbe7fb;
  --blue-50: #eef4fd;

  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #1f2937;
  --text-strong: #0f1c2e;
  --muted: #5b6b80;
  --border: #e3e9f2;

  --green: #16a34a;
  --green-bg: #e8f7ee;
  --amber: #d97706;
  --amber-bg: #fdf3e3;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 28, 46, 0.06), 0 1px 6px rgba(15, 28, 46, 0.05);
  --shadow-md: 0 6px 24px rgba(15, 28, 46, 0.09);
  --shadow-lg: 0 18px 48px rgba(8, 30, 56, 0.18);

  --container: 1140px;

  --font:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Tipografi
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  color: var(--text-strong);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Tombol
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 111, 224, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 10px 26px rgba(46, 111, 224, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--blue-50);
  border-color: var(--blue-100);
}

.btn--light {
  background: #fff;
  color: var(--navy-900);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Header / navigasi
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 9px 15px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  background: var(--blue-50);
  color: var(--blue-600);
  text-decoration: none;
}

.nav-links a.is-active {
  color: var(--blue-600);
  background: var(--blue-50);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(46, 111, 224, 0.4), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(46, 111, 224, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #d7e3f4;
  padding: 96px 0 110px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(720px 460px at 70% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(720px 460px at 70% 20%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #bcd2f2;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}

.hero h1 .accent {
  background: linear-gradient(100deg, #6ea4ff, #9cc0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.13rem;
  max-width: 520px;
  margin-bottom: 34px;
  color: #b9c9df;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-note {
  font-size: 0.88rem;
  color: #8fa5c2;
}

/* Kartu ilustrasi hero: bayar → akses diperbarui */

.hero-visual {
  position: relative;
}

.demo-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.demo-card__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: #fbfcfe;
}

.demo-card__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.demo-card__bar i:nth-child(1) { background: #f87171; }
.demo-card__bar i:nth-child(2) { background: #fbbf24; }
.demo-card__bar i:nth-child(3) { background: #34d399; }

.demo-card__bar span {
  margin-left: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.demo-card__body {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}

.demo-row__label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.demo-row__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--blue-50);
}

.demo-row__title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-strong);
}

.demo-row__sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.pill {
  flex: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.pill--paid { background: var(--green-bg); color: var(--green); }
.pill--active { background: var(--blue-50); color: var(--blue-600); }
.pill--grace { background: var(--amber-bg); color: var(--amber); }

.demo-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.demo-flow .arrow {
  color: var(--blue-600);
  font-size: 1rem;
}

.hero-float {
  position: absolute;
  right: -14px;
  bottom: -52px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}

.hero-float__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-bg);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.hero-float__title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-strong);
}

.hero-float__sub {
  font-size: 0.75rem;
  color: var(--muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* --------------------------------------------------------------------------
   Strip statistik
   -------------------------------------------------------------------------- */

.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.stat {
  text-align: center;
}

.stat b {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Grid kartu fitur
   -------------------------------------------------------------------------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card .tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 10px;
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Langkah "cara kerja"
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
}

.step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 6px 16px rgba(46, 111, 224, 0.35);
  margin-bottom: 20px;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Seksi prinsip (dark)
   -------------------------------------------------------------------------- */

.principles {
  background:
    radial-gradient(800px 400px at 110% 0%, rgba(46, 111, 224, 0.28), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900));
  color: #c3d3e8;
  padding: 96px 0;
}

.principles .section-head h2 { color: #fff; }
.principles .section-head p { color: #9fb4d0; }

.principles .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #9cc0ff;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.principle {
  display: flex;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 26px 26px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.principle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.principle__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: rgba(46, 111, 224, 0.25);
}

.principle h3 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.principle p {
  font-size: 0.9rem;
  color: #9fb4d0;
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--text-strong);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.faq[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.faq p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   CTA bawah
   -------------------------------------------------------------------------- */

.cta {
  background:
    radial-gradient(700px 360px at 20% 0%, rgba(46, 111, 224, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-950), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 68px 48px;
  text-align: center;
  color: #b9c9df;
}

.cta h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: #9fb4d0;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   Halaman internal (hero kecil)
   -------------------------------------------------------------------------- */

.page-hero {
  background:
    radial-gradient(700px 320px at 85% -20%, rgba(46, 111, 224, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900));
  color: #b9c9df;
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #9fb4d0;
  font-size: 1.05rem;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #9cc0ff;
}

/* Baris fitur bergambar (fitur.html) */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: none; }

.feature-row__text h2 { margin-bottom: 14px; }
.feature-row__text > p { color: var(--muted); margin-bottom: 20px; }

.feature-row__text ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-row__text li {
  display: flex;
  gap: 11px;
  font-size: 0.95rem;
  align-items: flex-start;
}

.feature-row__text li .check {
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 3px;
}

.feature-row--flip .feature-row__visual { order: -1; }

.feature-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px;
  display: grid;
  gap: 12px;
}

.feature-panel .demo-row { box-shadow: none; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-950);
  color: #8fa5c2;
  padding: 64px 0 0;
  margin-top: 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-contact {
  margin-top: 18px;
  display: grid;
  gap: 4px;
}

.footer-contact a {
  color: #c6d4e8;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact span {
  font-size: 0.8rem;
  color: #6d84a6;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer-col a {
  color: #8fa5c2;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   Animasi reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-float { animation: none; }
}

/* --------------------------------------------------------------------------
   Responsif
   -------------------------------------------------------------------------- */

@media (max-width: 1020px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero {
    padding: 72px 0 96px;
    text-align: center;
  }

  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--flip .feature-row__visual { order: 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 14px 20px 20px;
    display: none;
  }

  .nav-links.is-open { display: flex; }

  .nav-cta .btn--ghost { display: none; }

  .principle-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .cta { padding: 52px 26px; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-float { display: none; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Header ringkas — logo + CTA + hamburger harus muat di 360px. */
  .container { padding: 0 18px; }
  .nav { gap: 12px; }
  .nav-logo img { height: 32px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 0.86rem; }
  .nav-toggle { width: 40px; height: 40px; }
  .nav-links { top: 76px; }
}
