:root {
  --brand: #1677e1;
  --brand-strong: #0d5fc4;
  --brand-bright: #4f9aef;
  --brand-soft: rgba(22, 119, 225, 0.16);
  --brand-soft-border: rgba(22, 119, 225, 0.34);

  --bg: #0a1020;
  --bg-band: #0d1528;
  --bg-hero: linear-gradient(180deg, #0e1830 0%, #0a1020 100%);
  --surface: #131e36;
  --surface-soft: #1a2645;
  --surface-elev: #1d2a4a;

  --text: #dde4f1;
  --text-strong: #ffffff;
  --muted: #8c97ad;
  --muted-strong: #a9b3c7;

  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(148, 163, 184, 0.24);

  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 64px;
  --max-w: 1180px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 20px 48px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.25), 0 6px 18px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
code, pre {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
code {
  font-size: 0.9em;
  background: var(--brand-soft);
  color: var(--brand-bright);
  padding: 0.12rem 0.42rem;
  border: 1px solid var(--brand-soft-border);
  border-radius: 6px;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(10, 16, 32, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  color: var(--text-strong);
}
.site-header-inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(22, 119, 225, 0.42);
}
.brand-icon svg { width: 22px; height: 22px; color: #ffffff; }
.brand-icon img { width: 28px; height: 28px; }
.brand-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}
.brand-copy strong {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: var(--text-strong);
}
.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}
.topnav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-self: end;
}
.topnav a {
  font-size: 0.92rem;
  color: var(--muted-strong);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}
.topnav a:hover,
.topnav a.active {
  color: var(--text-strong);
  border-bottom-color: var(--brand);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-bright);
  border: 1px solid var(--brand-soft-border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 0 3px rgba(79, 154, 239, 0.22);
}

.hero {
  padding: 4rem 0 3rem;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(22, 119, 225, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}
.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  font-weight: 800;
}
.hero-copy .lead {
  margin: 0 0 1.5rem;
  max-width: 560px;
  font-size: 1.07rem;
  color: var(--muted-strong);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  cursor: pointer;
}
.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(22, 119, 225, 0.3);
}
.button-primary:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}
.button-secondary {
  background: var(--surface);
  color: var(--text-strong);
  border-color: var(--line-strong);
}
.button-secondary:hover {
  border-color: var(--brand);
  color: var(--brand-bright);
}
.button .icon-arrow {
  margin-left: 0.45rem;
  transition: transform 0.15s;
}
.button:hover .icon-arrow { transform: translateX(2px); }
.hero-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-meta a {
  color: var(--brand-bright);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.phone-frame {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 19;
  border-radius: 38px;
  padding: 14px;
  background: linear-gradient(155deg, #1d2a4a 0%, #07101f 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.45),
              inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #0c1426;
  display: grid;
  grid-template-rows: auto 1fr;
}
.phone-screen-header {
  background: linear-gradient(180deg, #0f1c36 0%, #0a1428 100%);
  color: #fff;
  padding: 1.7rem 1rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.phone-screen-header .ph-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--brand);
  display: grid;
  place-items: center;
}
.phone-screen-header .ph-icon svg { width: 18px; height: 18px; color: #fff; }
.phone-screen-header span.ph-title {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
}
.phone-screen-body {
  padding: 0.7rem 0.7rem 1rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  overflow: hidden;
}
.phone-screen-body img {
  width: 100%;
  border-radius: 16px;
}
.row {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  font-size: 0.75rem;
  color: #cdd5e4;
  line-height: 1.4;
  display: grid;
  gap: 0.18rem;
}
.row .row-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.row .row-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: -0.005em;
}
.row .row-time {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.row .row-meta {
  font-size: 0.68rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
}
.row.warn .dot { background: #fbbf24; }
.row.brand .dot { background: var(--brand-bright); }
.row .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--brand-soft);
  color: var(--brand-bright);
  font-size: 0.62rem;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section {
  padding: 4rem 0;
  position: relative;
}
.section.alt {
  background: var(--bg-band);
}
.section-heading {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.section-heading.left {
  text-align: left;
  margin-left: 0;
}
.section-heading .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 0.6rem;
}
.section-heading h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-strong);
}
.section-heading p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted-strong);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-strong);
}
.why-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-card.highlight {
  border-color: var(--brand-soft-border);
  background:
    linear-gradient(140deg, rgba(22, 119, 225, 0.08), transparent 60%),
    var(--surface);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-bright);
  display: grid;
  place-items: center;
  margin-bottom: 0.45rem;
  border: 1px solid var(--brand-soft-border);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-strong);
}
.feature-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
}
.feature-card .tag {
  display: inline-block;
  margin: 0.45rem 0.35rem 0 0;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-bright);
  border: 1px solid var(--brand-soft-border);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.feature-card .tag.muted {
  background: rgba(148, 163, 184, 0.10);
  color: var(--muted-strong);
  border-color: var(--line-strong);
}

