/* Shared styles for SEO landing pages */
* { box-sizing: border-box; margin: 0; }
:root {
  --ink: #032d60; --blue: #0176d3; --sky: #00a1e0; --steel: #3E5462;
  --muted: #4a6285; --surface: #f3f7fc; --line: #e1e8f2;
}
body { background: var(--surface); font-family: 'Nunito Sans', sans-serif; color: var(--ink); }
.topbar {
  background: var(--ink); padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar img { height: 34px; display: block; }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar a.tb-link {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 13px;
}
.topbar a.tb-link:hover { color: #fff; }
.topbar a.tb-cta {
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13px;
  padding: 10px 22px; border-radius: 999px;
}
.topbar a.tb-cta:hover { background: var(--sky); }
.wrap { max-width: 880px; margin: 0 auto; padding: 56px 24px 40px; }
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--sky); margin-bottom: 10px;
}
h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 14px;
}
.lede { color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 36px; max-width: 760px; }
h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800;
  margin: 36px 0 10px;
}
p { color: var(--steel); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
ul.checks { list-style: none; padding: 0; margin: 0 0 14px; }
ul.checks li {
  color: var(--steel); font-size: 15.5px; line-height: 1.7; padding-left: 30px;
  position: relative; margin-bottom: 8px;
}
ul.checks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: #e0f4e7; color: #37a264;
  font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.video-card {
  background: #071f3d; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(3,45,96,0.2); margin: 30px 0 8px;
}
.video-card video { display: block; width: 100%; aspect-ratio: 16/9; }
.video-cap { color: var(--muted); font-size: 13px; margin-bottom: 28px; text-align: center; }
.cta-band {
  background: linear-gradient(135deg, #052a55, #032d60); border-radius: 18px;
  padding: 40px 36px; text-align: center; margin: 48px 0 24px;
}
.cta-band h2 { color: #fff; margin: 0 0 18px; }
.cta-band a {
  display: inline-block; background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 15px 36px; border-radius: 999px;
}
.cta-band a:hover { background: var(--sky); }
.more {
  border-top: 1px solid var(--line); padding-top: 22px; margin-top: 12px;
  color: var(--muted); font-size: 14px;
}
.more a { color: var(--blue); text-decoration: none; font-weight: 600; }
.more a:hover { text-decoration: underline; }
.footer-lite {
  text-align: center; color: var(--muted); font-size: 12.5px; padding: 26px 0 40px;
}
.footer-lite a { color: var(--muted); }
@media (max-width: 560px) {
  h1 { font-size: 28px; }
  .topbar .tb-link.hide-sm { display: none; }
}


/* ═══ Breadcrumbs + FAQ accordions ═══ */
.crumbs { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin: 0 6px; opacity: 0.6; }
.faq { margin-top: 8px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 10px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 15px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14.5px;
  color: var(--ink); position: relative; padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--blue); font-weight: 600;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 18px 15px; margin: 0; }