/* ==========================================================================
   Shared layout: header, footer, common components
   ========================================================================== */

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Header ---- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: inline-flex; }
.brand__logo { height: 46px; width: auto; }

.site-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 24px;
}
.site-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
}
.site-nav a:hover { color: var(--accent-blue); }

.btn-sm { padding: 12px 22px; font-size: 14.5px; white-space: nowrap; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .brand__logo { height: 36px; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: #B9C6D2;
  padding: 44px 0 26px;
  margin-top: 80px;
}
.footer-disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: #93A4B4;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer strong { color: #C6D3DE; }
.footer-disclaimer a { color: #9FCBFF; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 13px;
}
.footer-links a { color: #DCE6EF; font-weight: 600; }
.footer-links span { color: #55677a; margin: 0 10px; }
.footer-copy { color: #7488999; color: #7f8fa0; }

/* ---- Trust strip (carrier badges) ---- */
.trust-strip {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
}
.trust-strip__label {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.carrier-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.carrier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  background: var(--bg-alt);
  white-space: nowrap;
}
.carrier-badge__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gradient-cta);
  flex: none;
}

/* ---- Skyline banner ---- */
.skyline-banner {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #F6F9FC 100%);
}
.skyline-banner img { position: absolute; bottom: 0; left: 0; width: 100%; height: 140px; }
.skyline-banner__car {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 56px;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .skyline-banner__car { opacity: 0; }
}

/* ---- Generic section helpers ---- */
.section { padding: 76px 0; }
.section--alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }
.section-head p { color: var(--slate); font-size: 17px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
}

.icon-badge {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.icon-badge svg { width: 30px; height: 30px; stroke: #fff; }

.card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 32px;
}

.pill-cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #1c3c58 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}
.pill-cta-band h2, .pill-cta-band p { color: #fff; }
.pill-cta-band p { color: #C6D6E4; }