.destinations-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}
.dest-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1rem;
  text-align: center;
  display: grid;
  gap: 0.45rem;
  align-content: start;
  box-shadow: var(--shadow-soft);
}
.dest-card .dest-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-bright);
  border: 1px solid var(--brand-soft-border);
}
.dest-card .dest-icon svg { width: 22px; height: 22px; }
.dest-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-strong);
}
.dest-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.usecase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: var(--shadow-soft);
}
.usecase-card .usecase-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-bright);
}
.usecase-card h3 {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text-strong);
}
.usecase-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
}
.usecase-card .usecase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.usecase-card .chip {
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.72rem;
  padding: 0.16rem 0.5rem;
  border-radius: 6px;
  font-weight: 500;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.privacy-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.privacy-list li .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.05rem;
}
.privacy-list li strong {
  display: block;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 0.2rem;
  font-size: 0.99rem;
}
.privacy-list li p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.93rem;
}
.privacy-aside h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  font-weight: 800;
}
.privacy-aside p {
  color: var(--muted-strong);
  margin: 0 0 1rem;
}
.privacy-aside a {
  color: var(--brand-bright);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  counter-reset: step;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.steps-list li {
  position: relative;
  padding: 1.05rem 1.1rem 1.05rem 3.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  counter-increment: step;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.steps-list li strong {
  display: block;
  color: var(--text-strong);
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}
.steps-list li p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.93rem;
}

.cta-card {
  background: linear-gradient(135deg, #0d5fc4 0%, #1677e1 100%);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 30px 60px rgba(22, 119, 225, 0.22);
}
.cta-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: #ffffff;
}
.cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}
.cta-card .button {
  background: #ffffff;
  color: var(--brand-strong);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.cta-card .button:hover {
  background: #f0f4ff;
  color: var(--brand-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}
.site-footer-inner a:hover { color: var(--brand-bright); }
.site-footer-links {
  display: flex;
  gap: 1.25rem;
}

.privacy-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}
.privacy-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.privacy-copy h1 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-strong);
}
.privacy-copy .updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 1.6rem;
}
.privacy-copy h2 {
  margin: 1.8rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-strong);
}
.privacy-copy p,
.privacy-copy li { color: var(--muted-strong); }
.privacy-copy p { margin: 0 0 0.85rem; }
.privacy-copy ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.privacy-copy li + li { margin-top: 0.35rem; }
.privacy-copy a {
  color: var(--brand-bright);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.faq-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 2.25rem 0 4rem;
}
.faq-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.faq-sidebar-label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-bright);
}
.faq-nav {
  display: grid;
  gap: 0.18rem;
  margin-top: 0.7rem;
}
.faq-nav-link {
  display: block;
  padding: 0.55rem 0.65rem;
  color: var(--muted-strong);
  border-radius: 8px;
  font-size: 0.92rem;
}
.faq-nav-link:hover,
.faq-nav-link.active {
  background: var(--brand-soft);
  color: var(--brand-bright);
}
.faq-content-wrap { min-width: 0; }
.faq-content-wrap h1 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-strong);
}
.markdown-surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.85rem;
  box-shadow: var(--shadow-soft);
}
.markdown-surface h1,
.markdown-surface h2 {
  color: var(--text-strong);
  letter-spacing: -0.015em;
  font-weight: 700;
}
.markdown-surface h1 {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
.markdown-surface h2 {
  font-size: 1.2rem;
  margin: 1.7rem 0 0.6rem;
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.markdown-surface h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.2rem 0 0.45rem;
  color: var(--text-strong);
}
.markdown-surface p,
.markdown-surface ul,
.markdown-surface pre { margin: 0 0 0.9rem; color: var(--muted-strong); }
.markdown-surface ul { padding-left: 1.2rem; }
.markdown-surface li + li { margin-top: 0.45rem; }
.markdown-surface a {
  color: var(--brand-bright);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.markdown-surface pre {
  overflow: auto;
  padding: 0.95rem;
  border-radius: 12px;
  background: #050a18;
  color: #d6deea;
  border: 1px solid var(--line);
}
.markdown-surface strong { color: var(--text-strong); }
.loading { color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid,
  .privacy-grid,
  .faq-shell {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 2rem; }
  .faq-sidebar { position: static; }
  .why-grid,
  .feature-grid,
  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .destinations-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .phone-frame { max-width: 280px; }
}
@media (max-width: 640px) {
  .why-grid,
  .feature-grid,
  .usecase-grid { grid-template-columns: 1fr; }
  .destinations-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-header-inner { grid-template-columns: auto 1fr; }
  .topnav { display: none; }
  .brand-copy small { display: none; }
  .section { padding: 2.75rem 0; }
  .hero { padding: 2rem 0 2.5rem; }
  .privacy-shell, .faq-shell { padding-top: 1.5rem; }
}
