:root {
  --navy: #0a1020;
  --navy-800: #111827;
  --navy-700: #1a2a4a;
  --brand: #2073ff;
  --brand-dark: #1a5adf;
  --brand-glow: rgba(32, 115, 255, 0.35);
  --soft: #f0f4ff;
  --ink: #1a2a4a;
  --muted: #8b9cb8;
  --muted-light: rgba(255, 255, 255, 0.65);
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --wa: #25d366;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--muted-light);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

.text-light { color: #fff; }
.text-muted-light { color: var(--muted-light); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 12px; font-weight: 600; cursor: pointer;
  transition: all .2s ease; border: 1px solid transparent; white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 14px 24px; font-size: 1rem; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 24px -6px var(--brand-glow); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 32px -6px var(--brand-glow); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.4); }
.btn-wa:hover { background: #1ebe57; transform: translateY(-2px); }
.ic-wa { width: 18px; height: 18px; fill: currentColor; }

/* Header */
.site-top { position: relative; z-index: 30; }
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.logo span { margin-left: 3px; }
.logo-light { color: #fff; }
.logo-light span { color: #9fb4dd; }
.nav { display: flex; gap: 28px; }
.nav a { color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { color: #fff; font-weight: 700; font-size: .98rem; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 10px;
  background: rgba(255,255,255,.08); cursor: pointer;
}
.nav-toggle-bar {
  display: block; width: 100%; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(8, 15, 33, .65);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }
body.nav-open .site-top { z-index: 50; }

/* Hero */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,15,33,.75) 0%, rgba(8,15,33,0) 28%, rgba(8,15,33,.35) 100%),
    linear-gradient(90deg, rgba(8,15,33,.92) 0%, rgba(8,15,33,.55) 45%, rgba(8,15,33,.1) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 760px; padding: 130px 0 90px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600;
}
.badge-light {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #fff; backdrop-filter: blur(8px);
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 24px 0 0; max-width: 16ch; }
.lead { font-size: 1.12rem; margin-top: 20px; max-width: 600px; color: rgba(255,255,255,.85); }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 14px; margin-top: 40px; list-style: none; flex-wrap: wrap;
}
.hero-badges li {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 12px 18px; backdrop-filter: blur(8px);
}
.hero-badges b { display: block; font-size: 1.25rem; font-weight: 800; color: #fff; }
.hero-badges span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* Stats strip */
.strip {
  background: var(--navy-800);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-pill {
  text-align: center; padding: 16px 12px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; backdrop-filter: blur(8px);
}
.stat-pill b { display: block; font-size: 1.4rem; color: var(--brand); font-weight: 800; }
.stat-pill span { color: var(--muted-light); font-size: .85rem; }

/* Sections */
.section { padding: 88px 0; position: relative; }
.section-dark { background: var(--navy); }
.section-features {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-app {
  background: var(--navy);
  overflow: hidden;
}
.section-app::before {
  content: ""; position: absolute; top: 50%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  transform: translateY(-50%); pointer-events: none;
}

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.eyebrow { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.eyebrow-light { color: var(--brand); }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* Solution cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-dark {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card-dark:hover {
  transform: translateY(-8px);
  border-color: rgba(32, 115, 255, 0.4);
  box-shadow: 0 24px 48px -16px rgba(32, 115, 255, 0.25);
}
.card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-dark:hover .card-img img { transform: scale(1.08); }
.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,16,32,.85) 100%);
}
.card-body { padding: 20px; }
.price {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: .82rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
  margin-bottom: 10px;
}
.card-body h3 { color: #fff; }
.card-body p { color: var(--muted-light); font-size: .9rem; margin-top: 8px; line-height: 1.5; }
.card-link {
  display: inline-block; margin-top: 14px; color: var(--brand);
  font-size: .9rem; font-weight: 600; transition: color .2s;
}
.card-link:hover { color: #fff; }

/* Features grid */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-pill {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 18px 20px; backdrop-filter: blur(8px);
  transition: border-color .2s;
}
.feature-pill:hover { border-color: rgba(32, 115, 255, 0.35); }
.feature-icon { font-size: 1.5rem; line-height: 1; }
.feature-pill b { display: block; color: #fff; font-size: .95rem; }
.feature-pill span { color: var(--muted-light); font-size: .82rem; }

/* App section */
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.app-phone-wrap { position: relative; min-height: 420px; }
.app-ui {
  width: 72%; max-width: 320px; margin: 0 auto;
  border-radius: 24px; box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
}
.app-phone {
  position: absolute; bottom: 0; left: 0; width: 55%;
  border-radius: 20px; box-shadow: 0 30px 60px -15px rgba(0,0,0,.6);
  border: 3px solid rgba(255,255,255,.1);
}
.app-text h2 { margin-top: 10px; }
.app-text p { margin-top: 14px; font-size: 1.05rem; }
.checklist { list-style: none; margin: 24px 0 28px; display: grid; gap: 14px; }
.checklist li {
  position: relative; padding-left: 34px; font-weight: 500; color: rgba(255,255,255,.9);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}
.app-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.capabilities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px;
  max-width: 920px; margin: 0 auto;
}
@media (max-width: 700px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* Steps */
.steps { display: flex; align-items: stretch; gap: 12px; }
.step-dark {
  flex: 1; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  backdrop-filter: blur(8px);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand);
  color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 16px;
  box-shadow: 0 8px 20px -4px var(--brand-glow);
}
.step-dark p { color: var(--muted-light); font-size: .92rem; margin-top: 8px; }
.step-arrow {
  display: flex; align-items: center; color: var(--brand);
  font-size: 1.5rem; font-weight: 300; padding: 0 4px;
}

/* CTA */
.cta {
  position: relative; padding: 0; margin: 0;
  min-height: 420px; display: flex; align-items: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,16,32,.88) 0%, rgba(10,16,32,.75) 100%);
}
.cta-inner {
  position: relative; z-index: 2; text-align: center;
  padding: 80px 24px; max-width: 640px; margin: 0 auto;
}
.cta-inner h2 { color: #fff; margin-top: 16px; }
.cta-inner p { color: var(--muted-light); margin-top: 14px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* Footer */
.footer {
  background: var(--navy-800); border-top: 1px solid var(--line);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { margin-top: 12px; font-size: .92rem; color: var(--muted-light); max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: var(--muted-light); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 20px 0;
  text-align: center; color: #6b7890; font-size: .85rem;
}

/* Floating WhatsApp */
.fab-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
  transition: transform .2s, box-shadow .2s;
}
.fab-wa:hover { transform: scale(1.08); box-shadow: 0 12px 32px -4px rgba(37, 211, 102, 0.6); }
.fab-wa svg { width: 28px; height: 28px; fill: currentColor; }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: 1fr; }
  .app-phone-wrap { min-height: 360px; margin-bottom: 20px; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
  main > .site-top {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(10, 16, 32, 0.98);
    border-bottom: 1px solid var(--line);
  }
  main > .site-top .site-header {
    position: static;
    background: transparent;
    border: none;
  }
  .hero {
    min-height: 0;
    display: block;
  }
  .hero-content {
    padding: 20px 0 64px;
    max-width: none;
  }
  .hero h1 { max-width: none; }
  .lead { font-size: 1rem; }

  .nav-toggle { display: flex; }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: auto;
    min-height: 64px;
    padding: 12px 0;
  }
  .header-inner .logo { flex: 1; min-width: 0; }
  .header-actions { flex-shrink: 0; gap: 8px; }
  #site-nav {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 45;
    width: min(88vw, 320px); padding: 88px 24px 32px;
    background: var(--navy-800);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .28s ease, visibility .28s ease;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }
  #site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  #site-nav a {
    padding: 14px 0; font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 901px) {
  body > .site-top {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(10, 16, 32, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body > .site-top .page-header {
    position: static;
    background: transparent;
    border: none;
  }

  main > .site-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
  }

  .site-top .site-header {
    position: static;
    background: transparent;
    border: none;
  }

  .site-top .header-inner {
    position: relative;
    z-index: 2;
  }

  .site-top #site-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 28px;
    width: 100%;
    height: 76px;
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
    visibility: visible;
    pointer-events: none;
    z-index: 1;
  }

  .site-top:has(.page-header) #site-nav { height: 68px; }

  .site-top #site-nav a {
    pointer-events: auto;
    padding: 0;
    border-bottom: none;
    font-size: .95rem;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-actions, .app-actions, .cta-actions, .page-hero-meta { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .app-actions .btn, .cta-actions .btn, .page-hero-meta .btn { width: 100%; white-space: normal; }
  .hero-badges li { flex: 1 1 calc(50% - 7px); min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .app-phone { width: 48%; }
  .fab-wa { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  body { padding-bottom: 72px; }
  .cta-inner { padding: 64px 16px; }
  .page-hero-content { padding: 32px 0 48px; }
  .page-hero h1 { max-width: none; }
  .page-hero-lead { font-size: 1rem; }
  .header-actions .btn-sm { padding: 9px 12px; font-size: .85rem; }
}

/* Inner pages */
body > .site-top {
  position: static;
  background: transparent;
  border: none;
}
.page-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 16, 32, 0.98);
  border-bottom: 1px solid var(--line);
}
.page-header .header-inner { height: 68px; }

.page-hero {
  position: relative; min-height: 52vh; display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,33,.55) 0%, rgba(8,15,33,.92) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 48px 0 64px; color: #fff;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.85); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.45); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 18ch; margin-top: 12px; }
.page-hero-lead { margin-top: 16px; max-width: 620px; font-size: 1.08rem; color: rgba(255,255,255,.85); }
.page-hero-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.content-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start;
}
.content-grid.reverse { grid-template-columns: .9fr 1.1fr; }
.content-grid.reverse .content-visual { order: -1; }
.content-visual img {
  border-radius: var(--radius); border: 1px solid var(--glass-border);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.5);
}
.content-text h2 { color: #fff; margin-bottom: 14px; }
.content-text p { color: var(--muted-light); margin-bottom: 14px; font-size: 1rem; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.info-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 22px 20px; backdrop-filter: blur(8px);
}
.info-card b { display: block; color: #fff; font-size: 1rem; margin-bottom: 6px; }
.info-card span { color: var(--muted-light); font-size: .88rem; line-height: 1.5; }

.specs-wrap {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(8px);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.specs-table { width: 100%; border-collapse: collapse; min-width: 280px; }
.specs-table th, .specs-table td {
  padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.specs-table th { color: #fff; font-weight: 600; width: 42%; background: rgba(255,255,255,.03); }
.specs-table td { color: var(--muted-light); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }

.use-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.use-case {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 20px; backdrop-filter: blur(8px);
}
.use-case-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(32, 115, 255, 0.15); color: var(--brand);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.use-case b { display: block; color: #fff; font-size: .95rem; margin-bottom: 4px; }
.use-case span { color: var(--muted-light); font-size: .88rem; line-height: 1.45; }

.faq-list { display: grid; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 20px 22px; backdrop-filter: blur(8px);
}
.faq-item h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted-light); font-size: .92rem; line-height: 1.55; }

.related-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; overflow: hidden; transition: transform .2s, border-color .2s;
}
.related-card:hover { transform: translateY(-4px); border-color: rgba(32, 115, 255, 0.35); }
.related-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.related-card-body { padding: 16px 18px; }
.related-card-body b { display: block; color: #fff; font-size: .95rem; }
.related-card-body span { display: block; margin-top: 6px; color: var(--brand); font-size: .85rem; font-weight: 600; }

@media (max-width: 900px) {
  .content-grid, .content-grid.reverse { grid-template-columns: 1fr; }
  .content-grid.reverse .content-visual { order: 0; }
  .info-cards { grid-template-columns: 1fr; }
  .use-cases { grid-template-columns: 1fr; }
  .related-cards { grid-template-columns: 1fr; }
  .page-hero { min-height: 0; }
}
